-
Notifications
You must be signed in to change notification settings - Fork 0
/
math012r.sql
1147 lines (1083 loc) · 514 KB
/
math012r.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 3.3.9
-- http://www.phpmyadmin.net
--
-- Vært: srv02.keaweb.dk:3306
-- Genereringstid: 13. 09 2014 kl. 10:34:52
-- Serverversion: 5.5.33
-- PHP-version: 5.3.5
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!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: `math012r`
--
-- --------------------------------------------------------
--
-- Struktur-dump for tabellen `wp_commentmeta`
--
CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Data dump for tabellen `wp_commentmeta`
--
-- --------------------------------------------------------
--
-- Struktur-dump for tabellen `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`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Data dump for tabellen `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, 'Hr WordPress', '', 'https://wordpress.org/', '', '2014-09-08 09:29:55', '2014-09-08 09:29:55', 'Hej, dette er en kommentar.\nFor at slette en kommentar logger du blot ind og læser indlæggets kommentarer. Der har du mulighed for at redigere eller slette dem.', 0, 'post-trashed', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Struktur-dump for tabellen `wp_instagrab_ids`
--
CREATE TABLE IF NOT EXISTS `wp_instagrab_ids` (
`instagram_id` varchar(100) NOT NULL,
`time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`hashtag` varchar(100) NOT NULL,
UNIQUE KEY `instagram_id` (`instagram_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Data dump for tabellen `wp_instagrab_ids`
--
-- --------------------------------------------------------
--
-- Struktur-dump for tabellen `wp_links`
--
CREATE TABLE IF NOT EXISTS `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Data dump for tabellen `wp_links`
--
-- --------------------------------------------------------
--
-- Struktur-dump for tabellen `wp_options`
--
CREATE TABLE IF NOT EXISTS `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=341 ;
--
-- Data dump for tabellen `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://math012r.keaweb.dk/goodvertising/modul7_wp/', 'yes'),
(2, 'home', 'http://math012r.keaweb.dk/goodvertising/modul7_wp/', 'yes'),
(3, 'blogname', 'Talk to me', 'yes'),
(4, 'blogdescription', 'Endnu en WordPress-blog', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '[email protected]', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '[email protected]', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '0', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'j. F Y', 'yes'),
(24, 'time_format', 'G:i', 'yes'),
(25, 'links_updated_date_format', 'j. F Y H:i', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '', 'yes'),
(29, 'gzipcompression', '0', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:4:{i:0;s:30:"advanced-custom-fields/acf.php";i:1;s:21:"facebook/facebook.php";i:2;s:33:"featured-image/featured-image.php";i:3;s:44:"slideshow-jquery-image-gallery/slideshow.php";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'advanced_edit', '0', 'yes'),
(37, 'comment_max_links', '2', 'yes'),
(38, 'gmt_offset', '0', 'yes'),
(39, 'default_email_category', '1', 'yes'),
(40, 'recently_edited', '', 'no'),
(41, 'template', 'talktome_theme', 'yes'),
(42, 'stylesheet', 'talktome_theme', 'yes'),
(43, 'comment_whitelist', '1', 'yes'),
(44, 'blacklist_keys', '', 'no'),
(45, 'comment_registration', '0', 'yes'),
(46, 'html_type', 'text/html', 'yes'),
(47, 'use_trackback', '0', 'yes'),
(48, 'default_role', 'subscriber', 'yes'),
(49, 'db_version', '29630', 'yes'),
(50, 'uploads_use_yearmonth_folders', '1', 'yes'),
(51, 'upload_path', '', 'yes'),
(52, 'blog_public', '0', 'yes'),
(53, 'default_link_category', '2', 'yes'),
(54, 'show_on_front', 'posts', 'yes'),
(55, 'tag_base', '', 'yes'),
(56, 'show_avatars', '1', 'yes'),
(57, 'avatar_rating', 'G', 'yes'),
(58, 'upload_url_path', '', 'yes'),
(59, 'thumbnail_size_w', '150', 'yes'),
(60, 'thumbnail_size_h', '150', 'yes'),
(61, 'thumbnail_crop', '1', 'yes'),
(62, 'medium_size_w', '300', 'yes'),
(63, 'medium_size_h', '300', 'yes'),
(64, 'avatar_default', 'mystery', 'yes'),
(65, 'large_size_w', '1024', 'yes'),
(66, 'large_size_h', '1024', 'yes'),
(67, 'image_default_link_type', 'file', 'yes'),
(68, 'image_default_size', '', 'yes'),
(69, 'image_default_align', '', 'yes'),
(70, 'close_comments_for_old_posts', '0', 'yes'),
(71, 'close_comments_days_old', '14', 'yes'),
(72, 'thread_comments', '1', 'yes'),
(73, 'thread_comments_depth', '5', 'yes'),
(74, 'page_comments', '0', 'yes'),
(75, 'comments_per_page', '50', 'yes'),
(76, 'default_comments_page', 'newest', 'yes'),
(77, 'comment_order', 'asc', 'yes'),
(78, 'sticky_posts', 'a:0:{}', 'yes'),
(79, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(80, 'widget_text', 'a:3:{i:1;a:0:{}i:2;a:3:{s:5:"title";s:9:"Gode råd";s:4:"text";s:0:"";s:6:"filter";b:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(81, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(82, 'uninstall_plugins', 'a:1:{s:33:"instagram-feed/instagram-feed.php";s:22:"sb_instagram_uninstall";}', 'no'),
(83, 'timezone_string', '', 'yes'),
(84, 'page_for_posts', '0', 'yes'),
(85, 'page_on_front', '0', 'yes'),
(86, 'default_post_format', '0', 'yes'),
(87, 'link_manager_enabled', '0', 'yes'),
(88, 'initial_db_version', '29630', 'yes'),
(89, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:65:{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:45:"slideshow-jquery-image-gallery-add-slideshows";b:1;s:46:"slideshow-jquery-image-gallery-edit-slideshows";b:1;s:48:"slideshow-jquery-image-gallery-delete-slideshows";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:37:{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:45:"slideshow-jquery-image-gallery-add-slideshows";b:1;s:46:"slideshow-jquery-image-gallery-edit-slideshows";b:1;s:48:"slideshow-jquery-image-gallery-delete-slideshows";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:13:{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:45:"slideshow-jquery-image-gallery-add-slideshows";b:1;s:46:"slideshow-jquery-image-gallery-edit-slideshows";b:1;s:48:"slideshow-jquery-image-gallery-delete-slideshows";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 'yes'),
(90, 'WPLANG', 'da_DK', 'yes'),
(91, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(92, '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'),
(93, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(94, 'widget_archives', 'a:3:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}i:3;a:3:{s:5:"title";s:12:"Blog indlæg";s:5:"count";i:1;s:8:"dropdown";i:1;}s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(96, 'sidebars_widgets', 'a:6:{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:19:"wp_inactive_widgets";a:0:{}s:7:"sidebar";a:2:{i:0;s:6:"text-2";i:1;s:10:"archives-3";}s:6:"footer";a:0:{}s:16:"frontpage_banner";a:1:{i:0;s:17:"slideshowwidget-2";}s:13:"array_version";i:3;}', 'yes'),
(97, 'cron', 'a:5:{i:1410600602;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:1410602279;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:1410606463;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:1410635520;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'),
(102, '_transient_random_seed', '89a702d8cb38708ef2bc70dfc97ae736', 'yes'),
(106, '_site_transient_timeout_browser_1eeeefb85b1283df36a2508c59274cf4', '1410773420', 'yes'),
(107, '_site_transient_browser_1eeeefb85b1283df36a2508c59274cf4', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"38.0.2125.44";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', '1', 'yes'),
(123, '_transient_timeout_plugin_slugs', '1410597809', 'no'),
(124, '_transient_plugin_slugs', 'a:8:{i:0;s:30:"advanced-custom-fields/acf.php";i:1;s:19:"akismet/akismet.php";i:2;s:21:"facebook/facebook.php";i:3;s:33:"featured-image/featured-image.php";i:4;s:9:"hello.php";i:5;s:23:"instagrab/instagrab.php";i:6;s:33:"instagram-feed/instagram-feed.php";i:7;s:44:"slideshow-jquery-image-gallery/slideshow.php";}', 'no'),
(127, '_transient_featured_content_ids', 'a:0:{}', 'yes'),
(129, '_transient_twentyfourteen_category_count', '1', 'yes'),
(132, 'theme_mods_twentyfourteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1410170893;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'),
(133, 'current_theme', 'talktome_theme', 'yes'),
(134, 'theme_mods_talktome_theme', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:7:"primary";i:2;}}', 'yes'),
(135, 'theme_switched', '', 'yes'),
(136, 'theme_switched_via_customizer', '', 'yes'),
(137, 'widget_pages', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(138, 'widget_calendar', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(139, 'widget_tag_cloud', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(140, 'widget_nav_menu', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(172, 'recently_activated', 'a:2:{s:23:"instagrab/instagrab.php";i:1410510208;s:33:"instagram-feed/instagram-feed.php";i:1410438789;}', 'yes'),
(186, 'ftp_credentials', 'a:3:{s:8:"hostname";s:9:"localhost";s:8:"username";s:8:"TalkToMe";s:15:"connection_type";s:3:"ftp";}', 'yes'),
(203, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(211, 'acf_version', '4.3.9', 'yes'),
(216, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1410448933', 'yes'),
(217, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:40:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"4587";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"2848";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"2785";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"2284";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2189";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1792";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"1587";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1563";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1529";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1519";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1448";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1411";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1350";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:4:"1209";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1153";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1121";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:4:"1044";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:4:"1001";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:3:"995";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"823";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"811";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"798";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"793";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"789";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"730";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"693";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"691";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"661";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"638";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"618";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"609";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"607";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"601";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"593";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"587";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"546";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"544";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"543";}s:5:"share";a:3:{s:4:"name";s:5:"Share";s:4:"slug";s:5:"share";s:5:"count";s:3:"536";}s:8:"security";a:3:{s:4:"name";s:8:"security";s:4:"slug";s:8:"security";s:5:"count";s:3:"534";}}', 'yes'),
(218, 'instagrab_db_version', '2', 'yes'),
(219, 'instagrab_tags', 'talktome', 'yes'),
(220, 'instagrab_username', 'TalkToMe', 'yes'),
(221, 'instagrab_password', 'trytalkingtome', 'yes'),
(222, 'instagrab_timeout', '10', 'yes'),
(223, 'instagrab_client_id', '', 'yes'),
(224, 'category_children', 'a:0:{}', 'yes'),
(225, 'instagrab_running', '1410510186', 'yes'),
(226, 'sb_instagram_settings', 'a:15:{s:15:"sb_instagram_at";s:48:"2562711.1654d0c.bb1e10345a1d4ca79dc217b2209f5600";s:20:"sb_instagram_user_id";s:7:"2562711";s:18:"sb_instagram_width";s:3:"100";s:23:"sb_instagram_width_unit";s:1:"%";s:19:"sb_instagram_height";s:0:"";s:16:"sb_instagram_num";s:2:"20";s:24:"sb_instagram_height_unit";s:2:"px";s:17:"sb_instagram_cols";s:1:"1";s:26:"sb_instagram_image_padding";s:0:"";s:31:"sb_instagram_image_padding_unit";s:2:"px";s:23:"sb_instagram_background";s:0:"";s:21:"sb_instagram_show_btn";s:2:"on";s:27:"sb_instagram_btn_background";s:0:"";s:27:"sb_instagram_btn_text_color";s:0:"";s:22:"sb_instagram_image_res";s:4:"full";}', 'yes'),
(235, '_site_transient_timeout_browser_93feb4e731a111b57bf292844eb56eba', '1411110804', 'yes'),
(236, '_site_transient_browser_93feb4e731a111b57bf292844eb56eba', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"38.0.2125.58";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'),
(262, '_site_transient_timeout_available_translations', '1410521022', 'yes'),
(263, '_site_transient_available_translations', 'a:40:{s:2:"ar";a:8:{s:8:"language";s:2:"ar";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 15:44:04";s:12:"english_name";s:6:"Arabic";s:11:"native_name";s:14:"العربية";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/ar.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:2;s:3:"ara";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:2:"az";a:8:{s:8:"language";s:2:"az";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-06 09:50:59";s:12:"english_name";s:11:"Azerbaijani";s:11:"native_name";s:16:"Azərbaycan dili";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/az.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:2;s:3:"aze";}s:7:"strings";a:1:{s:8:"continue";s:5:"Davam";}}s:5:"bs_BA";a:8:{s:8:"language";s:5:"bs_BA";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 15:47:16";s:12:"english_name";s:7:"Bosnian";s:11:"native_name";s:8:"Bosanski";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/bs_BA.zip";s:3:"iso";a:2:{i:1;s:2:"bs";i:2;s:3:"bos";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:2:"ca";a:8:{s:8:"language";s:2:"ca";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-07 17:14:09";s:12:"english_name";s:7:"Catalan";s:11:"native_name";s:7:"Català";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/ca.zip";s:3:"iso";a:2:{i:1;s:2:"ca";i:2;s:3:"cat";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"cy";a:8:{s:8:"language";s:2:"cy";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 16:43:49";s:12:"english_name";s:5:"Welsh";s:11:"native_name";s:7:"Cymraeg";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/cy.zip";s:3:"iso";a:2:{i:1;s:2:"cy";i:2;s:3:"cym";}s:7:"strings";a:1:{s:8:"continue";s:6:"Parhau";}}s:5:"da_DK";a:8:{s:8:"language";s:5:"da_DK";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 20:59:54";s:12:"english_name";s:6:"Danish";s:11:"native_name";s:5:"Dansk";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/da_DK.zip";s:3:"iso";a:2:{i:1;s:2:"da";i:2;s:3:"dan";}s:7:"strings";a:1:{s:8:"continue";s:12:"Fortsæt";}}s:5:"de_DE";a:8:{s:8:"language";s:5:"de_DE";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 15:23:15";s:12:"english_name";s:6:"German";s:11:"native_name";s:7:"Deutsch";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/de_DE.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:5:"en_AU";a:8:{s:8:"language";s:5:"en_AU";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-06 00:56:37";s:12:"english_name";s:19:"English (Australia)";s:11:"native_name";s:19:"English (Australia)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/en_AU.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_GB";a:8:{s:8:"language";s:5:"en_GB";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 08:52:52";s:12:"english_name";s:12:"English (UK)";s:11:"native_name";s:12:"English (UK)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/en_GB.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_CA";a:8:{s:8:"language";s:5:"en_CA";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 00:31:07";s:12:"english_name";s:16:"English (Canada)";s:11:"native_name";s:16:"English (Canada)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/en_CA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"es_ES";a:8:{s:8:"language";s:5:"es_ES";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 17:40:25";s:12:"english_name";s:15:"Spanish (Spain)";s:11:"native_name";s:8:"Español";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/es_ES.zip";s:3:"iso";a:1:{i:1;s:2:"es";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CL";a:8:{s:8:"language";s:5:"es_CL";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 19:47:01";s:12:"english_name";s:15:"Spanish (Chile)";s:11:"native_name";s:17:"Español de Chile";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/es_CL.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_PE";a:8:{s:8:"language";s:5:"es_PE";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 07:49:30";s:12:"english_name";s:14:"Spanish (Peru)";s:11:"native_name";s:17:"Español de Perú";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/es_PE.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:2:"eu";a:8:{s:8:"language";s:2:"eu";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 06:55:23";s:12:"english_name";s:6:"Basque";s:11:"native_name";s:7:"Euskara";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/eu.zip";s:3:"iso";a:2:{i:1;s:2:"eu";i:2;s:3:"eus";}s:7:"strings";a:1:{s:8:"continue";s:8:"Jarraitu";}}s:5:"fa_IR";a:8:{s:8:"language";s:5:"fa_IR";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 15:58:20";s:12:"english_name";s:7:"Persian";s:11:"native_name";s:10:"فارسی";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/fa_IR.zip";s:3:"iso";a:2:{i:1;s:2:"fa";i:2;s:3:"fas";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:2:"fi";a:8:{s:8:"language";s:2:"fi";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 15:17:25";s:12:"english_name";s:7:"Finnish";s:11:"native_name";s:5:"Suomi";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/fi.zip";s:3:"iso";a:2:{i:1;s:2:"fi";i:2;s:3:"fin";}s:7:"strings";a:1:{s:8:"continue";s:5:"Jatka";}}s:5:"fr_FR";a:8:{s:8:"language";s:5:"fr_FR";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 13:04:49";s:12:"english_name";s:15:"French (France)";s:11:"native_name";s:9:"Français";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/fr_FR.zip";s:3:"iso";a:1:{i:1;s:2:"fr";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:2:"gd";a:8:{s:8:"language";s:2:"gd";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 17:37:43";s:12:"english_name";s:15:"Scottish Gaelic";s:11:"native_name";s:9:"Gàidhlig";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/gd.zip";s:3:"iso";a:3:{i:1;s:2:"gd";i:2;s:3:"gla";i:3;s:3:"gla";}s:7:"strings";a:1:{s:8:"continue";s:15:"Lean air adhart";}}s:5:"gl_ES";a:8:{s:8:"language";s:5:"gl_ES";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 01:18:12";s:12:"english_name";s:8:"Galician";s:11:"native_name";s:6:"Galego";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/gl_ES.zip";s:3:"iso";a:2:{i:1;s:2:"gl";i:2;s:3:"glg";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"he_IL";a:8:{s:8:"language";s:5:"he_IL";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 22:57:38";s:12:"english_name";s:6:"Hebrew";s:11:"native_name";s:16:"עִבְרִית";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/he_IL.zip";s:3:"iso";a:1:{i:1;s:2:"he";}s:7:"strings";a:1:{s:8:"continue";s:12:"להמשיך";}}s:2:"hr";a:8:{s:8:"language";s:2:"hr";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-10 18:51:55";s:12:"english_name";s:8:"Croatian";s:11:"native_name";s:8:"Hrvatski";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/hr.zip";s:3:"iso";a:2:{i:1;s:2:"hr";i:2;s:3:"hrv";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:5:"hu_HU";a:8:{s:8:"language";s:5:"hu_HU";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 19:12:04";s:12:"english_name";s:9:"Hungarian";s:11:"native_name";s:6:"Magyar";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/hu_HU.zip";s:3:"iso";a:2:{i:1;s:2:"hu";i:2;s:3:"hun";}s:7:"strings";a:1:{s:8:"continue";s:7:"Tovább";}}s:5:"id_ID";a:8:{s:8:"language";s:5:"id_ID";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 11:26:19";s:12:"english_name";s:10:"Indonesian";s:11:"native_name";s:16:"Bahasa Indonesia";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/id_ID.zip";s:3:"iso";a:2:{i:1;s:2:"id";i:2;s:3:"ind";}s:7:"strings";a:1:{s:8:"continue";s:9:"Lanjutkan";}}s:5:"it_IT";a:8:{s:8:"language";s:5:"it_IT";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 06:53:35";s:12:"english_name";s:7:"Italian";s:11:"native_name";s:8:"Italiano";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/it_IT.zip";s:3:"iso";a:2:{i:1;s:2:"it";i:2;s:3:"ita";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"ja";a:8:{s:8:"language";s:2:"ja";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 14:03:10";s:12:"english_name";s:8:"Japanese";s:11:"native_name";s:9:"日本語";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/ja.zip";s:3:"iso";a:1:{i:1;s:2:"ja";}s:7:"strings";a:1:{s:8:"continue";s:9:"続ける";}}s:5:"ko_KR";a:8:{s:8:"language";s:5:"ko_KR";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 07:54:33";s:12:"english_name";s:6:"Korean";s:11:"native_name";s:9:"한국어";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/ko_KR.zip";s:3:"iso";a:2:{i:1;s:2:"ko";i:2;s:3:"kor";}s:7:"strings";a:1:{s:8:"continue";s:6:"계속";}}s:5:"my_MM";a:8:{s:8:"language";s:5:"my_MM";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-06 08:41:35";s:12:"english_name";s:7:"Burmese";s:11:"native_name";s:15:"ဗမာစာ";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/my_MM.zip";s:3:"iso";a:2:{i:1;s:2:"my";i:2;s:3:"mya";}s:7:"strings";a:1:{s:8:"continue";s:54:"ဆက်လက်လုပ်ေဆာင်ပါ။";}}s:5:"nb_NO";a:8:{s:8:"language";s:5:"nb_NO";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 20:51:26";s:12:"english_name";s:19:"Norwegian (Bokmål)";s:11:"native_name";s:13:"Norsk bokmål";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/nb_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nb";i:2;s:3:"nob";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsett";}}s:5:"nl_NL";a:8:{s:8:"language";s:5:"nl_NL";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 12:26:20";s:12:"english_name";s:5:"Dutch";s:11:"native_name";s:10:"Nederlands";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/nl_NL.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"pl_PL";a:8:{s:8:"language";s:5:"pl_PL";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-11 20:16:43";s:12:"english_name";s:6:"Polish";s:11:"native_name";s:6:"Polski";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/pl_PL.zip";s:3:"iso";a:2:{i:1;s:2:"pl";i:2;s:3:"pol";}s:7:"strings";a:1:{s:8:"continue";s:9:"Kontynuuj";}}s:5:"pt_BR";a:8:{s:8:"language";s:5:"pt_BR";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 13:46:41";s:12:"english_name";s:19:"Portuguese (Brazil)";s:11:"native_name";s:20:"Português do Brasil";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/pt_BR.zip";s:3:"iso";a:2:{i:1;s:2:"pt";i:2;s:3:"por";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_PT";a:8:{s:8:"language";s:5:"pt_PT";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-08 16:26:26";s:12:"english_name";s:21:"Portuguese (Portugal)";s:11:"native_name";s:10:"Português";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/pt_PT.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"ru_RU";a:8:{s:8:"language";s:5:"ru_RU";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 05:25:55";s:12:"english_name";s:7:"Russian";s:11:"native_name";s:14:"Русский";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/ru_RU.zip";s:3:"iso";a:2:{i:1;s:2:"ru";i:2;s:3:"rus";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продолжить";}}s:5:"sk_SK";a:8:{s:8:"language";s:5:"sk_SK";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-07 09:18:42";s:12:"english_name";s:6:"Slovak";s:11:"native_name";s:11:"Slovenčina";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/sk_SK.zip";s:3:"iso";a:2:{i:1;s:2:"sk";i:2;s:3:"slk";}s:7:"strings";a:1:{s:8:"continue";s:12:"Pokračovať";}}s:5:"sr_RS";a:8:{s:8:"language";s:5:"sr_RS";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 15:37:38";s:12:"english_name";s:7:"Serbian";s:11:"native_name";s:23:"Српски језик";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/sr_RS.zip";s:3:"iso";a:2:{i:1;s:2:"sr";i:2;s:3:"srp";}s:7:"strings";a:1:{s:8:"continue";s:14:"Настави";}}s:5:"sv_SE";a:8:{s:8:"language";s:5:"sv_SE";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 11:49:49";s:12:"english_name";s:7:"Swedish";s:11:"native_name";s:7:"Svenska";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/sv_SE.zip";s:3:"iso";a:2:{i:1;s:2:"sv";i:2;s:3:"swe";}s:7:"strings";a:1:{s:8:"continue";s:9:"Fortsätt";}}s:2:"th";a:8:{s:8:"language";s:2:"th";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 12:51:45";s:12:"english_name";s:4:"Thai";s:11:"native_name";s:9:"ไทย";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/th.zip";s:3:"iso";a:2:{i:1;s:2:"th";i:2;s:3:"tha";}s:7:"strings";a:1:{s:8:"continue";s:15:"ต่อไป";}}s:5:"tr_TR";a:8:{s:8:"language";s:5:"tr_TR";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 17:57:59";s:12:"english_name";s:7:"Turkish";s:11:"native_name";s:8:"Türkçe";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/tr_TR.zip";s:3:"iso";a:2:{i:1;s:2:"tr";i:2;s:3:"tur";}s:7:"strings";a:1:{s:8:"continue";s:5:"Devam";}}s:5:"zh_TW";a:8:{s:8:"language";s:5:"zh_TW";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 06:58:31";s:12:"english_name";s:16:"Chinese (Taiwan)";s:11:"native_name";s:12:"繁體中文";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/zh_TW.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"繼續";}}s:5:"zh_CN";a:8:{s:8:"language";s:5:"zh_CN";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 00:41:46";s:12:"english_name";s:15:"Chinese (China)";s:11:"native_name";s:12:"简体中文";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/zh_CN.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"继续";}}}', 'yes'),
(272, 'slideshow-plugin-updated-from-v1-x-x-to-v2-0-1', 'updated', 'yes'),
(273, 'slideshow-plugin-updated-from-v2-to-v2-1-20', 'updated', 'yes'),
(274, 'slideshow-jquery-image-gallery-updated-from-v2-1-20-to-v2-1-22', 'updated', 'yes'),
(275, 'slideshow-jquery-image-gallery-updated-from-v2-1-20-to-v2-1-23', 'updated', 'yes'),
(276, 'slideshow-jquery-image-gallery-updated-from-v2-1-23-to-v2-2-0', 'updated', 'yes'),
(277, 'slideshow-jquery-image-gallery-updated-from-v2-2-0-to-v2-2-8', 'updated', 'yes'),
(278, 'slideshow-jquery-image-gallery-updated-from-v2-2-8-to-v2-2-12', 'updated', 'yes'),
(279, 'slideshow-jquery-image-gallery-updated-from-v2-2-12-to-v2-2-16', 'updated', 'yes'),
(280, 'slideshow-jquery-image-gallery-updated-from-v2-2-16-to-v2-2-17', 'updated', 'yes'),
(281, 'slideshow-jquery-image-gallery-updated-from-v2-2-17-to-v2-2-20', 'updated', 'yes'),
(282, 'slideshow-jquery-image-gallery-plugin-version', '2.2.21', 'yes'),
(283, 'widget_slideshowwidget', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:11:"slideshowId";s:2:"62";}s:12:"_multiwidget";i:1;}', 'yes'),
(284, '_transient_timeout_facebook_locale', '1410598724', 'no'),
(285, '_transient_facebook_locale', 'da_DK', 'no'),
(301, 'facebook_home_features', 'a:0:{}', 'yes'),
(302, 'facebook_archive_features', 'a:0:{}', 'yes'),
(303, 'facebook_post_features', 'a:1:{s:4:"like";b:1;}', 'yes'),
(304, 'facebook_page_features', 'a:0:{}', 'yes'),
(305, 'facebook_attachment_features', 'a:0:{}', 'yes'),
(306, 'facebook_like_button', 'a:2:{s:8:"position";s:6:"bottom";s:5:"width";i:450;}', 'yes'),
(311, 'widget_facebook-like-box', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(314, '_site_transient_timeout_theme_roots', '1410595651', 'yes'),
(315, '_site_transient_theme_roots', 'a:4:{s:14:"talktome_theme";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";s:14:"twentythirteen";s:7:"/themes";s:12:"twentytwelve";s:7:"/themes";}', 'yes'),
(320, '_site_transient_timeout_browser_976b4d7977123e5ae028c8816d1c54ef', '1411198671', 'yes'),
(321, '_site_transient_browser_976b4d7977123e5ae028c8816d1c54ef', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Safari";s:7:"version";s:3:"8.0";s:10:"update_url";s:28:"http://www.apple.com/safari/";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/safari.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/safari.png";s:15:"current_version";s:1:"5";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(322, '_transient_timeout_feed_4d04aa8b6b197066bebcf40d05f55fef', '1410637074', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(323, '_transient_feed_4d04aa8b6b197066bebcf40d05f55fef', '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, 04 Sep 2014 17:05:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"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=4.1-alpha";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"WordPress 4.0 “Benny”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"http://wordpress.org/news/2014/09/benny/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wordpress.org/news/2014/09/benny/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 04 Sep 2014 17:05:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3296";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:370:"Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader Benny Goodman, is available for download or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:23327:"<p>Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader <a href="http://en.wikipedia.org/wiki/Benny_Goodman">Benny Goodman</a>, is available <a href="http://wordpress.org/download/">for download</a> or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience we think you’ll enjoy.</p>\n<div id="v-bUdzKMro-1" class="video-player"><embed id="v-bUdzKMro-1-video" src="http://s0.videopress.com/player.swf?v=1.03&guid=bUdzKMro&isDynamicSeeking=true" type="application/x-shockwave-flash" width="692" height="388" title="Introducing WordPress 4.0 "Benny"" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div>\n<hr />\n<h2 style="text-align: center">Manage your media with style</h2>\n<p><img class="alignnone size-full wp-image-3316" src="http://i0.wp.com/wordpress.org/news/files/2014/09/media.jpg?resize=692%2C406" alt="Media Library" data-recalc-dims="1" />Explore your uploads in a beautiful, endless grid. A new details preview makes viewing and editing any amount of media in sequence a snap.</p>\n<hr />\n<h2 style="text-align: center">Working with embeds has never been easier</h2>\n<div style="width: 632px; height: 445px; " class="wp-video"><!--[if lt IE 9]><script>document.createElement(''video'');</script><![endif]-->\n<video class="wp-video-shortcode" id="video-3296-1" width="632" height="445" autoplay="true" preload="metadata" controls="controls"><source type="video/mp4" src="//s.w.org/images/core/4.0/embed.mp4?_=1" /><source type="video/webm" src="//s.w.org/images/core/4.0/embed.webm?_=1" /><source type="video/ogg" src="//s.w.org/images/core/4.0/embed.ogv?_=1" /><a href="//s.w.org/images/core/4.0/embed.mp4">//s.w.org/images/core/4.0/embed.mp4</a></video></div>\n<p>Paste in a YouTube URL on a new line, and watch it magically become an embedded video. Now try it with a tweet. Oh yeah — embedding has become a visual experience. The editor shows a true preview of your embedded content, saving you time and giving you confidence.</p>\n<p>We’ve expanded the services supported by default, too — you can embed videos from CollegeHumor, playlists from YouTube, and talks from TED. <a href="http://codex.wordpress.org/Embeds">Check out all of the embeds</a> that WordPress supports.</p>\n<hr />\n<h2 style="text-align: center">Focus on your content</h2>\n<div style="width: 632px; height: 356px; " class="wp-video"><video class="wp-video-shortcode" id="video-3296-2" width="632" height="356" autoplay="true" preload="metadata" controls="controls"><source type="video/mp4" src="//s.w.org/images/core/4.0/focus.mp4?_=2" /><source type="video/webm" src="//s.w.org/images/core/4.0/focus.webm?_=2" /><source type="video/ogg" src="//s.w.org/images/core/4.0/focus.ogv?_=2" /><a href="//s.w.org/images/core/4.0/focus.mp4">//s.w.org/images/core/4.0/focus.mp4</a></video></div>\n<p>Writing and editing is smoother and more immersive with an editor that expands to fit your content as you write, and keeps the formatting tools available at all times.</p>\n<hr />\n<h2 style="text-align: center">Finding the right plugin</h2>\n<p><img class="aligncenter size-large wp-image-3309" src="http://i0.wp.com/wordpress.org/news/files/2014/09/add-plugin1.png?resize=692%2C405" alt="Add plugins" data-recalc-dims="1" /></p>\n<p>There are more than 30,000 free and open source plugins in the WordPress plugin directory. WordPress 4.0 makes it easier to find the right one for your needs, with new metrics, improved search, and a more visual browsing experience.</p>\n<hr />\n<h2 style="text-align: center">The Ensemble</h2>\n<p>This release was led by <a href="http://helenhousandi.com">Helen Hou-Sandí</a>, with the help of these fine individuals. There are 275 contributors with props in this release, a new high. Pull up some Benny Goodman on your music service of choice, as a bandleader or in one of his turns as a classical clarinetist, and check out some of their profiles:</p>\n<p><a href="http://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>, <a href="http://profiles.wordpress.org/viper007bond">Alex Mills (Viper007Bond)</a>, <a href="http://profiles.wordpress.org/tellyworth">Alex Shiels</a>, <a href="http://profiles.wordpress.org/alexanderrohmann">Alexander Rohmann</a>, <a href="http://profiles.wordpress.org/aliso">Alison Barrett</a>, <a href="http://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="http://profiles.wordpress.org/amit">Amit Gupta</a>, <a href="http://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="http://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="http://profiles.wordpress.org/andrezrv">Andres Villarreal</a>, <a href="http://profiles.wordpress.org/zamfeer">Andrew Mowe</a>, <a href="http://profiles.wordpress.org/sumobi">Andrew Munro</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/andy">Andy Skelton</a>, <a href="http://profiles.wordpress.org/ankit-k-gupta">Ankit K Gupta</a>, <a href="http://profiles.wordpress.org/atimmer">Anton Timmermans</a>, <a href="http://profiles.wordpress.org/arnee">arnee</a>, <a href="http://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>, <a href="http://profiles.wordpress.org/filosofo">Austin Matzko</a>, <a href="http://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="http://profiles.wordpress.org/kau-boy">Bernhard Kau</a>, <a href="http://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="http://profiles.wordpress.org/bradyvercher">Brady Vercher</a>, <a href="http://profiles.wordpress.org/bramd">bramd</a>, <a href="http://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="http://profiles.wordpress.org/brianlayman">Brian Layman</a>, <a href="http://profiles.wordpress.org/rzen">Brian Richards</a>, <a href="http://profiles.wordpress.org/camdensegal">Camden Segal</a>, <a href="http://profiles.wordpress.org/sixhours">Caroline Moore</a>, <a href="http://profiles.wordpress.org/mackensen">Charles Fulton</a>, <a href="http://profiles.wordpress.org/chouby">Chouby</a>, <a href="http://profiles.wordpress.org/chrico">ChriCo</a>, <a href="http://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="http://profiles.wordpress.org/chrisl27">chrisl27</a>, <a href="http://profiles.wordpress.org/caxelsson">Christian Axelsson</a>, <a href="http://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="http://profiles.wordpress.org/boda1982">Christopher Spires</a>, <a href="http://profiles.wordpress.org/clifgriffin">Clifton Griffin</a>, <a href="http://profiles.wordpress.org/jupiterwise">Corey McKrill</a>, <a href="http://profiles.wordpress.org/corphi">Corphi</a>, <a href="http://profiles.wordpress.org/extendwings">Daisuke Takahashi</a>, <a href="http://profiles.wordpress.org/ghost1227">Dan Griffiths</a>, <a href="http://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="http://profiles.wordpress.org/danielhuesken">Daniel Husken</a>, <a href="http://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>, <a href="http://profiles.wordpress.org/dannydehaan">Danny de Haan</a>, <a href="http://profiles.wordpress.org/dkotter">Darin Kotter</a>, <a href="http://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="http://profiles.wordpress.org/dllh">Daryl L. L. Houston (dllh)</a>, <a href="http://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>, <a href="http://profiles.wordpress.org/dlh">David Herrera</a>, <a href="http://profiles.wordpress.org/dnaber-de">David Naber</a>, <a href="http://profiles.wordpress.org/davidthemachine">DavidTheMachine</a>, <a href="http://profiles.wordpress.org/debaat">DeBAAT</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/donncha">Donncha O Caoimh</a>, <a href="http://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="http://profiles.wordpress.org/dustyn">Dustyn Doyle</a>, <a href="http://profiles.wordpress.org/eddiemoya">Eddie Moya</a>, <a href="http://profiles.wordpress.org/oso96_2000">Eduardo Reveles</a>, <a href="http://profiles.wordpress.org/edwin-at-studiojoyocom">Edwin Siebel</a>, <a href="http://profiles.wordpress.org/ehg">ehg</a>, <a href="http://profiles.wordpress.org/tmeister">Enrique Chavez</a>, <a href="http://profiles.wordpress.org/erayalakese">erayalakese</a>, <a href="http://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="http://profiles.wordpress.org/ebinnion">Eric Binnion</a>, <a href="http://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="http://profiles.wordpress.org/ejdanderson">Evan Anderson</a>, <a href="http://profiles.wordpress.org/eherman24">Evan Herman</a>, <a href="http://profiles.wordpress.org/fab1en">Fabien Quatravaux</a>, <a href="http://profiles.wordpress.org/fahmiadib">Fahmi Adib</a>, <a href="http://profiles.wordpress.org/feedmeastraycat">feedmeastraycat</a>, <a href="http://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="http://profiles.wordpress.org/garhdez">garhdez</a>, <a href="http://profiles.wordpress.org/garyc40">Gary Cao</a>, <a href="http://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="http://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="http://profiles.wordpress.org/garza">garza</a>, <a href="http://profiles.wordpress.org/gauravmittal1995">gauravmittal1995</a>, <a href="http://profiles.wordpress.org/gavra">Gavrisimo</a>, <a href="http://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="http://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>, <a href="http://profiles.wordpress.org/vancoder">Grant Mangham</a>, <a href="http://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="http://profiles.wordpress.org/bordoni">Gustavo Bordoni</a>, <a href="http://profiles.wordpress.org/harrym">harrym</a>, <a href="http://profiles.wordpress.org/hebbet">hebbet</a>, <a href="http://profiles.wordpress.org/hinnerk">Hinnerk Altenburg</a>, <a href="http://profiles.wordpress.org/hlashbrooke">Hugh Lashbrooke</a>, <a href="http://profiles.wordpress.org/iljoja">iljoja</a>, <a href="http://profiles.wordpress.org/imath">imath</a>, <a href="http://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="http://profiles.wordpress.org/issuu">issuu</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/jackreichert">Jack Reichert</a>, <a href="http://profiles.wordpress.org/jacobdubail">Jacob Dubail</a>, <a href="http://profiles.wordpress.org/janhenkg">JanHenkG</a>, <a href="http://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="http://profiles.wordpress.org/jwenerd">Jared Wenerd</a>, <a href="http://profiles.wordpress.org/jaza613">Jaza613</a>, <a href="http://profiles.wordpress.org/jeffstieler">Jeff Stieler</a>, <a href="http://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="http://profiles.wordpress.org/jpry">Jeremy Pry</a>, <a href="http://profiles.wordpress.org/slimndap">Jeroen Schmit</a>, <a href="http://profiles.wordpress.org/jerrysarcastic">Jerry Bates (jerrysarcastic)</a>, <a href="http://profiles.wordpress.org/jesin">Jesin A</a>, <a href="http://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="http://profiles.wordpress.org/engelen">Jesper van Engelen</a>, <a href="http://profiles.wordpress.org/jesper800">Jesper van Engelen</a>, <a href="http://profiles.wordpress.org/jessepollak">Jesse Pollak</a>, <a href="http://profiles.wordpress.org/jgadbois">jgadbois</a>, <a href="http://profiles.wordpress.org/jartes">Joan Artes</a>, <a href="http://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="http://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="http://profiles.wordpress.org/jkudish">Joey Kudish</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="http://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="http://profiles.wordpress.org/johnzanussi">John Zanussi</a>, <a href="http://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="http://profiles.wordpress.org/jonnyauk">jonnyauk</a>, <a href="http://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="http://profiles.wordpress.org/softmodeling">Jordi Cabot</a>, <a href="http://profiles.wordpress.org/jjeaton">Josh Eaton</a>, <a href="http://profiles.wordpress.org/tai">JOTAKI Taisuke</a>, <a href="http://profiles.wordpress.org/juliobox">Julio Potier</a>, <a href="http://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="http://profiles.wordpress.org/jtsternberg">Justin Sternberg</a>, <a href="http://profiles.wordpress.org/greenshady">Justin Tadlock</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/ixkaito">Kaito</a>, <a href="http://profiles.wordpress.org/kapeels">kapeels</a>, <a href="http://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="http://profiles.wordpress.org/kevinlangleyjr">Kevin Langley</a>, <a href="http://profiles.wordpress.org/kworthington">Kevin Worthington</a>, <a href="http://profiles.wordpress.org/kpdesign">Kim Parsell</a>, <a href="http://profiles.wordpress.org/kwight">Kirk Wight</a>, <a href="http://profiles.wordpress.org/kitchin">kitchin</a>, <a href="http://profiles.wordpress.org/knutsp">Knut Sparhell</a>, <a href="http://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="http://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="http://profiles.wordpress.org/krogsgard">krogsgard</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</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/lritter">lritter</a>, <a href="http://profiles.wordpress.org/lukecarbis">Luke Carbis</a>, <a href="http://profiles.wordpress.org/lgedeon">Luke Gedeon</a>, <a href="http://profiles.wordpress.org/m_i_n">m_i_n</a>, <a href="http://profiles.wordpress.org/funkatronic">Manny Fleurmond</a>, <a href="http://profiles.wordpress.org/targz-1">Manuel Schmalstieg</a>, <a href="http://profiles.wordpress.org/clorith">Marius Jensen (Clorith)</a>, <a href="http://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="http://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="http://profiles.wordpress.org/mjbanks">Matt Banks</a>, <a href="http://profiles.wordpress.org/sivel">Matt Martz</a>, <a href="http://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="http://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>, <a href="http://profiles.wordpress.org/mboynes">Matthew Boynes</a>, <a href="http://profiles.wordpress.org/mdbitz">Matthew Denton</a>, <a href="http://profiles.wordpress.org/mattheweppelsheimer">Matthew Eppelsheimer</a>, <a href="http://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="http://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="http://profiles.wordpress.org/meekyhwang">meekyhwang</a>, <a href="http://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="http://profiles.wordpress.org/midxcat">mi_cat</a>, <a href="http://profiles.wordpress.org/mdawaffe">Michael Adams (mdawaffe)</a>, <a href="http://profiles.wordpress.org/michalzuber">michalzuber</a>, <a href="http://profiles.wordpress.org/mauteri">Mike Auteri</a>, <a href="http://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="http://profiles.wordpress.org/mikejolley">Mike Jolley</a>, <a href="http://profiles.wordpress.org/mikelittle">Mike Little</a>, <a href="http://profiles.wordpress.org/mikemanger">Mike Manger</a>, <a href="http://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="http://profiles.wordpress.org/mikeyarce">Mikey Arce</a>, <a href="http://profiles.wordpress.org/dimadin">Milan Dinic</a>, <a href="http://profiles.wordpress.org/mnelson4">mnelson4</a>, <a href="http://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="http://profiles.wordpress.org/usermrpapa">Mr Papa</a>, <a href="http://profiles.wordpress.org/mrmist">mrmist</a>, <a href="http://profiles.wordpress.org/m_uysl">Mustafa Uysal</a>, <a href="http://profiles.wordpress.org/muvimotv">MuViMoTV</a>, <a href="http://profiles.wordpress.org/nabil_kadimi">nabil_kadimi</a>, <a href="http://profiles.wordpress.org/namibia">Namibia</a>, <a href="http://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>, <a href="http://profiles.wordpress.org/nd987">nd987</a>, <a href="http://profiles.wordpress.org/neil_pie">Neil Pie</a>, <a href="http://profiles.wordpress.org/niallkennedy">Niall Kennedy</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/schoenwaldnils">Nils Schonwald</a>, <a href="http://profiles.wordpress.org/ninos-ego">Ninos</a>, <a href="http://profiles.wordpress.org/nvwd">Nowell VanHoesen</a>, <a href="http://profiles.wordpress.org/compute">Patrick Hesselberg</a>, <a href="http://profiles.wordpress.org/pbearne">Paul Bearne</a>, <a href="http://profiles.wordpress.org/pdclark">Paul Clark</a>, <a href="http://profiles.wordpress.org/paulschreiber">Paul Schreiber</a>, <a href="http://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="http://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="http://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="http://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="http://profiles.wordpress.org/philipjohn">Philip John</a>, <a href="http://profiles.wordpress.org/senlin">Piet</a>, <a href="http://profiles.wordpress.org/psoluch">Piotr Soluch</a>, <a href="http://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="http://profiles.wordpress.org/purzlbaum">purzlbaum</a>, <a href="http://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="http://profiles.wordpress.org/rclations">RC Lations</a>, <a href="http://profiles.wordpress.org/iamfriendly">Richard Tape</a>, <a href="http://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>, <a href="http://profiles.wordpress.org/rob1n">rob1n</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/harmr">RobertHarm</a>, <a href="http://profiles.wordpress.org/rohan013">Rohan Rawat</a>, <a href="http://profiles.wordpress.org/rhurling">Rouven Hurling</a>, <a href="http://profiles.wordpress.org/ruudjoyo">Ruud Laan</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/sammybeats">Sam Brodie</a>, <a href="http://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>, <a href="http://profiles.wordpress.org/sathishn">Sathish Nagarajan</a>, <a href="http://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/greglone">ScreenfeedFr</a>, <a href="http://profiles.wordpress.org/scribu">scribu</a>, <a href="http://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="http://profiles.wordpress.org/nessworthy">Sean Nessworthy</a>, <a href="http://profiles.wordpress.org/sergejmueller">Sergej Muller</a>, <a href="http://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="http://profiles.wordpress.org/shanebp">shanebp</a>, <a href="http://profiles.wordpress.org/sharonaustin">Sharon Austin</a>, <a href="http://profiles.wordpress.org/shaunandrews">Shaun Andrews</a>, <a href="http://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="http://profiles.wordpress.org/simonp303">simonp303</a>, <a href="http://profiles.wordpress.org/slobodanmanic">Slobodan Manic</a>, <a href="http://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="http://profiles.wordpress.org/sphoid">sphoid</a>, <a href="http://profiles.wordpress.org/stephdau">Stephane Daury</a>, <a href="http://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="http://profiles.wordpress.org/stompweb">Steven Jones</a>, <a href="http://profiles.wordpress.org/strangerstudios">strangerstudios</a>, <a href="http://profiles.wordpress.org/5um17">Sumit Singh</a>, <a href="http://profiles.wordpress.org/t4k1s">t4k1s</a>, <a href="http://profiles.wordpress.org/iamtakashi">Takashi Irie</a>, <a href="http://profiles.wordpress.org/taylorde">Taylor Dewey</a>, <a href="http://profiles.wordpress.org/thomasvanderbeek">Thomas van der Beek</a>, <a href="http://profiles.wordpress.org/tillkruess">Till Kruss</a>, <a href="http://profiles.wordpress.org/codenameeli">Tim ''Eli'' Dalbey</a>, <a href="http://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="http://profiles.wordpress.org/tjnowell">Tom J Nowell</a>, <a href="http://profiles.wordpress.org/willmot">Tom Willmot</a>, <a href="http://profiles.wordpress.org/topher1kenobe">Topher</a>, <a href="http://profiles.wordpress.org/torresga">torresga</a>, <a href="http://profiles.wordpress.org/liljimmi">Tracy Levesque</a>, <a href="http://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="http://profiles.wordpress.org/treyhunner">treyhunner</a>, <a href="http://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>, <a href="http://profiles.wordpress.org/vinod-dalvi">Vinod Dalvi</a>, <a href="http://profiles.wordpress.org/vlajos">vlajos</a>, <a href="http://profiles.wordpress.org/voldemortensen">voldemortensen</a>, <a href="http://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="http://profiles.wordpress.org/winterdev">winterDev</a>, <a href="http://profiles.wordpress.org/wojtekszkutnik">Wojtek Szkutnik</a>, <a href="http://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="http://profiles.wordpress.org/katzwebdesign">Zack Katz</a>, <a href="http://profiles.wordpress.org/tollmanz">Zack Tollman</a>, and <a href="http://profiles.wordpress.org/zoerooney">Zoe Rooney</a>. Also thanks to <a href="http://michaelpick.wordpress.com/">Michael Pick</a> for producing the release video, and Helen with <a href="http://adriansandi.com">Adrián Sandí</a> for the music.</p>\n<p>If you want to follow along or help out, check out <a href="http://make.wordpress.org/">Make WordPress</a> and our <a href="http://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.1!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:45:"http://wordpress.org/news/2014/09/benny/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:31:"WordPress 4.0 Release Candidate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Aug 2014 12:20:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3287";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:321:"The first release candidate for WordPress 4.0 is now available! In RC 1, we’ve made refinements to what we’ve been working on for this release. Check out the Beta 1 announcement post for more details on those features. We hope to ship WordPress 4.0 next week, but we need your help to get there. If you […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2127:"<p>The first release candidate for WordPress 4.0 is now available!</p>\n<p>In RC 1, we’ve made refinements to what we’ve been working on for this release. Check out the <a href="http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">Beta 1 announcement post</a> for more details on those features. We hope to ship WordPress 4.0 <em>next week</em>, but we need your help to get there. If you haven’t tested 4.0 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href="http://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href="http://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p>To test WordPress 4.0 RC1, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-4.0-RC1.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.0, visit the awesome About screen in your dashboard (<strong><img src="http://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692" alt="" width="16" height="16" /> → About</strong> in the toolbar).</p>\n<p><strong>Developers,</strong> please test your plugins and themes against WordPress 4.0 and update your plugin’s <em>Tested up to</em> version in the readme to 4.0 before next week. If you find compatibility problems, please be sure to post any issues to the support forums so we can figure those out before the final release. You also may want to <a href="http://make.wordpress.org/core/2014/08/21/introducing-plugin-icons-in-the-plugin-installer/">give your plugin an icon</a>, which we launched last week and will appear in the dashboard along with banners.</p>\n<p><em>It is almost time</em><br />\n<em> For the 4.0 release</em><br />\n<em> And its awesomeness</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:71:"http://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.0 Beta 4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/08/wordpress-4-0-beta-4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2014/08/wordpress-4-0-beta-4/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 15 Aug 2014 05:06:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3280";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:353:"The fourth and likely final beta for WordPress 4.0 is now available. We’ve made more than 250 changes in the past month, including: Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes. Better handling of small screens in the media library modals. A separate bulk selection mode […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1999:"<p>The fourth and likely final beta for WordPress 4.0 is now available. We’ve made <a href="https://core.trac.wordpress.org/log?rev=29496&stop_rev=29229&limit=300">more than 250 changes</a> in the past month, including:</p>\n<ul>\n<li>Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes.</li>\n<li>Better handling of small screens in the media library modals.</li>\n<li>A separate bulk selection mode for the media library grid view.</li>\n<li>Improvements to the installation language selector.</li>\n<li>Visual tweaks to plugin details and customizer panels.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for a release this month, which means the next week will be critical for identifying and squashing bugs. If you’re just joining us, please see <a href="http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 4.0 yet, now is the time — and be sure to update the “tested up to” version for your plugins so they’re listed as compatible with 4.0.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the <a href="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-4.0-beta4.zip">download the beta here</a> (zip).</p>\n<p><em>We are working hard</em><br />\n<em>To finish up 4.0<br />\n</em><em>Will you help us too?</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2014/08/wordpress-4-0-beta-4/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"WordPress 3.9.2 Security Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2014/08/wordpress-3-9-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/news/2014/08/wordpress-3-9-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 06 Aug 2014 19:04:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3269";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:377:"WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately. This release fixes a possible denial of service issue in PHP’s XML processing, reported by Nir Goldshlager of the Salesforce.com Product Security Team. It was fixed by Michael Adams and Andrew Nacin of the WordPress […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2352:"<p>WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately.</p>\n<p>This release fixes a possible denial of service issue in PHP’s XML processing, reported by <a href="https://twitter.com/nirgoldshlager">Nir Goldshlager</a> of the Salesforce.com Product Security Team. It was fixed by Michael Adams and Andrew Nacin of the WordPress security team and David Rothstein of the <a href="https://www.drupal.org/SA-CORE-2014-004">Drupal security team</a>. This is the first time our two projects have coordinated joint security releases.</p>\n<p>WordPress 3.9.2 also contains other security changes:</p>\n<ul>\n<li>Fixes a possible but unlikely code execution when processing widgets (WordPress is not affected by default), discovered by <a href="http://www.buayacorp.com/">Alex Concha</a> of the WordPress security team.</li>\n<li>Prevents information disclosure via XML entity attacks in the external GetID3 library, reported by <a href="http://onsec.ru/en/">Ivan Novikov</a> of ONSec.</li>\n<li>Adds protections against brute attacks against CSRF tokens, reported by <a href="http://systemoverlord.com/">David Tomaschik</a> of the Google Security Team.</li>\n<li>Contains some additional security hardening, like preventing cross-site scripting that could be triggered only by administrators.</li>\n</ul>\n<p>We appreciated responsible disclosure of these issues directly to our security team. For more information, see the <a href="http://codex.wordpress.org/Version_3.9.2">release notes</a> or consult the <a href="https://core.trac.wordpress.org/log/branches/3.9?stop_rev=29383&rev=29411">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 3.9.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.9.2 within 12 hours. (If you are still on WordPress 3.8.3 or 3.7.3, you will also be updated to 3.8.4 or 3.7.4. We don’t support older versions, so please update to 3.9.2 for the latest and greatest.)</p>\n<p>Already testing WordPress 4.0? The third beta is <a href="https://wordpress.org/wordpress-4.0-beta3.zip">now available</a> (zip) and it contains these security fixes.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/08/wordpress-3-9-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.0 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/07/wordpress-4-0-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/07/wordpress-4-0-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:"Fri, 18 Jul 2014 21:15:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a: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=3261";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:374:"WordPress 4.0 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). For more of what’s new in version 4.0, check out […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1738:"<p>WordPress 4.0 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, 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-4.0-beta2.zip">download the beta here</a> (zip).</p>\n<p>For more of what’s new in version 4.0, <a href="http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Further refinements for the the plugin installation and media library experiences.</li>\n<li>Updated TinyMCE, which now includes better indentation for lists and the restoration of the color picker.</li>\n<li>Cookies are now tied to a session internally, so if you have trouble logging in, <a href="https://core.trac.wordpress.org/ticket/20276">#20276</a> may be the culprit.</li>\n<li>Various bug fixes (there were <a href="https://core.trac.wordpress.org/log?rev=29228&stop_rev=29060&limit=200">nearly 170 changes</a> since last week).</li>\n</ul>\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 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/tickets/major">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.0">everything we’ve fixed</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2014/07/wordpress-4-0-beta-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: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:20:"WordPress 4.0 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Jul 2014 10:17:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3248";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"WordPress 4.0 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:4025:"<p>WordPress 4.0 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the <a href="http://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.0-beta1.zip">download the beta here</a> (zip).</p>\n<p>4.0 is due out next month, but to get there, we need your help testing what we’ve been working on:</p>\n<ul>\n<li><strong>Previews of <a href="http://codex.wordpress.org/Embeds">embedding via URLs</a></strong> in the visual editor and the “Insert from URL” tab in the media modal. Try pasting a URL (such as a <a href="http://wordpress.tv/">WordPress.tv</a> or YouTube video) onto its own line in the visual editor. (<a href="https://core.trac.wordpress.org/ticket/28195">#28195</a>, <a href="https://core.trac.wordpress.org/ticket/15490">#15490</a>)</li>\n<li>The <strong>Media Library</strong> now has a “grid” view in addition to the existing list view. Clicking on an item takes you into a modal where you can see a larger preview and edit information about that attachment, and you can navigate between items right from the modal without closing it. (<a href="https://core.trac.wordpress.org/ticket/24716">#24716</a>)</li>\n<li>We’re freshening up the <strong>plugin install experience</strong>. You’ll see some early visual changes as well as more information when searching for plugins and viewing details. (<a href="https://core.trac.wordpress.org/ticket/28785">#28785</a>, <a href="https://core.trac.wordpress.org/ticket/27440">#27440</a>)</li>\n<li><strong>Selecting a language</strong> when you run the installation process. (<a href="https://core.trac.wordpress.org/ticket/28577">#28577</a>)</li>\n<li>The <strong>editor</strong> intelligently resizes and its top and bottom bars pin when needed. Browsers don’t like to agree on where to put things like cursors, so if you find a bug here, please also let us know your browser and operating system. (<a href="https://core.trac.wordpress.org/ticket/28328">#28328</a>)</li>\n<li>We’ve made some improvements to how your keyboard and cursor interact with <strong>TinyMCE views</strong> such as the gallery preview. Much like the editor resizing and scrolling improvements, knowing about your setup is particularly important for bug reports here. (<a href="https://core.trac.wordpress.org/ticket/28595">#28595</a>)</li>\n<li><strong>Widgets in the Customizer</strong> are now loaded in a separate panel. (<a href="https://core.trac.wordpress.org/ticket/27406">#27406</a>)</li>\n<li>We’ve also made some changes to some <strong>formatting</strong> functions, so if you see quotes curling in the wrong direction, please file a bug report.</li>\n</ul>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.0">everything we’ve fixed</a> so far.</p>\n<p><strong>Developers:</strong> Never fear, we haven’t forgotten you. There’s plenty for you, too – more on that in upcoming posts. In the meantime, check out the <a href="http://make.wordpress.org/core/2014/07/08/customizer-improvements-in-4-0/#customizer-panels">API for panels in the Customizer</a>.</p>\n<p>Happy testing!</p>\n<p><em>Plugins, editor</em><br />\n<em>Media, things in between</em><br />\n<em>Please help look for bugs</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"WordPress 3.9.1 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2014/05/wordpress-3-9-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/news/2014/05/wordpress-3-9-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 08 May 2014 18:40:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3241";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:385:"After three weeks and more than 9 million downloads of WordPress 3.9, we’re pleased to announce that WordPress 3.9.1 is now available. This maintenance release fixes 34 bugs in 3.9, including numerous fixes for multisite networks, customizing widgets while previewing themes, and the updated visual editor. We’ve also made some improvements to the new audio/video […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3077:"<p>After three weeks and more than 9 million downloads of <a title="WordPress 3.9 “Smith”" href="http://wordpress.org/news/2014/04/smith/">WordPress 3.9</a>, we’re pleased to announce that WordPress 3.9.1 is now available.</p>\n<p>This maintenance release fixes 34 bugs in 3.9, including numerous fixes for multisite networks, customizing widgets while previewing themes, and the updated visual editor. We’ve also made some improvements to the new audio/video playlists feature and made some adjustments to improve performance. For a full list of changes, consult the <a href="https://core.trac.wordpress.org/query?milestone=3.9.1">list of tickets</a> and the <a href="https://core.trac.wordpress.org/log/branches/3.9?rev=28353&stop_rev=28154">changelog</a>.</p>\n<p>If you are one of the millions already running WordPress 3.9, we’ve started rolling out automatic background updates for 3.9.1. For sites <a href="http://wordpress.org/plugins/background-update-tester/">that support them</a>, of course.</p>\n<p><a href="http://wordpress.org/download/">Download WordPress 3.9.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Thanks to all of these fine individuals for contributing to 3.9.1: <a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="http://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="http://profiles.wordpress.org/rzen">Brian Richards</a>, <a href="http://profiles.wordpress.org/ehg">Chris Blower</a>, <a href="http://profiles.wordpress.org/jupiterwise">Corey McKrill</a>, <a href="http://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="http://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="http://profiles.wordpress.org/feedmeastraycat">feedmeastraycat</a>, <a href="http://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="http://profiles.wordpress.org/helen">Helen Hou-Sandi</a>, <a href="http://profiles.wordpress.org/imath">imath</a>, <a href="http://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="http://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="http://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="http://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="http://profiles.wordpress.org/m_i_n">m_i_n</a>, <a href="http://profiles.wordpress.org/clorith">Marius Jensen</a>, <a href="http://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="http://profiles.wordpress.org/dimadin">Milan Dinić</a>, <a href="http://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="http://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/SergeyBiryukov">Sergey Biryukov</a>, and <a href="http://profiles.wordpress.org/westonruter">Weston Ruter</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/05/wordpress-3-9-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"WordPress 3.9 “Smith”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"http://wordpress.org/news/2014/04/smith/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wordpress.org/news/2014/04/smith/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 16 Apr 2014 18:33:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3154";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:411:"Version 3.9 of WordPress, named “Smith” in honor of jazz organist Jimmy Smith, is available for download or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love. A smoother media editing experience Improved visual editing The updated visual editor has improved speed, accessibility, and mobile support. You can paste into the […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:23212:"<p>Version 3.9 of WordPress, named “Smith” in honor of jazz organist <a href="http://en.wikipedia.org/wiki/Jimmy_Smith_(musician)">Jimmy Smith</a>, is available <a href="http://wordpress.org/download/">for download</a> or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love.</p>\n<embed src="//v0.wordpress.com/player.swf?v=1.03" type="application/x-shockwave-flash" width="640" height="360" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=sAiXhCfV&isDynamicSeeking=true" title=""></embed>\n<h2 class="about-headline-callout" style="text-align: center">A smoother media editing experience</h2>\n<div>\n<p><img class="alignright wp-image-3168" src="//wordpress.org/news/files/2014/04/editor1-300x233.jpg" alt="editor" width="228" height="177" /></p>\n<h3>Improved visual editing</h3>\n<p>The updated visual editor has improved speed, accessibility, and mobile support. You can paste into the visual editor from your word processor without wasting time to clean up messy styling. (Yeah, we’re talking about you, Microsoft Word.)</p>\n</div>\n<div style="clear: both"></div>\n<div>\n<p><img class="alignright wp-image-3170" src="//wordpress.org/news/files/2014/04/image1-300x233.jpg" alt="image" width="228" height="178" /></p>\n<h3>Edit images easily</h3>\n<p>With quicker access to crop and rotation tools, it’s now much easier to edit your images while editing posts. You can also scale images directly in the editor to find just the right fit.</p>\n</div>\n<div style="clear: both"></div>\n<div>\n<p><img class="alignright wp-image-3187" src="//wordpress.org/news/files/2014/04/dragdrop1-300x233.jpg" alt="dragdrop" width="228" height="178" /></p>\n<h3>Drag and drop your images</h3>\n<p>Uploading your images is easier than ever. Just grab them from your desktop and drop them in the editor.</p>\n</div>\n<div style="clear: both"></div>\n<hr />\n<h2 style="text-align: center">Gallery previews</h2>\n<p><img class="aligncenter size-full wp-image-3169" src="//wordpress.org/news/files/2014/04/gallery1.jpg" alt="gallery" width="980" height="550" /></p>\n<p>Galleries display a beautiful grid of images right in the editor, just like they do in your published post.</p>\n<hr />\n<h2 style="text-align: center">Do more with audio and video</h2>\n\n<a href=''http://wordpress.org/news/files/2014/04/AintMisbehavin.mp3''>Ain''t Misbehavin''</a>\n<a href=''http://wordpress.org/news/files/2014/04/DavenportBlues.mp3''>Davenport Blues</a>\n<a href=''http://wordpress.org/news/files/2014/04/JellyRollMorton-BuddyBoldensBlues.mp3''>Buddy Bolden''s Blues</a>\n<a href=''http://wordpress.org/news/files/2014/04/Johnny_Hodges_Orchestra-Squaty_Roo-1941.mp3''>Squaty Roo</a>\n<a href=''http://wordpress.org/news/files/2014/04/Louisiana_Five-Dixie_Blues-1919.mp3''>Dixie Blues</a>\n<a href=''http://wordpress.org/news/files/2014/04/WolverineBlues.mp3''>Wolverine Blues</a>\n\n<p>Images have galleries; now we’ve added simple audio and video playlists, so you can showcase your music and clips.</p>\n<hr />\n<h2 style="text-align: center">Live widget and header previews</h2>\n<div style="width: 692px; height: 448px; " class="wp-video"><video class="wp-video-shortcode" id="video-3154-3" width="692" height="448" preload="metadata" controls="controls"><source type="video/mp4" src="//wordpress.org/news/files/2014/04/widgets.mp4?_=3" /><a href="//wordpress.org/news/files/2014/04/widgets.mp4">//wordpress.org/news/files/2014/04/widgets.mp4</a></video></div>\n<p>Add, edit, and rearrange your site’s widgets right in the theme customizer. No “save and surprise” — preview your changes live and only save them when you’re ready.</p>\n<p>The improved header image tool also lets you upload, crop, and manage headers while customizing your theme.</p>\n<hr />\n<h2 style="text-align: center">Stunning new theme browser</h2>\n<p><img class="aligncenter size-full wp-image-3172" src="//wordpress.org/news/files/2014/04/theme1.jpg" alt="theme" width="1003" height="558" /><br />\nLooking for a new theme should be easy and fun. Lose yourself in the boundless supply of free WordPress.org themes with the beautiful new theme browser.</p>\n<hr />\n<h2 style="text-align: center">The Crew</h2>\n<p>This release was led by <a href="http://nacin.com/">Andrew Nacin</a> and <a href="http://www.getsource.net/">Mike Schroder</a>, with the help of these fine individuals. There are 267 contributors with props in this release, a new high:</p>\n<p><a href="http://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/kawauso">Adam Harley</a>, <a href="http://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>, <a href="http://profiles.wordpress.org/adelval">adelval</a>, <a href="http://profiles.wordpress.org/ajay">Ajay</a>, <a href="http://profiles.wordpress.org/akeda">Akeda Bagus</a>, <a href="http://profiles.wordpress.org/xknown">Alex Concha</a>, <a href="http://profiles.wordpress.org/tellyworth">Alex Shiels</a>, <a href="http://profiles.wordpress.org/aliso">Alison Barrett</a>, <a href="http://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="http://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="http://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="http://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="http://profiles.wordpress.org/norcross">Andrew Norcross</a>, <a href="http://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="http://profiles.wordpress.org/rarst">Andrey "Rarst" Savchenko</a>, <a href="http://profiles.wordpress.org/andykeith">Andy Keith</a>, <a href="http://profiles.wordpress.org/andy">Andy Skelton</a>, <a href="http://profiles.wordpress.org/atimmer">Anton Timmermans</a>, <a href="http://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>, <a href="http://profiles.wordpress.org/barry">Barry</a>, <a href="http://profiles.wordpress.org/toszcze">Bartosz Romanowski</a>, <a href="http://profiles.wordpress.org/bassgang">bassgang</a>, <a href="http://profiles.wordpress.org/bcworkz">bcworkz</a>, <a href="http://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="http://profiles.wordpress.org/neoxx">Bernhard Riedl</a>, <a href="http://profiles.wordpress.org/bigdawggi">bigdawggi</a>, <a href="http://profiles.wordpress.org/bobbravo2">Bob Gregor</a>, <a href="http://profiles.wordpress.org/bobbingwide">bobbingwide</a>, <a href="http://profiles.wordpress.org/bradt">Brad Touesnard</a>, <a href="http://profiles.wordpress.org/bradparbs">bradparbs</a>, <a href="http://profiles.wordpress.org/bramd">bramd</a>, <a href="http://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="http://profiles.wordpress.org/brasofilo">brasofilo</a>, <a href="http://profiles.wordpress.org/bravokeyl">bravokeyl</a>, <a href="http://profiles.wordpress.org/bpetty">Bryan Petty</a>, <a href="http://profiles.wordpress.org/cgaffga">cgaffga</a>, <a href="http://profiles.wordpress.org/chiragswadia">Chirag Swadia</a>, <a href="http://profiles.wordpress.org/chouby">Chouby</a>, <a href="http://profiles.wordpress.org/ehg">Chris Blower</a>, <a href="http://profiles.wordpress.org/cmmarslender">Chris Marslender</a>, <a href="http://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="http://profiles.wordpress.org/chrisscott">Chris Scott</a>, <a href="http://profiles.wordpress.org/chriseverson">chriseverson</a>, <a href="http://profiles.wordpress.org/chrisguitarguy">chrisguitarguy</a>, <a href="http://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="http://profiles.wordpress.org/ciantic">ciantic</a>, <a href="http://profiles.wordpress.org/antorome">Comparativa de Bancos</a>, <a href="http://profiles.wordpress.org/cojennin">Connor Jennings</a>, <a href="http://profiles.wordpress.org/corvannoorloos">Cor van Noorloos</a>, <a href="http://profiles.wordpress.org/corphi">Corphi</a>, <a href="http://profiles.wordpress.org/cramdesign">cramdesign</a>, <a href="http://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="http://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>, <a href="http://profiles.wordpress.org/dannydehaan">Danny de Haan</a>, <a href="http://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="http://profiles.wordpress.org/eightface">Dave Kellam (eightface)</a>, <a href="http://profiles.wordpress.org/dpe415">DaveE</a>, <a href="http://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>, <a href="http://profiles.wordpress.org/davidanderson">David Anderson</a>, <a href="http://profiles.wordpress.org/davidmarichal">David Marichal</a>, <a href="http://profiles.wordpress.org/denis-de-bernardy">Denis de Bernardy</a>, <a href="http://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="http://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="http://profiles.wordpress.org/dougwollison">Doug Wollison</a>, <a href="http://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="http://profiles.wordpress.org/drprotocols">DrProtocols</a>, <a href="http://profiles.wordpress.org/dustyf">Dustin Filippini</a>, <a href="http://profiles.wordpress.org/eatingrules">eatingrules</a>, <a href="http://profiles.wordpress.org/plocha">edik</a>, <a href="http://profiles.wordpress.org/oso96_2000">Eduardo Reveles</a>, <a href="http://profiles.wordpress.org/eliorivero">Elio Rivero</a>, <a href="http://profiles.wordpress.org/enej">enej</a>, <a href="http://profiles.wordpress.org/ericlewis">Eric Lewis</a>, <a href="http://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="http://profiles.wordpress.org/evarlese">Erica Varlese</a>, <a href="http://profiles.wordpress.org/ethitter">Erick Hitter</a>, <a href="http://profiles.wordpress.org/ejdanderson">Evan Anderson</a>, <a href="http://profiles.wordpress.org/fahmiadib">Fahmi Adib</a>, <a href="http://profiles.wordpress.org/fboender">fboender</a>, <a href="http://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="http://profiles.wordpress.org/garyc40">Gary Cao</a>, <a href="http://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="http://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="http://profiles.wordpress.org/genkisan">genkisan</a>, <a href="http://profiles.wordpress.org/soulseekah">Gennady Kovshenin</a>, <a href="http://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="http://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>, <a href="http://profiles.wordpress.org/vancoder">Grant Mangham</a>, <a href="http://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="http://profiles.wordpress.org/tivnet">Gregory Karpinsky (@tivnet)</a>, <a href="http://profiles.wordpress.org/hakre">hakre</a>, <a href="http://profiles.wordpress.org/hanni">hanni</a>, <a href="http://profiles.wordpress.org/helen">Helen Hou-Sandí</a>, <a href="http://profiles.wordpress.org/ippetkov">ippetkov</a>, <a href="http://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="http://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="http://profiles.wordpress.org/jackreichert">Jack Reichert</a>, <a href="http://profiles.wordpress.org/_jameslee">jameslee</a>, <a href="http://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="http://profiles.wordpress.org/janrenn">janrenn</a>, <a href="http://profiles.wordpress.org/jaycc">JayCC</a>, <a href="http://profiles.wordpress.org/jeffsebring">Jeff Sebring</a>, <a href="http://profiles.wordpress.org/jenmylo">Jen Mylo</a>, <a href="http://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="http://profiles.wordpress.org/jesin">Jesin A</a>, <a href="http://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="http://profiles.wordpress.org/jnielsendotnet">jnielsendotnet</a>, <a href="http://profiles.wordpress.org/jartes">Joan Artes</a>, <a href="http://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="http://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="http://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="http://profiles.wordpress.org/johnpbloch">John P. Bloch</a>, <a href="http://profiles.wordpress.org/johnregan3">John Regan</a>, <a href="http://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="http://profiles.wordpress.org/jond3r">Jonas Bolinder (jond3r)</a>, <a href="http://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="http://profiles.wordpress.org/shelob9">Josh Pollock</a>, <a href="http://profiles.wordpress.org/joshuaabenazer">Joshua Abenazer</a>, <a href="http://profiles.wordpress.org/jstraitiff">jstraitiff</a>, <a href="http://profiles.wordpress.org/juliobox">Julio Potier</a>, <a href="http://profiles.wordpress.org/kopepasah">Justin Kopepasah</a>, <a href="http://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="http://profiles.wordpress.org/kadamwhite">K.Adam White</a>, <a href="http://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="http://profiles.wordpress.org/kasparsd">Kaspars</a>, <a href="http://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="http://profiles.wordpress.org/kerikae">kerikae</a>, <a href="http://profiles.wordpress.org/kworthington">Kevin Worthington</a>, <a href="http://profiles.wordpress.org/kpdesign">Kim Parsell</a>, <a href="http://profiles.wordpress.org/kwight">Kirk Wight</a>, <a href="http://profiles.wordpress.org/kitchin">kitchin</a>, <a href="http://profiles.wordpress.org/klihelp">klihelp</a>, <a href="http://profiles.wordpress.org/knutsp">Knut Sparhell</a>, <a href="http://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="http://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="http://profiles.wordpress.org/drozdz">Krzysiek Drozdz</a>, <a href="http://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="http://profiles.wordpress.org/leewillis77">Lee Willis</a>, <a href="http://profiles.wordpress.org/lpointet">lpointet</a>, <a href="http://profiles.wordpress.org/ldebrouwer">Luc De Brouwer</a>, <a href="http://profiles.wordpress.org/spmlucas">Lucas Karpiuk</a>, <a href="http://profiles.wordpress.org/lkwdwrd">Luke Woodward</a>, <a href="http://profiles.wordpress.org/mark8barnes">Mark Barnes</a>, <a href="http://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="http://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="http://profiles.wordpress.org/marventus">Marventus</a>, <a href="http://profiles.wordpress.org/iammattthomas">Matt (Thomas) Miklic</a>, <a href="http://profiles.wordpress.org/mjbanks">Matt Banks</a>, <a href="http://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="http://profiles.wordpress.org/mboynes">Matthew Boynes</a>, <a href="http://profiles.wordpress.org/mdbitz">Matthew Denton</a>, <a href="http://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="http://profiles.wordpress.org/mattonomics">mattonomics</a>, <a href="http://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="http://profiles.wordpress.org/matveb">Matías Ventura</a>, <a href="http://profiles.wordpress.org/maxcutler">Max Cutler</a>, <a href="http://profiles.wordpress.org/mcadwell">mcadwell</a>, <a href="http://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="http://profiles.wordpress.org/meloniq">meloniq</a>, <a href="http://profiles.wordpress.org/michael-arestad">Michael Arestad</a>, <a href="http://profiles.wordpress.org/michelwppi">Michel - xiligroup dev</a>, <a href="http://profiles.wordpress.org/mcsf">Miguel Fonseca</a>, <a href="http://profiles.wordpress.org/gradyetc">Mike Burns</a>, <a href="http://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="http://profiles.wordpress.org/mikemanger">Mike Manger</a>, <a href="http://profiles.wordpress.org/mikeschinkel">Mike Schinkel</a>, <a href="http://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="http://profiles.wordpress.org/mikecorkum">mikecorkum</a>, <a href="http://profiles.wordpress.org/mitchoyoshitaka">mitcho (Michael Yoshitaka Erlewine)</a>, <a href="http://profiles.wordpress.org/batmoo">Mohammad Jangda</a>, <a href="http://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="http://profiles.wordpress.org/mor10">Morten Rand-Hendriksen</a>, <a href="http://profiles.wordpress.org/Nao">Naoko Takano</a>, <a href="http://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>, <a href="http://profiles.wordpress.org/nendeb55">nendeb55</a>, <a href="http://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="http://profiles.wordpress.org/nicolealleyinteractivecom">Nicole Arnold</a>, <a href="http://profiles.wordpress.org/nikv">Nikhil Vimal (NikV)</a>, <a href="http://profiles.wordpress.org/nivijah">Nivi Jah</a>, <a href="http://profiles.wordpress.org/nofearinc">nofearinc</a>, <a href="http://profiles.wordpress.org/nunomorgadinho">Nuno Morgadinho</a>, <a href="http://profiles.wordpress.org/olivm">olivM</a>, <a href="http://profiles.wordpress.org/jbkkd">Omer Korner</a>, <a href="http://profiles.wordpress.org/originalexe">OriginalEXE</a>, <a href="http://profiles.wordpress.org/patricknami">patricknami</a>, <a href="http://profiles.wordpress.org/pbearne">Paul Bearne</a>, <a href="http://profiles.wordpress.org/djpaul">Paul Gibbs</a>, <a href="http://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="http://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="http://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="http://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="http://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="http://profiles.wordpress.org/nprasath002">Prasath Nadarajah</a>, <a href="http://profiles.wordpress.org/prettyboymp">prettyboymp</a>, <a href="http://profiles.wordpress.org/raamdev">Raam Dev</a>, <a href="http://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="http://profiles.wordpress.org/mauryaratan">Ram Ratan Maurya</a>, <a href="http://profiles.wordpress.org/ramonchiara">ramonchiara</a>, <a href="http://profiles.wordpress.org/ounziw">Rescuework Support</a>, <a href="http://profiles.wordpress.org/rhyswynne">Rhys Wynne</a>, <a href="http://profiles.wordpress.org/ricardocorreia">Ricardo Correia</a>, <a href="http://profiles.wordpress.org/richard2222">Richard</a>, <a href="http://profiles.wordpress.org/theorboman">Richard Sweeney</a>, <a href="http://profiles.wordpress.org/iamfriendly">Richard Tape</a>, <a href="http://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>, <a href="http://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, <a href="http://profiles.wordpress.org/robmiller">robmiller</a>, <a href="http://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="http://profiles.wordpress.org/romaimperator">romaimperator</a>, <a href="http://profiles.wordpress.org/roothorick">roothorick</a>, <a href="http://profiles.wordpress.org/ruudjoyo">Ruud Laan</a>, <a href="http://profiles.wordpress.org/ryan">Ryan Boren</a>, <a href="http://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="http://profiles.wordpress.org/salcode">Sal Ferrarello</a>, <a href="http://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>, <a href="http://profiles.wordpress.org/sandyr">Sandeep</a>, <a href="http://profiles.wordpress.org/scottlee">Scott Lee</a>, <a href="http://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/greglone">ScreenfeedFr</a>, <a href="http://profiles.wordpress.org/scribu">scribu</a>, <a href="http://profiles.wordpress.org/sdasse">sdasse</a>, <a href="http://profiles.wordpress.org/bootsz">Sean Butze</a>, <a href="http://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="http://profiles.wordpress.org/nessworthy">Sean Nessworthy</a>, <a href="http://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="http://profiles.wordpress.org/shahpranaf">shahpranaf</a>, <a href="http://profiles.wordpress.org/shaunandrews">Shaun Andrews</a>, <a href="http://profiles.wordpress.org/shinichin">ShinichiN</a>, <a href="http://profiles.wordpress.org/pross">Simon Prosser</a>, <a href="http://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="http://profiles.wordpress.org/siobhan">Siobhan</a>, <a href="http://profiles.wordpress.org/siobhyb">Siobhan Bamber (siobhyb)</a>, <a href="http://profiles.wordpress.org/sirzooro">sirzooro</a>, <a href="http://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="http://profiles.wordpress.org/sonjanyc">sonjanyc</a>, <a href="http://profiles.wordpress.org/spencerfinnell">Spencer Finnell</a>, <a href="http://profiles.wordpress.org/piontkowski">Spencer Piontkowski</a>, <a href="http://profiles.wordpress.org/stephcook22">stephcook22</a>, <a href="http://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="http://profiles.wordpress.org/stephenharris">Stephen Harris</a>, <a href="http://profiles.wordpress.org/sbruner">Steve Bruner</a>, <a href="http://profiles.wordpress.org/stevenkword">Steven Word</a>, <a href="http://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>, <a href="http://profiles.wordpress.org/tanner-m">Tanner Moushey</a>, <a href="http://profiles.wordpress.org/tlovett1">Taylor Lovett</a>, <a href="http://profiles.wordpress.org/tbrams">tbrams</a>, <a href="http://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="http://profiles.wordpress.org/tomauger">Tom Auger</a>, <a href="http://profiles.wordpress.org/willmot">Tom Willmot</a>, <a href="http://profiles.wordpress.org/topher1kenobe">Topher</a>, <a href="http://profiles.wordpress.org/topquarky">topquarky</a>, <a href="http://profiles.wordpress.org/zodiac1978">Torsten Landsiedel</a>, <a href="http://profiles.wordpress.org/toru">Toru</a>, <a href="http://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="http://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>, <a href="http://profiles.wordpress.org/undergroundnetwork">undergroundnetwork</a>, <a href="http://profiles.wordpress.org/varunagw">VarunAgw</a>, <a href="http://profiles.wordpress.org/wawco">wawco</a>, <a href="http://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="http://profiles.wordpress.org/wokamoto">wokamoto</a>, <a href="http://profiles.wordpress.org/xsonic">xsonic</a>, <a href="http://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="http://profiles.wordpress.org/yurivictor">Yuri Victor</a>, <a href="http://profiles.wordpress.org/zbtirrell">Zach Tirrell</a>, and <a href="http://profiles.wordpress.org/vanillalounge">Ze Fontainhas</a>. Also thanks to <a href="http://michaelpick.wordpress.com/">Michael Pick</a> for producing the release video.</p>\n<p>If you want to follow along or help out, check out <a href="http://make.wordpress.org/">Make WordPress</a> and our <a href="http://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.0!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:45:"http://wordpress.org/news/2014/04/smith/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress 3.9 Release Candidate 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 15 Apr 2014 09:47:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3151";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:356:"The second release candidate for WordPress 3.9 is now available for testing. If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the first release candidate, and those changes are all helpfully summarized in our weekly post on the development blog. Probably the biggest fixes are to live […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2273:"<p>The second release candidate for WordPress 3.9 is now available for testing.</p>\n<p>If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the <a title="WordPress 3.9 Release Candidate" href="//wordpress.org/news/2014/04/wordpress-3-9-release-candidate/">first release candidate</a>, and those changes are all helpfully summarized <a href="//make.wordpress.org/core/?p=10237">in our weekly post</a> on the development blog. Probably the biggest fixes are to live widget previews and the new theme browser, along with some extra TinyMCE compatibility and some RTL fixes.</p>\n<p><strong>Plugin authors:</strong> Could you test your plugins against 3.9, and if they’re compatible, make sure they are marked as tested up to 3.9? It only takes a few minutes and this really helps make launch easier. Be sure to follow along the core development blog; we’ve been posting <a href="//make.wordpress.org/core/tag/3-9-dev-notes/">notes for developers for 3.9</a>. (For example: <a href="//make.wordpress.org/core/2014/04/15/html5-galleries-captions-in-wordpress-3-9/">HTML5</a>, <a href="//make.wordpress.org/core/2014/04/14/symlinked-plugins-in-wordpress-3-9/">symlinks</a>, <a href="//make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/">MySQL</a>, <a href="//make.wordpress.org/core/2014/04/11/plupload-2-x-in-wordpress-3-9/">Plupload</a>.)</p>\n<p>To test WordPress 3.9 RC2, try the <a href="//wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="//wordpress.org/wordpress-3.9-RC2.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the nearly complete About screen in your dashboard (<strong><img src="//i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692" alt="" width="16" height="16" /> → About</strong> in the toolbar) and also check out <a title="WordPress 3.9 Beta 1" href="//wordpress.org/news/2014/03/wordpress-3-9-beta-1/">the Beta 1 post</a>.</p>\n<p><em>This is for testing,</em><br />\n<em>so not recommended for<br />\nproduction sites—yet.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"WordPress 3.8.3 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2014/04/wordpress-3-8-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/news/2014/04/wordpress-3-8-3/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 14 Apr 2014 19:29:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3145";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:338:"WordPress 3.8.3 is now available to fix a small but unfortunate bug in the WordPress 3.8.2 security release. The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2339:"<p>WordPress 3.8.3 is now available to fix a small but unfortunate bug in the <a title="WordPress 3.8.2 Security Release" href="http://wordpress.org/news/2014/04/wordpress-3-8-2/">WordPress 3.8.2 security release</a>.</p>\n<p>The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using this tool, <em>any</em> loss of content is unacceptable to us.</p>\n<p>We recognize how much trust you place in us to safeguard your content, and we take this responsibility very seriously. We’re sorry we let you down.</p>\n<p>We’ve all lost words we’ve written before, like an email thanks to a cat on the keyboard or a term paper to a blue screen of death. Over the last few WordPress releases, we’ve made a number of improvements to features like autosaves and revisions. With revisions, an old edit can always be restored. We’re trying our hardest to save your content somewhere even if your power goes out or your browser crashes. We even monitor your internet connection and prevent you from hitting that “Publish” button at the exact moment the coffee shop Wi-Fi has a hiccup.</p>\n<p>It’s <em>possible</em> that the quick draft you lost last week is still in the database, and just hidden from view. As an added complication, these “discarded drafts” normally get deleted after seven days, and it’s already been six days since the release. If we were able to rescue your draft, you’ll see it on the “All Posts” screen after you update to 3.8.3. (We’ll also be pushing 3.8.3 out as a background update, so you may just see a draft appear.)</p>\n<p>So, if you tried to jot down a quick idea last week, I hope WordPress has recovered it for you. Maybe it’ll turn into that novella.</p>\n<p><a href="http://wordpress.org/download/">Download WordPress 3.8.3</a> or click “Update Now” on Dashboard → Updates.</p>\n<p><em>This affected version 3.7.2 as well, so we’re pushing a 3.7.3 to these installs, but we’d encourage you to update to the latest and greatest.</em></p>\n<hr />\n<p><em>Now for some good news:<br />\nWordPress 3.9 is near.<br />\nExpect it this week</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/04/wordpress-3-8-3/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}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:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 13 Sep 2014 07:37:53 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:10:"x-pingback";s:36:"http://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Thu, 04 Sep 2014 17:05:39 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20140913072741";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(324, '_transient_timeout_feed_mod_4d04aa8b6b197066bebcf40d05f55fef', '1410637074', 'no'),
(325, '_transient_feed_mod_4d04aa8b6b197066bebcf40d05f55fef', '1410593874', 'no'),
(326, '_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c', '1410637076', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(327, '_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:33:"Matt: Minimum Viable Civilization";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44105";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://ma.tt/2014/09/minimum-viable-civilization/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:466:"<p>We’ve talked about the Fermi Paradox <a href="http://ma.tt/2014/07/the-fermi-paradox/">here</a> and <a href="http://ma.tt/2014/08/thegreatfilter/">here</a> before, my long-time friend David Galbraith, ever the architect, tackles the Fermi Paradox from the <a href="http://davidgalbraith.org/uncategorized/minimum-maximum-viable-civilizations/3859/">point of view of the natural limits of communication in Minimum & Maximum Viable Civilizations</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:"Sat, 13 Sep 2014 04:54:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:89:"WordPress.tv Blog: Designing with WordPress: Recent WordCamp Presentations for Designers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://blog.wordpress.tv/?p=388";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:105:"http://blog.wordpress.tv/2014/09/13/designing-with-wordpress-recent-wordcamp-presentations-for-designers/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3570:"<p>There is no doubt that design is a popular topic at any WordCamp. From <a href="http://wordpress.tv/event/wordcamp-vancouver-2014/" target="_blank">WordCamp Vancouver</a> and <a href="http://wordpress.tv/event/wordcamp-asheville-2014/" target="_blank">WordCamp Asheville</a> come these great talks on how to level-up your WordPress design skills.</p>\n<h2>Designing for Content</h2>\n<div id="v-GlavJHoF-1" class="video-player">\n</div>\n<p>This talk from David Hickox goes over the method he has created for designing websites from the content outward. His talk covers aspects of designing in code, type choices, line height and typographic scale, creating a proper base style sheet, usability best practices, semantic structure, and more.</p>\n<h2>Responsive web development made easy with CSS and the mobile plugin</h2>\n<div id="v-q2CbXT0x-1" class="video-player">\n</div>\n<p>In this lightning talk, Christine Rondeau offer some tips and tricks to get better looking sites on mobile devices, including how you can use the mobile plugin to get completely different layouts on mobile devices.</p>\n<h2>Designing for Sales and Conversions</h2>\n<div id="v-htjkWeqo-1" class="video-player">\n</div>\n<p>Sarah Benoit shares insights into the latest trends in website usability, searchability and design elements that encourage conversions — purchases, form completions, event registrations, and more. Learn best practices for designing a site with WordPress that both looks great AND converts website visitors into the customers, clients, and potential leads every business needs.</p>\n<h2>Building Better Websites Through Collaboration, Communication, and Consistency</h2>\n<div id="v-o9kH1iIK-1" class="video-player">\n</div>\n<p>In this presentation from WordCamp Asheville, Julien Melissas talks about how perfecting your workflow can help you level up your professionalism, relationships with clients & colleagues, and happiness levels!</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/388/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=388&subd=wptvblog&ref=&feed=1" width="1" height="1" /><div><a href="http://blog.wordpress.tv/2014/09/13/designing-with-wordpress-recent-wordcamp-presentations-for-designers/"><img alt="David Hickox: Designing for Content" src="http://videos.videopress.com/GlavJHoF/video-e1a32c408c_scruberthumbnail_0.jpg" width="160" height="120" /></a></div><div><a href="http://blog.wordpress.tv/2014/09/13/designing-with-wordpress-recent-wordcamp-presentations-for-designers/"><img alt="Christine Rondeau: Responsive web development made easy with CSS and the mobile plugin" src="http://videos.videopress.com/q2CbXT0x/video-5a97567e88_std.original.jpg" width="160" height="120" /></a></div><div><a href="http://blog.wordpress.tv/2014/09/13/designing-with-wordpress-recent-wordcamp-presentations-for-designers/"><img alt="Sarah Benoit: Designing for Sales and Conversions" src="http://videos.videopress.com/htjkWeqo/video-825d890916_scruberthumbnail_1.jpg" width="160" height="120" /></a></div><div><a href="http://blog.wordpress.tv/2014/09/13/designing-with-wordpress-recent-wordcamp-presentations-for-designers/"><img alt="Julien Melissas: Building Better Websites Through Collaboration, Communication, and Consistency" src="http://videos.videopress.com/o9kH1iIK/video-74e0e5cadc_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 13 Sep 2014 00:20:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"Jerry Bates";s: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:104:"WPTavern: Graph Paper Press Launches Theme.Works, A Drag and Drop Platform for Building 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=30410";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:113:"http://wptavern.com/graph-paper-press-launches-theme-works-a-drag-and-drop-platform-for-building-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:5028:"<p>The folks behind <a href="http://graphpaperpress.com/" target="_blank">Graph Paper Press</a> launched a new custom WordPress theme builder this week. <a href="https://theme.works/" target="_blank">Theme.Works</a> was created to be a new brand, featuring a theme building platform that allows users to build a WordPress theme in under 60 seconds.</p>\n<p><strong>“We wanted something crazy easy for users to understand and use,”</strong> founder Thad Allender said. “Theme.Works inverts the traditional theme creation process: Instead of passively picking a stock template, you get to create a totally custom design for each piece of your website,” he explained. Users have the option to choose different headers, slideshows, portfolios, blogs, signup forms, contact forms, testimonials, footers, etc, via a drag and drop interface.</p>\n<p>Theme.Works is actually a custom one-page app built with Node,js, Grunt, and PHP. It allows each customer to design his own theme and then download it for $79. Here’s a quick preview of how it works:</p>\n<p></p>\n<p>Graph Paper Press is one of the oldest WordPress theme shops in business, founded in 2007, so it’s surprising to see Theme.Works launched as its own brand. I asked Allender why the team didn’t opt to put the new theme builder under its well-known GPP umbrella.</p>\n<p>“We wanted to build a new brand around a single idea/product,” he said. “Something with a clear value proposition without any distractions.” Allender also noted that the tech behind the venture is different, given that the builder is a Node.js / PHP app. “The dashboard (releasing next month) needed a singular focus on building custom designs,” he explained.</p>\n<p>To celebrate the launch, Theme.Works released a free theme with fullscreen background video and portfolio integration. It includes 10 different page templates and 10 color palettes to choose from, along with dozens of custom fonts. The theme is an example of what can be built using the drag and drop theme builder.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/theme.works-free-wordpress-theme-464x1024.jpg" rel="prettyphoto[30410]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/theme.works-free-wordpress-theme-464x1024.jpg?resize=464%2C1024" alt="theme.works-free-wordpress-theme-464x1024" class="aligncenter size-full wp-image-30516" /></a></p>\n<p>Check out a <a href="https://theme.works/demo/?header=10&portfolio=1&footer=3&toolbar=hide" target="_blank">live preview</a> of the theme fully customized.</p>\n<p>I downloaded the Theme.Works demo theme and installed it on a test site. I was impressed with some of the options, especially the color palettes and custom fonts.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/theme-colors.jpg" rel="prettyphoto[30410]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/theme-colors.jpg?resize=1010%2C369" alt="theme-colors" class="aligncenter size-full wp-image-30521" /></a></p>\n<p>Unfortunately, the theme options are divided almost equally between the native customizer on the frontend and the dedicated theme options panel in the admin. I believe this might introduce a point of confusion for users. If they don’t find the header options in the theme options, they may not know to look for them on the frontend.</p>\n<p>Although I am no stranger to building and customizing WordPress themes, I found it difficult to get the theme looking just like the demo. The experience certainly was not as advertised in the announcement <a href="http://graphpaperpress.com/blog/themeworks-wordpress-theme-builder/" target="_blank">post</a>, which claims: <em>“The theme you design is the theme you download, simple as that. No guesswork, no reference manual needed to get your theme up and running. Just activate and start publishing.”</em> On the contrary, I found there were many options to configure before I could even think about publishing.</p>\n<p>I was also concerned that the portfolio functionality is bundled with the theme. Allender said that they have attempted using a portfolio custom post type in the past but decided to take a different route. “We did that at GPP and users found it confusing. So instead, we offer users a plugin to migrate CPTs.” This seems like an extra hassle if you ever want to change your theme.</p>\n<p>However, the end result, as displayed in the Theme.Works live demo, is quite appealing and beautifully designed if you are able to achieve the same look with your content. Theme.Works plans to give away one new free every month, built using the new platform. You can download the free theme directly from <a href="https://theme.works/blog/2014/09/welcome/" target="_blank">Theme.Works</a>. While you’re there, make sure to test out the new theme building <a href="https://theme.works/" target="_blank">platform</a> and let us know your thoughts.</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, 12 Sep 2014 23:41:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:91:"WPTavern: Aesop Story Engine 1.1 Beta Now Available for Testing Ahead of First Major Update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=30470";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:101:"http://wptavern.com/aesop-story-engine-1-1-beta-now-available-for-testing-ahead-of-first-major-update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4806:"<p>Aesop Story Engine <a href="http://aesopstoryengine.com/updates/ase-1-1-beta/" target="_blank">1.1. beta</a> is now in the hands of eager testers, as project leader Nick Haskins prepares to launch the first major update to the plugin since its release. Haskin’s open source storytelling plugin was <a href="http://wptavern.com/aesop-wordpress-storytelling-plugin-is-now-fully-funded" target="_blank">fully funded</a> via a <a href="https://aesop.crowdhoster.com/storytelling-engine" target="_blank">Crowdhoster campaign</a> earlier this year. Shortly thereafter he released it on WordPress.org and <a href="http://wptavern.com/aesop-story-engine-launches-commercial-wordpress-themes" target="_blank">launched a line of commercial themes</a> that showcase the storyengine.</p>\n<p>The plugin’s 1.1 release represents a major leap forward in terms of usability. “Our primary focus with this update was to improve usability even further by removing the friction created with generating and editing story components,” Haskins said. The generator in 1.1 will be completely responsive down to mobile device displays.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/ase-generator.gif" rel="prettyphoto[30470]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/ase-generator.gif?resize=1025%2C632" alt="ase-generator" class="aligncenter size-full wp-image-30472" /></a></p>\n<p>The story components will have a new interface in version 1.1, which more closely matches the WordPress admin. This version also adds the ability to edit story components in the visual editor. Components are now converted into a placeholder where you can easily edit their attributes. Clicking the pencil icons launches the modal view with the last options you entered.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ASE-editable-story-components.gif" rel="prettyphoto[30470]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ASE-editable-story-components.gif?resize=1025%2C659" alt="ASE-editable-story-components" class="aligncenter size-full wp-image-30485" /></a></p>\n<p>After 1.1 is pushed out Haskins plans to keep hammering away at usability in preparation for launching a hosted solution for Aesop Story Engine. “After 1.1 goes out, it’s back to further improving the user interface, making things even easier, and reducing even more friction ahead of revisiting a hosted solution to offer, as the plugin will have matured at that point,” he said.</p>\n<p>Haskins is steadily and patiently refining the plugin and has set no ETA for the hosted version. His primary focus is on improving the experience of the story engine. “We really want it to be an incredible experience, more than just ‘a skinned WordPress multisite,''” he said. “I’m watching the JSON API and waiting for more admin type capabilities. Next year would be a better guess at this point for the hosted version,” Haskins told the Tavern.</p>\n<p>So far the project is experiencing success. “Sales have been going really, really well. Month after month of growth even with the price of <a href="http://aesopstoryengine.com/library/" target="_blank">themes</a> at $120 each, which subsequently allows for further development,” Haskins reported. Version 1.1 will introduce the ability for developers to <a href="https://github.com/AesopInteractive/sample-addon" target="_blank">create custom add-ons</a> to tie into the Story Engine, which is likely to bring more products into the ASE marketplace.</p>\n<h3>Aesop Story Engine Finds Momentum in Education</h3>\n<p>The Aesop Story Engine was created to empower WordPress publishers to pursue the art of digital storytelling, but Haskins wasn’t sure where it would take off when he initially tested the waters to see if there was any interest. While the product seems to be rather niche, it has surprisingly found the most traction in the education sector. “In terms of demographics, we are seeing a lot of big name universities, and about an equal amount of design firms,” Haskins said.</p>\n<p>“The rest of users seem to fall into general writers, publishers, and news organizations, Detroit News being the most recent addition. This inevitably gives us a bit more context when making decisions regarding premium themes and upcoming addons,” Haskins said. <strong>“Simply put, the education space is the biggest trend at the moment.”</strong></p>\n<p>Version 1.1 is projected to launch at the beginning of next week. If you want to get in on testing the beta, check out the post on the ASE blog to <a href="http://aesopstoryengine.com/updates/ase-1-1-beta/" target="_blank">download the zip file</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 12 Sep 2014 19:01:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:51:"WPTavern: Take The Annual WPShout Webhosting 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=30460";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wptavern.com/take-the-annual-wpshout-webhosting-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:2066:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/WPShoutWebhostingSurveyFeaturedImage.png" rel="prettyphoto[30460]"><img class="size-full wp-image-30463" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/WPShoutWebhostingSurveyFeaturedImage.png?resize=635%2C265" alt="WPShout Webhosting Survey Featured Image" /></a>photo credit: <a href="https://www.flickr.com/photos/henryfaber/230444653/">hfabulous</a> – <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a>\n<p><a title="http://wptavern.com/wpshout-releases-results-of-their-webhosting-survey" href="http://wptavern.com/wpshout-releases-results-of-their-webhosting-survey">Since 2011</a>, WPShout has conducted a comprehensive, non-biased, webhosting survey. Although the site has changed hands, Fred Meyer and David Hayes are continuing the tradition and the survey questions are <a title="http://wpshout.com/announcing-2014-wordpress-hosting-review/" href="http://wpshout.com/announcing-2014-wordpress-hosting-review/">ready to fill out</a>. There are four required questions with no identifiable information required to submit your answers. The survey is aimed at figuring out the following information:</p>\n<ul class="clearfix">\n<li>Reliability</li>\n<li>Speed</li>\n<li>Usability</li>\n<li>Support</li>\n<li>Value</li>\n<li>WordPress compatibility</li>\n</ul>\n<p>The data will be collected, collated, and openly shared to the community for individual analysis. In 2013, 214 people participated in the survey. The goal for 2015, is 500. Most users who run a self-hosted WordPress site also have a webhosting account. This is a chance to share your experience with that company for the benefit of others.</p>\n<p>It’s hard to find good information about webhosting companies without running into reviews filled with affiliate links. If you have a few minutes to spare, please <a title="http://wpshout.com/announcing-2014-wordpress-hosting-review/" href="http://wpshout.com/announcing-2014-wordpress-hosting-review/">take the survey</a> and help spread the word.</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, 12 Sep 2014 06:51:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:84:"WPTavern: WP Couch Mode Gives Readers an Option to Read Content Without Distractions";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=30445";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:94:"http://wptavern.com/wp-couch-mode-gives-readers-an-option-to-read-content-without-distractions";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3076:"<p>If you operate a content heavy website and want an easy way to give readers an option to read content without distractions, now you can with the <a title="https://wordpress.org/plugins/wp-couch-mode/" href="https://wordpress.org/plugins/wp-couch-mode/">WP Couch Mode</a> plugin. Developed by Ritesh Vatwani, WP Couch Mode adds a customizable link to content. When clicked, a lightbox appears displaying only the content of the post. Within the lightbox, you can increase the font size, make it full-screen, or print the article.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/WPCouchModeSettings.png" rel="prettyphoto[30445]"><img class="size-full wp-image-30447" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/WPCouchModeSettings.png?resize=685%2C568" alt="Configuration Settings For WP Couch Mode" /></a>Configuration Settings For WP Couch Mode\n<p> </p>\n<p>The plugin provides options to add the link before or after the content. You can edit the display text of the link and there’s a shortcode available if you need more control. Here’s what it looks like on the desktop view.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/DesktopViewOfWPCouchMode.png" rel="prettyphoto[30445]"><img class="size-full wp-image-30454" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/DesktopViewOfWPCouchMode.png?resize=1025%2C452" alt="Desktop View Of WP Couch Mode" /></a>Desktop View Of WP Couch Mode\n<p>One of the first things you’ll notice is that the images are large. When viewed on a desktop, the images are displayed at full size. On a mobile device, the images are smaller to account for screen size. Something that will need to be addressed in the next version is the poor handling of featured images. For some reason, WP Couch Mode takes a very small version of a featured image and blows it up. This causes featured images to look terrible on mobile devices. I think it would be better to not show the featured image and instead, only show images attached to the post.</p>\n<p>When I accessed Couch Mode on my iPhone 5s in portrait mode, the X in the top right corner is cut off making it difficult to close the window. In order to access the close button, I put my phone into landscape mode. Alternatively, if enabled, I can tap the button to shrink/expand the lightbox as a work around. This is what the content looks like on my phone.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/image1.jpg" rel="prettyphoto[30445]"><img class="size-full wp-image-30449" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/image1.jpg?resize=640%2C1136" alt="Portrait View Shows The X Cutoff" /></a>Portrait View Shows The X Cutoff\n<p> </p>\n<p>I doubt this plugin will be installed and used on sites that make a living through display advertisements. It’s like providing readers an ad-blocker tailored to the site. Overall, the plugin works as advertised. The lightbox needs some work but other than that, it gets rid of all the distractions.</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, 12 Sep 2014 05:53: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:77:"WPTavern: Build Stories Using Multimedia With The Storyteller WordPress Theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=30174";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:87:"http://wptavern.com/build-stories-using-multimedia-with-the-storyteller-wordpress-theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4061:"<p>Storyteller is an interesting concept by <a href="http://www.katharinabrunner.de">Katharina Brunner</a>. It’s a <a title="http://www.github.com/cutterkom/storyteller" href="http://www.github.com/cutterkom/storyteller">WordPress theme</a> that when combined with the <a title="http://wordpress.org/plugins/addquicktag/" href="http://wordpress.org/plugins/addquicktag/">AddQuickTags plugin</a>, provides the ability to build multimedia stories.</p>\n<p>Once activated, you’ll need to import a <a title="http://storyteller.katharinabrunner.de/static/addquicktag-storyteller.json" href="http://storyteller.katharinabrunner.de/static/addquicktag-storyteller.json">special JSON file</a> into AddQuickTags. This file automatically adds alignment code to the Storyteller specific quicktags making it easy to align the title and content of a slide.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/QuickTagsAlignmentCode.png" rel="prettyphoto[30174]"><img class="size-full wp-image-30435" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/QuickTagsAlignmentCode.png?resize=770%2C680" alt="Alignment Code Added To Quicktags" /></a>Alignment Code Added To Quicktags\n<p>The theme works best when used on a fresh install of WordPress. This is because it changes a couple of key components in the backend for the purpose of Storyteller.</p>\n<ul>\n<li>Posts > Slides</li>\n<li>Categories > Stories</li>\n<li>Add Post > Add Slide</li>\n</ul>\n<p>To see Storyteller in action, check out the following <a title="http://storyteller.katharinabrunner.de/demo" href="http://storyteller.katharinabrunner.de/demo">demo page</a>. Images take up the entire view of the screen. The slide title and text are displayed above the image and are located on the page based on which quicktag is selected. Two arrows on the bottom right of the screen act as pagination to navigate between slides. Storyteller is a responsive theme that will resize the content based on the size of the screen. Slides are not limited to just images, you can use videos as well. It uses <a href="http://srobbin.com/blog/jquery-plugins/jquery-backstretch/" target="blank">Backstretch.js</a> and <a href="http://www.fitvidsjs.com" target="blank">FitVids.js</a> to create full screen images and videos.</p>\n<p>Storyteller has one option to configure where you can select between four different fonts. The option is located in an Options top-level menu. There’s no reason why one option deserves its own top-level menu. I’d like to see it moved underneath the Settings menu and renamed to Storyteller. Options is confusing and at a glance, doesn’t seem like it’s connected to Storyteller.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/StorytellerOptions.png" rel="prettyphoto[30174]"><img class="size-full wp-image-30436" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/StorytellerOptions.png?resize=561%2C469" alt="Storyteller Options" /></a>Storyteller Options\n<p> </p>\n<p>I had hard time getting used to Slides replacing Posts and Stories replacing Categories. It creates a new workflow that takes time to get used to. The demo page highlights the potential of Storyteller but because it’s best suited for a fresh install of WordPress, it limits the amount of scenarios it can be used in. During testing, I used it on an existing WordPress site with a lot of content and it was a mess.</p>\n<p>Storyteller is in its infancy as a product and I have no doubt that Brunner will continue to improve the theme as more users discover it. The items she has on the to-do list include:</p>\n<ul class="task-list">\n<li>Option for individual width for text</li>\n<li>Write a FAQ/docs</li>\n<li>Sharing options</li>\n<li>Option to scroll rather than click</li>\n<li>Better video integration</li>\n</ul>\n<p>Brunner encourages users to give feedback and report bugs to the theme’s <a title="http://www.github.com/cutterkom/storyteller" href="http://www.github.com/cutterkom/storyteller">Github page</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 12 Sep 2014 02:10: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:"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: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:52:"WPTavern: Add WordPress Coding Standards to NetBeans";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=30392";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"http://wptavern.com/add-wordpress-coding-standards-to-netbeans";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3047:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/wp-netbeans.jpg" rel="prettyphoto[30392]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/wp-netbeans.jpg?resize=920%2C440" alt="wp-netbeans" class="aligncenter size-full wp-image-30430" /></a></p>\n<p>The open source <a href="https://netbeans.org/" target="_blank">NetBeans</a> IDE has support for several different languages and frameworks and a worldwide community of developers who depend on it to code more efficiently. A recent <a href="http://www.sitepoint.com/best-php-ide-2014-survey-results/" target="_blank">survey</a> conducted by SitePoint placed NetBeans as the third most favored IDE among PHP developers, capturing 15.6% of the votes, trailing not far behind Sublime Text at 18.5%. PhpStorm locked up nearly 40% of those surveyed and recently <a href="http://wptavern.com/phpstorm-8-to-add-official-support-for-wordpress" target="_blank">added official support for WordPress</a>.</p>\n<p>WordPress developers who favor NetBeans as their IDE of choice can install a set of preferences that will help make their development environments a little more WordPress-friendly. Inspired by the <a href="https://github.com/mrjxn/NetBeans-Settings-For-Laravel4" target="_blank">NetBeans Settings for Laravel 4</a>, PHP developer <a href="http://leon.rowland.nl/" target="_blank">Leon Rowland</a> decided to create <a href="https://github.com/zogot/NetBeans-WordPress-Coding-Standards" target="_blank">NetBeans WordPress Coding Standards</a>. It adds all the necessary settings for having your projects follow <a href="http://make.wordpress.org/core/handbook/coding-standards/" target="_blank">WordPress Coding Standards</a>.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/netbeans-wordpress-coding-standards.png" rel="prettyphoto[30392]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/netbeans-wordpress-coding-standards.png?resize=1025%2C783" alt="netbeans-wordpress-coding-standards" class="aligncenter size-full wp-image-30412" /></a></p>\n<p>Rowland created the settings separately, because NetBeans doesn’t yet support a proper export of sub categories (PHP, JavaScript, etc). To use it, simply download the zip file from GitHub and import it at <strong>Netbeans > Preferences</strong>. Your NetBeans setup will now correctly get the PHP, JavaScript, and CSS Coding Standards as defined in the WordPress Handbook.</p>\n<p>Rowland notes one small exception in the formatting – it doesn’t correctly account for spaces before JavaScript variables inside callbacks but not functions. Overall, the <a href="https://github.com/zogot/NetBeans-WordPress-Coding-Standards" target="_blank">settings pack</a> puts WordPress developers in a good place for using NetBeans while following the project’s official coding standards. It’s inspiring to see more WordPress tools and support availalbe for the most popular PHP IDEs. Any NetBeans fans have more WordPress-related tools to share?</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, 11 Sep 2014 21:57:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:74:"WPTavern: Jeff Starr Releases New 450 Page Book: WordPress Themes In Depth";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=30110";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:83:"http://wptavern.com/jeff-starr-releases-new-450-page-book-wordpress-themes-in-depth";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2417:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/WPThemesInDepthFeaturedImage.png" rel="prettyphoto[30110]"><img class="aligncenter size-full wp-image-30398" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/WPThemesInDepthFeaturedImage.png?resize=656%2C196" alt="WordPress Themes In Depth Featured Image" /></a></p>\n<p>Jeff Starr, a contributing author to <a title="http://digwp.com/" href="http://digwp.com/">DigWP.com,</a> has put the finishing touches on his brand new book, <a title="http://wp-tao.com/wordpress-themes-book/" href="http://wp-tao.com/wordpress-themes-book/">WordPress Themes In Depth</a>. It’s 450 pages of focused information on WordPress theme development. It’s in PDF format and has support for widescreen monitors and mobile devices. Some of the topics covered include:</p>\n<ul>\n<li>Setting up for theme development</li>\n<li>WordPress theme fundamentals</li>\n<li>Theme anatomy and the WP Theme Template</li>\n<li>In-depth coverage of the WordPress Loop</li>\n<li>Complete chapter on customizing themes</li>\n<li>Theme development according to the WP API</li>\n<li>Security, optimization & testing</li>\n<li>Front-end techniques</li>\n</ul>\n<p>The book comes with access to five themes and 20 demos. One of the themes is 2020, a full-featured premium theme. The bundled demos are plug-n-play examples of techniques covered in the book. A <a title="http://wp-tao.com/WordPress-Themes-In-Depth_DEMO.pdf" href="http://wp-tao.com/WordPress-Themes-In-Depth_DEMO.pdf">preview </a>of WordPress Themes In Depth is available in PDF format and gives readers a chance to see how the information is presented.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/WPThemesInDepthScreenshot.png" rel="prettyphoto[30110]"><img class="size-full wp-image-30395" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/WPThemesInDepthScreenshot.png?resize=871%2C653" alt="A Sample Page Of WordPress Themes In Depth" /></a>A Sample Page Of WordPress Themes In Depth\n<p>WordPress Themes In Depth is available through <a title="http://wp-tao.com/store/?item=15" href="http://wp-tao.com/store/?item=15">Perishable Press</a> for $40 however, using the coupon code <strong>DIGWP</strong> will save you $10. If you’re looking for a great resource to learn how to develop themes for WordPress, consider adding this book to your digital library.</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, 11 Sep 2014 21:04:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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: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:37:"Matt: Long-term Asia-Pacific 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:21:"http://ma.tt/?p=44075";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://ma.tt/2014/09/long-term-asia-pacificsecurity/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:723:"<blockquote><p>As reported by the Boston Globe, four-star Admiral Samuel Locklear, Commander of U.S. Pacific Command, provided an “unexpected answer” when recently asked “what is the biggest long-term security threat in the Pacific region?”\n</p></blockquote>\n<p>I usually don’t do this, but <a href="http://climateandsecurity.org/2013/03/12/admiral-locklear-climate-change-the-biggest-long-term-security-threat-in-the-pacific-region/">check out the link to see what the United States Navy admiral who currently serves as the commander of the U.S. Pacific Command said</a>. <cite>Hat tip: <a href="http://grist.org/cities/screwed-by-climate-change-10-cities-that-will-be-hardest-hit/">Jim Meyer</a>.</cite></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, 11 Sep 2014 20:56:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:69:"WPTavern: Freefolio: A Free Responsive Portfolio Plugin for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=30364";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:78:"http://wptavern.com/freefolio-a-free-responsive-portfolio-plugin-for-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4467:"<p>When creating a portfolio with WordPress, the most ideal way to store your work is in a separate plugin. Later down the road when you want to change your theme, you’ll be able to do so without losing your portfolio content. Many theme authors are now starting to build support for existing portfolio plugins into their themes, offering styles for the plugin’s output to make the content seamless with the overall design.</p>\n<p>That’s exactly what <a href="https://upthemes.com/" target="_blank">UpThemes</a> is doing with its new <a href="http://wordpress.org/plugins/freefolio/" target="_blank">Freefolio</a> plugin, which debuted a couple weeks ago on WordPress.org. The plugin was created to work hand-in-hand with the shop’s new <a href="https://upthemes.com/themes/creative/" target="_blank">Creative</a> theme, but also drops nicely into any other WordPress theme to add responsive portfolio functionality.</p>\n<p>After activating the plugin, you visit the <strong>General > Writing</strong> settings to enable the Portfolio Projects option. This activates a new admin menu for adding portfolio content:</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/portfolio-projects.jpg" rel="prettyphoto[30364]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/portfolio-projects.jpg?resize=1025%2C462" alt="portfolio-projects" class="aligncenter size-full wp-image-30375" /></a></p>\n<p>Here’s an example of the plugin in use with the <a href="http://wordpress.org/themes/twentyten" target="_blank">Twenty Ten</a> theme:</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/freefolio-twentyten.png" rel="prettyphoto[30364]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/freefolio-twentyten.png?resize=1025%2C641" alt="freefolio-twentyten" class="aligncenter size-full wp-image-30377" /></a></p>\n<p>Freefolio is unique in that it offers a <a href="https://dribbble.com/" target="_blank">Dribbble</a> import for designers who want to showcase their shots in WordPress. You’ll find the importer under the tools menu and only need to enter your Dribbble username to pull your content into your site:</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/dribbble-import.png" rel="prettyphoto[30364]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/dribbble-import.png?resize=1025%2C329" alt="dribbble-import" class="aligncenter size-full wp-image-30379" /></a></p>\n<p>Once your works are imported, you can edit, delete, and curate your shots with the project type taxonomy (works like categories) and project tag taxonomy (works like tags). All portfolio items can be displayed in a responsive grid via the <code>[portfolio]</code> shortcode, which is highly configurable with the following options:</p>\n<ul>\n<li>display_types: display Project Types. (true/false)</li>\n<li>display_tags: display Project Tags. (true/false)</li>\n<li>display_content: display project content. (true/false)</li>\n<li>include_type: display specific Project Types. Defaults to all. (comma-separated list of Project Type slugs)</li>\n<li>include_tag: display specific Project Tags. Defaults to all. (comma-separated list of Project Tag slugs)</li>\n<li>columns: number of columns in shortcode. Defaults to 2. (number, 1-6)</li>\n<li>showposts: number of projects to display. Defaults to all. (number)</li>\n</ul>\n<p>Freefolio is compatible with the <a href="http://wptavern.com/jetpack-rebrands-with-new-logo-adds-custom-post-types-in-3-1-release" target="_blank">Jetpack Portfolio post type</a> and was, in fact, based in part on that code. The plugin also credits <a href="http://www.tammyhartdesigns.com/" target="_blank">Tammy Hart</a> for her <a href="http://zurb.com/forrst/posts/Dribbble_to_WordPress-wZv" target="_blank">Dribbble -> WordPress</a> code as well as the folks at array.is for <a href="https://array.is/articles/designer/#install-array-portfolio" target="_blank">Jetpack Portfolio Polyfill</a>, which was adapted for use in Freefolio.</p>\n<p>In the future, UpThemes plan to add a portfolio widget for showcasing recent items, and the development team is open to additional feedback on how Freefolio could be better. The plugin works with any theme but may require a few CSS tweaks to look perfect with yours. <a href="http://wordpress.org/plugins/freefolio/" target="_blank">Download</a> it for free from WordPress.org.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 11 Sep 2014 18:47:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:"WPTavern: WPWeekly Episode 162 – Lead Developer of iThemes Security, Chris Wiegman";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=30359&preview_id=30359";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:89:"http://wptavern.com/wpweekly-episode-162-lead-developer-of-ithemes-security-chris-wiegman";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3966:"<p><a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by the lead developer of iThemes Security, <a title="http://www.chriswiegman.com/" href="http://www.chriswiegman.com/">Chris Wiegman</a>. After helping us dissect the news of the week, he tells the story of how he got involved with WordPress. We learn about the circumstances that lead to the creation of iThemes Security and how he almost sold the plugin to a different company. He explains how the <a title="http://wptavern.com/ithemes-security-now-has-brute-force-login-protection" href="http://wptavern.com/ithemes-security-now-has-brute-force-login-protection">Brute Force Login Protection</a> feature added to the latest version of iThemes Security works and the difference between local and network wide protection. Last but not least, we explore the idea of how it could turn into the Jetpack of WordPress Security plugins.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/wordpress-4-0-benny-now-available-for-download" href="http://wptavern.com/wordpress-4-0-benny-now-available-for-download">WordPress 4.0 ‘Benny’ Released</a><br />\n<a title="http://wptavern.com/what-happens-when-wordpress-is-updated-with-100-plugins-activated" href="http://wptavern.com/what-happens-when-wordpress-is-updated-with-100-plugins-activated">What Happens When WordPress Is Updated With 100 Plugins Activated?</a><br />\n<a title="http://wptavern.com/flywheel-hosting-secures-1-2m-in-funding" href="http://wptavern.com/flywheel-hosting-secures-1-2m-in-funding">Flywheel Hosting Secures $1.2M In Funding</a><br />\n<a title="http://wptavern.com/wordpress-theme-review-team-to-launch-mentoring-program" href="http://wptavern.com/wordpress-theme-review-team-to-launch-mentoring-program">WordPress Theme Review Team to Launch Mentoring Program </a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="http://wordpress.org/plugins/google-drive-media-library/" href="http://wordpress.org/plugins/google-drive-media-library/">Google Drive Media Library</a> is a plugin that connects your Google Drive account to your WordPress media library. This allows you to use Google Drive to store your photos, documents and videos on your site. This is a great solution if you are frequently receiving files from clients you don’t want to have access to the backend of WordPress.</p>\n<p><a title="http://wordpress.org/plugins/speech-bubble/" href="http://wordpress.org/plugins/speech-bubble/">Speech Bubble</a> is a fun way to document a quote or conversation within a blog post. It’s shortcode driven and presents a conversational display similar to texting or Skype chats. There are 9 different conversation bubble styles and you can mix and match styles in posts.</p>\n<p><a title="http://wordpress.org/plugins/wp-couch-mode/" href="http://wordpress.org/plugins/wp-couch-mode/">WP Couch Mode</a> is a handy plugin that provides a clean reading layout at the tap of a button. Much like reader mode in the Safari browser, the content takes on the look and feel of a <em>print mode</em> style removing the distractions of sidebars, widgets, site graphics or ads. It also has a handy print button, doubling as a <em>print ready</em> post plugin.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, September 24th 11 P.M. Eastern with Andrea Middleton of WordCamp Central</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 #162:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 11 Sep 2014 06:50: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: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:39:"Matt: Hip Hop is not down with Monsanto";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44078";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://ma.tt/2014/09/hip-hop-is-not-down-withmonsanto/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:160:"<p>Brentin Mock from Grist looks for evidence that <a href="http://grist.org/food/hip-hop-is-not-down-with-monsanto/">Hip Hop is not down with Monsanto</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, 10 Sep 2014 22:25:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:61:"WPTavern: Edin: A Beautiful Free Business Theme for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=27519";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wptavern.com/edin-a-beautiful-free-business-theme-for-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4276:"<p>A month ago, WordPress.com released a new business theme that features support for its new <a href="http://wptavern.com/wordpress-com-moves-to-standardize-theme-support-for-logos" target="_blank">site logo feature</a>. The <a href="http://theme.wordpress.com/themes/edin/" target="_blank">Edin</a> theme was an instant hit with its users and is now available for use on self-hosted WordPress sites.</p>\n<p>The theme was designed by <a href="http://thomasguillot.com/" target="_blank">Thomas Guillot</a> to create a strong brand and online presence for any business or corporation. The front page template offers three optional featured page areas and three optional widget areas. The big leading image is set by adding a featured image to the page that you assign to be the frontpage.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/edin.jpg" rel="prettyphoto[27519]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/edin.jpg?resize=1025%2C1558" alt="edin" class="aligncenter size-full wp-image-27535" /></a></p>\n<p>Edin comes packaged with four custom page templates for a greater level of flexibility in creating your business website:</p>\n<ul>\n<li><a href="http://edindemo.wordpress.com/" target="_blank">Front Page Template</a></li>\n<li><a href="http://edindemo.wordpress.com/page-templates/full-width-page/" target="_blank">Full Width Page Template</a></li>\n<li><a href="http://edindemo.wordpress.com/page-templates/grid-page/" target="_blank">Grid Page Template</a></li>\n<li><a href="http://edindemo.wordpress.com/page-templates/alternate-sidebar-page/" target="_blank">Alternate Sidebar Page Template</a></li>\n</ul>\n<p>Here’s an example of the grid page template:</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/edin-grid-page.jpg" rel="prettyphoto[27519]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/edin-grid-page.jpg?resize=660%2C781" alt="edin-grid-page" class="aligncenter size-full wp-image-30333" /></a></p>\n<p>Edin offers support for three navigation menus:</p>\n<ul>\n<li>Primary: The default menu pops into display from a hamburger icon but the customizer also includes an alternative classic “classic” menu which displays under the site title</li>\n<li>Secondary: Displays top-level quick links above the site title</li>\n<li>Footer: Displays top-level links and/or social links</li>\n</ul>\n<p>Edin is fully responsive, maintaining its beautiful design and function as it responds to the varying displays of desktop and mobile devices. That means that mobile visitors to your business site will receive the same great experience as those using desktops.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/edin-responsive.jpg" rel="prettyphoto[27519]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/edin-responsive.jpg?resize=660%2C262" alt="edin-responsive" class="aligncenter size-full wp-image-30330" /></a></p>\n<p>Edin includes several options built into the customizer, including the ability to set the sidebar position (left or right), designate the thumbnail aspect ratio (4:3 or 1:1), customize header text and background color, assign a header image, show or hide the search bar, and more. The theme also adds support for post formats with minimal icons assigned for each format.</p>\n<p>Check out a <a href="http://edindemo.wordpress.com/" target="_blank">live demo</a> of Edin on WordPress.com and make sure to navigate through the theme’s different <a href="http://edindemo.wordpress.com/page-templates/" target="_blank">page templates</a>.</p>\n<p>The self-hosted version of the Edin theme does not contain the site logo feature, but the<a href="https://twitter.com/kwight/status/492204961619398656" target="_blank"> Jetpack team is considering adding site logos</a> to the plugin in the future.</p>\n<p>If your business website is in need of a fresh look, Edin is a high quality, professionally-supported theme with a good deal of flexibility built in. All of the different options ensure that each customization of the theme will be unique. <a href="http://wordpress.org/themes/edin" target="_blank">Download</a> it for free from WordPress.org or via the theme browser panel in the admin.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 10 Sep 2014 21:02: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: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:59:"WPTavern: Take the 2014 WordPress User and Developer 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=30296";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"http://wptavern.com/take-the-2014-wordpress-user-and-developer-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:2320:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/wcsf.jpg" rel="prettyphoto[30296]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/wcsf.jpg?resize=956%2C436" alt="photo credit: WordCamp San Francisco 2013 - ma.tt" class="size-full wp-image-30310" /></a>photo credit: WordCamp San Francisco 2013 – <a href="http://ma.tt/2013/07/wordcamp-san-francisco-2013/wordcamp-san-francisco-crowd/">ma.tt</a>\n<p>The <a href="http://wp-survey.polldaddy.com/s/wp-2014" target="_blank">WordPress 2014 survey</a> is now available. Anyone who uses WordPress in any capacity is encouraged to take this short survey to help improve the project. The questions take approximately five minutes to complete and participation is anonymized. WordPress does not collect your email address or IP address, so feel free to offer your sincere feedback.</p>\n<p>The survey asks how you use WordPress and helps the project learn more about how the community uses the software to power their websites. The feedback that you supply will help the core team make decisions for the coming year.</p>\n<p>Results of the survey will be shared at WordCamp San Francisco during the State of the Word address in October. Tickets for the event are <a href="http://2014.sf.wordcamp.org/tickets/" target="_blank">on sale now</a> if you want to be in attendance to hear the results live.</p>\n<p>Last year, 30,000 people in 178 countries took the survey. <a href="http://www.bourncreative.com/2013-state-of-the-word-matt-mullenweg/" target="_blank">Results</a> revealed that 69% of those surveyed use WordPress as primarily as a CMS; 20% use it as a blog/CMS combo; 6% for blogging only; and 7% as an application platform. Mobile usage data from the survey showed that 30-31% are using WordPress on iOS or Android devices.</p>\n<p>Around this time last year, 18.9% of the web was powered by WordPress. That percentage has shot up this year to more than <a href="http://w3techs.com/technologies/overview/content_management/all" target="_blank">23%</a>.</p>\n<p>We’ll be reporting live from <a href="http://2014.sf.wordcamp.org/" target="_blank">WordCamp San Francisco</a> to bring you all the latest data about WordPress users around the world. Any predictions for a change in CMS vs blog usage and mobile usage for 2014?</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, 10 Sep 2014 18:29:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:51:"Post Status: Your website is not allowed to be fast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"http://www.poststat.us/?p=7118";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://www.poststat.us/website-fast-nope/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3035:"<p><img class="aligncenter size-large wp-image-7120" src="http://www.poststat.us/wp-content/uploads/2014/09/net-neutraility-752x334.jpg" alt="net-neutraility" width="627" height="278" /></p>\n<p>There could quite realistically be a day that your blog or website is not allowed to be fast. Not because you didn’t do proper performance testing and optimization, but because a corporatocracy won’t allow it.</p>\n<p>And your website is small potatoes that they don’t care about. You simply don’t have enough money for them to bother enabling you to deliver your website at high speeds to potential readers.</p>\n<p>Net neutrality is a horribly boring term to describe the seriousness of the issue at hand. Thankfully, comedian John Oliver explains net neutrality in a way that makes it significantly more entertaining and easy to understand:</p>\n<p></p>\n<p>As Oliver notes, and the website <a href="https://www.battleforthenet.com/">Battle for the Net</a> describes, this is incredibly important but also quite difficult to understand. The issue primarily affects the US but by default will impact the entire web and therefore the world around us. The democratization of the web (a core priority for WordPress itself) is at risk.</p>\n<p>This is why WordPress, Netflix, and a whole <a href="https://www.battleforthenet.com/#team-internet">slew of other websites</a> are taking part in a protest today. I complained this morning that I didn’t think poor UX (via popups and distractions on websites) were the best way to educate, but rather a day to write blog posts about the issue would be better. So here I am. This issue is important to me, my career, and you too — whether you know it or not.</p>\n<p>The web is an amazing place with a level of publishing accessibility — no matter how little money a publisher (<a href="http://www.slideshare.net/krogsgard/why-we-publish-wordcamp-birmingham-2014wordcamp-birminghamwhywepublish2014">you’re a publisher</a>) has — that has never before existed in the world.</p>\n<p>Don’t let your internet plan become this:</p>\n<p><img class="aligncenter size-large wp-image-7119" src="http://www.poststat.us/wp-content/uploads/2014/09/upgrade-your-internet-752x464.jpg" alt="upgrade-your-internet" width="627" height="386" /></p>\n<p>This issue is much more up in the air than you may think; lawmakers (amazingly) can still be swayed. So do your duty and contact your lawmaker today. Let them know that you value an open internet and you support net neutrality. Sign the <a href="https://www.battleforthenet.com/">petition on the Battle for the Net website</a>.</p>\n<p>Even more importantly, educate your friends and family about the importance of an open internet — an internet where the barrier to entry is low and citizen journalists, bloggers, and anyone that has a message can share that message and potentially impact the entire world.</p>\n<p>Support net neutrality. It makes the internet and our world just a little bit better.</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, 10 Sep 2014 14:32:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Brian Krogsgard";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:69:"Lorelle on WP: What is Your Favorite Article on Lorelle 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:37:"http://lorelle.wordpress.com/?p=11871";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:91:"http://lorelle.wordpress.com/2014/09/10/what-is-your-favorite-lorelle-on-wordpress-article/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:499:"I’ve been asked to put together a best-of collection of Lorelle on WordPress articles in an ebook. Do you have a favorite? I’m looking for articles that you’ve bookmarked and returned back to over the years to help you with WordPress and blogging, or articles that helped you understand and embrace a WordPress or blogging […]<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=lorelle.wordpress.com&blog=72&post=11871&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:"Wed, 10 Sep 2014 11:31:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:88:"WPTavern: Join the September 10th Internet Slowdown Protest with These 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=30202";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:98:"http://wptavern.com/join-the-september-10th-internet-slowdown-protest-with-these-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:3394:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/battle-for-the-net.jpg" rel="prettyphoto[30202]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/battle-for-the-net.jpg?resize=700%2C340" alt="battle-for-the-net" class="aligncenter size-full wp-image-30284" /></a></p>\n<p>Today, those who support internet freedom are simulating serving pages at a snail’s pace, in protest of internet service providers that are currently spending millions of dollars lobbying for the FCC’s proposed rules which essentially eviscerate net neutrality.</p>\n<p><a href="http://en.blog.wordpress.com/2014/09/09/fight-for-net-neutrality/" target="_blank">WordPress.com</a> joins 150 other major tech companies, including Netflix, Mozilla, Kickstarter, Tumblr, Reddit, Dropbox and Etsy, in the <a href="https://www.battleforthenet.com/sept10th/" target="_blank">September 10th Internet Slowdown protest</a>. The campaign features a loading icon and urges visitors to demand that lawmakers defend net neutrality.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/internet-slowdown.gif" rel="prettyphoto[30202]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/internet-slowdown.gif?resize=500%2C289" alt="internet-slowdown" class="aligncenter size-full wp-image-30268" /></a></p>\n<p>The FCC’s proposed changes would allow ISPs to charge a premium for putting companies in the “fast lane.” Smaller companies and startups without resources to pay the ISP tolls would be relegated to a “slow lane,” which would be an all-around bad experience for internet users.</p>\n<p>WordPress.com users who want to participate in the protest have the option to activate the new “<a href="http://en.blog.wordpress.com/2014/09/09/fight-for-net-neutrality/" target="_blank">Fight for Net Neutrality</a>” plugin available under the Settings menu.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/settingsmenu.jpg" rel="prettyphoto[30202]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/settingsmenu.jpg?resize=600%2C356" alt="settingsmenu" class="aligncenter size-full wp-image-30271" /></a></p>\n<p>The plugin replaces a few posts on WordPress.com websites with a “Still Loading” spinner that simulates what the internet will be like if cable companies have their way.</p>\n<p>Self-hosted WordPress sites can participate in the protest by adding the <a href="https://wordpress.org/plugins/cat-signal/" target="_blank">Internet Defense League Cat Signal</a> plugin. It picks up on any active campaigns from the <a href="http://internetdefenseleague.org/" target="_blank">Internet Defense League</a> and will only be active on your site during those times. You can test the plugin ahead of the next campaign by adding ?_idl_test=1 to your domain.</p>\n<p>Big companies like Comcast, Verizon, Time Warner Cable, and AT&T have millions of dollars to throw at lawmakers in hopes of slowing down the internet for every company that doesn’t pay up. What they don’t have is the power of your voice to influence your site’s visitors to call upon lawmakers. Now is your chance to speak up in defense of net neutrality and make a difference for the future of the internet. If you run a WordPress site, it’s as easy as adding a 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:"Wed, 10 Sep 2014 05:13: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: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:63:"WPTavern: iThemes Security Now Has Brute Force Login Protection";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=30185";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wptavern.com/ithemes-security-now-has-brute-force-login-protection";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5642:"<p>iThemes <a title="http://ithemes.com/2014/09/09/combat-wordpress-brute-force-attacks-ithemes-brute-force-protection-network-free-ithemes-security/" href="http://ithemes.com/2014/09/09/combat-wordpress-brute-force-attacks-ithemes-brute-force-protection-network-free-ithemes-security/">announced</a> Brute Force Login Protection has been added to the latest version of <a title="https://wordpress.org/plugins/better-wp-security/" href="https://wordpress.org/plugins/better-wp-security/">iThemes Security</a>. The new feature enables users to protect their sites either locally or by activating a network wide setting.</p>\n<ul>\n<li><strong><em>Local</em> brute force protection</strong> looks only at attempts to access your site and bans users per the lockout rules specified locally.</li>\n<li><strong><em>Network</em> brute force protection</strong> takes this a step further by banning users who have tried to break into other sites from breaking into yours.</li>\n</ul>\n<p>Similar to <a title="https://bruteprotect.com/" href="https://bruteprotect.com/">BruteProtect</a> <a title="http://wptavern.com/automattic-acquires-parka-llc-the-creators-of-bruteprotect" href="http://wptavern.com/automattic-acquires-parka-llc-the-creators-of-bruteprotect">acquired by Automattic</a> earlier this year, network wide protection uses the power of each site using it to block known IP addresses from breaking into a site. This is possible thanks to the introduction of the iThemes Brute Force Protection Network.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/iThemesSecurityBruteForceConfig.png" rel="prettyphoto[30185]"><img class="size-full wp-image-30217" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/iThemesSecurityBruteForceConfig.png?resize=1025%2C515" alt="Brute Force Login Protection Settings" /></a>Brute Force Login Protection Settings\n<p>By enabling this new setting in iThemes Security, the Brute Force Protection Network will automatically report the IP addresses of failed login attempts to iThemes and will block them for a length of time necessary to protect your site based on the number of other sites that have seen a similar attack.</p>\n<h2>Timing and Roadmaps</h2>\n<p>When I asked if there is a difference between the pro version of iThemes Security and the free version when it comes to Brute Force Login Protection, iThemes Security lead developer, Chris Wiegman, said, “There are no differences at all and no plans to change that. It’s originally a free feature and we want to keep it that way.”</p>\n<p>When BruteProtect was acquired by Automattic, <a title="http://wptavern.com/automattic-acquires-parka-llc-the-creators-of-bruteprotect#comments" href="http://wptavern.com/automattic-acquires-parka-llc-the-creators-of-bruteprotect#comments">users</a> expressed disappointment that they would have to use Jetpack. Was this move and the feedback surrounding it a motivating factor to add the feature to iThemes Security? “That was a bit of the timing but we’ve actually had it on the roadmap before I moved to iThemes. It is an effective way to protect against brute force login attempts that we just didn’t get up and running until now,” Wiegman said.</p>\n<h2>The Jetpack Of WordPress Security Plugins?</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/jetpack-logo.gif" rel="prettyphoto[30185]"><img class="aligncenter size-full wp-image-27470" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/jetpack-logo.gif?resize=700%2C276" alt="jetpack-logo" /></a></p>\n<p>I’m not aware of any other plugin that comes close to what Jetpack offers. iThemes Security has so many protection mechanisms within the plugin, I think it makes sense if each major feature was separated into a module.</p>\n<p>iThemes Security could morph into a plugin like Jetpack with a focus on security. New modules could be developed to help make connecting to complimentary services easy. Development of the plugin might be made easier as well with contributors being able to focus on their favorite modules. The only thing preventing it from being like Jetpack in it current state are modules and a proper user interface to manage them. I wouldn’t be surprised if this is the direction iThemes takes with the plugin.</p>\n<h2>Respecting A User’s Privacy</h2>\n<p>One major difference between Jetpack and iThemes Security is that iThemes has chosen to leave the choice to users on whether network protection is enabled or not. Jetpack however, will auto-activate BruteProtect when it’s enabled. Wiegman explained two reasons why network protection is not enabled by default. “First, I don’t believe in auto activation. Second, as a security plugin we have an obligation to protect users privacy along with their site so anything that communicates remotely must be opt-in rather than opt-out.” While a noble choice on the part of iThemes, it may leave them with less data to work with than if it were enabled by default.</p>\n<h2>Choices Are Good</h2>\n<p>With nearly 3M downloads, the iThemes Brute Force Protection Network has an opportunity to become larger than BruteProtect’s before the company was acquired. Since the feature is free in both versions, it’s exposed to the maximum amount of potential users. It offers a choice to those who want this type of protection but don’t want to use Jetpack to get it. For those who want a single purpose plugin that only offers Brute Force Login Protection using the data from each site that uses it, you’re still out of luck.</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, 10 Sep 2014 02:37:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:19;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:78:"WPTavern: First Look at Designs for the Twenty Fifteen Default WordPress Theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=30218";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:88:"http://wptavern.com/first-look-at-designs-for-the-twenty-fifteen-default-wordpress-theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3700:"<p>Konstantin Obenland <a href="http://make.wordpress.org/core/2014/09/09/twenty-fifteen/" target="_blank">released</a> the first look at the Twenty Fifteen theme on the Make WordPress Core blog today. Takashi Irie, the Automattic theme designer who created <a href="http://takashiirie.com/2013/07/31/further-becomes-twenty-fourteen/" target="_blank">Twenty Fourteen</a>, was asked by Matt Mullenweg to design the upcoming Twenty Fifteen default theme.</p>\n<p>It is now confirmed that Twenty Fifteen will in fact be a blog-focused theme, according to Irie’s description:</p>\n<blockquote><p>Twenty Fifteen is a clean, blog-focused theme designed through simplicity. With careful attention to typography, the theme treats text as a major part of the user interface. It features Google’s Noto Serif and Sans – a font family designed to be visually harmonious across many of the worlds languages, and a perfect fit for the internationalization strides being made in WordPress core.</p></blockquote>\n<p>The first preview of the theme shows that it includes a sidebar and makes liberal use of white space to emphasize content:</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/twenty-fifteen.png" rel="prettyphoto[30218]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/twenty-fifteen.png?resize=1024%2C825" alt="twenty-fifteen" class="aligncenter size-full wp-image-30226" /></a></p>\n<p>The theme will include the ability to add a custom header image and a custom background. Obenland shared additional images, which show the theme with text only (sans images), a further customized version, and examples of how it might look on mobile devices.</p>\n\n<a href="http://wptavern.com/first-look-at-designs-for-the-twenty-fifteen-default-wordpress-theme/twenty-fifteen-colors"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/twenty-fifteen-colors.png?resize=150%2C150" class="attachment-thumbnail" alt="twenty-fifteen-colors" /></a>\n<a href="http://wptavern.com/first-look-at-designs-for-the-twenty-fifteen-default-wordpress-theme/twenty-fifteen-no-images"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/twenty-fifteen-no-images.png?resize=150%2C150" class="attachment-thumbnail" alt="twenty-fifteen-no-images" /></a>\n<a href="http://wptavern.com/first-look-at-designs-for-the-twenty-fifteen-default-wordpress-theme/twenty-fifteen-phone"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/twenty-fifteen-phone.jpg?resize=150%2C150" class="attachment-thumbnail" alt="twenty-fifteen-phone" /></a>\n<a href="http://wptavern.com/first-look-at-designs-for-the-twenty-fifteen-default-wordpress-theme/twenty-fifteen-menu"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/twenty-fifteen-menu.jpg?resize=150%2C150" class="attachment-thumbnail" alt="twenty-fifteen-menu" /></a>\n<a href="http://wptavern.com/first-look-at-designs-for-the-twenty-fifteen-default-wordpress-theme/twenty-fifteen-mobile"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/twenty-fifteen-mobile.jpg?resize=150%2C150" class="attachment-thumbnail" alt="twenty-fifteen-mobile" /></a>\n\n<p>Twenty Fifteen is being designed from a mobile first approach. Obenland reports that the design itself is “far from finished.” After finalizing the design, contributors will create a working theme and commit that to core. At that point, those who have volunteered to test the theme will be able to put it through the paces to ensure that it meets WordPress’ standards for default themes. Twenty Fifteen is expected to be included in WordPress 4.1, which is scheduled to ship in December this year.</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, 10 Sep 2014 00:38:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:20;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:76:"WordPress.tv Blog: New videos from WordCamp Asheville and WordCamp Vancouver";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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.wordpress.tv/?p=382";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:94:"http://blog.wordpress.tv/2014/09/10/new-videos-from-wordcamp-asheville-and-wordcamp-vancouver/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4470:"<p>Check out these great new videos from WordCamp Asheville 2014 (May 30-June1) and WordCamp Vancouver 2014 (July 26) that have been published on <a href="http://wordpress.tv/" title="See more videos on WordPress.tv">WordPress.tv</a> recently.</p>\n<h2>What’s Your Story? Engaging Your Readers with the Power of Personal Narrative</h2>\n<p>Whether you’re starting a personal blog to share your thoughts and ideas, or blogging to promote your business, storytelling is the most effective way to engage your audience. In this presentation, Cindy Reed explains how well-told stories are memorable, unique, and position you as a trusted voice.</p>\n<div id="v-E36nBtZK-1" class="video-player">\n</div>\n<p><a href="http://wordpress.tv/2014/09/04/cindy-reed-whats-your-story-engaging-your-readers-with-the-power-of-personal-narrative/" target="_blank">View on WordPress.tv</a></p>\n<h2>Power Your Non-Profit Website</h2>\n<p>An important part of any non-profit organization’s mission is getting its message out to as many people as possible. As Ray Mitchell explains here, a well-designed WordPress website can help even the smallest non-profit reach a wide audiences and help activate both supporters and volunteers.</p>\n<div id="v-t8bP32a8-1" class="video-player">\n</div>\n<p><a href="http://wordpress.tv/2014/09/07/ray-mitchell-power-your-non-profit-website/" target="_blank">View on WordPress.tv</a></p>\n<h2>Magic with CSS Pseudo-Selectors</h2>\n<p>Pseudo-selectors are a magical CSS tool, because they make it possible to create some amazing visual effects, while keeping your HTML semantic and minimizing the images on your site. This presentation by Morgan Kay introduces the basic concept of pseudo-selectors, and goes over the various pseudo-selectors that are available and when they are useful.</p>\n<div id="v-1WQjXPlQ-1" class="video-player">\n</div>\n<p><a href="http://wordpress.tv/2014/09/02/morgan-kay-magic-with-css-pseudo-selectors/" target="_blank">View on WordPress.tv</a></p>\n<h2>WordPress Single Page Web Apps</h2>\n<p>Alessandro Biavati shows how WordPress can be integrated with modern Web App tools by leveraging its innate modularity, flexibility and speed. This talk is about WordPress as much as it is about general Web Application best practices and future applications and considerations.</p>\n<div id="v-JRaL1qjY-1" class="video-player">\n</div>\n<p><a href="http://wordpress.tv/2014/09/09/alessandro-biavati-wordpress-single-page-web-apps/" target="_blank">View on WordPress.tv</a></p>\n<p>These are just a few of the great videos we have published recently, but you can view all videos from these events here:</p>\n<ul>\n<li><a href="http://wordpress.tv/event/wordcamp-vancouver-2014/">WordCamp Vancouver 2014 Videos</a></li>\n<li><a href="http://wordpress.tv/event/wordcamp-asheville-2014/">WordCamp Asheville 2014 Videos</a></li>\n</ul><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/382/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=382&subd=wptvblog&ref=&feed=1" width="1" height="1" /><div><a href="http://blog.wordpress.tv/2014/09/10/new-videos-from-wordcamp-asheville-and-wordcamp-vancouver/"><img alt="Cindy Reed: What’s Your Story? Engaging Your Readers with the Power of Personal Narrative" src="http://videos.videopress.com/E36nBtZK/video-6d9f81430c_scruberthumbnail_0.jpg" width="160" height="120" /></a></div><div><a href="http://blog.wordpress.tv/2014/09/10/new-videos-from-wordcamp-asheville-and-wordcamp-vancouver/"><img alt="Ray Mitchell – Power Your Non-Profit Website.mp4" src="http://videos.videopress.com/t8bP32a8/video-ffb0241a44_scruberthumbnail_1.jpg" width="160" height="120" /></a></div><div><a href="http://blog.wordpress.tv/2014/09/10/new-videos-from-wordcamp-asheville-and-wordcamp-vancouver/"><img alt="Kevin Stover: The Candid Developer. Developing and Maintaining A Successful Plugin… Is Scary" src="http://videos.videopress.com/1WQjXPlQ/video-7fd062bfb2_scruberthumbnail_2.jpg" width="160" height="120" /></a></div><div><a href="http://blog.wordpress.tv/2014/09/10/new-videos-from-wordcamp-asheville-and-wordcamp-vancouver/"><img alt="Alessandro Biavati: WordPress Single Page Web Apps" src="http://videos.videopress.com/JRaL1qjY/video-002afa269f_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 10 Sep 2014 00:14: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:11:"Jerry Bates";s: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:54:"WPTavern: A Successful WordPress Plugin Adoption Story";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=30177";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wptavern.com/a-successful-wordpress-plugin-adoption-story";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6619:"<p>The “<a href="http://wptavern.com/adopt-me-plugin-tag-is-now-in-use-on-wordpress-org" target="_blank">adopt-me</a>” tag in the WordPress.org Plugin Directory is starting to gain traction, with two pages of current listings. While that may not seem like very many among the 33,000+ plugins, the new clear path for adoption is helping to change the course of extensions that would otherwise rot in the repo.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/free-to-a-good-home.jpg" rel="prettyphoto[30177]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/free-to-a-good-home.jpg?resize=500%2C464" alt="photo credit: sparrowsound" class="size-full wp-image-30208" /></a>photo credit: <a href="http://www.last.fm/music/sparrowsound/Free+to+a+good+home">sparrowsound</a>\n<p>The “<a href="http://wordpress.org/plugins/tags/adopt-me" target="_blank">adopt-me</a>” tag was introduced as a possible solution to help <a href="http://wptavern.com/could-wordpress-plugin-adoption-lower-the-rate-of-abandonment" target="_blank">lower the rate of plugin abandonment</a>. It provides a centralized way for developers to search for plugins that need a new owner.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/matt-cromwell.jpeg" rel="prettyphoto[30177]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/matt-cromwell.jpeg?resize=150%2C150" alt="matt cromwell" class="alignleft size-full wp-image-30190" /></a></p>\n<p>When novice plugin developer <a href="http://mattcromwell.com/" target="_blank">Matt Cromwell</a> heard about the “adopt-me” tag, he was intrigued. Cromwell is the Solutions Manager for FooPlugins, a web developer by day and a plugin developer by night. <a href="https://wordpress.org/plugins/foothumbnails-for-galleries/" target="_blank">FooThumbnail Gallery</a> was his first foray into plugin development, prompted by the need to create a solution for one of his clients. After launching his first plugin, he started looking for ways to expand his development skills.</p>\n<p>“Like so many other WP developers, I’m always slightly saddened to see that rust-orange notice at the top of a plugin telling me this or that plugin hasn’t been updated in over 2 years,” Cromwell said. <strong>“I wanted to test myself by looking at someone else’s code, seeing how and why they did what they did, and seeing if I could improve on it.”</strong> With that goal in mind, he reached out on the <a href="http://wptavern.com/a-facebook-group-dedicated-to-advanced-wordpress-topics" target="_blank">Advanced WordPress Facebook Group</a> for plugin adoption opportunities and discovered the “<a href="http://wordpress.org/plugins/tags/adopt-me" target="_blank">adopt-me</a>” tag.</p>\n<p>In the process of examining various candidates, Cromwell was less concerned with the plugins’ potential audience/user base and more focused on finding one that fit within his current skills. “While I did want a challenge, I didn’t want to adopt something way out of my experience, like a booking plugin or something overly complex,” he said. “I didn’t want to do something so different from what I’d already done that I’d never actually update it or improve on it.”</p>\n<p>He eventually landed on two plugins that worked well with the development he had done previously: <a href="https://wordpress.org/plugins/imagelens/" target="_blank">Imagelens</a> by <a href="https://profiles.wordpress.org/ramoonus/" target="_blank">Ramoonus</a>, and <a href="https://wordpress.org/plugins/carousel-gallery-jquery/" target="_blank">Carousel Gallery</a> by <a href="https://profiles.wordpress.org/joen/" target="_blank">Joen Asmussen</a> and <a href="https://profiles.wordpress.org/etiger13/" target="_blank">eTiger13</a>. “I contacted each of them through their website or social media channels and heard back from them fairly quickly that they’d love to hand over the wheel,” he said. Plugin authors can easily add new developers as contributors if they want to pass the plugin on for a better future.</p>\n<p>“I’m happy with my progress so far,” Cromwell reported. “I completely revamped ImageLens from the ground up. Formerly, it simply added the script everywhere. I didn’t want that. I wanted users to be able to enable it per image, or for a whole post/page. Deciding that forced me to learn how to filter <code>the_content()</code> and to leverage custom attachment fields. I also discovered Ohad Raz’ “<a href="https://github.com/bainternet/My-Meta-Box" target="_blank">My Meta Box</a>” class for custom metaboxes in the process.”</p>\n<p>Pleased with the success of his adoption experience so far, Cromwell plans to continue browsing the “adopt-me” tag for more extensions to bring into his plugin family. “I really like being able to contribute to the WP community this way,” he said. “It’s also a great way to jump into the deep end of plugin development, at least it has been for me.”</p>\n<p>Cromwell is enthusiastic about plugin adoption and hopes to encourage more theme developers to pursue the challenge. He also thinks that experienced plugin developers should consider adoption as a new way to give back to the WordPress community. “Experienced plugin developers who really know their stuff could adopt two or three plugins tonight and have them updated and shining by the weekend,” he suggested.</p>\n<p>Based on his experience, Cromwell believes that if you haven’t updated your plugin in a year, the best thing you can do is add the “adopt-me” tag to give your extension the chance to thrive. “The threat of automatic deletion if the plugin hasn’t been updated in two years would do MARVELS for the repo as a whole,” he said. “But there’s probably easy ways that plugin adoption could become more prominent in the repo. An ‘I adopted!’ badge for profiles would be fun,” he suggested.</p>\n<p>If you no longer want to maintain your plugin, consider adding the “<a href="http://wordpress.org/plugins/tags/adopt-me" target="_blank">adopt-me</a>” tag to keep it alive. Developers who want a new challenge then have the chance to discover your plugin. Cromwell’s adoption success story demonstrates how easy it is for abandoned or unwanted plugins to find a new home with an enthusiastic developer.</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, 09 Sep 2014 23:30:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:76:"WPTavern: What Happens When WordPress Is Updated With 100 Plugins Activated?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=30165";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/what-happens-when-wordpress-is-updated-with-100-plugins-activated";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1624:"<p>Over the years, there have been <a title="http://wptavern.com/plugin-quality-not-plugin-quantity" href="http://wptavern.com/plugin-quality-not-plugin-quantity">several articles</a> published on the topic of how many WordPress plugins are too many. A common point of debate is that too many plugins can slow down your site or cause things to break. While the risk of things breaking exists, I don’t think it’s as bad as people make it out to be.</p>\n<p>Longtime WordPress trainer, Bob Dunn, has <a title="http://bobwp.com/wordpress-4-0-update-100-active-plugins/" href="http://bobwp.com/wordpress-4-0-update-100-active-plugins/">published the results</a> of his WordPress 4.0 update experiment. He set up two different sites each with 100 plugins installed and activated. One site used a Genesis child theme with several Genesis specific plugins. The other site used Canvas from WooThemes with WooCommerce and several WooCommerce extensions. Watch the following video to find out if WordPress and the server hosting it melts down.</p>\n<p></p>\n<p>One thing I hope this video does is give users confidence in updating WordPress. The most common reason I’ve read for not updating is the fear of the site or plugins breaking. This video proves something I’ve been saying for years, it’s not the number of plugins you use, it’s the quality. As <a title="http://halfelf.org/2014/how-many-plugins/" href="http://halfelf.org/2014/how-many-plugins/">Mika Epstein astutely points out</a>, it only takes one plugin to crash a WordPress site. Are you surprised by the results of the experiment?</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, 09 Sep 2014 22:01: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: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:22:"Matt: Ants Are Amazing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44096";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/09/ants-areamazing/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1613:"<blockquote><p>[A]ll of California’s Argentine ants belong to only four colonies. The largest, euphemistically named the Very Large Colony, contains hundreds of billions, if not trillions, of ants, and extends from the Mexican border to San Francisco. In the largest battles ever recorded, millions of ants die each month along this colony’s border with its rivals in San Diego County.</p></blockquote>\n<p>That’s from <a href="http://www.the-scientist.com/?articles.view/articleNo/29040/title/War-zone/">this article by Mark W Moffett</a> that describes his book <a href="http://www.amazon.com/Adventures-among-Ants-Global-Trillions/dp/0520271289">Adventures Among Ants</a>.</p>\n<p>In 2010 Wired took a cool look at <a href="http://www.wired.com/2010/08/gallery-ant-warfare/all/">Looting, Cannibalism and Death Blows: The ‘Shock and Awe’ of Ant Warfare</a>.</p>\n<p>Finally as a 2013 update, there’s a new boss in town, the Asian needle ant which is <a href="http://science.nbcnews.com/_news/2013/02/11/16928308-stinging-needle-ants-overtaking-invasive-argentines-in-us?lite">literally eating Argentine ants for lunch</a>:</p>\n<blockquote><p>All ants essentially hibernate when wintertime hits, but the Asian needle ants “wake up before other ant species wake up,” Spicer-Rice explained.</p>\n<p>This head start allows them to build nests, find sources of food, and start reproducing before the other ants get going.</p></blockquote>\n<p><cite>Amazing ant photo by <a href="https://www.flickr.com/photos/kjcs/8084136238/">János Csongor Kerekes and CC-licensed</a>.</cite></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, 09 Sep 2014 20:54:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:47:"Lorelle on WP: The Web is All About The Writing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=11863";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://lorelle.wordpress.com/2014/09/09/the-web-is-all-about-the-writing/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:499:"Reading “7 Things You Need to Know about SEO in 2014” from Compete Pulse, I was fascinating to read that “size matters:” Most blog posts range between 400 and 600 words, but the ideal length for highest ranking is actually around 1,500. Many still believe that a successful website is one that offers the information […]<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=lorelle.wordpress.com&blog=72&post=11863&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:"Tue, 09 Sep 2014 20:11: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: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: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:115:"WPTavern: OpenTickets: An Open Source Event Management and Ticket Sales Platform Built on WordPress and WooCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=30124";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:124:"http://wptavern.com/opentickets-an-open-source-event-management-and-ticket-sales-platform-built-on-wordpress-and-woocommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5564:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/open-tickets.png" rel="prettyphoto[30124]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/open-tickets.png?resize=1024%2C483" alt="photo credit: BenjaminThompson - cc" class="size-full wp-image-30128" /></a>photo credit: <a href="https://www.flickr.com/photos/beija/5082213817/">BenjaminThompson</a> – <a href="http://creativecommons.org/licenses/by-sa/2.0/">cc</a>\n<p><a href="http://opentickets.com/" target="_blank">OpenTickets</a> launched its <a href="http://wordpress.org/plugins/opentickets-community-edition/" target="_blank">community edition</a> on WordPress.org this week. The open source project was created to provide event publishing and online ticket sales for bands, non-profits, venues, festivals, and other events. The platform is powered by WordPress and <a href="http://wordpress.org/plugins/woocommerce/" target="_blank">WooCommerce</a> and provides support for creating multiple venues and events, as well as managing digital and/print ticket sales.</p>\n<p>The community edition features all the basic functionality required for managing events. After installing WooCommerce and the OpenTickets plugin, WordPress admins will have the following capabilities:</p>\n<ul>\n<li>Publish Venues</li>\n<li>Publish Events</li>\n<li>Display Calendar of Events</li>\n<li>Create and Sell Tickets</li>\n<li>Allow customers to keep digital and/or print tickets</li>\n<li>Checkin people to events with a QR Reader</li>\n<li>Ticket Sales Reporting</li>\n</ul>\n<p>OpenTickets works hand-in-hand with WooCommerce’s standard product creation with an option to create the product as a ticket:</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/create-ticket.jpg" rel="prettyphoto[30124]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/create-ticket.jpg?resize=1025%2C323" alt="create-ticket" class="aligncenter size-full wp-image-30151" /></a></p>\n<p>Adding a new venue works very much like publishing a new post. The plugin includes a new menu item for creating and categorizing venues.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/add-venue.jpg" rel="prettyphoto[30124]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/add-venue.jpg?resize=950%2C484" alt="add-venue" class="aligncenter size-full wp-image-30136" /></a></p>\n<p>Scroll further down and you’ll be able to add specific areas within the venue, location information, a map, venue social links, and additional custom fields.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/event-formula-dates.jpg" rel="prettyphoto[30124]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/event-formula-dates.jpg?resize=300%2C290" alt="event-formula-dates" class="alignright size-medium wp-image-30144" /></a></p>\n<p>When creating a new event, you have the option to enter a formula to calculate when tickets should stop being sold on the frontend of the site. The field accepts hour(s), minute(s), second(s), day(s), week(s), month(s), and year(s). For example, if you wish to terminate ticket sales shortly before the show, you could enter something like <code>2 hours 30 minutes</code>.</p>\n<p>In addition to setting a date range for an event, the plugin also provides an integrated event calendar.</p>\n<p>Additional commercial add-ons are available in OpenTicket’s <a href="http://opentickets.com/enterprise/" target="_blank">enterprise edition</a>, which bring a wider range of box office tools to the WordPress admin, such as coupons, auditing, advanced reporting, seating charts and more.</p>\n<p>If you want to see a live demo of the plugin on the frontend, it is being used by the <a href="http://artisanct.com/" target="_blank">Artisan Center Theater</a> where you can check out the event listings and ticket purchasing process.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/artisan-theater.jpg" rel="prettyphoto[30124]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/artisan-theater.jpg?resize=930%2C390" alt="artisan-theater" class="aligncenter size-full wp-image-30146" /></a></p>\n<p>The architecture of Artisan Center Theater’s previous ticketing system was not scalable and customers were unable to print their own tickets, which slowed down the box office. After six months of using their new OpenTickets system, Artisan <a href="http://opentickets.com/artisan-center-theater-and-open-tickets-case-study/" target="_blank">sold over 40,000 tickets</a> and found that online sales grew from ~40% to over 80% of total sales. Because customers were able to print their own tickets, the check-in process was reduced from about 40 minutes at Will Call to ~5 minutes.</p>\n<p>OpenTickets was created by <a href="http://quadshot.com/" target="_blank">Quadshot Software</a> as a solution for its customers who had problems with their previous online event and ticketing systems. The plugin was made to allow event managers to host their own ticketing platform with greater flexibility and better performance than outside solutions.</p>\n<p>OpenTickets provides an open source alternative to third-party ticketing systems, eliminating additional overhead and service fees. The plugin is <a href="http://wordpress.org/plugins/opentickets-community-edition/" target="_blank">available on WordPress.org</a> and looks to be a promising solution for developers and agencies building WordPress sites around events and ticket sales.</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, 09 Sep 2014 19:31:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:83:"WPTavern: Speed Up Your WordPress Site with Pound, Varnish, Nginx and mod_pagespeed";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=30100";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:91:"http://wptavern.com/speed-up-your-wordpress-site-with-pound-varnish-nginx-and-mod_pagespeed";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:16692:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/tomaz.jpg" rel="prettyphoto[30100]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/tomaz.jpg?resize=150%2C150" alt="tomaz" class="alignleft size-thumbnail wp-image-30102" /></a></p>\n<p><strong>This post was contributed by Tomaž Zaman. He is the founder of a Danish startup called <a href="https://codeable.io" target="_blank">Codeable</a>, a WordPress-only outsourcing service on a mission to help WordPress companies and enthusiasts from all over the world effortlessly scale their businesses. He spends his free time with his wife and four kids.</strong></p>\n<p>A vast majority of online articles about speeding up your WordPress site mention and use a plugin called <a href="https://wordpress.org/plugins/w3-total-cache/">W3 Total Cache</a> (or W3TC for short). Rightfully so, because it’s a great, all-in-one solution to get your WP site fast with relatively small amount of work.</p>\n<p>However, I’m not really a fan of all-in-one solutions, mainly because they bring a lot of complexity to the table, and as far as WordPress plugins go, possibly introduce compatibility issues and upgrade headaches.</p>\n<p>That is why I decided to look for alternatives that would still make our (secure) WordPress site really fast and a friend recommended to look at mod_pagespeed, which turned out to be a great solution for making our WordPress really fast, with minimal effort.</p>\n<h2>Prerequisites</h2>\n<p>This article assumes you have at least basic knowledge of linux (all our examples are Ubuntu-based), know how to use the shell, and most importantly, you host your site on your own VPS. Shared hosting isn’t going to cut it, since we need to set up a customized version of nginx, which supports mod_pagespeed.</p>\n<p>There are plenty of awesome and relatively cheap VPS providers out there, I’d personally recommend <a href="http://www.digitalocean.com">Digital Ocean</a>.</p>\n<p>Note that all commands that start with the dollar sign ($) indicate it’s a unix command, and you don’t actually enter that dollar sign into the command.</p>\n<h2>Main ingredients</h2>\n<p>As the title suggests, we’ll need a couple of programs installed on our server; The main one (for caching purposes) is called <a href="https://www.varnish-cache.org/">Varnish</a>, which basically stores all your HTML output onto a temporary folder on disk and serves that instead of delegating requests to WordPress. It has one <em>flaw</em>, however – it does not support <em>SSL termination</em>, which is why we need <a href="http://www.apsis.ch/pound">Pound</a> for.</p>\n<p>The last two components we need are <a href="http://nginx.com/">Nginx</a> (it’s a web server like Apache) and a PHP process manager called <a href="http://php-fpm.org/">PHP-FPM</a>, since Nginx does not support modules.</p>\n<p>Of course you also need to <a href="http://www.rackspace.com/knowledge_center/article/generate-a-csr-with-openssl">generate a certificate</a> key and buy a certificate for this setup to work. Entry-level certificates are quite cheap, some starting with less that $10/year, which makes it a no-brainer.</p>\n<h2>Getting started</h2>\n<p>Provided you have a clean, fresh VPS ready, <em>SSH</em> on to it. Protip: If you use Linux or Mac OS locally, you can add the following a shortcut to <code>~/.ssh/config</code>(create this file if it does not exist):</p>\n<pre class="brush: plain; title: ; notranslate">\nHost MyHost\n HostName [host-ip]\n Port [host-port]\n User [host user, usually root]\n IdentityFile [path/to/your/ID_RSA, usually ~/.SSH/ID_RSA]\n</pre>\n<p>This allows you to run the following command to log into your server shell: <code>$ ssh MyHost</code>.</p>\n<p>Once logged in, it’s time to install all the necessary components that we’ll need via a <em>package manager</em>, in our case <code>apt-get</code>.</p>\n<p>Run the following command: <code>$ sudo apt-get install php5-fpm php5-cli php5-mysql varnish pound mariadb-server-5.5 unzip</code> You’ll be prompted to enter the root password for MariaDB, which is a drop-in replacement for MySQL, twice. We did not install Nginx at this point because the version that comes as the default, does not support <em>mod_pagespeed</em>, which we need, so we’ll install it manually. To do that, visit the <a href="https://developers.google.com/speed/pagespeed/module/build_ngx_pagespeed_from_source">official documentation</a> and follow the guide, with one exception, replace this line:</p>\n<pre class="brush: plain; title: ; notranslate">\n./configure --add-module=$HOME/ngx_pagespeed-release-${NPS_VERSION}-beta\n</pre>\n<p>with this one:</p>\n<pre class="brush: plain; title: ; notranslate">\n./configure --add-module=$HOME/ngx_pagespeed-release-${NPS_VERSION}-beta --with-http_gzip_static_module --with-http_realip_module\n</pre>\n<p>This will make sure you also include modules that will help you GZIP static assets and allow you to track correct IPs in your WordPress, respectively. Once done, you should have Nginx installed in <code>/usr/local/nginx/</code>.</p>\n<p>If you try to visit the URL (or IP) of your server at this point, nothing will happen, because we haven’t configured all the components properly yet. Once we do, the <em>communication schema</em> between components on our server will look something like this:</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/diagram.png" rel="prettyphoto[30100]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/diagram.png?resize=226%2C435" alt="diagram" class="aligncenter size-full wp-image-30104" /></a></p>\n<h2>Pound</h2>\n<p>Let’s start with the <em>outermost</em> component, which should listen on two standard ports, 80 and 443 (HTTP and HTTPS, respectively). Edit the file <code>/etc/pound/pound.cfg</code> and put the following contents in:</p>\n<pre class="brush: plain; title: ; notranslate">\nUser "www-data"\nGroup "www-data"\nLogLevel 1\nAlive 30\nControl "/var/run/pound/poundctl.socket"\n\nListenHTTP\n Address 0.0.0.0\n Port 80\n # This part makes sure you redirect all HTTP traffic to HTTPS\n Service\n HeadRequire "Host: yourdomain.com"\n Redirect "https://yourdomain.com"\n End\nEnd\nListenHTTPS\n HeadRemove "X-Forwarded-Proto"\n AddHeader "X-Forwarded-Proto: https"\n Address 0.0.0.0\n Port 443\n Cert "/etc/ssl/yourdomain.com/yourdomain.com.pem"\n # This service removes the WWW-part\n Service\n HeadRequire "Host: www.mydomain.com"\n Redirect "https://yourdomain.com"\n End\n # The main service which passes requests to Varnish\n Service\n HeadRequire "Host: yourdomain.com"\n BackEnd\n Address 127.0.0.1\n # 6081 is the default Varnish port\n Port 6081\n End\n End\nEnd\n</pre>\n<p>Before restarting pound with this new configuration, you’ll also need to have a PEM certificate file in the defined folder, which you can create by following <a href="http://www.digicert.com/ssl-support/pem-ssl-creation.htm">these instructions</a>. You’ll also need to edit <code>/etc/default/pound</code> and set <code>startup=1</code>.</p>\n<p>That’s it! Pound is now configured and after running <code>$ service pound restart</code> (on Ubuntu, other distributions may have different commands for service manipulation) you should be able to visit the configured domain. Of course, you’ll get an error (503 Service Unavailable), but that’s okay, we’re not done yet!</p>\n<h2>Varnish</h2>\n<p>Next, we need to configure Varnish. Edit the file `/etc/varnish/default.vcl and put the following in (delete everything else):</p>\n<pre class="brush: plain; title: ; notranslate">\nbackend default {\n .host = "127.0.0.1";\n .port = "8080";\n}\n\nacl purge {\n "127.0.0.1";\n "localhost";\n}\n\nsub vcl_recv {\n if (req.request == "PURGE") {\n if (!client.ip ~ purge) {\n error 405 "Not allowed.";\n }\n ban("req.url ~ "+req.url+" && req.http.host == "+req.http.host);\n error 200 "OK";\n }\n\n # only using one backend\n set req.backend = default;\n\n # set standard proxied ip header for getting original remote address\n set req.http.X-Forwarded-For = client.ip;\n\n # logged in users must always pass\n if( req.url ~ "^/wp-(login|admin)" || req.http.Cookie ~ "wordpress_logged_in_" ){\n return (pass);\n }\n\n # don't cache search results\n if( req.url ~ "\\?s=" ){\n return (pass);\n }\n\n # always pass through posted requests and those with basic auth\n if ( req.request == "POST" || req.http.Authorization ) {\n return (pass);\n }\n\n # else ok to fetch a cached page\n unset req.http.Cookie;\n return (lookup);\n}\n\n\n\nsub vcl_fetch {\n\n # remove some headers we never want to see\n unset beresp.http.Server;\n unset beresp.http.X-Powered-By;\n\n # only allow cookies to be set if we're in admin area - i.e. commenters stay logged out\n if( beresp.http.Set-Cookie && req.url !~ "^/wp-(login|admin)" ){\n unset beresp.http.Set-Cookie;\n }\n\n # don't cache response to posted requests or those with basic auth\n if ( req.request == "POST" || req.http.Authorization ) {\n return (hit_for_pass);\n }\n\n # only cache status ok\n if ( beresp.status != 200 ) {\n return (hit_for_pass);\n }\n\n # don't cache search results\n if( req.url ~ "\\?s=" ){\n return (hit_for_pass);\n }\n\n # else ok to cache the response\n set beresp.ttl = 24h;\n return (deliver);\n}\n\n\n\nsub vcl_deliver {\n if (obj.hits > 0) {\n set resp.http.X-Cache = "HIT";\n }\n else {\n set resp.http.X-Cache = "MISS";\n }\n unset resp.http.Via;\n unset resp.http.X-Varnish;\n}\n\nsub vcl_hit {\n if (req.request == "PURGE") {\n purge;\n error 200 "OK";\n }\n}\n\nsub vcl_miss {\n if (req.request == "PURGE") {\n purge;\n error 404 "Not cached";\n }\n}\n\n\nsub vcl_hash {\n hash_data( req.url );\n if ( req.http.host ) {\n hash_data( regsub( req.http.host, "^([^\\.]+\\.)+([a-z]+)$", "\\1\\2" ) );\n } else {\n hash_data( server.ip );\n }\n # ensure separate cache for mobile clients (WPTouch workaround)\n if( req.http.User-Agent ~ "(iPod|iPhone|incognito|webmate|dream|CUPCAKE|WebOS|blackberry9\\d\\d\\d)" ){\n hash_data("touch");\n }\n return (hash);\n}\n</pre>\n<p>I won’t go into much details here, because <a href="https://www.varnish-cache.org/docs/4.0/">official Varnish documentation</a> does a much better job at that. Three things worth mentioning here are the lines that PURGE the cache (delete it), which comes in handy to have within WordPress so that updated parts automatically initiate cache removal. There are several plugins for that, we use <a href="http://wordpress.org/plugins/better-wp-varnish/">Better WP Varnish</a>, but any will do.</p>\n<p>The second thing to mention is cookie handling. This configuration prevents logged in users to see cached versions of WordPress for easier debugging and previewing.</p>\n<p>Last, we also use a custom header (X-Cache), which equals to either HIT or MISS so you can easily debug and see whether Varnish fetched a cached version (HIT) or not.</p>\n<p>As with Pound, it’s now time to restart Varnish to load the new configuration: <code>$ service varnish restart</code>.</p>\n<h2>Nginx and mod_pagespeed</h2>\n<p>Almost there! The final piece of the puzzle is Nginx. Because we didn’t use the package manager to install it, we first need to set up an <code>init script</code> that will register Nginx as a <code>daemon</code> (a program or a process that runs in the background). In order to do that, run the following commands:</p>\n<pre class="brush: plain; title: ; notranslate">\n$ cd /etc/init.d\n$ wget https://raw.githubusercontent.com/JasonGiedymin/nginx-init-ubuntu/master/nginx\n$ chmod +x nginx\n$ update-rc.d nginx defaults\n</pre>\n<p>This downloads the init script, makes it executable (because it’s essentially a program) and registers it with the operating system so it can start at boot time.</p>\n<p>Once that’s sorted, we need to configure Nginx by editing the file <code>/usr/local/nginx/conf/nginx.conf</code>. Locate the first <em>server</em> block in the file, and replace it with the following code (this assumes you have your WordPress installed in <code>/srv/www/yourdomain.com</code>):</p>\n<pre class="brush: plain; title: ; notranslate">\nserver {\n listen 8080;\n server_name test.com;\n\n root /srv/test.com;\n index index.php index.html;\n\n location / {\n try_files $uri $uri/ /index.php?$args;\n }\n\n location ~ .php$ {\n try_files $uri /index.php;\n include fastcgi_params;\n fastcgi_pass unix:/var/run/php5-fpm.sock;\n fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n fastcgi_index index.php;\n }\n\n pagespeed On;\n pagespeed ModifyCachingHeaders on;\n\n # Needs to exist and be writable by nginx.\n pagespeed FileCachePath "/var/cache/ngx_pagespeed/";\n pagespeed LoadFromFile "https://yourdomain.com" "/srv/yourdomain.com";\n pagespeed MapOriginDomain "http://localhost" "https://yourdomain.com";\n pagespeed EnableFilters rewrite_css,combine_css,trim_urls;\n pagespeed DisableFilters sprite_images,convert_jpeg_to_webp,convert_to_webp_lossless;\n\n}\n</pre>\n<p>The top half is just basic configuration for our <em>virtual host</em> which enables rewrites and delegates PHP processing to PHP-FPM (listening on a socket).</p>\n<p>What’s interesting here is the <em>pagespeed</em> part. After turning it on, we need to properly map URLs so that mod_pagespeed will know when to trigger its magic. After that, we enable/disable various <a href="https://developers.google.com/speed/pagespeed/module/filters">filters</a> and it’s up to you to which level you want mod_pagespeed to modify/optimize your HTML so go ahead and play with them. My favorites are ones that automatically combine CSS and Javascript files, optimize images and rename them according to their <em>last-modified</em> time, so we can have a far-future expiration date.</p>\n<p>There’s only one <strong>caveat</strong>: Make sure to disable <em>convert_jpeg_to_webp</em> filter. The name of the filter is pretty descriptive but can pose a problem because of Varnish. If the very first visitor of your website uses Chrome, Varnish will pass the request on to Nginx and it will detect that and serve images in WEBP format, filling the cache with them. All subsequent users will then get that cached version, but as WEBP is not yet widely supported users with other browsers won’t be able to see the images!</p>\n<p>Now it’s time to see if our effort was fruitful; Restart Nginx to load the new configuration (<code>$ service nginx restart</code>) and visit the website. UH-OH! You probably don’t see what you expected, right? That’s because Varnish is working, and probably serving erroneous version in case you visited it before. The fix is simple, just clear all Varnish cache (<code>$ varnishadm "ban req.url ~ /"</code>) and you should be able to see the proper output.</p>\n<p>To verify, you might want to inspect the response locally: <code>$ curl -i https://yourdomain.com</code>. In the response you should see two headers: <em>X-Cache</em> and <em>X-Page-Speed</em>, which indicates you’re now a webmaster of a considerably faster WordPress website!</p>\n<h2>What about benchmarks?</h2>\n<p>I’ve been asked about benchmarking the results, but in this case, I don’t believe it would make much sense. There’s plenty of Varnish benchmarks out there, but <em>mod_pagespeed</em> isn’t just about speed (despite it’s name). As per it’s documentation it can do a whole lot to optimize your website output in terms of asset concatenation, minification and serving.</p>\n<p>That being said, if you still prefer having hard numbers for this, feel free to test it out and report back and I’ll be more than happy to update this article with your findings.</p>\n<h2>Conclusion</h2>\n<p>What I didn’t address in this article is <a href="http://codex.wordpress.org/Installing_WordPress">WordPress installation</a>, GZIPping, error handling and various possible corner cases, but I think this tutorial should give you a good base to start off with on the path to improved user experience.</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, 09 Sep 2014 03:34:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:94:"WPTavern: Create a Website for Your Presentation Slides with the Reveal.js Theme for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=29551";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:104:"http://wptavern.com/create-a-website-for-your-presentation-slides-with-the-reveal-js-theme-for-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4504:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/revealjs.jpg" rel="prettyphoto[29551]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/revealjs.jpg?resize=1025%2C467" alt="revealjs" class="aligncenter size-full wp-image-30091" /></a></p>\n<p>Many speakers use the <a href="http://lab.hakim.se/reveal-js/#/" target="_blank">Reveal.js</a> HTML presentation framework to display slides due to its simplicity and compatibility with mobile devices. It was created by Swedesh developer<a href="http://hakim.se/" target="_blank"> Hakim El Hattab</a>, who also hosts a fully-featured visual editor for authoring slides if you don’t know how to write HTML.</p>\n<p>WordPress users who want to create and host their own slides now have the option to use the <a href="https://github.com/alleyinteractive/revealjs-wp-theme" target="_blank">Reveal.js theme for WordPress</a>. It installs just like any other theme and requires the addition of the <a href="https://github.com/alleyinteractive/wordpress-fieldmanager" target="_blank">Fieldmanager</a> plugin. The theme takes over the entire website so it should only be used on a site dedicated to displaying presentation slides.</p>\n<p>Once installed, you can customize your presentation in <strong>Appearance → reveal.js Settings</strong>. Here you can select from any of the standard <a href="http://lab.hakim.se/reveal-js/#/themes" target="_blank">Reveal.js presentation themes</a> and adjust everything from transition styles and speeds to base width and margins. Further customizations can be added via a standard child theme.</p>\n<p>Reveal.js for WordPress has support for all of Reveal.js’s fancy transition styles, background transitions and everything else, with the exception of Markdown support. The theme adds a new custom post type for creating Slides, although I believe this would be better accomplished via a plugin.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/add-slide.jpg" rel="prettyphoto[29551]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/add-slide.jpg?resize=959%2C464" alt="add-slide" class="aligncenter size-full wp-image-30066" /></a></p>\n<p>Creating slides is fast, easy, and requires no knowledge of HTML. It’s essentially just like writing a regular WordPress post.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/sample-revealjs.jpg" rel="prettyphoto[29551]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/sample-revealjs.jpg?resize=805%2C752" alt="sample-revealjs" class="aligncenter size-full wp-image-30064" /></a></p>\n<p>The theme comes with roughly a dozen actions and filters for manipulating the output, display, dependencies and more.</p>\n<h3>Conclusion: Reveal.js for WordPress Would be Better as a Plugin</h3>\n<p>The Reveal.js theme is an interesting concept and I appreciate the fact that you can create slides in the admin. However, data portability is a concern here and I’d prefer to see it as a plugin. If you happen to change themes, the interface for managing slide content is lost.</p>\n<p>Additionally, the theme takes over the entire website. It’s not often that you want to create a website for the sole purpose of hosting your slides, especially if you speak frequently and have dozens of presentations. In this instance it would be easier to create your slides elsewhere and upload them to your website outside of WordPress.</p>\n<p>I’d like to see the slide creation functionality pulled out of the theme and ported to its own plugin. The Reveal.js theme could be conditionally loaded for the post/page where the slides are assigned to display. In this scenario, you’d be able to add it to your existing WordPress site while keeping your active theme.</p>\n<p>The Reveal.js theme makes it incredibly easy to power your presentation with WordPress, but you should be aware that you’ll be locked into using it and your slides will not be easily transferable. Placing the slide creation in a plugin outside of the theme itself would make it much more versatile. It would also be highly convenient to be able to import an existing Reveal.js presentation.</p>\n<p>The Reveal.js theme for WordPress was created by the folks at <a href="http://www.alleyinteractive.com/" target="_blank">Alley Interactive</a>, is GPL-licensend, and available on <a href="https://github.com/alleyinteractive/revealjs-wp-theme" target="_blank">GitHub</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 08 Sep 2014 22:13:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:90:"WPTavern: Founder Of ManageWP Publishes Open Letter on Security to The WordPress Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=30013";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/founder-of-managewp-publishes-open-letter-on-security-to-the-wordpress-community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:10630:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/OpenLetterFeaturedImage.png" rel="prettyphoto[30013]"><img class="size-full wp-image-30027" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/OpenLetterFeaturedImage.png?resize=642%2C300" alt="Open Letter Featured Image" /></a>photo credit: <a href="https://www.flickr.com/photos/ronaldregidor/9692711856/">dreams & pancakes</a> – <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a>\n<p>The founder of ManageWP, Vladimir Prelovac, has published an <a title="https://managewp.com/solve-wordpress-security?utm_content=buffere0076&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer" href="https://managewp.com/solve-wordpress-security?utm_content=buffere0076&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer">open letter addressed to the WordPress community</a> on the topic of security. In the letter, he cites the third-party ecosystem surrounding WordPress is not only its biggest strength, but also its biggest weakness.</p>\n<p>He suggests a three-point plan to help mitigate security issues in themes and plugins.</p>\n<ol>\n<li>Weed out plugins with potential security issues.</li>\n<li>Enhance the plugin verification process in the WordPress repository so all new plugins/commits are scanned.</li>\n<li>Educate the WordPress developer community, which goes beyond what is done at the moment.</li>\n</ol>\n<p>Although Prelovac urges the community to start addressing these problems today, most of what he suggests is already occurring and has been for years.</p>\n<h2>Weeding Out Plugins</h2>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/WeedingThePluginDirectory.png" rel="prettyphoto[30013]"><img class="size-full wp-image-30028" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/WeedingThePluginDirectory.png?resize=640%2C250" alt="Weeding The Plugin Directory" /></a>photo credit: <a href="https://www.flickr.com/photos/shutterbugamar/12982948254/">shutterbugamar</a> – <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/">cc</a>\n<p>This is a process that takes place 24 hours a day, 7 days a week. It’s largely a byproduct of so many people using WordPress and the code for plugins being open source. This gives anyone the opportunity to review the source code to check for vulnerabilities. My guess is that most vulnerabilities in plugins are discovered due to a security keen user or researcher reviewing the plugin because they want to use it on their site.</p>\n<p>Samuel “Otto” Wood <a title="http://wptavern.com/naughty-plugins-caught-and-removed-from-repository#comment-16646" href="http://wptavern.com/naughty-plugins-caught-and-removed-from-repository#comment-16646">explains what happens</a> when a plugin in the directory is discovered to have a security issue.</p>\n<ol>\n<li>The plugin is de-listed from the repository, to prevent further downloads of an insecure plugin.</li>\n<li>If the exploit is accidental or not obviously malicious, the developer is notified via email. The email comes from a valid address (plugins @ wp.org) and can be replied to.</li>\n<li>The plugin developer presumably fixes the exploit or tells us that it is an invalid exploit, updates the plugin in SVN, and emails back saying so.</li>\n<li>We check it out, and either provide advice or re-enable the plugin.</li>\n</ol>\n<h2>Enhancing The Plugin Verification Process</h2>\n<p>This is one area of the WordPress plugin directory I consider a weakness. After a plugin is reviewed and approved, a malicious plugin author can upload a different code than what was initially reviewed. This is considered a <em>bait and switch</em> technique. The only way to prevent this from occurring is more humans as there are several times more plugin committs than there are plugin reviews.</p>\n<p>In an interview published on the Tavern <a title="http://wptavern.com/behind-the-scenes-in-the-wordpress-plugin-directory-with-mika-epstein" href="http://wptavern.com/behind-the-scenes-in-the-wordpress-plugin-directory-with-mika-epstein">earlier this year</a>, Mika Epstein, who is a member of the plugin validation team, described how they try to combat the issue.</p>\n<blockquote><p>Someone submits plugin A, we approve it, but they upload plugin B to the repository. That’s something a lot of spammers like to do. Sometimes people upload the wrong version of the code by accident, other times they intentionally go back and add in code we told them to remove. We try to mitigate this by filtering emails (I actually get an email for every single plugin check in) and scan for known issues, but it’s never-ending.</p></blockquote>\n<p>The review team is constantly improving its checks, which help them scan for the most basic and unintentional violations. Unfortunately, there is no way to scan for bait-and-switch techniques, which require someone to go back and manually check for violations after the plugin is already sent to the repository.</p>\n<h2>Expanding Educational Resources For The WordPress Developer Community</h2>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ChalkboardLearning.png" rel="prettyphoto[30013]"><img class="size-full wp-image-30030" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ChalkboardLearning.png?resize=640%2C250" alt="Chalkboard Learning" /></a>photo credit: <a href="https://www.flickr.com/photos/signifying/582602054/">Clint Gardner</a> – <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a>\n<p>Prelovac suggests that security information and best practices should be merged into a single resource. He also suggests that 2015 become the year of WordPress security. This includes WordCamps across the world where security would be the main theme.</p>\n<p>The <a title="http://make.wordpress.org/docs/plugin-developer-handbook/" href="http://make.wordpress.org/docs/plugin-developer-handbook/">WordPress Plugin Development handbook project</a> is still ongoing but is essentially what Prelovac is suggesting. There’s already a chapter dedicated to <a title="http://make.wordpress.org/docs/plugin-developer-handbook/3-plugin-security/" href="http://make.wordpress.org/docs/plugin-developer-handbook/3-plugin-security/">Plugin Security</a> covering data validation, nonces, and checking user capabilities. If you’d like to contribute to the handbook project, <a title="http://make.wordpress.org/docs/handbook/developer-resources/handbooks/" href="http://make.wordpress.org/docs/handbook/developer-resources/handbooks/">check out this page</a> for additional information</p>\n<p>As for WordCamps, most of them already have a session or two on security. I don’t think a WordCamp or conference devoted to security in WordPress would work. It can be a dry subject and quickly go over the heads of users. I’ve attended a few different security sessions at various WordCamps and some people left the room in a panicked state.</p>\n<p>There is no shortage of resources and tools to help developers write clean code. There are books such as <a title="http://www.amazon.com/Professional-WordPress-Plugin-Development-Williams/dp/0470916222" href="http://www.amazon.com/Professional-WordPress-Plugin-Development-Williams/dp/0470916222">WordPress Plugin Development</a> and <a title="http://www.amazon.com/Professional-WordPress-Development-Brad-Williams/dp/111844227X" href="http://www.amazon.com/Professional-WordPress-Development-Brad-Williams/dp/111844227X">Professional WordPress Design and Development, 2nd Edition</a>. Then, there is <a title="http://www.wordpress.tv" href="http://www.wordpress.tv">WordPress.TV</a> with sessions like <a href="http://wordpress.tv/2013/02/12/kurt-payne-josh-hansen-do_actionhack_me-advanced-security-for-plugins/">Kurt Payne and Josh Hansen: do_action(‘hack_me’) Advanced Security for Plugins</a> or <a href="http://wordpress.tv/2011/01/29/mark-jaquith-theme-plugin-security/">Mark Jaquith: Theme & Plugin Security</a>. The knowledge is out there, plugin developers have to find it.</p>\n<h2>Most Of What Prelovac Suggested Already Exists</h2>\n<p>Just about everything Prelovac has suggested in his open letter either already exists or is an ongoing project. I agree that the biggest threat to WordPress and its reputation are the plugins and themes built for it.</p>\n<p>The gatekeepers for the plugin directory and the theme review team have done a great job of protecting users from security issues when they’re discovered. On the other side of the coin, plugin and theme developers have for the most part, done a good job pushing out a patch once a security vulnerability is reported.</p>\n<h2>News Of Security Vulnerabilities In Plugins Will Be More Common</h2>\n<p>No software is perfect as it’s written by humans but the tools in place on WordPress.org make patching holes a quick process. Updates are sent to every user of the affected plugin and in most cases, updating is as simple as clicking a button.</p>\n<p>With thousands of plugins available for WordPress both in and outside the official directory, I think reports, disclosures, and immediate updates for security issues will be more common. I think they already are but because no one has consistently reported on them, especially the minor ones, it doesn’t seem like they’re common. How a developer or business reacts to and notifies users/customers of a security issue is just as important as fixing it.</p>\n<h2>End User Responsibility and Auto Security Updates For Plugins</h2>\n<p>Education is a key component the helps users keep their sites safe and for developers to write clean code. At the end of the day, the user has a responsibility to make sure their website, themes, and plugins are up to date. If users fail to keep their sites up to date, everything else becomes a moot point.</p>\n<p>While WordPress auto updates to point releases, could we eventually see auto updates for major security issues in plugins? This happened with <a title="http://jetpack.me/2014/04/10/jetpack-security-update/" href="http://jetpack.me/2014/04/10/jetpack-security-update/">Jetpack 2.9.3</a> which fixed a critical security bug and updates were pushed out through WordPress cores auto-update system.</p>\n<p>Personally, I don’t want to see that happen as I like control and do a good job of keeping myself updated. I rarely leave an update notification stick around for more than an hour. Is the idea of updating plugins automatically from critical security bugs for the sake of keeping the web and users safe a justifiable one?</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, 08 Sep 2014 19:04:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:113:"WPTavern: My Eyes Are Up Here: A WordPress Plugin With Automatic Face Detection for Generating Cropped Thumbnails";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=30019";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:122:"http://wptavern.com/my-eyes-are-up-here-a-wordpress-plugin-with-automatic-face-detection-for-generating-cropped-thumbnails";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3563:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/automatic-face-dection-feature.jpg" rel="prettyphoto[30019]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/automatic-face-dection-feature.jpg?resize=900%2C417" alt="yoga" class="size-full wp-image-30026" /></a><a href="https://www.flickr.com/photos/oxidizer05/5849087687/in/photolist-9US6Zr-9USacx-9USaPt-9UR2ix-9UV4uS-9UV5vC-9US7v6-9UQZxD-9US8Mk-9US6fa-9UV2oQ-9UTRTy-9US8ar-9USbSB">Yoga in Odintsovo – <a href="https://creativecommons.org/licenses/by-nc-nd/2.0/">cc license</a>\n<p>Ever wish you had more control over the thumbnails that WordPress generates for your media and featured images? <a href="http://wordpress.org/plugins/my-eyes-are-up-here/" target="_blank">My Eyes Are Up Here</a> is a new plugin that helps you get the perfect crop, especially as it pertains to images with human subjects.</p>\n<p>Ordinarily, images are cropped according to the center, which can leave out the most important part of the photo if the person’s face is on the left or right side. More awkward crops of full body shots can isolate a person’s neck down to the elbows, instead of centering around the face. This plugin aims to fix this problem by integrating a <a href="https://github.com/jaysalvat/jquery.facedetection" target="_blank">jQuery plugin which detects faces in pictures</a> and returns their coordinates, using an algorithm written by Liu Liu.</p>\n<p>After you install My Eyes Are Up Here, there are no setting to configure. A new “face detection” section is added to the image editing options. The plugin’s built-in face detection comes in two parts: automatic detection and manual detection via assigned hotspots.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/face-detection-attachment-details.jpg" rel="prettyphoto[30019]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/face-detection-attachment-details.jpg?resize=982%2C850" alt="face-detection-attachment-details" class="aligncenter size-full wp-image-30021" /></a></p>\n<p>The basic face detection is fairly intuitive but it won’t always find everything. That’s why there’s a secondary option to set hotspots to highlight faces that were missed. When you’re finished adding hotspots, click the “finished” button in the editing pane to initiate a re-crop of the image. The resulting thumbnail images will be cropped according to your specifications to highlight faces.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/faces.jpg" rel="prettyphoto[30019]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/faces.jpg?resize=683%2C415" alt="faces" class="aligncenter size-full wp-image-30043" /></a></p>\n<p>When multiple hotspots or faces are detected, the plugin will attempt to crop the image to include as many hotspots in the thumbnail as possible. Otherwise, it will crop around the center of the hotspots.</p>\n<p>If your theme makes heavy use of featured images with human subjects, this plugin will help you to get the desired crop around faces and avoid the dreaded crotch shot. My Eyes Are Up Here was created by the folks at <a href="https://interconnectit.com/" target="_blank">interconnect/it</a>. You can <a href="http://wordpress.org/plugins/my-eyes-are-up-here/" target="_blank">download</a> it for free from WordPress.org or check out the project on <a href="https://github.com/interconnectit/my-eyes-are-up-here" target="_blank">GitHub</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 08 Sep 2014 18:21:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:20:"Matt: Janet Takedown";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44086";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:35:"http://ma.tt/2014/09/janettakedown/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:280:"<p><a href="https://www.techdirt.com/articles/20140904/17142028420/automattic-rejects-series-bogus-janet-jackson-takedown-attempts-using-janet-jackson-song-titles.shtml">Automattic Rejects Series Of Bogus Janet Jackson Takedown Attempts By Using Janet Jackson Song Titles</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 08 Sep 2014 15:00:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:21:"Matt: Pound Cake Game";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44088";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:36:"http://ma.tt/2014/09/pound-cakegame/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:432:"<p>I bet you didn’t know today that <a href="http://cakecakecake.herokuapp.com/">you wanted to play a game with Jay Z’s head eating cupcakes while his Pound Cake verse plays in the background, but you do</a>. Use the keyboard instead of mouse and it’s way more challenging. (Also worth mentioning <a href="https://www.youtube.com/watch?v=NfM_fb1onoI">Childish Gambino had the best freestyle on Pound Cake</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:"Sun, 07 Sep 2014 18:00:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:27:"Matt: Top & Bottom Line";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44093";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:36:"http://ma.tt/2014/09/top-bottomline/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:402:"<blockquote><p>Somebody once told me, “Manage the top line, and the bottom line will follow.” What’s the top line? It’s things like, why are we doing this in the first place? What’s our strategy? What are customers saying? How responsive are we? Do we have the best products and the best people? Those are the kind of questions you have to focus on.</p></blockquote>\n<p>— Steve Jobs</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 06 Sep 2014 17:00:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:65:"WPTavern: WordPress Theme Review Team to Launch Mentoring Program";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=29636";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wptavern.com/wordpress-theme-review-team-to-launch-mentoring-program";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3034:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/01/WPMentorFeaturedImage1.jpg" rel="prettyphoto[29636]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/01/WPMentorFeaturedImage1.jpg?resize=844%2C350" alt="WPMentor Featured Image" class="aligncenter size-full wp-image-14106" /></a></p>\n<p>The <a href="http://make.wordpress.org/themes/" target="_blank">WordPress.org Theme Review Team</a> put out a call for mentors this week. The team will be launching a mentoring program that will pair new reviewers with those who have experience.</p>\n<p>“We are looking for currently active reviewers who want to give back to the community, of course, and to teach the next generation of theme reviewers,” Jose Castaneda said in the announcement. The mentoring program was proposed by TRT admin Tammie Lister as a sort of “buddy system” to help onboard new reviewers.</p>\n<p>Currently, WordPress.org offers <a href="http://wordpress.org/themes/" target="_blank">2,677 themes</a> in its directory. As the number of themes continues to grow, so does the work load for approving new submissions as well as new theme version updates. Theme Review Team members are in short supply, and this program aims to get new members up to speed as fast as possible.</p>\n<p>The response so far has been tremendous, with many team members already stepping up to the plate to volunteer as mentors. New reviewers will be paired up with mentors when they receive their first tickets. “We will be assigning from the <a href="http://make.wordpress.org/themes/about/trac-ticket-request-queue/trac-ticket-request-queue-summer-2014/" target="_blank">theme request list</a> each month,” Lister told the Tavern.</p>\n<p>This is good news for any WordPress.org theme developers who have been frustrated by the amount of time it takes to get theme and updates approved. At times it can take weeks for a new theme to get pushed out to the directory.</p>\n<p>Lister believes the mentoring program will help to improve the efficiency of reviewers working through the queue. “Anything that helps train will have a positive impact on the queue,” she said. “Every little improvement helps, but we also need more people reviewing – more hands to make light of the queue.”</p>\n<p>The introduction of <a href="http://make.wordpress.org/themes/2014/08/28/the-role-of-trusted-reviewer/" target="_blank">Key Reviewers</a> will also help to speed things along. This is a new role within the Theme Review Team with the power to push their own theme reviews live, as well as those being reviewed by other team members. This results in more people available who can make themes live on WordPress.org.</p>\n<p>Experienced theme reviewers who want to join are encouraged to comment on the <a href="http://make.wordpress.org/themes/2014/09/05/call-for-theme-review-mentors/" target="_blank">announcement post</a> with their WordPress.org usernames to be added to the list of available mentors.</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, 05 Sep 2014 21:25:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:51:"WPTavern: Flywheel Hosting Secures $1.2M In Funding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=29960";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wptavern.com/flywheel-hosting-secures-1-2m-in-funding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3846:"<p>At this time last year, Flywheel Hosting <a title="http://wptavern.com/flywheel-hosting-opens-to-the-public" href="http://wptavern.com/flywheel-hosting-opens-to-the-public">opened its doors</a> to the public. Today, the <a title="http://getflywheel.com/announcing-the-flywheel-seed-funding/" href="http://getflywheel.com/announcing-the-flywheel-seed-funding/">company announced</a> it has secured $1.2M in seed funding. The round was led by <a href="http://linseedcapital.com">Linseed Capital</a>, with participation from the <a href="http://nebraskaangels.org">Nebraska Angels</a>, <a href="http://ludlowventures.com">Ludlow Ventures</a> out of Detroit, <a href="http://lightbank.com">Lightbank</a> and <a href="http://hydeparkvp.com">Hyde Park Venture Partners</a> out of Chicago, and <a href="http://rosepaul.com/">Rose Paul Ventures</a> out of NYC.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/FlywheelLogoOrange.png" rel="prettyphoto[29960]"><img class="aligncenter size-full wp-image-29976" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/FlywheelLogoOrange.png?resize=492%2C160" alt="Flywheel Logo Orange" /></a></p>\n<p>Flywheel will use the funding to expand their team and infrastructure. Also as part of the announcement, Flywheel now offers bulk pricing plans. Bulk pricing starts with 10 sites with 150,000 visits for $100 a month and 25 sites with 500,000 visits for $250 a month. Flywheel hosting plans for small sites begin at $15 a month for sites with 5,000 visits. Since the customer base is mainly website designers and agencies, these new plans make sense, especially for managing all of their client sites in one location.</p>\n<h2>Managing A Growth Phase</h2>\n<p><a title="http://www.matthewwoodward.co.uk/reviews/webhost-trusted-wp-engine-hijacked-business-avoid-them/" href="http://www.matthewwoodward.co.uk/reviews/webhost-trusted-wp-engine-hijacked-business-avoid-them/">Some customers</a> of WPEngine have suggested that the company’s rapid growth resulted in lackluster support and reliable service during the height of its popularity. Earlier this year, an article on the WPEngine blog entitled <a title="http://wpengine.com/2014/05/21/growth-hard/" href="http://wpengine.com/2014/05/21/growth-hard/">Growth Is Hard,</a> explained the growing pains the company experienced.</p>\n<p>I asked the co-founder and CEO of Flywheel, Dusty Davidson, how he plans to manage the next phase of Flywheel.</p>\n<blockquote><p>We’re very aware of how hard it is to scale a support organization. We’re investing heavily in great people, great automation, tools, and other things to do our absolute best to provide the level of support that our customers have come to expect. It’s core to our mission to provide service at that level, even at scale and we’ll do what it takes to accomplish that.</p></blockquote>\n<p>It’s rare to see so many people compliment a webhosting provider but that’s what I’ve witnessed over the past year. Through Twitter, WordCamps, and other venues, <a title="https://imajworks.com/2013/11/14/five-reasons-love-flywheel/" href="https://imajworks.com/2013/11/14/five-reasons-love-flywheel/">customers appear</a> to be unanimously happy with Flywheel. It will be interesting to see if the company can scale at a fast rate while maintaining their signature level of quality service and support.</p>\n<h2>Tell Us About Your Experience With FlyWheel</h2>\n<p>With so many companies in the managed WordPress hosting market, it’s encouraging to see a startup proving to be a hit amongst its customers. Instead of going after everyone, FlyWheel has carved out a niche within the market and is doing well. If you are a current or existing customer of FlyWheel Hosting, tell us about your experience 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:"Fri, 05 Sep 2014 20:42: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:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:35;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:115:"WPTavern: 1,000+ WordPress Themes on Envato Market Potentially Affected by Slider Revolution Security Vulnerability";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=29940";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:123:"http://wptavern.com/1000-wordpress-themes-on-envato-market-potentially-affected-by-revolution-slider-security-vulnerability";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6680:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/envato.jpg" rel="prettyphoto[29940]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/envato.jpg?resize=697%2C314" alt="envato" class="aligncenter size-full wp-image-29973" /></a></p>\n<p>A couple days ago we wrote about a <a href="http://wptavern.com/critical-security-vulnerability-found-in-wordpress-slider-revolution-plugin-immediate-update-advised" target="_blank">critical security vulnerability</a> that was found in the popular WordPress Slider Revolution plugin and silently patched by its author. Envato Market has since <a href="http://marketblog.envato.com/general/plugin-vulnerability/" target="_blank">launched further investigation</a> of the matter, as the product is not only hosted on their marketplace but also packaged with many other products.</p>\n<p>The company has identified <a href="http://marketblog.envato.com/general/affected-themes/" target="_blank">more than 1,000 themes</a> sold through its marketplace that are potentially affected by this vulnerability. While many of the products have already been patched, some theme authors have not yet acted. In recognition of the severity of this vulnerability and the ease with which it’s exploited, the marketplace is temporarily disabling themes that have not yet been patched:</p>\n<blockquote><p>We are starting to temporarily disable affected themes that haven’t been updated, contacting authors of those themes to get an update through ASAP. This will take a while as there are a lot of themes to manually sort through.</p></blockquote>\n<p>Even with the products getting patched, the next challenge is to get users to update. Many themes do not have an auto-update system included to notify users and WordPress users do not always apply updates as soon as they are available, for fear of breaking something. Envato Market is addressing this by emailing users to inform them of the security vulnerability:</p>\n<blockquote><p>We will be contacting all buyers of affected themes directly via their Envato Market email address asap, to ensure they read and act on this information.</p></blockquote>\n<p>Envato Market published detailed instructions to help users determine if they are affected and update accordingly.</p>\n<h2>The Danger of Bundling Plugins With Themes</h2>\n<p>When a security vulnerability potentially affects more than 1,000 products, silent patching is not acceptable. This should have been publicly disclosed by the ThemePunch team at the time it occurred, which might have prevented this vulnerability from being actively exploited in the wild.</p>\n<p>At the end of the post, Envato Market highlights what they are doing to ensure that this doesn’t happen again:</p>\n<blockquote><p>We will be releasing guidelines and processes to make sure issues like this get to us faster, and to help authors make sure their buyers are updated and patched as fast as possible. </p>\n<p>We are also going to revisit how updates are handled for bundles and themes that include separate plugins.</p></blockquote>\n<p>Unfortunately, “more guidelines and processes” do not address the root of this problem. This vulnerability highlights the danger of allowing theme authors to bundle plugins in their products. Envato Market would have no need to list out 1,000+ potentially affected themes if it discouraged, or even forbade, theme authors from bundling plugins.</p>\n<p>Since the vast majority of Envato’s top-selling themes do not follow industry best practices, forbidding them to bundle plugins would most certainly result in a loss of profit. There seems to be little incentive for Envato Market to act decisively on the lesson of this security vulnerability and move toward best practices.</p>\n<p>Respected professionals in the WordPress community have been calling on theme authors to keep plugins separate for years. This situation has renewed the debate:</p>\n<blockquote class="twitter-tweet" width="550"><p>.<a href="https://twitter.com/envato">@envato</a> This is why you should never permit bundled plugins in themes: <a href="http://t.co/XFAU1anKef">http://t.co/XFAU1anKef</a> – no exceptions</p>\n<p>— Pippinsplugins (@pippinsplugins) <a href="https://twitter.com/pippinsplugins/status/507907279140945921">September 5, 2014</a></p></blockquote>\n<p></p>\n<p>Historically, Envato has been slow to act on theme best practices. Last year’s addition of a <a href="http://notes.envato.com/general/100-gpl-option-now-available-plus-woothemes-arrives" target="_blank">GPL licensing option</a> and the <a href="http://notes.envato.com/news/update-wordpress-theme-submission-requirements" target="_blank">updated theme submission requirements</a> were a good start, but authors have found ways to skirt the requirements. Justin Tadlock offers some insight on this practice, following his <a href="http://justintadlock.com/archives/2013/09/11/the-themeforest-experiment-one-year-later" target="_blank">Themeforest experiment</a>:</p>\n<blockquote><p>Based on what I’ve seen in the forums, many authors are just looking for ways to do what they’ve already been doing but just putting it in a plugin packaged with their theme. Basically, they don’t want anyone to “steal their code” nor do they want to truly make a wonderful user experience, one in which users will keep coming back long after they’ve switched to a new theme. If you package your plugin functionality into a plugin that’s only ever going to be useful with your theme, then you’re _doing_it_wrong(). That’s what I envision, but I hope that’s the sort of thing Envato will take a stand against. Otherwise, you’re just pulling the same ol’ tricks in a different costume.</p></blockquote>\n<p>This experience prompted Tadlock to continue building standalone <a href="http://themehybrid.com/plugins" target="_blank">plugins </a>that theme authors can add support for when building their products. This frees theme authors up to focus on the theme itself and offer better data portability for users via plugins. Adopting a standard for plugin functionality is good for users and creates less work for theme authors. They can continue building more themes, instead of wasting time patching their themes for a slider’s security vulnerability.</p>\n<p>WordPress is now used by more than 23% of the world’s websites and will always be a target for hackers looking to exploit vulnerabilities. If Envato Market doesn’t take a stand against theme authors packaging plugins, it will continue to encounter the same security problems that are topping the headlines this week.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 05 Sep 2014 19:48:54 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:32:"Matt: Tale of Two Automatticians";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44084";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"http://ma.tt/2014/09/tale-of-two-automatticians/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:423:"<p>Today we hear from two Automatticians: <a href="http://extrapolate.me/2014/09/04/ten-years-since-my-first-open-source-contribution/">Nikolay talks about his first open source contribution ten years ago and the path his life has taken since</a>, and Andrea <a href="http://andreabadgley.com/2014/09/03/call-me-democratizer/">says she “can’t wipe this grin off my face” at the start of a new journey</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 05 Sep 2014 17:34: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: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: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:63:"WPTavern: Rams: A Free WordPress Blogging Theme With Zero Fluff";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=29752";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wptavern.com/rams-a-free-wordpress-blogging-theme-with-zero-fluff";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2745:"<p><a href="http://wordpress.org/themes/rams" target="_blank">Rams</a> is a new release from WordPress theme developer <a href="http://www.andersnoren.se/" target="_blank">Anders Norén</a>. The theme is aptly named for <a href="http://en.wikipedia.org/wiki/Dieter_Rams" target="_blank">Dieter Rams</a>, a German industrial designer who is well known for his innovative, unobtrusive, and timeless product design.</p>\n<p>Rams is a minimalist blogging theme that bears Noren’s trademark <a href="http://wptavern.com/anders-noren-on-achieving-simplicity-in-wordpress-theme-design" target="_blank">simplicity</a>. Norén said that he designed the theme with “zero fluff” to put the content in focus.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/rams.png" rel="prettyphoto[29752]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/rams.png?resize=880%2C660" alt="rams" class="aligncenter size-full wp-image-29904" /></a></p>\n<p>Rams includes support for the gallery, video and quote post formats. It is retina-ready and responsive, providing a high quality reading experience on desktop, tablets, and mobile phones.</p>\n<p>The theme comes packaged with a beautiful, simplified archive template and built-in editor styles. It also includes support for <a href="http://jetpack.me/support/tiled-galleries/" target="_blank">Jetpack Tiled Galleries</a> and infinite scroll.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/jetpack-tiled-gallery.png" rel="prettyphoto[29752]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/jetpack-tiled-gallery.png?resize=1025%2C617" alt="jetpack-tiled-gallery" class="aligncenter size-full wp-image-29921" /></a></p>\n<p>Check out a <a href="http://www.andersnoren.se/themes/rams/" target="_blank">live demo</a> to see Rams in action and make sure to navigate through the various templates and styles.</p>\n<h3>One Theme Option</h3>\n<p>Rams includes only one theme option. Yes, you read that correctly. The color control option allows you to set the background color of the sidebar as well as the accent color of the content. Rams includes no other options and no widget areas. That means that it takes no effort whatsoever to get your site looking just like the demo.</p>\n<p>Norén skillfully captures the essence of Dieter Rams’ <a href="http://www.sfmoma.org/about/press/press_exhibitions/releases/880" target="_blank">principles of good design</a> in this tribute theme. If you’re looking for a beautiful, simple blog design with plenty of room for content to breathe, Rams is a solid option. <a href="http://wordpress.org/themes/rams" target="_blank">Download</a> it for free from WordPress.org.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 05 Sep 2014 04:58:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:62:"WPTavern: Syed Balkhi on The Overnight Success of OptinMonster";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=29899";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wptavern.com/syed-balkhi-on-the-overnight-success-of-optinmonster";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3253:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/MonsterFeaturedImage.png" rel="prettyphoto[29899]"><img class="size-full wp-image-29901" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/MonsterFeaturedImage.png?resize=640%2C345" alt="Monster Featured Image" /></a>photo credit: <a href="https://www.flickr.com/photos/jdhancock/3777558632/">JD Hancock</a> – <a href="http://creativecommons.org/licenses/by/2.0/">cc</a>\n<p>Created by Syed Balkhi and Thomas Griffin, <a title="http://optinmonster.com/" href="http://optinmonster.com/">OptinMonster</a> is one of the most popular WordPress plugins when it comes to converting visitors into subscribers and customers. Its success is one of the reasons the duo decided to <a title="http://www.poststat.us/syed-balkhi-thomas-griffin-awesome-motive/" href="http://www.poststat.us/syed-balkhi-thomas-griffin-awesome-motive/">join forces</a>. While the team enjoys the success of OptinMonster today, the plugin almost didn’t make it to the market.</p>\n<p>Balkhi <a title="http://www.balkhis.com/how-we-turned-a-failed-product-into-a-six-figure-business-in-less-than-a-month/" href="http://www.balkhis.com/how-we-turned-a-failed-product-into-a-six-figure-business-in-less-than-a-month/">shares a story on his personal site</a> that explains how he and Griffin turned OptinMonster into a 10 month-long, overnight success story.</p>\n<blockquote><p>That night was the longest night ever. Once we added List25 along with few other sites, our servers crashed. Since neither of us were sysadmins, we couldn’t get the servers to scale properly.</p>\n<p>We consulted with a few sysadmins and long story short the issue was our reporting. The WordPress database couldn’t handle that many rewrites. We were tracking impressions and conversions for every site (imagine the amount of database writes).</p>\n<p>We really had two options at this point: completely pivot in 30 days or close down shop.</p></blockquote>\n<p>Stories like this are great because it gives us a glimpse into the work involved to create a stellar product. What’s of particular interest to me is that it almost didn’t see the light of day. The team persevered, made a pivot, and are now the proud owners of a great plugin.</p>\n<p>I’d love to see more developers share their journeys. Other developers that have shared their stories include:</p>\n<ul>\n<li><a href="http://wptavern.com/chris-wiegman-on-why-he-sold-better-wp-security-to-ithemes" target="_blank">Chris Wiegman on Why He Sold Better WP Security to iThemes</a></li>\n<li><a href="http://wptavern.com/jason-schuller-shares-his-experience-running-a-wordpress-theme-business" target="_blank">Jason Schuller Shares His Experience Running a WordPress Theme Business</a></li>\n<li><a title="https://bruteprotect.com/bruteprotect-joins-automattic/" href="https://bruteprotect.com/bruteprotect-joins-automattic/">BruteProtect Joins Automattic</a></li>\n</ul>\n<p>I almost think I’m in the wrong business when I hear about WordPress companies or specific products making millions of dollars. However, stories like the ones above are reminders that there is a lot of work that goes on behind the scenes to create a successful product.</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, 04 Sep 2014 23:04:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:61:"WPTavern: Poll: Who Uses Reader In The WordPress Mobile Apps?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=29874";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"http://wptavern.com/poll-who-uses-reader-in-the-wordpress-mobile-apps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2434:"<p>WordPress for iOS 4.3 is <a title="http://apps.wordpress.org/2014/09/04/4-3-release/" href="http://apps.wordpress.org/2014/09/04/4-3-release/">now available</a> for download from the App Store. The new release contains updates to stats and reader. You can now see more details in the stats chart for Visitors and Views. Just tap any of the views available such as Days, Weeks, or Months.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/WordPressForiOS4point3FeaturedImage.png" rel="prettyphoto[29874]"><img class="aligncenter size-full wp-image-29876" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/WordPressForiOS4point3FeaturedImage.png?resize=735%2C321" alt="WordPress For iOS 4 Poin 3 Featured Image" /></a></p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/FollowAnyASiteInReader.png" rel="prettyphoto[29874]"><img class="wp-image-29882 size-medium" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/FollowAnyASiteInReader.png?resize=300%2C111" alt="Follow Any Site In Reader" /></a>Follow Any Site In Reader\n<p>In previous versions of the app, reader was limited to WordPress.com and self hosted sites using Jetpack. In 4.3, you can add any site to the reader by URL or tag essentially turning it into an RSS Feed Reader.</p>\n<p>The app contains several improvements under the hood to prepare for the release of iOS 8. Among some of the features slated for the next version include an iOS 8 <em>Today</em> extension to view stats, a major interface update for notifications, and a limited roll out of a new WYSIWYG post editor.</p>\n<h2>Who Uses The Reader Part Of The Mobile Apps?</h2>\n<p>Being able to add any site to the reader is a nice enhancement but it’s not enough to convince me to use it. I use <a title="http://feedly.com/" href="http://feedly.com/">Feedly</a> as my feed reader both on the desktop and my phone. The interface of reader makes it difficult to quickly skim the headlines of several different websites and I’d rather not manage so many sites on my phone. I’ve also found it to not be the ideal experience to consume content.</p>\n<p>I wonder how many people use this portion of the app. Help me figure it out by participating in the poll. If you vote yes, let me know in the comments how you use it.</p>\nNote: There is a poll embedded within this post, please visit the site to participate in this post''s poll.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 04 Sep 2014 21:56:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:9:"Matt: 4.0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44082";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://ma.tt/2014/09/4-0/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:534:"<p>WordPress 4.0, code-named Benny, <a href="http://wordpress.org/news/2014/09/benny/">is now available</a>. The response so far has been great, over 200k downloads in just a few hours. Today we celebrate, <a href="http://wordpress.org/download/counter/">watch the counter</a>, and tomorrow go back to work on 4.1. <img src="http://i1.wp.com/s.ma.tt/blog/wp-includes/images/smilies/icon_smile.gif?w=604" alt=":)" class="wp-smiley" /> For those following along at home, the 3.x series of WordPress was downloaded 300 million times.</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, 04 Sep 2014 21:00:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:58:"WPTavern: Pressgram to Shut Down, Development Discontinued";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=29842";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wptavern.com/pressgram-to-shut-down-development-discontinued";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4734:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/03/pressgram-feature.jpg" rel="prettyphoto[29842]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/03/pressgram-feature.jpg?resize=800%2C373" alt="pressgram-feature" class="aligncenter size-full wp-image-19956" /></a></p>\n<p><a href="http://pressgr.am/" target="_blank">Pressgram</a> founder John Saddington <a href="http://john.do/bye-pressgram/" target="_blank">announced</a> today that he will be shutting down the project and pulling the app from the Apple Store on September 11. The app started as a <a href="http://wptavern.com/pressgram-launches-wordpress-powered-photo-sharing-app" target="_blank">WordPress-powered photo sharing app</a> and evolved to support all kinds of publishing platforms. Last March, Saddington <a href="http://wptavern.com/pressgram-2-0-removes-social-layer-to-focus-on-publishing" target="_blank">dropped the social layer</a> in favor of focusing his efforts on the publishing features.</p>\n<p>Despite running a successful <a href="https://www.kickstarter.com/projects/tentblogger/pressgram-an-image-sharing-app-built-for-an-indepe" target="_blank">$50K+ Kickstarter campaign</a>, Saddington was not able to continue development on the project.</p>\n<blockquote><p>Today marks the 2-year (official) anniversary of Pressgram and it is with a very heavy heart that I am announcing that active development on Pressgram is being discontinued.</p></blockquote>\n<p>He does not specify the reasons for shutting down the app in his departure post, which is more of a thank you to investors and a farewell to users. However, his responses to users on Twitter indicate that he could not continue to uphold the financial burden of the Amazon AWS costs of running the service, which centralized publishing requests to various social outlets.</p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/Tarendai">@Tarendai</a> <a href="https://twitter.com/Pressgram">@Pressgram</a> // custom built API to handle a ton of requests from the users, especially to publish to multiple techs and platforms.</p>\n<p>— John Saddington (@saddington) <a href="https://twitter.com/saddington/status/507596625582120960">September 4, 2014</a></p></blockquote>\n<p></p>\n<p>In response to users who inquired whether or not they will be able to continue using the app, Saddington <a href="https://twitter.com/saddington/status/507523755485052928" target="_blank">replied</a>, “The service will turn off officially at the end of the month, unfortunately.”</p>\n<p>When Pressgram was in the crowdfunding stage, WordPress co-founder Matt Mullenweg had pledged $10K dollars to help get it off the ground but eventually withdrew his pledge when he learned that the project would not be open source. The last time we spoke with Saddington, he was open to open sourcing the app but has thus far continued with it under a proprietary license. Now that development is being discontinued, users want to know about the possibility of open sourcing the code so that it doesn’t disappear. He confirmed that this is still a possibility.</p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/ramiabraham">@ramiabraham</a> <a href="https://twitter.com/Pressgram">@Pressgram</a> always a possibility.</p>\n<p>— John Saddington (@saddington) <a href="https://twitter.com/saddington/status/507587286129598464">September 4, 2014</a></p></blockquote>\n<p></p>\n<p>At a later date, Saddington <a href="https://twitter.com/saddington/status/507479571688476673" target="_blank">plans to share more thoughts</a> about why the project didn’t end up working out. The information will undoubtedly be of interest to his many Kickstarter backers, some of whom pledged hundreds of dollars to see this app become a reality.</p>\n<p>From the beginning, Pressgram had mass appeal, given that it used WordPress to power a creative application with the potential to become a viable alternative to some of the larger players, such as Instagram. Many in the WordPress community were hoping that that app would be open source, since it was originally based on open source software and could potentially help move the WordPress app space forward.</p>\n<p>If Pressgram were open source, it’s possible that someone could use the code as a starting place to build an app that doesn’t require a centralized service. Where could Saddington have taken Pressgram if he had a team of enthusiastic open source contributors surrounding the project and improving upon it at a faster rate? Would you like to see the app open sourced or do you think it should be simply retired? 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, 04 Sep 2014 20:42:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:71:"WPTavern: WPWeekly Episode 161 – The CTO Of CrowdFavorite, Chris Lema";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=29854&preview_id=29854";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:76:"http://wptavern.com/wpweekly-episode-161-the-cto-of-crowdfavorite-chris-lema";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3852:"<p><a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by <a title="http://crowdfavorite.com" href="http://crowdfavorite.com">CrowdFavorite</a> CTO, <a title="http://chrislema.com/" href="http://chrislema.com/">Chris Lema</a>. We talk about his new position and what the <a title="http://crowdfavorite.com/blog/2014/08/ithemes-crowd-favorite-partner-in-new-product-development/" href="http://crowdfavorite.com/blog/2014/08/ithemes-crowd-favorite-partner-in-new-product-development/">joint-venture partnership</a> means for both CrowdFavorite and iThemes. Lema explains what the word <em>enterprise</em> means for WordPress products and near the end of the show, gives us his prediction on what will happen in the service and product sectors of the WordPress ecosystem.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/critical-security-vulnerability-found-in-wordpress-slider-revolution-plugin-immediate-update-advised" href="http://wptavern.com/critical-security-vulnerability-found-in-wordpress-slider-revolution-plugin-immediate-update-advised">Critical Security Vulnerability Found in WordPress Slider Revolution Plugin, Immediate Update Advised</a><br />\n<a title="http://wptavern.com/prowordpress-subreddit-passes-1000-subscribers" href="http://wptavern.com/prowordpress-subreddit-passes-1000-subscribers">ProWordPress Subreddit Passes 1,000 Subscribers </a><br />\n<a title="http://wptavern.com/why-you-might-consider-adding-development-hours-to-your-changelog" href="http://wptavern.com/why-you-might-consider-adding-development-hours-to-your-changelog">Why You Might Consider Adding Development Hours to Your Changelog</a><br />\n<a title="http://wptavern.com/the-hidden-savings-of-a-wordcamp-ticket" href="http://wptavern.com/the-hidden-savings-of-a-wordcamp-ticket">The Hidden Savings Of a WordCamp Ticket</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="http://wordpress.org/plugins/wp-scroll-depth/" href="http://wordpress.org/plugins/wp-scroll-depth/">WP Scroll Depth</a> is a small Google Analytics plugin that allows you to measure how far down the page your users are scrolling. It monitors the 25%, 50%, 75%, and 100% scroll points, sending a Google Analytics Event at each one. You can also track when specific elements on the page are scrolled into view. On a blog, for example, you could send a Scroll Depth event whenever the user reaches the end of a post.</p>\n<p><a title="http://wordpress.org/plugins/embed-custom-field/" href="http://wordpress.org/plugins/embed-custom-field/">Embed Custom Field</a> adds a shortcode for including a custom field on a page or post. Create a custom field on your post/page, then use the following shortcode to include it on your site: [embed_custom_field "field-name-here"]</p>\n<p><a title="http://wordpress.org/plugins/wp-taxi-me/" href="http://wordpress.org/plugins/wp-taxi-me/">WP Taxi Me</a> adds the ability to order a taxi directly from your mobile site using Uber. You can encourage users to register for Uber using an optional setting as well. The plugin hides itself if the user isn’t on mobile, but users can still register for Uber.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, September 10th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #161:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 04 Sep 2014 19:38: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:"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:56:"WPTavern: WordPress 4.0 Benny Now Available for Download";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=29690";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/wordpress-4-0-benny-now-available-for-download";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6916:"<p>WordPress 4.0 “Benny” was released today, named for American jazz and swing musician <a href="http://en.wikipedia.org/wiki/Benny_Goodman" target="_blank">Benny Goodman</a>, also known as the “King of Swing.”</p>\n<p>Development for 4.0 <a href="http://wptavern.com/wordpress-4-0-kicks-off-development-today-helen-hou-sandi-to-lead-release" target="_blank">kicked off at the end of April</a>, led by <a href="http://profiles.wordpress.org/helen" target="_blank">Helen Hou-Sandí</a>. This release includes hundreds of refinements and a few brand new features, culminating in a more polished media and editing experience. You’ll also find some exciting new tools for developers. Here’s a quick overview of what’s new.</p>\n<h2>New Media Grid View</h2>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/media-library.png" rel="prettyphoto[29690]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/media-library.png?resize=1025%2C409" alt="media-library" class="aligncenter size-full wp-image-29695" /></a></p>\n<p>The WordPress media library has a beautiful new default grid view. When you click on an item, the attachment details will launch a preview that allows you to easily edit and navigate items in your library. Media is now easier to manage with the “bulk select” option which enables you to delete multiple items at once.</p>\n<h2>Improved Writing Experience</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/sticky-editing-tools.png" rel="prettyphoto[29690]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/sticky-editing-tools.png?resize=1025%2C572" alt="sticky-editing-tools" class="aligncenter size-full wp-image-29706" /></a></p>\n<p>Composing in WordPress has never been better. The visual editor now expands to fit your content, instead of the awkward scrollbar you used to see within the content area. The editing experience is smoother with a fixed toolbar as you scroll, which means your tools will follow you as your content expands.</p>\n<h2>oEmbed Previews</h2>\n<div class="wp-video"><!--[if lt IE 9]><script>document.createElement(''video'');</script><![endif]-->\n<a href="http://wptavern.com/wp-content/uploads/2014/09/oembed-previews.mp4">http://wptavern.com/wp-content/uploads/2014/09/oembed-previews.mp4</a></div><div class="media-shortcode-extend"><div class="media-info video-info"><ul class="media-meta"><li><span class="prep">Run Time</span> <span class="data">0:17</span></li><li><span class="prep">Dimensions</span> <span class="data">1,312 × 800</span></li><li><span class="prep">File Name</span> <span class="data"><a href="http://wptavern.com/wp-content/uploads/2014/09/oembed-previews.mp4">oembed-previews.mp4</a></span></li><li><span class="prep">File Size</span> <span class="data">2.41 MB</span></li><li><span class="prep">File Type</span> <span class="data">MP4</span></li><li><span class="prep">Mime Type</span> <span class="data">video/quicktime</span></li></ul></div><button class="media-info-toggle">Video Info</button></div>\n<p>WordPress 4.0 adds oEmbed support for TED talks, Mixcloud, CollegeHumor.com, Issuu, Polldaddy’s short URL format, YouTube playlist URLs. The visual editor now displays previews of media added via on oEmbed URL. The video above is included on the 4.0 about page, demonstrating oEmbed previews in action.</p>\n<h2>Refreshed Plugin Install and Search Experience</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/add-plugins.png" rel="prettyphoto[29690]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/add-plugins.png?resize=1025%2C447" alt="add-plugins" class="aligncenter size-full wp-image-29712" /></a></p>\n<p>WordPress 4.0 makes it much easier to search for plugins in the admin. The plugin installer now displays plugin as cards in a grid view. Plugin authors can add <a href="http://wptavern.com/wordpress-4-0-adds-custom-icons-to-the-plugin-installer" target="_blank">custom icons</a> that will appear in the installer. Clicking on a listing launches the plugin details modal with a description, ratings, reviews, compatibility information and more.</p>\n<h2>Improved Language Support</h2>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/wordpress-languages.jpg" rel="prettyphoto[29690]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/wordpress-languages.jpg?resize=809%2C381" alt="wordpress-languages" class="aligncenter size-full wp-image-25834" /></a></p>\n<p>This release adds major <a href="http://wptavern.com/major-internationalization-improvements-planned-for-wordpress-4-0" target="_blank">internationalization improvements</a> to the software. <a href="http://wptavern.com/wordpress-4-0-to-add-language-selection-to-installation">Language selection</a> is now available at installation and language management has been streamlined in the dashboard.</p>\n<h3>What’s new under the hood?</h3>\n<p>WordPress 4.0 also includes an exciting array of new developer goodies. Here are a few of the highlights:</p>\n<h5>Customizer API</h5>\n<p>This release adds a new <a href="https://core.trac.wordpress.org/ticket/27406" target="_blank">Panels API</a> that enables developers to group customizer controls into sections. It also includes support for contextual controls that will be visible or hidden based on the page the user is viewing. The improved customizer offers a wider array of controls and parameters that allow developers to extend it for more varied uses beyond themes.</p>\n<h5>Query Ordering</h5>\n<p>WordPress 4.0 includes <a href="http://make.wordpress.org/core/2014/08/29/a-more-powerful-order-by-in-wordpress-4-0/" target="_blank">a more powerful ORDER BY</a> argument for developers working with <a href="http://codex.wordpress.org/Class_Reference/WP_Query" target="_blank">WP_Query</a>. Developers can now pass an array to WP_Query as the value for <a href="http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters" target="_blank">orderby</a> for more flexible and precise querying.</p>\n<h5>External Libraries</h5>\n<p>This major release includes updates for libraries used in WordPress, including TinyMCE 4.1.3, jQuery 1.11.1, MediaElement 2.15.</p>\n<p>You can find the full list of all the changes on the <a href="http://codex.wordpress.org/Version_4.0" target="_blank">4.0 release page</a>, which was created by volunteers from the docs team.</p>\n<p>WordPress 4.0 is the result of the tireless efforts of 275 contributors. If code is poetry, then this release is a skillfully-written sonnet that resolves problem spots and introduces new tools that users will love. Once you update, you’ll wonder how you ever lived without these improvements. Visit your WordPress site and navigate to Dashboard > Update to get 4.0 and take advantage of all the shiny new 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:"Thu, 04 Sep 2014 17:13:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:35:"Dev Blog: WordPress 4.0 “Benny”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3296";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"http://wordpress.org/news/2014/09/benny/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:21826:"<p>Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader <a href="http://en.wikipedia.org/wiki/Benny_Goodman">Benny Goodman</a>, is available <a href="http://wordpress.org/download/">for download</a> or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience we think you’ll enjoy.</p>\n<div id="v-bUdzKMro-1" class="video-player"></div>\n<hr />\n<h2>Manage your media with style</h2>\n<p><img class="alignnone size-full wp-image-3316" src="http://i0.wp.com/wordpress.org/news/files/2014/09/media.jpg?resize=692%2C406" alt="Media Library" />Explore your uploads in a beautiful, endless grid. A new details preview makes viewing and editing any amount of media in sequence a snap.</p>\n<hr />\n<h2>Working with embeds has never been easier</h2>\n<div class="wp-video"><!--[if lt IE 9]><script>document.createElement(''video'');</script><![endif]-->\n<a href="http://s.w.org/images/core/4.0/embed.mp4">//s.w.org/images/core/4.0/embed.mp4</a></div>\n<p>Paste in a YouTube URL on a new line, and watch it magically become an embedded video. Now try it with a tweet. Oh yeah — embedding has become a visual experience. The editor shows a true preview of your embedded content, saving you time and giving you confidence.</p>\n<p>We’ve expanded the services supported by default, too — you can embed videos from CollegeHumor, playlists from YouTube, and talks from TED. <a href="http://codex.wordpress.org/Embeds">Check out all of the embeds</a> that WordPress supports.</p>\n<hr />\n<h2>Focus on your content</h2>\n<div class="wp-video"><a href="http://s.w.org/images/core/4.0/focus.mp4">//s.w.org/images/core/4.0/focus.mp4</a></div>\n<p>Writing and editing is smoother and more immersive with an editor that expands to fit your content as you write, and keeps the formatting tools available at all times.</p>\n<hr />\n<h2>Finding the right plugin</h2>\n<p><img class="aligncenter size-large wp-image-3309" src="http://i0.wp.com/wordpress.org/news/files/2014/09/add-plugin1.png?resize=692%2C405" alt="Add plugins" /></p>\n<p>There are more than 30,000 free and open source plugins in the WordPress plugin directory. WordPress 4.0 makes it easier to find the right one for your needs, with new metrics, improved search, and a more visual browsing experience.</p>\n<hr />\n<h2>The Ensemble</h2>\n<p>This release was led by <a href="http://helenhousandi.com">Helen Hou-Sandí</a>, with the help of these fine individuals. There are 275 contributors with props in this release, a new high. Pull up some Benny Goodman on your music service of choice, as a bandleader or in one of his turns as a classical clarinetist, and check out some of their profiles:</p>\n<p><a href="http://profiles.wordpress.org/sharonaustin">_Redd</a>, <a href="http://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>, <a href="http://profiles.wordpress.org/viper007bond">Alex Mills (Viper007Bond)</a>, <a href="http://profiles.wordpress.org/tellyworth">Alex Shiels</a>, <a href="http://profiles.wordpress.org/alexanderrohmann">Alexander Rohmann</a>, <a href="http://profiles.wordpress.org/aliso">Alison Barrett</a>, <a href="http://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="http://profiles.wordpress.org/amit">Amit Gupta</a>, <a href="http://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="http://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="http://profiles.wordpress.org/andrezrv">Andres Villarreal</a>, <a href="http://profiles.wordpress.org/zamfeer">Andrew Mowe</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/andy">Andy Skelton</a>, <a href="http://profiles.wordpress.org/ankit-k-gupta">Ankit K Gupta</a>, <a href="http://profiles.wordpress.org/atimmer">Anton Timmermans</a>, <a href="http://profiles.wordpress.org/arnee">Arne Brachhold</a>, <a href="http://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>, <a href="http://profiles.wordpress.org/filosofo">Austin Matzko</a>, <a href="http://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="http://profiles.wordpress.org/kau-boy">Bernhard Kau</a>, <a href="http://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="http://profiles.wordpress.org/bradyvercher">Brady Vercher</a>, <a href="http://profiles.wordpress.org/bramd">bramd</a>, <a href="http://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="http://profiles.wordpress.org/krogsgard">Brian Krogsgard</a>, <a href="http://profiles.wordpress.org/brianlayman">Brian Layman</a>, <a href="http://profiles.wordpress.org/rzen">Brian Richards</a>, <a href="http://profiles.wordpress.org/camdensegal">camden</a>, <a href="http://profiles.wordpress.org/lukecarbis">Carbis</a>, <a href="http://profiles.wordpress.org/sixhours">Caroline Moore</a>, <a href="http://profiles.wordpress.org/mackensen">Charles Fulton</a>, <a href="http://profiles.wordpress.org/chouby">Chouby</a>, <a href="http://profiles.wordpress.org/chrico">ChriCo</a>, <a href="http://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="http://profiles.wordpress.org/chrisl27">chrisl27</a>, <a href="http://profiles.wordpress.org/caxelsson">Christian Axelsson</a>, <a href="http://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="http://profiles.wordpress.org/boda1982">Christopher Spires</a>, <a href="http://profiles.wordpress.org/clifgriffin">Clifton Griffin</a>, <a href="http://profiles.wordpress.org/codenameeli">codenameEli</a>, <a href="http://profiles.wordpress.org/jupiterwise">Corey McKrill</a>, <a href="http://profiles.wordpress.org/corphi">Corphi</a>, <a href="http://profiles.wordpress.org/extendwings">Daisuke Takahashi</a>, <a href="http://profiles.wordpress.org/ghost1227">Dan Griffiths</a>, <a href="http://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="http://profiles.wordpress.org/danielhuesken">Daniel Husken</a>, <a href="http://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>, <a href="http://profiles.wordpress.org/dannydehaan">Danny de Haan</a>, <a href="http://profiles.wordpress.org/dkotter">Darin Kotter</a>, <a href="http://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="http://profiles.wordpress.org/dllh">Daryl L. L. Houston (dllh)</a>, <a href="http://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>, <a href="http://profiles.wordpress.org/dlh">David Herrera</a>, <a href="http://profiles.wordpress.org/dnaber-de">David Naber</a>, <a href="http://profiles.wordpress.org/davidthemachine">DavidTheMachine</a>, <a href="http://profiles.wordpress.org/debaat">DeBAAT</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/donncha">Donncha O Caoimh</a>, <a href="http://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="http://profiles.wordpress.org/dustyn">dustyn</a>, <a href="http://profiles.wordpress.org/eddiemoya">Eddie Moya</a>, <a href="http://profiles.wordpress.org/oso96_2000">Eduardo Reveles</a>, <a href="http://profiles.wordpress.org/edwin-at-studiojoyocom">Edwin Siebel</a>, <a href="http://profiles.wordpress.org/ehg">ehg</a>, <a href="http://profiles.wordpress.org/tmeister">Enrique Chavez</a>, <a href="http://profiles.wordpress.org/erayalakese">erayalakese</a>, <a href="http://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="http://profiles.wordpress.org/ebinnion">Eric Binnion</a>, <a href="http://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="http://profiles.wordpress.org/ejdanderson">Evan Anderson</a>, <a href="http://profiles.wordpress.org/eherman24">Evan Herman</a>, <a href="http://profiles.wordpress.org/fab1en">Fabien Quatravaux</a>, <a href="http://profiles.wordpress.org/fahmiadib">Fahmi Adib</a>, <a href="http://profiles.wordpress.org/feedmeastraycat">feedmeastraycat</a>, <a href="http://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="http://profiles.wordpress.org/garhdez">garhdez</a>, <a href="http://profiles.wordpress.org/garyc40">Gary Cao</a>, <a href="http://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="http://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="http://profiles.wordpress.org/garza">garza</a>, <a href="http://profiles.wordpress.org/gauravmittal1995">gauravmittal1995</a>, <a href="http://profiles.wordpress.org/gavra">Gavrisimo</a>, <a href="http://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="http://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>, <a href="http://profiles.wordpress.org/vancoder">Grant Mangham</a>, <a href="http://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="http://profiles.wordpress.org/bordoni">Gustavo Bordoni</a>, <a href="http://profiles.wordpress.org/harrym">harrym</a>, <a href="http://profiles.wordpress.org/hebbet">hebbet</a>, <a href="http://profiles.wordpress.org/hinnerk">Hinnerk Altenburg</a>, <a href="http://profiles.wordpress.org/hlashbrooke">Hugh Lashbrooke</a>, <a href="http://profiles.wordpress.org/iljoja">iljoja</a>, <a href="http://profiles.wordpress.org/imath">imath</a>, <a href="http://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="http://profiles.wordpress.org/issuu">issuu</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/jackreichert">Jack Reichert</a>, <a href="http://profiles.wordpress.org/jacobdubail">Jacob Dubail</a>, <a href="http://profiles.wordpress.org/janhenkg">JanHenkG</a>, <a href="http://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="http://profiles.wordpress.org/jaza613">Jaza613</a>, <a href="http://profiles.wordpress.org/jeffstieler">Jeff Stieler</a>, <a href="http://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="http://profiles.wordpress.org/jpry">Jeremy Pry</a>, <a href="http://profiles.wordpress.org/slimndap">Jeroen Schmit</a>, <a href="http://profiles.wordpress.org/jerrysarcastic">Jerry Bates (jerrysarcastic)</a>, <a href="http://profiles.wordpress.org/jesin">Jesin A</a>, <a href="http://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="http://profiles.wordpress.org/engelen">Jesper van Engelen</a>, <a href="http://profiles.wordpress.org/jesper800">Jesper van Engelen</a>, <a href="http://profiles.wordpress.org/jessepollak">Jesse Pollak</a>, <a href="http://profiles.wordpress.org/jgadbois">jgadbois</a>, <a href="http://profiles.wordpress.org/jartes">Joan Artes</a>, <a href="http://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="http://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="http://profiles.wordpress.org/jkudish">Joey Kudish</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="http://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="http://profiles.wordpress.org/johnzanussi">John Zanussi</a>, <a href="http://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="http://profiles.wordpress.org/jonnyauk">jonnyauk</a>, <a href="http://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="http://profiles.wordpress.org/softmodeling">Jordi Cabot</a>, <a href="http://profiles.wordpress.org/jjeaton">Josh Eaton</a>, <a href="http://profiles.wordpress.org/tai">JOTAKI Taisuke</a>, <a href="http://profiles.wordpress.org/juliobox">Julio Potier</a>, <a href="http://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="http://profiles.wordpress.org/jtsternberg">Justin Sternberg</a>, <a href="http://profiles.wordpress.org/greenshady">Justin Tadlock</a>, <a href="http://profiles.wordpress.org/jwenerd">jwenerd</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/ixkaito">Kaito</a>, <a href="http://profiles.wordpress.org/kapeels">kapeels</a>, <a href="http://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="http://profiles.wordpress.org/kevinlangleyjr">Kevin Langley</a>, <a href="http://profiles.wordpress.org/kworthington">Kevin Worthington</a>, <a href="http://profiles.wordpress.org/kpdesign">Kim Parsell</a>, <a href="http://profiles.wordpress.org/kwight">Kirk Wight</a>, <a href="http://profiles.wordpress.org/kitchin">kitchin</a>, <a href="http://profiles.wordpress.org/knutsp">Knut Sparhell</a>, <a href="http://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="http://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="http://profiles.wordpress.org/kurtpayne">Kurt Payne</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/lessbloat">lessbloat</a>, <a href="http://profiles.wordpress.org/layotte">Lew Ayotte</a>, <a href="http://profiles.wordpress.org/lritter">lritter</a>, <a href="http://profiles.wordpress.org/lgedeon">Luke Gedeon</a>, <a href="http://profiles.wordpress.org/m_i_n">m_i_n</a>, <a href="http://profiles.wordpress.org/funkatronic">Manny Fleurmond</a>, <a href="http://profiles.wordpress.org/targz-1">Manuel Schmalstieg</a>, <a href="http://profiles.wordpress.org/clorith">Marius Jensen (Clorith)</a>, <a href="http://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="http://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="http://profiles.wordpress.org/mjbanks">Matt Banks</a>, <a href="http://profiles.wordpress.org/sivel">Matt Martz</a>, <a href="http://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="http://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>, <a href="http://profiles.wordpress.org/mboynes">Matthew Boynes</a>, <a href="http://profiles.wordpress.org/mdbitz">Matthew Denton</a>, <a href="http://profiles.wordpress.org/mattheweppelsheimer">Matthew Eppelsheimer</a>, <a href="http://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="http://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="http://profiles.wordpress.org/meekyhwang">meekyhwang</a>, <a href="http://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="http://profiles.wordpress.org/midxcat">mi_cat</a>, <a href="http://profiles.wordpress.org/mdawaffe">Michael Adams (mdawaffe)</a>, <a href="http://profiles.wordpress.org/michalzuber">michalzuber</a>, <a href="http://profiles.wordpress.org/mauteri">Mike Auteri</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/mikemanger">Mike Manger</a>, <a href="http://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="http://profiles.wordpress.org/mikejolley">mikejolley</a>, <a href="http://profiles.wordpress.org/mikeyarce">mikeyarce</a>, <a href="http://profiles.wordpress.org/dimadin">Milan Dinic</a>, <a href="http://profiles.wordpress.org/mnelson4">mnelson4</a>, <a href="http://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="http://profiles.wordpress.org/usermrpapa">Mr Papa</a>, <a href="http://profiles.wordpress.org/mrmist">mrmist</a>, <a href="http://profiles.wordpress.org/m_uysl">Mustafa Uysal</a>, <a href="http://profiles.wordpress.org/muvimotv">MuViMoTV</a>, <a href="http://profiles.wordpress.org/nabil_kadimi">nabil_kadimi</a>, <a href="http://profiles.wordpress.org/namibia">Namibia</a>, <a href="http://profiles.wordpress.org/nd987">nd987</a>, <a href="http://profiles.wordpress.org/neil_pie">Neil Pie</a>, <a href="http://profiles.wordpress.org/niallkennedy">Niall Kennedy</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/schoenwaldnils">Nils Schonwald</a>, <a href="http://profiles.wordpress.org/ninos-ego">Ninos</a>, <a href="http://profiles.wordpress.org/nvwd">Nowell VanHoesen</a>, <a href="http://profiles.wordpress.org/compute">Patrick Hesselberg</a>, <a href="http://profiles.wordpress.org/pbearne">Paul Bearne</a>, <a href="http://profiles.wordpress.org/pdclark">Paul Clark</a>, <a href="http://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="http://profiles.wordpress.org/paulschreiber">paulschreiber</a>, <a href="http://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="http://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="http://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="http://profiles.wordpress.org/philipjohn">Philip John</a>, <a href="http://profiles.wordpress.org/senlin">Piet</a>, <a href="http://profiles.wordpress.org/psoluch">Piotr Soluch</a>, <a href="http://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="http://profiles.wordpress.org/purzlbaum">purzlbaum</a>, <a href="http://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="http://profiles.wordpress.org/rclations">rclations</a>, <a href="http://profiles.wordpress.org/iamfriendly">Richard Tape</a>, <a href="http://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>, <a href="http://profiles.wordpress.org/rob1n">rob1n</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/harmr">RobertHarm</a>, <a href="http://profiles.wordpress.org/rohan013">Rohan Rawat</a>, <a href="http://profiles.wordpress.org/rhurling">Rouven Hurling</a>, <a href="http://profiles.wordpress.org/ruudjoyo">Ruud Laan</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/sammybeats">Sam Brodie</a>, <a href="http://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>, <a href="http://profiles.wordpress.org/sathishn">sathishn</a>, <a href="http://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/greglone">ScreenfeedFr</a>, <a href="http://profiles.wordpress.org/scribu">scribu</a>, <a href="http://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="http://profiles.wordpress.org/nessworthy">Sean Nessworthy</a>, <a href="http://profiles.wordpress.org/sergejmueller">Sergej Muller</a>, <a href="http://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="http://profiles.wordpress.org/shanebp">shanebp</a>, <a href="http://profiles.wordpress.org/shaunandrews">Shaun Andrews</a>, <a href="http://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="http://profiles.wordpress.org/simonp303">simonp303</a>, <a href="http://profiles.wordpress.org/slobodanmanic">Slobodan Manic</a>, <a href="http://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="http://profiles.wordpress.org/sphoid">sphoid</a>, <a href="http://profiles.wordpress.org/stephdau">Stephane Daury</a>, <a href="http://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="http://profiles.wordpress.org/stompweb">Steven Jones</a>, <a href="http://profiles.wordpress.org/strangerstudios">strangerstudios</a>, <a href="http://profiles.wordpress.org/5um17">Sumit Singh</a>, <a href="http://profiles.wordpress.org/sumobi">sumobi</a>, <a href="http://profiles.wordpress.org/t4k1s">t4k1s</a>, <a href="http://profiles.wordpress.org/iamtakashi">Takashi Irie</a>, <a href="http://profiles.wordpress.org/taylorde">Taylor Dewey</a>, <a href="http://profiles.wordpress.org/thomasvanderbeek">Thomas van der Beek</a>, <a href="http://profiles.wordpress.org/tillkruess">Till Kruss</a>, <a href="http://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="http://profiles.wordpress.org/tjnowell">Tom J Nowell</a>, <a href="http://profiles.wordpress.org/willmot">Tom Willmot</a>, <a href="http://profiles.wordpress.org/topher1kenobe">Topher</a>, <a href="http://profiles.wordpress.org/torresga">torresga</a>, <a href="http://profiles.wordpress.org/liljimmi">Tracy Levesque</a>, <a href="http://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="http://profiles.wordpress.org/treyhunner">treyhunner</a>, <a href="http://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>, <a href="http://profiles.wordpress.org/vinod-dalvi">Vinod Dalvi</a>, <a href="http://profiles.wordpress.org/vlajos">vlajos</a>, <a href="http://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="http://profiles.wordpress.org/winterdev">winterDev</a>, <a href="http://profiles.wordpress.org/wojtekszkutnik">Wojtek Szkutnik</a>, <a href="http://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="http://profiles.wordpress.org/katzwebdesign">Zack Katz</a>, <a href="http://profiles.wordpress.org/tollmanz">Zack Tollman</a>, and <a href="http://profiles.wordpress.org/zoerooney">Zoe Rooney</a>. Also thanks to <a href="http://michaelpick.wordpress.com/">Michael Pick</a> for producing the release video, and Helen with <a href="http://adriansandi.com">Adrián Sandí</a> for the music.</p>\n<p>If you want to follow along or help out, check out <a href="http://make.wordpress.org/">Make WordPress</a> and our <a href="http://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.1!</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, 04 Sep 2014 17:05:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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: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:41:"WP iPhone: WordPress for iOS 4.3 Released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://apps.wordpress.org/?p=2207";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://apps.wordpress.org/2014/09/04/4-3-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2704:"<p>WordPress for iOS 4.3 is here! The download is available from the App Store. Here’s a glimpse at the latest updates:</p>\n<h3>Various stats improvements</h3>\n<p>We know you love checking your stats on the go, wherever you may be. On your Stats page, you can now see more details in the stats chart in your Visitors and Views. Just tap on any view — Days, Weeks, Months — and then click on a particular day, week, or month to view specific views and visitors stats for that item.</p>\n\n<h3>Follow more sites in your Reader</h3>\n<p>You can now follow a blog or website, on WordPress.com and elsewhere on the web, by adding its URL. In your Reader, click on the tag at the top right of the screen, and enter the URL of the site you’d like to follow:</p>\n<p><a href="https://apps.wordpress.org/files/2014/08/photo-aug-26-9-49-28-am.png"><img class="alignnone size-medium wp-image-2214" src="http://apps.wordpress.org/files/2014/08/photo-aug-26-9-49-28-am.png?w=300" alt="Photo Aug 26, 9 49 28 AM" width="300" height="110" /></a></p>\n<p>After you click “Done,” you’ll see a “Followed” message on the screen that confirms you’ve successfully followed the site.</p>\n<h3>Other updates and fixes</h3>\n<p>In addition, we’ve provided initial support for iOS 8 in preparation for upcoming features — we’re excited about what’s to come! We’ve also released numerous stability updates, including fixes for errors that affected some users, including a crash when opening the Reader, as well as an error for live chat users who were unable to follow up on their support requests.</p>\n<p>As usual, we’re hard at work on the next release, which will include an iOS 8 “Today” extension to view stats, a major interface update for notifications and a limited rollout of a new WYSIWYG post editor.</p>\n<p>Many thanks to the contributors who worked on this release: <a href="https://github.com/astralbodies">Aaron Douglas</a>, <a href="https://github.com/irbrad">Brad Angelcyk</a>, <a href="https://github.com/cyrilchandelier">Cyril Chandelier</a>, <a href="https://github.com/roundhill">Dan Roundhill</a>, <a href="https://github.com/davidfilip">David Filip</a>, <a href="https://github.com/aerych">Eric Johnson</a>, <a href="https://github.com/koke">Jorge Bernal</a>, <a href="https://github.com/jleandroperez">Jorge Leandro Perez</a>, <a href="https://github.com/bummytime">Matt Bumgardner</a>, <a href="https://github.com/oguzkocer">Oguz Kocer</a> and <a href="https://github.com/sendhil">Sendhil Panchadsaram</a>.</p>\n<p>If you have feedback, please leave a comment below or tweet us @WordPressiOS. Thanks!</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, 04 Sep 2014 15:18:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Brad Angelcyk";s: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:50:"WordPress.tv Blog: WordPress.tv Weekly Staff Picks";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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.wordpress.tv/?p=369";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://blog.wordpress.tv/2014/09/04/wordpress-tv-weekly-staff-picks/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4078:"<p>The past week (August 25-31, 2014) has brought with it a great collection of WordCamp videos for designers and developers alike. If you’re looking to learn more about WordPress, these videos are a great way to level up!</p>\n<h3>Loris Grillet: Selling Your Projects and Building the Perfect Client Relationship</h3>\n<p>From <a href="http://wordpress.tv/event/wordcamp-switzerland-2014/" title="Visit the WordCamp Switzerland event page on WordPress.tv" target="_blank">WordCamp Switzerland</a> (May 3-4, 2014) comes this great presentation by web and UX designer Loris Grillet on presenting design work and building a good relationship with clients.</p>\n<div id="v-Be6CkbNN-1" class="video-player">\n</div>\n<p><a href="http://wordpress.tv/2014/08/25/loris-grillet-selling-your-projects-and-building-the-perfect-client-relationship/" title="View Loris Grillet: Selling Your Projects and Building the Perfect Client Relationship" target="_blank">View on WordPress.tv</a></p>\n<h3>Simon Owen: Optimising Your Front-End Workflow for WordPress</h3>\n<p>For theme developers, this presentation from <a href="http://wordpress.tv/event/wordcamp-manchester-2014/" title="Visit the WordCamp Manchester event page on WordPress.tv" target="_blank">WordCamp Manchester</a> (June 28-29, 2014) by Simon Owen covers the techniques, applications and shortcuts that he uses to help him when building WordPress themes.</p>\n<div id="v-jtf0hlWq-1" class="video-player">\n</div>\n<p><a href="http://wordpress.tv/2014/08/29/simon-owen-optimising-your-front-end-workflow-for-wordpress/" title="View Simon Owen: Optimising Your Front-End Workflow for WordPress on WordPress.tv" target="_blank">View on WordPress.tv</a></p>\n<h3>Kevin Stover: The Candid Developer. Developing and Maintaining A Successful Plugin… Is Scary</h3>\n<p>Also from <a href="http://wordpress.tv/event/wordcamp-manchester-2014/" title="Visit the WordCamp Manchester event page on WordPress.tv" target="_blank">WordCamp Manchester</a> (June 28-29, 2014) comes this presentation from Kevin Stover that is an honest look at the very scary prospect of releasing a plugin to the public, and how to overcome that fear.</p>\n<div id="v-1WQjXPlQ-2" class="video-player">\n</div>\n<p><a href="http://wordpress.tv/2014/08/29/kevin-stover-the-candid-developer-developing-and-maintaining-a-successful-plugin-is-scary-2/" title="View Kevin Stover: The Candid Developer. Developing and Maintaining A Successful Plugin Is Scary on WordPress.tv" target="_blank">View on WordPress.tv</a></p>\n<p>Of course, this is just a sampling of the great videos that are being published every day, so feel free to visit <a href="http://wordpress.tv" title="Visit the WordPress.tv homepage" target="_blank">WordPress.tv</a> and expand your WordPress knowledge!</p>\n<p>- Your WordPress.tv Moderator Squad</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/369/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=369&subd=wptvblog&ref=&feed=1" width="1" height="1" /><div><a href="http://blog.wordpress.tv/2014/09/04/wordpress-tv-weekly-staff-picks/"><img alt="Loris Grillet: Selling Your Projects and Building the Perfect Client Relationship" src="http://videos.videopress.com/Be6CkbNN/loris-grillet-wcch14_scruberthumbnail_1.jpg" width="160" height="120" /></a></div><div><a href="http://blog.wordpress.tv/2014/09/04/wordpress-tv-weekly-staff-picks/"><img alt="Simon Owen: Optimising Your Front-End Workflow for WordPress" src="http://videos.videopress.com/jtf0hlWq/video-365e1f5a2b_scruberthumbnail_0.jpg" width="160" height="120" /></a></div><div><a href="http://blog.wordpress.tv/2014/09/04/wordpress-tv-weekly-staff-picks/"><img alt="Kevin Stover: The Candid Developer. Developing and Maintaining A Successful Plugin… Is Scary" src="http://videos.videopress.com/1WQjXPlQ/video-7fd062bfb2_scruberthumbnail_2.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 04 Sep 2014 01:01: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:11:"Jerry Bates";s: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:111:"WPTavern: Critical Security Vulnerability Found in WordPress Slider Revolution Plugin, Immediate Update Advised";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=29756";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/critical-security-vulnerability-found-in-wordpress-slider-revolution-plugin-immediate-update-advised";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5906:"<p>The security team at Sucuri <a href="http://blog.sucuri.net/2014/09/slider-revolution-plugin-critical-vulnerability-being-exploited.html" target="_blank">publicized a critical vulnerability</a> found in the WordPress Slider Revolution plugin recently. The bug has since been patched, but the development team for <a href="http://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380" target="_blank">Slider Revolution</a> kept silent about it and did not notify their users of the importance of updating.</p>\n<p>The popular commercial slider plugin is hosted on Codecanyon, an offshoot of <a href="http://market.envato.com/" target="_blank">EnvatoMarket</a>. The slider is bundled in theme packages, such as <a href="http://theme-fusion.com/avada/" target="_blank">Avada</a>, Themeforest’s top-selling theme. It’s also packaged with other popular <a href="http://marketblog.envato.com/general/affected-themes/" target="_blank">themes</a> such as <a href="http://themeforest.net/item/x-the-theme/5871901" target="_blank">X Theme</a>, <a href="http://themeforest.net/item/udesign-responsive-wordpress-theme/253220" target="_blank">uDesign</a>, and <a href="http://themeforest.net/item/jupiter-multipurpose-responsive-theme/5177775" target="_blank">Jupiter</a>, in addition to being used independently on thousands of websites.</p>\n<h3>Details of the Vulnerability</h3>\n<p>This is a nasty security vulnerability by which virtually anyone could easily gain access to your database credentials and everything else. It allows a remote attacker to download any file from the server, including the <em>wp-config.php</em> file, which gives the hacker full access to your site. Sucuri shared an example of how one might easily access a site’s wp-config file by exploiting the vulnerability:</p>\n<p><code>http://victim.com/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php</code></p>\n<p>“This type of vulnerability is known as a Local File Inclusion (LFI) attack,” Sucuri explained. “The attacker is able to access, review, download a local file on the server.”</p>\n<p>The Slider Revolution vulnerability was first disclosed via underground forums before the plugin’s author decided to patch it silently. A team of Bangladeshi hackers published a <a href="https://www.youtube.com/watch?v=8wlTaWnhSvQ" target="_blank">video</a> on Youtube, detailing how to exploit sites that are vulnerable.</p>\n<p>The <a href="https://msisac.cisecurity.org/advisories/2014/2014-070.cfm" target="_blank">cyber advisory</a> issued on the security threat states that the vulnerability is being actively exploited in the wild. The vulnerability places small, medium, and large government and business entities at a high risk.</p>\n<p>Sucuri analyzed <a href="http://cloudproxy.sucuri.net/" target="_blank">WAF</a> access logs and confirmed that today alone “there were 64 different IP addresses trying to trigger this vulnerability on more than 1,000 different websites within our environment.”</p>\n<h3>Users Advised to Update Slider Revolution Immediately</h3>\n<p>If you are using the Slider Revolution plugin on your site, you need to update immediately to avoid becoming a victim of this critical vulnerability. You should also scan your files and database for evidence of hacking and put <a href="http://codex.wordpress.org/Hardening_WordPress" target="_blank">hardening measures</a> in place to prevent future attacks.</p>\n<p>Although the issue was fixed in version 4.2 of the plugin, issued February 25th, the changelog simply referenced a “security fix.” Users have since <a href="http://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380/comments#comment_7681157" target="_blank">commented</a> on the product’s Codecanyon page to express outrage at not having been further notified:</p>\n<blockquote><p>You should have let us know to update immediately. I am signed up for notifications of updates, but the only way I found out about this was through the Sucuri blog.</p></blockquote>\n<p>The team at <a href="http://codecanyon.net/user/themepunch" target="_blank">ThemePunch</a>, the plugin’s creators, allegedly contacted multiple security companies for advice on the matter.</p>\n<p>“We urgently discussed this security issue with leading Security Companies and we were strongly advised to go with a Silent Update,” a ThemePunch representative replied. They also referenced an auto update system that users can sign up for to receive notice in the future.</p>\n<p>“We have an Update system for Auto Updates, for which you can register once you have purchased the item, which informs you about new updates.”</p>\n<h3>The Risk of Using Free or Commercial Extensions Without Update Notifications</h3>\n<p>If you are using a commercial plugin or theme that has no auto-update system or relies on email to notify you of updates, you need to be very proactive about keeping yourself informed. A critical security vulnerability, such as the one reported for Slider Revolution, can easily take down your site(s) if you neglect updates. Theme authors don’t always update their bundled plugins and their users cannot take advantage of the auto update system provided by the plugin author.</p>\n<p>This particular security threat wouldn’t put so many sites in danger if the Slider Revolution plugin was not bundled into themes. Bundling commercial plugins with themes tends to obscure the details of how users can get plugin updates. Even with an update notification system, users are made vulnerable by developers who patch silently and don’t make an effort to notify their user base about a critical security update. Users can protect themselves from situations like this by declining to purchase themes that bundle plugins/functionality.</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, 03 Sep 2014 23:39:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:66:"WPTavern: Tom McFarlin Launches Crowdfunding Campaign For PodsCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=29684";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:76:"http://wptavern.com/tom-mcfarlin-launches-crowdfunding-campaign-for-podscamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2467:"<p>Running a conference is usually <a title="http://wptavern.com/the-hidden-savings-of-a-wordcamp-ticket" href="http://wptavern.com/the-hidden-savings-of-a-wordcamp-ticket">an expensive</a> endeavor. Scott Kingsley Clark is finding out personally as he continues to work towards putting on the first ever <a title="http://podscamp.org/" href="http://podscamp.org/">PodsCamp</a>, a <a title="http://wptavern.com/tickets-on-sale-for-the-first-ever-podscamp" href="http://wptavern.com/tickets-on-sale-for-the-first-ever-podscamp">conference devoted</a> to the <a title="http://pods.io/" href="http://pods.io/">Pods Framework</a>. Tom McFarlin hopes to ease budget concerns and has started a <a title="https://www.tilt.com/campaigns/podscamp" href="https://www.tilt.com/campaigns/podscamp">Crowd Tilt campaign</a> for PodsCamp.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/PodsCampCrowdTilt.png" rel="prettyphoto[29684]"><img class="size-full wp-image-29750" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/PodsCampCrowdTilt.png?resize=667%2C447" alt="Crowd Tilt Campaign For PodsCamp" /></a>Crowd Tilt Campaign For PodsCamp\n<p>The campaign is set to tilt at $1,500 with $3,000 being the target amount. According to the <a title="https://www.tilt.com/campaigns/podscamp/description" href="https://www.tilt.com/campaigns/podscamp/description">campaign description</a>, it offers an opportunity for people to give back to the project.</p>\n<blockquote><p>Since the Pods team has given so much to WordPress in a variety of ways and since I <i>know</i> how generous the WordPress community is, I’d love to raise some money to help out with the finances of the conference.</p>\n<p>No amount is too small. Seriously – $1.00 is helpful – but I know that Scott and his team are doing amazing things for WordPress, and I know that many of us are benefiting from it – or will benefit from it – in some way.</p></blockquote>\n<p>An alternative to donating is to <a title="http://podscamp.org/tickets/" href="http://podscamp.org/tickets/">purchase a ticket</a> for $50 and attend the event. It’s October 3rd in Dallas, TX, and will focus on all things Pods. It’s the first time the entire development team will be in the same physical location.</p>\n<p>If you’ve been thinking about donating to the Pods plugin, consider contributing to the campaign to help Clark put on a phenomenal conference.</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, 03 Sep 2014 21:46:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:49;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:103:"WPTavern: Gitium Provides Automatic Git Version Control and Deployment for WordPress Plugins and Themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=29556";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:113:"http://wptavern.com/gitium-provides-automatic-git-version-control-and-deployment-for-wordpress-plugins-and-themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3894:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/gitium.jpg" rel="prettyphoto[29556]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/gitium.jpg?resize=1025%2C481" alt="gitium" class="aligncenter size-full wp-image-29717" /></a></p>\n<p>One important trend surfacing this year is WordPress developers’ growing desire to add git-based version control to their sites. It adds an extra layer of safety in case you need to revert changes. Version control also helps multi-person teams work together more efficiently on the same website.</p>\n<p>Several plugin options are in the works in varying stages of development. While VersionPress <a href="http://wptavern.com/versionpress-misses-crowdfunding-goal-by-14-5k" target="_blank">missed its crowdfunding goal by $14.5K</a> and struggles to put out a working prototype, the <a href="http://wptavern.com/free-revisr-plugin-offers-git-management-for-wordpress" target="_blank">Revisr plugin</a> is open source and already available on WordPress.org.</p>\n<p><a href="http://www.gitium.com/" target="_blank">Gitium</a> is a new plugin in beta, targeted specifically at adding version control for plugins and themes. It enables continuous deployment for WordPress and integrates with Github, Bitbucket, or Travis-CI.The plugin provides automatic git version control and deployment for WordPress extensions and also tracks code edits that originate in the plugin and theme editors.</p>\n<p>Gitium was built by the folks at <a href="http://www.presslabs.com/" target="_blank">PressLabs</a>, a Romanian-based WordPress hosting company. It requires the git command line tool (minimum version of 1.7) installed on the server and the <a href="http://php.net/manual/en/function.proc-open.php" target="_blank">proc_open PHP function</a> enabled.</p>\n<p>Gitium installs like a normal plugin and the settings page prompts the user to provide a URL for remote access to a Git repository via SSH, HTTPS, or Subversion. If you use <a href="https://github.com/" target="_blank">GitHub</a> or <a href="https://bitbucket.org/" target="_blank">Bitbucket</a>, you will need the key issued by Gitum for SSH key-based authentication to allow write access to your repository.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/gitium-settings.jpg" rel="prettyphoto[29556]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/09/gitium-settings.jpg?resize=779%2C453" alt="gitium-settings" class="aligncenter size-full wp-image-29718" /></a></p>\n<p>Once configured, Gitium will monitor when you add, remove, update or change files in a plugin or theme. The plugin sets the WordPress logged-in user as the author of the commits. It allows for staging and production to follow different branches of the same repository. Code can be deployed using <code>git push</code>. In the event of a conflict, Gitium will overwrite the changes on the origin repository with the local changes- local modifications will always take precedence over remove ones.</p>\n<p>Ordinarily, most of the code changes on a WordPress site happen within the context of plugins and themes. Gitium allows you to keep track of who changed what. At the moment, the plugin does not support WordPress multisite or submodules. If you need to track changes in both the files and database of your site, then <a href="http://wptavern.com/free-revisr-plugin-offers-git-management-for-wordpress" target="_blank">Revisr</a> might be a more suitable option for adding git-based version control to your site.</p>\n<p>Gitium is licensed under the GPLv2 license. It is still in beta and is not yet ready for production use. Adventurous folks can download it for free from the <a href="http://www.gitium.com/" target="_blank">Gitium</a> website or check out the project on <a href="https://github.com/PressLabs/gitium" target="_blank">GitHub</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, 03 Sep 2014 19:06: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:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 13 Sep 2014 07:37:55 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"248397";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Sat, 13 Sep 2014 07:30:12 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20140913072741";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(328, '_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1410637076', 'no'),
(329, '_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1410593876', 'no'),
(330, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1410637077', 'no'),
(331, '_transient_feed_b9388c83948825c1edaef0d856b7b109', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wordpress.org/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 13 Sep 2014 07:11: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:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:25:"http://bbpress.org/?v=1.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"Contact Form 7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2141@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:54:"Just another contact form plugin. Simple but flexible.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s: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: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 Yoast's WordPress SEO plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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:4;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"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:5;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"Wordfence Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/plugins/wordfence/#post-29832";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 04 Sep 2011 03:13:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"29832@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:137:"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Wordfence";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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: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:25:"Google Analytics by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s: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:124:"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:20:"MailPoet Newsletters";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/plugins/wysija-newsletters/#post-32629";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 02 Dec 2011 17:09:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"32629@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:94:"Send newsletters, post notifications or autoresponders from WordPress easily, and beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"MailPoet Staff";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:16:"TinyMCE Advanced";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"http://wordpress.org/plugins/tinymce-advanced/#post-2082";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Jun 2007 15:00:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2082@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:71:"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Andrew Ozz";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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: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: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:11:"WP-PageNavi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/plugins/wp-pagenavi/#post-363";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 23:17:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"363@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:49:"Adds a more advanced paging navigation interface.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"Lester Chan";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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: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:46:"iThemes Security (formerly Better WP Security)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/plugins/better-wp-security/#post-21738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 22 Oct 2010 22:06:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"21738@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:63:"The easiest, most effective way to secure WordPress in seconds.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Chris Wiegman";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:21:"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:"";}}}}}}}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:11:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 13 Sep 2014 07:37:57 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:7:"expires";s:29:"Sat, 13 Sep 2014 07:46:02 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Sat, 13 Sep 2014 07:11:02 +0000";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20140913072741";}', 'no'),
(332, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1410637077', 'no'),
(333, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1410593877', 'no'),
(334, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1410637077', 'no'),
(335, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wordpress.org/news/2014/09/benny/''>WordPress 4.0 “Benny”</a> <span class="rss-date">4. september 2014</span><div class="rssSummary">Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader Benny Goodman, is available for download or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://ma.tt/2014/09/minimum-viable-civilization/''>Matt: Minimum Viable Civilization</a></li><li><a class=''rsswidget'' href=''http://blog.wordpress.tv/2014/09/13/designing-with-wordpress-recent-wordcamp-presentations-for-designers/''>WordPress.tv Blog: Designing with WordPress: Recent WordCamp Presentations for Designers</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/graph-paper-press-launches-theme-works-a-drag-and-drop-platform-for-building-wordpress-themes''>WPTavern: Graph Paper Press Launches Theme.Works, A Drag and Drop Platform for Building WordPress Themes</a></li></ul></div><div class="rss-widget"><ul><li class=''dashboard-news-plugin''><span>Populært plugin:</span> <a href=''http://wordpress.org/plugins/wordfence/'' class=''dashboard-news-plugin-link''>Wordfence Security</a> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=wordfence&_wpnonce=5adde6c28c&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''Wordfence Security''>Installer</a>)</span></li></ul></div>', 'no'),
(337, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:2:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:63:"https://downloads.wordpress.org/release/da_DK/wordpress-4.0.zip";s:6:"locale";s:5:"da_DK";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:63:"https://downloads.wordpress.org/release/da_DK/wordpress-4.0.zip";s:10:"no_content";b:0;s:11:"new_bundled";b:0;s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:3:"4.0";s:7:"version";s:3:"4.0";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.8";s:15:"partial_version";s:0:"";}i:1;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:57:"https://downloads.wordpress.org/release/wordpress-4.0.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:57:"https://downloads.wordpress.org/release/wordpress-4.0.zip";s:10:"no_content";s:68:"https://downloads.wordpress.org/release/wordpress-4.0-no-content.zip";s:11:"new_bundled";s:69:"https://downloads.wordpress.org/release/wordpress-4.0-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:3:"4.0";s:7:"version";s:3:"4.0";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:1410594008;s:15:"version_checked";s:3:"4.0";s:12:"translations";a:0:{}}', 'yes'),
(339, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1410594009;s:7:"checked";a:4:{s:14:"talktome_theme";s:0:"";s:14:"twentyfourteen";s:3:"1.2";s:14:"twentythirteen";s:3:"1.3";s:12:"twentytwelve";s:3:"1.5";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'),
(340, '_site_transient_update_plugins', 'O:8:"stdClass":4:{s:12:"last_checked";i:1410594007;s:8:"response";a:0:{}s:12:"translations";a:0:{}s:9:"no_update";a:8:{s:30:"advanced-custom-fields/acf.php";O:8:"stdClass":6:{s:2:"id";s:5:"21367";s:4:"slug";s:22:"advanced-custom-fields";s:6:"plugin";s:30:"advanced-custom-fields/acf.php";s:11:"new_version";s:5:"4.3.9";s:3:"url";s:53:"https://wordpress.org/plugins/advanced-custom-fields/";s:7:"package";s:65:"https://downloads.wordpress.org/plugin/advanced-custom-fields.zip";}s:19:"akismet/akismet.php";O:8:"stdClass":6:{s:2:"id";s:2:"15";s:4:"slug";s:7:"akismet";s:6:"plugin";s:19:"akismet/akismet.php";s:11:"new_version";s:5:"3.0.2";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.3.0.2.zip";}s:21:"facebook/facebook.php";O:8:"stdClass":7:{s:2:"id";s:5:"31238";s:4:"slug";s:8:"facebook";s:6:"plugin";s:21:"facebook/facebook.php";s:11:"new_version";s:5:"1.5.5";s:14:"upgrade_notice";s:81:"Unescaped widget titles. Deprecated function update. Latest Facebook SDK for PHP.";s:3:"url";s:39:"https://wordpress.org/plugins/facebook/";s:7:"package";s:57:"https://downloads.wordpress.org/plugin/facebook.1.5.5.zip";}s:33:"featured-image/featured-image.php";O:8:"stdClass":6:{s:2:"id";s:5:"30065";s:4:"slug";s:14:"featured-image";s:6:"plugin";s:33:"featured-image/featured-image.php";s:11:"new_version";s:3:"2.0";s:3:"url";s:45:"https://wordpress.org/plugins/featured-image/";s:7:"package";s:57:"https://downloads.wordpress.org/plugin/featured-image.zip";}s:9:"hello.php";O:8:"stdClass":6:{s:2:"id";s:4:"3564";s:4:"slug";s:11:"hello-dolly";s:6:"plugin";s:9:"hello.php";s:11:"new_version";s:3:"1.6";s:3:"url";s:42:"https://wordpress.org/plugins/hello-dolly/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip";}s:23:"instagrab/instagrab.php";O:8:"stdClass":6:{s:2:"id";s:5:"34332";s:4:"slug";s:9:"instagrab";s:6:"plugin";s:23:"instagrab/instagrab.php";s:11:"new_version";s:3:"2.0";s:3:"url";s:40:"https://wordpress.org/plugins/instagrab/";s:7:"package";s:52:"https://downloads.wordpress.org/plugin/instagrab.zip";}s:33:"instagram-feed/instagram-feed.php";O:8:"stdClass":6:{s:2:"id";s:5:"52289";s:4:"slug";s:14:"instagram-feed";s:6:"plugin";s:33:"instagram-feed/instagram-feed.php";s:11:"new_version";s:5:"1.1.6";s:3:"url";s:45:"https://wordpress.org/plugins/instagram-feed/";s:7:"package";s:63:"https://downloads.wordpress.org/plugin/instagram-feed.1.1.6.zip";}s:44:"slideshow-jquery-image-gallery/slideshow.php";O:8:"stdClass":6:{s:2:"id";s:5:"31854";s:4:"slug";s:30:"slideshow-jquery-image-gallery";s:6:"plugin";s:44:"slideshow-jquery-image-gallery/slideshow.php";s:11:"new_version";s:6:"2.2.21";s:3:"url";s:61:"https://wordpress.org/plugins/slideshow-jquery-image-gallery/";s:7:"package";s:73:"https://downloads.wordpress.org/plugin/slideshow-jquery-image-gallery.zip";}}}', 'yes');
-- --------------------------------------------------------
--
-- Struktur-dump for tabellen `wp_postmeta`
--
CREATE TABLE IF NOT EXISTS `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=599 ;
--
-- Data dump for tabellen `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 1, '_edit_lock', '1410509505:1'),
(6, 1, '_edit_last', '1'),
(8, 6, '_wp_attached_file', '2014/09/Skærmbillede-2014-09-05-kl.-14.07.10-e1410514754191.png'),
(9, 6, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:250;s:4:"file";s:64:"2014/09/Skærmbillede-2014-09-05-kl.-14.07.10-e1410514754191.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:49:"Skærmbillede-2014-09-05-kl.-14.07.10-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:49:"Skærmbillede-2014-09-05-kl.-14.07.10-300x187.png";s:5:"width";i:300;s:6:"height";i:187;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:50:"Skærmbillede-2014-09-05-kl.-14.07.10-1024x640.png";s:5:"width";i:1024;s:6:"height";i:640;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:49:"Skærmbillede-2014-09-05-kl.-14.07.10-300x187.png";s:5:"width";i:300;s:6:"height";i:187;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'),
(10, 1, '_thumbnail_id', '6'),
(12, 7, '_edit_last', '1'),
(13, 7, '_edit_lock', '1410433079:1'),
(14, 7, '_thumbnail_id', '6'),
(16, 9, '_edit_last', '1'),
(17, 9, '_edit_lock', '1410174790:1'),
(18, 10, '_wp_attached_file', '2014/09/Skærmbillede-2014-09-05-kl.-14.07.101.png'),
(19, 10, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1440;s:6:"height";i:900;s:4:"file";s:50:"2014/09/Skærmbillede-2014-09-05-kl.-14.07.101.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:50:"Skærmbillede-2014-09-05-kl.-14.07.101-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:50:"Skærmbillede-2014-09-05-kl.-14.07.101-300x187.png";s:5:"width";i:300;s:6:"height";i:187;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:51:"Skærmbillede-2014-09-05-kl.-14.07.101-1024x640.png";s:5:"width";i:1024;s:6:"height";i:640;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:50:"Skærmbillede-2014-09-05-kl.-14.07.101-400x250.png";s:5:"width";i:400;s:6:"height";i:250;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'),
(20, 9, '_thumbnail_id', '10'),
(22, 12, '_edit_last', '1'),
(23, 12, '_edit_lock', '1410251514:1'),
(24, 12, '_thumbnail_id', '10'),
(26, 14, '_edit_last', '1'),
(27, 14, '_edit_lock', '1410256525:1'),
(28, 15, '_wp_attached_file', '2014/09/Skærmbillede-2014-09-05-kl.-14.07.102.png'),
(29, 15, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1440;s:6:"height";i:900;s:4:"file";s:50:"2014/09/Skærmbillede-2014-09-05-kl.-14.07.102.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:50:"Skærmbillede-2014-09-05-kl.-14.07.102-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:50:"Skærmbillede-2014-09-05-kl.-14.07.102-300x187.png";s:5:"width";i:300;s:6:"height";i:187;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:51:"Skærmbillede-2014-09-05-kl.-14.07.102-1024x640.png";s:5:"width";i:1024;s:6:"height";i:640;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:50:"Skærmbillede-2014-09-05-kl.-14.07.102-400x250.png";s:5:"width";i:400;s:6:"height";i:250;s:9:"mime-type";s:9:"image/png";}s:14:"singlepost-img";a:4:{s:4:"file";s:50:"Skærmbillede-2014-09-05-kl.-14.07.102-500x312.png";s:5:"width";i:500;s:6:"height";i:312;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'),
(35, 14, '_thumbnail_id', '15'),
(37, 17, '_menu_item_type', 'custom'),
(38, 17, '_menu_item_menu_item_parent', '0'),
(39, 17, '_menu_item_object_id', '17'),
(40, 17, '_menu_item_object', 'custom'),
(41, 17, '_menu_item_target', ''),
(42, 17, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(43, 17, '_menu_item_xfn', ''),
(44, 17, '_menu_item_url', 'http://localhost/modul7_wp/'),
(45, 17, '_menu_item_orphaned', '1410256671'),
(46, 18, '_menu_item_type', 'post_type'),
(47, 18, '_menu_item_menu_item_parent', '0'),
(48, 18, '_menu_item_object_id', '2'),
(49, 18, '_menu_item_object', 'page'),
(50, 18, '_menu_item_target', ''),
(51, 18, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(52, 18, '_menu_item_xfn', ''),
(53, 18, '_menu_item_url', ''),
(54, 18, '_menu_item_orphaned', '1410256671'),
(55, 14, '_wp_trash_meta_status', 'publish'),
(56, 14, '_wp_trash_meta_time', '1410256951'),
(57, 19, '_edit_last', '1'),
(58, 19, '_edit_lock', '1410432858:1'),
(59, 21, '_edit_last', '1'),
(60, 21, '_wp_page_template', 'page-contact.php'),
(61, 21, '_edit_lock', '1410432111:1'),
(62, 26, '_menu_item_type', 'custom'),
(63, 26, '_menu_item_menu_item_parent', '0'),
(64, 26, '_menu_item_object_id', '26'),
(65, 26, '_menu_item_object', 'custom'),
(66, 26, '_menu_item_target', ''),
(67, 26, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(68, 26, '_menu_item_xfn', ''),
(69, 26, '_menu_item_url', 'http://localhost/modul7_wp/'),
(70, 26, '_menu_item_orphaned', '1410427392'),
(71, 27, '_menu_item_type', 'post_type'),
(72, 27, '_menu_item_menu_item_parent', '0'),
(73, 27, '_menu_item_object_id', '19'),
(74, 27, '_menu_item_object', 'page'),
(75, 27, '_menu_item_target', ''),
(76, 27, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(77, 27, '_menu_item_xfn', ''),
(78, 27, '_menu_item_url', ''),
(79, 27, '_menu_item_orphaned', '1410427392'),
(80, 28, '_menu_item_type', 'post_type'),
(81, 28, '_menu_item_menu_item_parent', '0'),
(82, 28, '_menu_item_object_id', '2'),
(83, 28, '_menu_item_object', 'page'),
(84, 28, '_menu_item_target', ''),
(85, 28, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(86, 28, '_menu_item_xfn', ''),
(87, 28, '_menu_item_url', ''),
(88, 28, '_menu_item_orphaned', '1410427392'),
(89, 29, '_menu_item_type', 'post_type'),
(90, 29, '_menu_item_menu_item_parent', '0'),
(91, 29, '_menu_item_object_id', '21'),
(92, 29, '_menu_item_object', 'page'),
(93, 29, '_menu_item_target', ''),
(94, 29, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(95, 29, '_menu_item_xfn', ''),
(96, 29, '_menu_item_url', ''),
(97, 29, '_menu_item_orphaned', '1410427392'),
(98, 30, '_menu_item_type', 'custom'),
(99, 30, '_menu_item_menu_item_parent', '0'),
(100, 30, '_menu_item_object_id', '30'),
(101, 30, '_menu_item_object', 'custom'),
(102, 30, '_menu_item_target', ''),
(103, 30, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(104, 30, '_menu_item_xfn', ''),
(105, 30, '_menu_item_url', 'http://localhost/modul7_wp/'),
(116, 32, '_menu_item_type', 'post_type'),
(117, 32, '_menu_item_menu_item_parent', '0'),
(118, 32, '_menu_item_object_id', '21'),
(119, 32, '_menu_item_object', 'page'),
(120, 32, '_menu_item_target', ''),
(121, 32, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(122, 32, '_menu_item_xfn', ''),
(123, 32, '_menu_item_url', ''),
(125, 34, '_edit_last', '1'),
(126, 34, 'field_541179a238c4d', 'a:11:{s:3:"key";s:19:"field_541179a238c4d";s:5:"label";s:10:"Presseinfo";s:4:"name";s:10:"presseinfo";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:1;}'),
(128, 34, 'position', 'normal'),
(129, 34, 'layout', 'no_box'),
(130, 34, 'hide_on_screen', ''),
(131, 34, '_edit_lock', '1410506925:1'),
(132, 35, 'presseinfo', 'jeg sagde hej'),
(133, 35, '_presseinfo', 'field_541179a238c4d'),
(134, 21, 'presseinfo', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nun.'),
(135, 21, '_presseinfo', 'field_541179a238c4d'),
(137, 36, 'presseinfo', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nun.'),
(138, 36, '_presseinfo', 'field_541179a238c4d'),
(139, 34, 'field_54117c775db0b', 'a:11:{s:3:"key";s:19:"field_54117c775db0b";s:5:"label";s:13:"Kontakt image";s:4:"name";s:11:"kontakt_img";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:6:"object";s:12:"preview_size";s:9:"thumbnail";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'),
(141, 34, 'rule', 'a:5:{s:5:"param";s:4:"page";s:8:"operator";s:2:"==";s:5:"value";s:2:"21";s:8:"order_no";i:0;s:8:"group_no";i:0;}'),
(142, 37, 'kontakt_img', '15'),
(143, 37, '_kontakt_img', 'field_54117c775db0b'),
(144, 37, 'presseinfo', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nun.'),
(145, 37, '_presseinfo', 'field_541179a238c4d'),
(146, 21, 'kontakt_img', '15'),
(147, 21, '_kontakt_img', 'field_54117c775db0b'),
(148, 38, '_edit_last', '1'),
(149, 38, 'field_54117f4016b55', 'a:11:{s:3:"key";s:19:"field_54117f4016b55";s:5:"label";s:17:"Single page image";s:4:"name";s:17:"single_page_image";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:6:"object";s:12:"preview_size";s:9:"thumbnail";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'),
(151, 38, 'position', 'normal'),
(152, 38, 'layout', 'no_box'),
(153, 38, 'hide_on_screen', ''),
(154, 38, '_edit_lock', '1410433211:1'),
(155, 38, 'rule', 'a:5:{s:5:"param";s:9:"post_type";s:8:"operator";s:2:"==";s:5:"value";s:4:"post";s:8:"order_no";i:0;s:8:"group_no";i:0;}'),
(157, 39, 'single_page_image', '15'),
(158, 39, '_single_page_image', 'field_54117f4016b55'),
(159, 1, 'single_page_image', '15'),
(160, 1, '_single_page_image', 'field_54117f4016b55'),
(161, 40, '_edit_last', '1'),
(162, 40, '_edit_lock', '1410519540:1'),
(163, 40, '_wp_page_template', 'page-tshirt.php'),
(164, 42, '_edit_last', '1'),
(165, 42, 'field_541183b99d79d', 'a:11:{s:3:"key";s:19:"field_541183b99d79d";s:5:"label";s:13:"T-shirt image";s:4:"name";s:13:"t-shirt_image";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:6:"object";s:12:"preview_size";s:9:"thumbnail";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'),
(166, 42, 'field_541183d59d79e', 'a:11:{s:3:"key";s:19:"field_541183d59d79e";s:5:"label";s:10:"Bestseller";s:4:"name";s:10:"bestseller";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:1;}'),
(167, 42, 'field_541184429d79f', 'a:11:{s:3:"key";s:19:"field_541184429d79f";s:5:"label";s:9:"Instagram";s:4:"name";s:9:"instagram";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:2;}'),
(169, 42, 'position', 'normal'),
(170, 42, 'layout', 'no_box'),
(171, 42, 'hide_on_screen', ''),
(172, 42, '_edit_lock', '1410514875:1'),
(173, 44, 't-shirt_image', '15'),
(174, 44, '_t-shirt_image', 'field_541183b99d79d'),
(175, 44, 'bestseller', ''),
(176, 44, '_bestseller', 'field_541183d59d79e'),
(177, 44, 'instagram', ''),
(178, 44, '_instagram', 'field_541184429d79f'),
(179, 40, 't-shirt_image', '15'),
(180, 40, '_t-shirt_image', 'field_541183b99d79d'),
(181, 40, 'bestseller', ''),
(182, 40, '_bestseller', 'field_541183d59d79e'),
(183, 40, 'instagram', ''),
(184, 40, '_instagram', 'field_541184429d79f'),
(187, 45, '_edit_last', '1'),
(188, 45, 'field_541187be09e43', 'a:11:{s:3:"key";s:19:"field_541187be09e43";s:5:"label";s:8:"Infogram";s:4:"name";s:8:"infogram";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:6:"object";s:12:"preview_size";s:9:"thumbnail";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'),
(189, 45, 'field_541187d309e44', 'a:11:{s:3:"key";s:19:"field_541187d309e44";s:5:"label";s:18:"Customfield 1 Logo";s:4:"name";s:18:"customfield_1_logo";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:6:"object";s:12:"preview_size";s:9:"thumbnail";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:1;}'),
(190, 45, 'field_5411881709e45', 'a:11:{s:3:"key";s:19:"field_5411881709e45";s:5:"label";s:13:"Customfield 1";s:4:"name";s:13:"customfield_1";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:2;}'),
(191, 45, 'field_5411882f09e46', 'a:11:{s:3:"key";s:19:"field_5411882f09e46";s:5:"label";s:18:"Customfield 2 Logo";s:4:"name";s:18:"customfield_2_logo";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:6:"object";s:12:"preview_size";s:9:"thumbnail";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:3;}'),
(192, 45, 'field_5411883e09e47', 'a:11:{s:3:"key";s:19:"field_5411883e09e47";s:5:"label";s:13:"Customfield 2";s:4:"name";s:13:"customfield_2";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:4;}'),
(193, 45, 'field_5411885509e48', 'a:11:{s:3:"key";s:19:"field_5411885509e48";s:5:"label";s:18:"Customfield 3 Logo";s:4:"name";s:18:"customfield_3_logo";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:6:"object";s:12:"preview_size";s:9:"thumbnail";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:5;}'),
(194, 45, 'field_5411887e09e49', 'a:11:{s:3:"key";s:19:"field_5411887e09e49";s:5:"label";s:13:"Customfield 3";s:4:"name";s:13:"customfield_3";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:6;}'),
(195, 45, 'field_541188ad09e4a', 'a:11:{s:3:"key";s:19:"field_541188ad09e4a";s:5:"label";s:18:"Customfield 4 Logo";s:4:"name";s:18:"customfield_4_logo";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:6:"object";s:12:"preview_size";s:9:"thumbnail";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:7;}'),
(196, 45, 'field_541188bf09e4b', 'a:11:{s:3:"key";s:19:"field_541188bf09e4b";s:5:"label";s:13:"Customfield 4";s:4:"name";s:13:"customfield_4";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:8;}'),
(197, 45, 'field_541188d609e4c', 'a:11:{s:3:"key";s:19:"field_541188d609e4c";s:5:"label";s:18:"Customfield 5 Logo";s:4:"name";s:18:"customfield_5_logo";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:6:"object";s:12:"preview_size";s:9:"thumbnail";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:9;}'),
(198, 45, 'field_541188e109e4d', 'a:11:{s:3:"key";s:19:"field_541188e109e4d";s:5:"label";s:13:"Customfield 5";s:4:"name";s:13:"customfield_5";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:10;}'),
(200, 45, 'position', 'normal'),
(201, 45, 'layout', 'no_box'),
(202, 45, 'hide_on_screen', ''),
(203, 45, '_edit_lock', '1410436988:1'),
(204, 46, '_edit_last', '1'),
(205, 46, '_edit_lock', '1410520511:1'),
(206, 46, '_wp_page_template', 'page-about.php'),
(207, 45, 'rule', 'a:5:{s:5:"param";s:4:"page";s:8:"operator";s:2:"==";s:5:"value";s:2:"46";s:8:"order_no";i:0;s:8:"group_no";i:0;}'),
(208, 48, 'infogram', ''),
(209, 48, '_infogram', 'field_541187be09e43'),
(210, 48, 'customfield_1_logo', ''),
(211, 48, '_customfield_1_logo', 'field_541187d309e44'),
(212, 48, 'customfield_1', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(213, 48, '_customfield_1', 'field_5411881709e45'),
(214, 48, 'customfield_2_logo', ''),
(215, 48, '_customfield_2_logo', 'field_5411882f09e46'),
(216, 48, 'customfield_2', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(217, 48, '_customfield_2', 'field_5411883e09e47'),
(218, 48, 'customfield_3_logo', ''),
(219, 48, '_customfield_3_logo', 'field_5411885509e48'),
(220, 48, 'customfield_3', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(221, 48, '_customfield_3', 'field_5411887e09e49'),
(222, 48, 'customfield_4_logo', ''),
(223, 48, '_customfield_4_logo', 'field_541188ad09e4a'),
(224, 48, 'customfield_4', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(225, 48, '_customfield_4', 'field_541188bf09e4b'),
(226, 48, 'customfield_5_logo', ''),
(227, 48, '_customfield_5_logo', 'field_541188d609e4c'),
(228, 48, 'customfield_5', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(229, 48, '_customfield_5', 'field_541188e109e4d'),
(230, 46, 'infogram', '6'),
(231, 46, '_infogram', 'field_541187be09e43'),
(232, 46, 'customfield_1_logo', '6'),
(233, 46, '_customfield_1_logo', 'field_541187d309e44'),
(234, 46, 'customfield_1', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(235, 46, '_customfield_1', 'field_5411881709e45'),
(236, 46, 'customfield_2_logo', '6'),
(237, 46, '_customfield_2_logo', 'field_5411882f09e46'),
(238, 46, 'customfield_2', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(239, 46, '_customfield_2', 'field_5411883e09e47'),
(240, 46, 'customfield_3_logo', '6'),
(241, 46, '_customfield_3_logo', 'field_5411885509e48'),
(242, 46, 'customfield_3', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(243, 46, '_customfield_3', 'field_5411887e09e49'),
(244, 46, 'customfield_4_logo', '6'),
(245, 46, '_customfield_4_logo', 'field_541188ad09e4a'),
(246, 46, 'customfield_4', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(247, 46, '_customfield_4', 'field_541188bf09e4b'),
(248, 46, 'customfield_5_logo', '6'),
(249, 46, '_customfield_5_logo', 'field_541188d609e4c'),
(250, 46, 'customfield_5', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(251, 46, '_customfield_5', 'field_541188e109e4d'),
(252, 49, '_menu_item_type', 'post_type'),
(253, 49, '_menu_item_menu_item_parent', '0'),
(254, 49, '_menu_item_object_id', '46'),
(255, 49, '_menu_item_object', 'page'),
(256, 49, '_menu_item_target', ''),
(257, 49, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(258, 49, '_menu_item_xfn', ''),
(259, 49, '_menu_item_url', ''),
(261, 50, '_menu_item_type', 'post_type'),
(262, 50, '_menu_item_menu_item_parent', '0'),
(263, 50, '_menu_item_object_id', '40'),
(264, 50, '_menu_item_object', 'page'),
(265, 50, '_menu_item_target', ''),
(266, 50, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(267, 50, '_menu_item_xfn', ''),
(268, 50, '_menu_item_url', ''),
(269, 51, '_edit_last', '1'),
(270, 51, '_edit_lock', '1410510139:1'),
(271, 52, '_edit_last', '1'),
(272, 52, '_wp_page_template', 'page-front.php'),
(273, 52, '_edit_lock', '1410510231:1'),
(274, 51, '_wp_page_template', 'default'),
(275, 12, '_wp_trash_meta_status', 'publish'),
(276, 12, '_wp_trash_meta_time', '1410509768'),
(277, 9, '_wp_trash_meta_status', 'publish'),
(278, 9, '_wp_trash_meta_time', '1410509768'),
(279, 7, '_wp_trash_meta_status', 'publish'),
(280, 7, '_wp_trash_meta_time', '1410509768'),
(281, 1, '_wp_trash_meta_status', 'publish'),
(282, 1, '_wp_trash_meta_time', '1410509768'),
(283, 1, '_wp_trash_meta_comments_status', 'a:1:{i:1;s:1:"1";}'),
(284, 56, '_thumbnail_id', '6'),
(285, 56, '_edit_last', '1'),
(286, 56, '_edit_lock', '1410509783:1'),
(288, 57, 'single_page_image', ''),
(289, 57, '_single_page_image', 'field_54117f4016b55'),
(290, 56, 'single_page_image', ''),
(291, 56, '_single_page_image', 'field_54117f4016b55'),
(294, 59, 'single_page_image', '6'),
(295, 59, '_single_page_image', 'field_54117f4016b55'),
(296, 51, '_wp_trash_meta_status', 'publish'),
(297, 51, '_wp_trash_meta_time', '1410510284'),
(298, 2, '_wp_trash_meta_status', 'publish'),
(299, 2, '_wp_trash_meta_time', '1410510297'),
(300, 19, '_wp_trash_meta_status', 'publish'),
(301, 19, '_wp_trash_meta_time', '1410510299'),
(302, 62, '_edit_last', '1'),
(303, 62, '_edit_lock', '1410595682:1'),
(304, 62, 'settings', 'a:26:{s:9:"animation";s:5:"slide";s:10:"slideSpeed";s:1:"1";s:16:"descriptionSpeed";s:3:"0.4";s:13:"intervalSpeed";s:1:"5";s:13:"slidesPerView";s:1:"1";s:8:"maxWidth";s:1:"0";s:11:"aspectRatio";s:3:"6:1";s:6:"height";s:3:"200";s:14:"imageBehaviour";s:4:"crop";s:15:"showDescription";s:5:"false";s:15:"hideDescription";s:4:"true";s:27:"preserveSlideshowDimensions";s:4:"true";s:20:"enableResponsiveness";s:4:"true";s:4:"play";s:4:"true";s:4:"loop";s:4:"true";s:12:"pauseOnHover";s:4:"true";s:12:"controllable";s:4:"true";s:21:"hideNavigationButtons";s:5:"false";s:14:"showPagination";s:4:"true";s:14:"hidePagination";s:5:"false";s:12:"controlPanel";s:5:"false";s:16:"hideControlPanel";s:4:"true";s:15:"waitUntilLoaded";s:4:"true";s:15:"showLoadingIcon";s:4:"true";s:6:"random";s:5:"false";s:11:"avoidFilter";s:4:"true";}'),
(305, 62, 'styleSettings', 'a:1:{s:5:"style";s:15:"style-light.css";}'),
(306, 62, 'slides', 'a:2:{i:1;a:9:{s:17:"titleElementTagID";s:1:"0";s:5:"title";s:8:"1160x193";s:23:"descriptionElementTagID";s:1:"0";s:11:"description";s:0:"";s:3:"url";s:0:"";s:9:"urlTarget";s:5:"_self";s:15:"alternativeText";s:0:"";s:4:"type";s:10:"attachment";s:6:"postId";s:2:"94";}i:2;a:9:{s:17:"titleElementTagID";s:1:"0";s:5:"title";s:16:"Starbucks_banner";s:23:"descriptionElementTagID";s:1:"0";s:11:"description";s:0:"";s:3:"url";s:0:"";s:9:"urlTarget";s:5:"_self";s:15:"alternativeText";s:0:"";s:4:"type";s:10:"attachment";s:6:"postId";s:2:"93";}}'),
(307, 63, '_edit_last', '1'),
(308, 63, '_edit_lock', '1410513570:1'),
(309, 64, '_edit_last', '1'),
(310, 64, 'field_5412bb06e0a79', 'a:14:{s:3:"key";s:19:"field_5412bb06e0a79";s:5:"label";s:10:"iframe URL";s:4:"name";s:6:"iframe";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:7:"prepend";s:0:"";s:6:"append";s:0:"";s:10:"formatting";s:4:"html";s:9:"maxlength";s:0:"";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'),
(312, 64, 'position', 'normal'),
(313, 64, 'layout', 'no_box'),
(314, 64, 'hide_on_screen', ''),
(315, 64, '_edit_lock', '1410514354:1'),
(316, 65, '_edit_last', '1'),
(317, 65, '_wp_page_template', 'page-iframe.php'),
(318, 65, '_edit_lock', '1410514421:1'),
(319, 64, 'field_5412bc0ab1f80', 'a:11:{s:3:"key";s:19:"field_5412bc0ab1f80";s:5:"label";s:10:"Banner img";s:4:"name";s:10:"banner_img";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:6:"object";s:12:"preview_size";s:9:"thumbnail";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:1;}'),
(321, 64, 'rule', 'a:5:{s:5:"param";s:13:"page_template";s:8:"operator";s:2:"==";s:5:"value";s:15:"page-iframe.php";s:8:"order_no";i:0;s:8:"group_no";i:0;}'),
(322, 63, '_wp_trash_meta_status', 'draft'),
(323, 63, '_wp_trash_meta_time', '1410514052'),
(324, 69, 'iframe', 'http://math012r.keaweb.dk/goodvertising/fotokonkurrence/'),
(325, 69, '_iframe', 'field_5412bb06e0a79'),
(326, 69, 'banner_img', '6'),
(327, 69, '_banner_img', 'field_5412bc0ab1f80'),
(328, 65, 'iframe', 'http://math012r.keaweb.dk/goodvertising/fotokonkurrence/'),
(329, 65, '_iframe', 'field_5412bb06e0a79'),
(330, 65, 'banner_img', '6'),
(331, 65, '_banner_img', 'field_5412bc0ab1f80'),
(332, 6, '_edit_lock', '1410514613:1'),
(333, 6, '_edit_last', '1'),
(334, 6, '_wp_attachment_backup_sizes', 'a:2:{s:9:"full-orig";a:3:{s:5:"width";i:1440;s:6:"height";i:900;s:4:"file";s:41:"Skærmbillede-2014-09-05-kl.-14.07.10.png";}s:18:"full-1410514754191";a:3:{s:5:"width";i:1200;s:6:"height";i:750;s:4:"file";s:56:"Skærmbillede-2014-09-05-kl.-14.07.10-e1410514657277.png";}}'),
(335, 70, '_menu_item_type', 'post_type'),
(336, 70, '_menu_item_menu_item_parent', '0'),
(337, 70, '_menu_item_object_id', '65'),
(338, 70, '_menu_item_object', 'page'),
(339, 70, '_menu_item_target', ''),
(340, 70, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(341, 70, '_menu_item_xfn', ''),
(342, 70, '_menu_item_url', ''),
(344, 42, 'field_5412c002ff715', 'a:14:{s:3:"key";s:19:"field_5412c002ff715";s:5:"label";s:13:"tshirt iframe";s:4:"name";s:13:"tshirt_iframe";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:7:"prepend";s:0:"";s:6:"append";s:0:"";s:10:"formatting";s:4:"html";s:9:"maxlength";s:0:"";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:3;}'),
(347, 42, 'rule', 'a:5:{s:5:"param";s:4:"page";s:8:"operator";s:2:"==";s:5:"value";s:2:"40";s:8:"order_no";i:0;s:8:"group_no";i:0;}'),
(348, 71, 't-shirt_image', '15'),
(349, 71, '_t-shirt_image', 'field_541183b99d79d'),
(350, 71, 'bestseller', ''),
(351, 71, '_bestseller', 'field_541183d59d79e'),
(352, 71, 'instagram', ''),
(353, 71, '_instagram', 'field_541184429d79f'),
(354, 71, 'tshirt_iframe', 'http://math012r.keaweb.dk/goodvertising/vote.php'),
(355, 71, '_tshirt_iframe', 'field_5412c002ff715'),
(356, 40, 'tshirt_iframe', 'http://math012r.keaweb.dk/goodvertising/vote.php'),
(357, 40, '_tshirt_iframe', 'field_5412c002ff715'),
(358, 72, '_edit_last', '1'),
(359, 72, '_edit_lock', '1410519407:1'),
(360, 72, '_wp_page_template', 'default'),
(361, 72, '_wp_trash_meta_status', 'publish'),
(362, 72, '_wp_trash_meta_time', '1410519707'),
(363, 75, '_thumbnail_id', '6'),
(364, 75, '_edit_last', '1'),
(365, 75, '_edit_lock', '1410519607:1'),
(367, 76, 'single_page_image', ''),
(368, 76, '_single_page_image', 'field_54117f4016b55'),
(369, 75, 'single_page_image', ''),
(370, 75, '_single_page_image', 'field_54117f4016b55'),
(371, 77, '_edit_last', '1'),
(372, 77, '_edit_lock', '1410519770:1'),
(374, 78, 'single_page_image', ''),
(375, 78, '_single_page_image', 'field_54117f4016b55'),
(376, 77, 'single_page_image', ''),
(377, 77, '_single_page_image', 'field_54117f4016b55'),
(378, 79, '_thumbnail_id', '6'),
(379, 79, '_edit_last', '1'),
(380, 79, '_edit_lock', '1410519659:1'),
(382, 80, 'single_page_image', ''),
(383, 80, '_single_page_image', 'field_54117f4016b55'),
(384, 79, 'single_page_image', ''),
(385, 79, '_single_page_image', 'field_54117f4016b55'),
(386, 81, '_thumbnail_id', '6'),
(387, 81, '_edit_last', '1'),
(388, 81, '_edit_lock', '1410519690:1'),
(390, 82, 'single_page_image', ''),
(391, 82, '_single_page_image', 'field_54117f4016b55'),
(392, 81, 'single_page_image', ''),
(393, 81, '_single_page_image', 'field_54117f4016b55'),
(395, 83, 'single_page_image', ''),
(396, 83, '_single_page_image', 'field_54117f4016b55'),
(397, 84, 'infogram', ''),
(398, 84, '_infogram', 'field_541187be09e43'),
(399, 84, 'customfield_1_logo', '6'),
(400, 84, '_customfield_1_logo', 'field_541187d309e44'),
(401, 84, 'customfield_1', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(402, 84, '_customfield_1', 'field_5411881709e45'),
(403, 84, 'customfield_2_logo', ''),
(404, 84, '_customfield_2_logo', 'field_5411882f09e46'),
(405, 84, 'customfield_2', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(406, 84, '_customfield_2', 'field_5411883e09e47'),
(407, 84, 'customfield_3_logo', ''),
(408, 84, '_customfield_3_logo', 'field_5411885509e48'),
(409, 84, 'customfield_3', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(410, 84, '_customfield_3', 'field_5411887e09e49'),
(411, 84, 'customfield_4_logo', ''),
(412, 84, '_customfield_4_logo', 'field_541188ad09e4a'),
(413, 84, 'customfield_4', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(414, 84, '_customfield_4', 'field_541188bf09e4b'),
(415, 84, 'customfield_5_logo', ''),
(416, 84, '_customfield_5_logo', 'field_541188d609e4c'),
(417, 84, 'customfield_5', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(418, 84, '_customfield_5', 'field_541188e109e4d'),
(419, 85, 'infogram', '6'),
(420, 85, '_infogram', 'field_541187be09e43'),
(421, 85, 'customfield_1_logo', ''),
(422, 85, '_customfield_1_logo', 'field_541187d309e44'),
(423, 85, 'customfield_1', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(424, 85, '_customfield_1', 'field_5411881709e45'),
(425, 85, 'customfield_2_logo', ''),
(426, 85, '_customfield_2_logo', 'field_5411882f09e46'),
(427, 85, 'customfield_2', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(428, 85, '_customfield_2', 'field_5411883e09e47'),
(429, 85, 'customfield_3_logo', ''),
(430, 85, '_customfield_3_logo', 'field_5411885509e48'),
(431, 85, 'customfield_3', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(432, 85, '_customfield_3', 'field_5411887e09e49'),
(433, 85, 'customfield_4_logo', ''),
(434, 85, '_customfield_4_logo', 'field_541188ad09e4a'),
(435, 85, 'customfield_4', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(436, 85, '_customfield_4', 'field_541188bf09e4b'),
(437, 85, 'customfield_5_logo', ''),
(438, 85, '_customfield_5_logo', 'field_541188d609e4c'),
(439, 85, 'customfield_5', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(440, 85, '_customfield_5', 'field_541188e109e4d'),
(441, 86, 'infogram', '6'),
(442, 86, '_infogram', 'field_541187be09e43'),
(443, 86, 'customfield_1_logo', ''),
(444, 86, '_customfield_1_logo', 'field_541187d309e44'),
(445, 86, 'customfield_1', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(446, 86, '_customfield_1', 'field_5411881709e45'),
(447, 86, 'customfield_2_logo', ''),
(448, 86, '_customfield_2_logo', 'field_5411882f09e46'),
(449, 86, 'customfield_2', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(450, 86, '_customfield_2', 'field_5411883e09e47'),
(451, 86, 'customfield_3_logo', ''),
(452, 86, '_customfield_3_logo', 'field_5411885509e48'),
(453, 86, 'customfield_3', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(454, 86, '_customfield_3', 'field_5411887e09e49'),
(455, 86, 'customfield_4_logo', ''),
(456, 86, '_customfield_4_logo', 'field_541188ad09e4a'),
(457, 86, 'customfield_4', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(458, 86, '_customfield_4', 'field_541188bf09e4b'),
(459, 86, 'customfield_5_logo', ''),
(460, 86, '_customfield_5_logo', 'field_541188d609e4c'),
(461, 86, 'customfield_5', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(462, 86, '_customfield_5', 'field_541188e109e4d'),
(463, 87, 'infogram', '6'),
(464, 87, '_infogram', 'field_541187be09e43'),
(465, 87, 'customfield_1_logo', ''),
(466, 87, '_customfield_1_logo', 'field_541187d309e44'),
(467, 87, 'customfield_1', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(468, 87, '_customfield_1', 'field_5411881709e45'),
(469, 87, 'customfield_2_logo', ''),
(470, 87, '_customfield_2_logo', 'field_5411882f09e46'),
(471, 87, 'customfield_2', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(472, 87, '_customfield_2', 'field_5411883e09e47'),
(473, 87, 'customfield_3_logo', ''),
(474, 87, '_customfield_3_logo', 'field_5411885509e48'),
(475, 87, 'customfield_3', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(476, 87, '_customfield_3', 'field_5411887e09e49'),
(477, 87, 'customfield_4_logo', ''),
(478, 87, '_customfield_4_logo', 'field_541188ad09e4a'),
(479, 87, 'customfield_4', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(480, 87, '_customfield_4', 'field_541188bf09e4b'),
(481, 87, 'customfield_5_logo', ''),
(482, 87, '_customfield_5_logo', 'field_541188d609e4c'),
(483, 87, 'customfield_5', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(484, 87, '_customfield_5', 'field_541188e109e4d'),
(485, 88, 'infogram', '6'),
(486, 88, '_infogram', 'field_541187be09e43'),
(487, 88, 'customfield_1_logo', ''),
(488, 88, '_customfield_1_logo', 'field_541187d309e44'),
(489, 88, 'customfield_1', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(490, 88, '_customfield_1', 'field_5411881709e45'),
(491, 88, 'customfield_2_logo', ''),
(492, 88, '_customfield_2_logo', 'field_5411882f09e46'),
(493, 88, 'customfield_2', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(494, 88, '_customfield_2', 'field_5411883e09e47'),
(495, 88, 'customfield_3_logo', ''),
(496, 88, '_customfield_3_logo', 'field_5411885509e48'),
(497, 88, 'customfield_3', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(498, 88, '_customfield_3', 'field_5411887e09e49'),
(499, 88, 'customfield_4_logo', ''),
(500, 88, '_customfield_4_logo', 'field_541188ad09e4a'),
(501, 88, 'customfield_4', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(502, 88, '_customfield_4', 'field_541188bf09e4b'),
(503, 88, 'customfield_5_logo', ''),
(504, 88, '_customfield_5_logo', 'field_541188d609e4c'),
(505, 88, 'customfield_5', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(506, 88, '_customfield_5', 'field_541188e109e4d'),
(507, 89, 'infogram', '6'),
(508, 89, '_infogram', 'field_541187be09e43'),
(509, 89, 'customfield_1_logo', '6'),
(510, 89, '_customfield_1_logo', 'field_541187d309e44'),
(511, 89, 'customfield_1', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(512, 89, '_customfield_1', 'field_5411881709e45'),
(513, 89, 'customfield_2_logo', '6'),
(514, 89, '_customfield_2_logo', 'field_5411882f09e46'),
(515, 89, 'customfield_2', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(516, 89, '_customfield_2', 'field_5411883e09e47'),
(517, 89, 'customfield_3_logo', '6'),
(518, 89, '_customfield_3_logo', 'field_5411885509e48'),
(519, 89, 'customfield_3', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(520, 89, '_customfield_3', 'field_5411887e09e49'),
(521, 89, 'customfield_4_logo', '6'),
(522, 89, '_customfield_4_logo', 'field_541188ad09e4a'),
(523, 89, 'customfield_4', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(524, 89, '_customfield_4', 'field_541188bf09e4b'),
(525, 89, 'customfield_5_logo', '6'),
(526, 89, '_customfield_5_logo', 'field_541188d609e4c'),
(527, 89, 'customfield_5', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(528, 89, '_customfield_5', 'field_541188e109e4d'),
(551, 91, 'infogram', '6'),
(552, 91, '_infogram', 'field_541187be09e43'),
(553, 91, 'customfield_1_logo', '6'),
(554, 91, '_customfield_1_logo', 'field_541187d309e44'),
(555, 91, 'customfield_1', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(556, 91, '_customfield_1', 'field_5411881709e45'),
(557, 91, 'customfield_2_logo', '6'),
(558, 91, '_customfield_2_logo', 'field_5411882f09e46'),
(559, 91, 'customfield_2', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(560, 91, '_customfield_2', 'field_5411883e09e47'),
(561, 91, 'customfield_3_logo', '6'),
(562, 91, '_customfield_3_logo', 'field_5411885509e48'),
(563, 91, 'customfield_3', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(564, 91, '_customfield_3', 'field_5411887e09e49'),
(565, 91, 'customfield_4_logo', '6'),
(566, 91, '_customfield_4_logo', 'field_541188ad09e4a'),
(567, 91, 'customfield_4', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(568, 91, '_customfield_4', 'field_541188bf09e4b'),
(569, 91, 'customfield_5_logo', '6'),
(570, 91, '_customfield_5_logo', 'field_541188d609e4c'),
(571, 91, 'customfield_5', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum i'),
(572, 91, '_customfield_5', 'field_541188e109e4d'),
(595, 93, '_wp_attached_file', '2014/09/Starbucks_banner.png'),
(596, 93, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1160;s:6:"height";i:193;s:4:"file";s:28:"2014/09/Starbucks_banner.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"Starbucks_banner-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:27:"Starbucks_banner-300x49.png";s:5:"width";i:300;s:6:"height";i:49;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:29:"Starbucks_banner-1024x170.png";s:5:"width";i:1024;s:6:"height";i:170;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:27:"Starbucks_banner-400x66.png";s:5:"width";i:400;s:6:"height";i:66;s:9:"mime-type";s:9:"image/png";}s:14:"singlepost-img";a:4:{s:4:"file";s:28:"Starbucks_banner-750x124.png";s:5:"width";i:750;s:6:"height";i:124;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'),
(597, 94, '_wp_attached_file', '2014/09/1160x193.gif');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(598, 94, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1160;s:6:"height";i:193;s:4:"file";s:20:"2014/09/1160x193.gif";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"1160x193-150x150.gif";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/gif";}s:6:"medium";a:4:{s:4:"file";s:19:"1160x193-300x49.gif";s:5:"width";i:300;s:6:"height";i:49;s:9:"mime-type";s:9:"image/gif";}s:5:"large";a:4:{s:4:"file";s:21:"1160x193-1024x170.gif";s:5:"width";i:1024;s:6:"height";i:170;s:9:"mime-type";s:9:"image/gif";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"1160x193-400x66.gif";s:5:"width";i:400;s:6:"height";i:66;s:9:"mime-type";s:9:"image/gif";}s:14:"singlepost-img";a:4:{s:4:"file";s:20:"1160x193-750x124.gif";s:5:"width";i:750;s:6:"height";i:124;s:9:"mime-type";s:9:"image/gif";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}');
-- --------------------------------------------------------
--
-- Struktur-dump for tabellen `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=95 ;
--
-- Data dump for tabellen `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-09-08 09:29:55', '2014-09-08 09:29:55', 'Velkommen til WordPress. Dette er dit første indlæg. Du kan rette eller slette det, og derefter er det bare om at begynde at blogge!', 'Hej Verden!', '', 'trash', 'open', 'open', '', 'hej-verden', '', '', '2014-09-12 08:16:08', '2014-09-12 08:16:08', '', 0, 'http://localhost/modul7_wp/?p=1', 0, 'post', '', 1),
(2, 1, '2014-09-08 09:29:55', '2014-09-08 09:29:55', 'Dette er en eksempelside. Den er forskellig fra et indlæg, fordi den vil forblive det samme sted og være en del af dit websteds navigation (i de fleste temaer). De fleste vil lægge ud med en Om-side, der præsenterer dem for potentielle besøgende. Ordlyden kunne være noget i retning af:\n\n<blockquote>Hejsa! Jeg er cykelbud om dagen, prøver at blive skuespiller om aftenen og dette er min blog. Jeg bor i København, har en dejlig hund, der hedder King, og jeg kan lide Mojitos. (og at blive overrasket af regnvejr.)</blockquote>\n\n... eller noget i retning af:\n\n<blockquote>XYZ Dingenot fabrikken blev grundlagt i 1971 og har leveret kvalitetsdingenoter til offentligheden lige siden. Beliggende i Andeby, har 2.000 ansatte og bidrager med alverdens seje tiltag i lokalområdet.</blockquote>\n\nSom ny WordPress bruger, bør du gå til <a href="http://localhost/modul7_wp/wp-admin/">dit kontrolpanel</a> for at slette denne side og oprette nye sider til dit indhold. God fornøjelse!', 'Eksempelside', '', 'trash', 'open', 'open', '', 'eksempel-side', '', '', '2014-09-12 08:24:57', '2014-09-12 08:24:57', '', 0, 'http://localhost/modul7_wp/?page_id=2', 0, 'page', '', 0),
(3, 1, '2014-09-08 09:30:20', '0000-00-00 00:00:00', '', 'Automatisk kladde', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-09-08 09:30:20', '0000-00-00 00:00:00', '', 0, 'http://localhost/modul7_wp/?p=3', 0, 'post', '', 0),
(5, 1, '2014-09-08 11:02:13', '2014-09-08 11:02:13', 'Velkommen til WordPress. Dette er dit første indlæg. Du kan rette eller slette det, og derefter er det bare om at begynde at blogge!', 'Hej Verden!', '', 'inherit', 'open', 'open', '', '1-revision-v1', '', '', '2014-09-08 11:02:13', '2014-09-08 11:02:13', '', 1, 'http://localhost/modul7_wp/?p=5', 0, 'revision', '', 0),
(6, 1, '2014-09-08 11:05:20', '2014-09-08 11:05:20', '', 'Skærmbillede 2014-09-05 kl. 14.07.10', '', 'inherit', 'open', 'open', '', 'skaermbillede-2014-09-05-kl-14-07-10', '', '', '2014-09-12 09:39:16', '2014-09-12 09:39:16', '', 1, 'http://localhost/modul7_wp/wp-content/uploads/2014/09/Skærmbillede-2014-09-05-kl.-14.07.10.png', 0, 'attachment', 'image/png', 0),
(7, 1, '2014-09-08 11:08:11', '2014-09-08 11:08:11', 'Dette er endnu et indlæg', 'Endnu et indlæg', '', 'trash', 'open', 'open', '', 'endnu-et-indlaeg', '', '', '2014-09-12 08:16:08', '2014-09-12 08:16:08', '', 0, 'http://localhost/modul7_wp/?p=7', 0, 'post', '', 0),
(8, 1, '2014-09-08 11:08:11', '2014-09-08 11:08:11', 'Dette er endnu et indlæg', 'Endnu et indlæg', '', 'inherit', 'open', 'open', '', '7-revision-v1', '', '', '2014-09-08 11:08:11', '2014-09-08 11:08:11', '', 7, 'http://localhost/modul7_wp/?p=8', 0, 'revision', '', 0),
(9, 1, '2014-09-08 11:15:29', '2014-09-08 11:15:29', 'TEST TEST TEST', 'test indlæg', '', 'trash', 'open', 'open', '', 'test-indlaeg', '', '', '2014-09-12 08:16:08', '2014-09-12 08:16:08', '', 0, 'http://localhost/modul7_wp/?p=9', 0, 'post', '', 0),
(10, 1, '2014-09-08 11:15:13', '2014-09-08 11:15:13', '', 'Skærmbillede 2014-09-05 kl. 14.07.10', '', 'inherit', 'open', 'open', '', 'skaermbillede-2014-09-05-kl-14-07-10-2', '', '', '2014-09-08 11:15:13', '2014-09-08 11:15:13', '', 9, 'http://localhost/modul7_wp/wp-content/uploads/2014/09/Skærmbillede-2014-09-05-kl.-14.07.101.png', 0, 'attachment', 'image/png', 0),
(11, 1, '2014-09-08 11:15:29', '2014-09-08 11:15:29', 'TEST TEST TEST', 'test indlæg', '', 'inherit', 'open', 'open', '', '9-revision-v1', '', '', '2014-09-08 11:15:29', '2014-09-08 11:15:29', '', 9, 'http://localhost/modul7_wp/?p=11', 0, 'revision', '', 0),
(12, 1, '2014-09-09 07:48:01', '2014-09-09 07:48:01', 'igen en test', 'test', '', 'trash', 'open', 'open', '', 'test', '', '', '2014-09-12 08:16:08', '2014-09-12 08:16:08', '', 0, 'http://localhost/modul7_wp/?p=12', 0, 'post', '', 0),
(13, 1, '2014-09-09 07:48:01', '2014-09-09 07:48:01', 'igen en test', 'test', '', 'inherit', 'open', 'open', '', '12-revision-v1', '', '', '2014-09-09 07:48:01', '2014-09-09 07:48:01', '', 12, 'http://localhost/modul7_wp/?p=13', 0, 'revision', '', 0),
(14, 1, '2014-09-09 09:14:50', '2014-09-09 09:14:50', 'sdbhfkbsjkldfgkljjknfjlsjdlkf', 'nu med resize', '', 'trash', 'open', 'open', '', 'nu-med-resize', '', '', '2014-09-09 10:02:31', '2014-09-09 10:02:31', '', 0, 'http://localhost/modul7_wp/?p=14', 0, 'post', '', 0),
(15, 1, '2014-09-09 09:14:36', '2014-09-09 09:14:36', '', 'Skærmbillede 2014-09-05 kl. 14.07.10', '', 'inherit', 'open', 'open', '', 'skaermbillede-2014-09-05-kl-14-07-10-3', '', '', '2014-09-09 09:14:36', '2014-09-09 09:14:36', '', 14, 'http://localhost/modul7_wp/wp-content/uploads/2014/09/Skærmbillede-2014-09-05-kl.-14.07.102.png', 0, 'attachment', 'image/png', 0),
(16, 1, '2014-09-09 09:14:50', '2014-09-09 09:14:50', 'sdbhfkbsjkldfgkljjknfjlsjdlkf', 'nu med resize', '', 'inherit', 'open', 'open', '', '14-revision-v1', '', '', '2014-09-09 09:14:50', '2014-09-09 09:14:50', '', 14, 'http://localhost/modul7_wp/?p=16', 0, 'revision', '', 0),
(17, 1, '2014-09-09 09:57:50', '0000-00-00 00:00:00', '', 'Forside', '', 'draft', 'open', 'open', '', '', '', '', '2014-09-09 09:57:50', '0000-00-00 00:00:00', '', 0, 'http://localhost/modul7_wp/?p=17', 1, 'nav_menu_item', '', 0),
(18, 1, '2014-09-09 09:57:51', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-09-09 09:57:51', '0000-00-00 00:00:00', '', 0, 'http://localhost/modul7_wp/?p=18', 1, 'nav_menu_item', '', 0),
(19, 1, '2014-09-11 08:45:43', '2014-09-11 08:45:43', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nunc, sodales ut vehicula vel, cursus at nunc. Aliquam id egestas sem. Curabitur malesuada convallis tellus eget feugiat. Donec nec scelerisque turpis, accumsan tincidunt orci. Ut molestie erat eget justo fringilla ullamcorper. Sed facilisis ex id vehicula facilisis. Nunc congue porta tempor. Suspendisse efficitur ante sit amet justo lobortis, aliquet tristique ipsum euismod. Aliquam vel egestas orci. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.\r\n\r\nInteger faucibus ex eu ligula vestibulum viverra. Morbi mollis orci enim, et commodo urna consectetur sit amet. Pellentesque nec nibh sed purus congue pretium. Mauris tempus nisi vel pretium dignissim. Morbi nec felis in est condimentum lacinia. In tristique diam sit amet mi ultricies, sit amet sollicitudin tortor tempus. Aliquam erat volutpat. Phasellus in metus purus. Ut eu finibus ex, vel cursus lorem. Cras rhoncus est ut mollis efficitur. Fusce ut enim eu odio feugiat lobortis. Ut elementum iaculis consectetur. Morbi suscipit est a ipsum aliquam accumsan. Ut suscipit at ligula ac ultrices. Quisque pharetra est a leo elementum rutrum.', 'Dette er en test side', '', 'trash', 'open', 'open', '', 'dette-er-en-test-side', '', '', '2014-09-12 08:24:59', '2014-09-12 08:24:59', '', 0, 'http://localhost/modul7_wp/?page_id=19', 0, 'page', '', 0),
(20, 1, '2014-09-11 08:45:43', '2014-09-11 08:45:43', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nunc, sodales ut vehicula vel, cursus at nunc. Aliquam id egestas sem. Curabitur malesuada convallis tellus eget feugiat. Donec nec scelerisque turpis, accumsan tincidunt orci. Ut molestie erat eget justo fringilla ullamcorper. Sed facilisis ex id vehicula facilisis. Nunc congue porta tempor. Suspendisse efficitur ante sit amet justo lobortis, aliquet tristique ipsum euismod. Aliquam vel egestas orci. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.\r\n\r\nInteger faucibus ex eu ligula vestibulum viverra. Morbi mollis orci enim, et commodo urna consectetur sit amet. Pellentesque nec nibh sed purus congue pretium. Mauris tempus nisi vel pretium dignissim. Morbi nec felis in est condimentum lacinia. In tristique diam sit amet mi ultricies, sit amet sollicitudin tortor tempus. Aliquam erat volutpat. Phasellus in metus purus. Ut eu finibus ex, vel cursus lorem. Cras rhoncus est ut mollis efficitur. Fusce ut enim eu odio feugiat lobortis. Ut elementum iaculis consectetur. Morbi suscipit est a ipsum aliquam accumsan. Ut suscipit at ligula ac ultrices. Quisque pharetra est a leo elementum rutrum.', 'Dette er en test side', '', 'inherit', 'open', 'open', '', '19-revision-v1', '', '', '2014-09-11 08:45:43', '2014-09-11 08:45:43', '', 19, 'http://localhost/modul7_wp/?p=20', 0, 'revision', '', 0),
(21, 1, '2014-09-11 09:06:47', '2014-09-11 09:06:47', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nun.', 'Kontakt', '', 'publish', 'open', 'open', '', '21-2', '', '', '2014-09-11 10:44:09', '2014-09-11 10:44:09', '', 0, 'http://localhost/modul7_wp/?page_id=21', 0, 'page', '', 0),
(22, 1, '2014-09-11 09:06:47', '2014-09-11 09:06:47', '', '', '', 'inherit', 'open', 'open', '', '21-revision-v1', '', '', '2014-09-11 09:06:47', '2014-09-11 09:06:47', '', 21, 'http://localhost/modul7_wp/?p=22', 0, 'revision', '', 0),
(23, 1, '2014-09-11 09:14:08', '2014-09-11 09:14:08', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nunc,', '', '', 'inherit', 'open', 'open', '', '21-revision-v1', '', '', '2014-09-11 09:14:08', '2014-09-11 09:14:08', '', 21, 'http://localhost/modul7_wp/?p=23', 0, 'revision', '', 0),
(24, 1, '2014-09-11 09:21:36', '2014-09-11 09:21:36', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nunc,', 'Kontakt', '', 'inherit', 'open', 'open', '', '21-revision-v1', '', '', '2014-09-11 09:21:36', '2014-09-11 09:21:36', '', 21, 'http://localhost/modul7_wp/?p=24', 0, 'revision', '', 0),
(26, 1, '2014-09-11 09:23:12', '0000-00-00 00:00:00', '', 'Forside', '', 'draft', 'open', 'open', '', '', '', '', '2014-09-11 09:23:12', '0000-00-00 00:00:00', '', 0, 'http://localhost/modul7_wp/?p=26', 1, 'nav_menu_item', '', 0),
(27, 1, '2014-09-11 09:23:12', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-09-11 09:23:12', '0000-00-00 00:00:00', '', 0, 'http://localhost/modul7_wp/?p=27', 1, 'nav_menu_item', '', 0),
(28, 1, '2014-09-11 09:23:12', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-09-11 09:23:12', '0000-00-00 00:00:00', '', 0, 'http://localhost/modul7_wp/?p=28', 1, 'nav_menu_item', '', 0),
(29, 1, '2014-09-11 09:23:12', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-09-11 09:23:12', '0000-00-00 00:00:00', '', 0, 'http://localhost/modul7_wp/?p=29', 1, 'nav_menu_item', '', 0),
(30, 1, '2014-09-11 09:25:40', '2014-09-11 09:25:40', '', 'Forside', '', 'publish', 'open', 'open', '', 'forside', '', '', '2014-09-12 09:40:03', '2014-09-12 09:40:03', '', 0, 'http://localhost/modul7_wp/?p=30', 1, 'nav_menu_item', '', 0),
(32, 1, '2014-09-11 09:25:40', '2014-09-11 09:25:40', ' ', '', '', 'publish', 'open', 'open', '', '32', '', '', '2014-09-12 09:40:03', '2014-09-12 09:40:03', '', 0, 'http://localhost/modul7_wp/?p=32', 2, 'nav_menu_item', '', 0),
(33, 1, '2014-09-11 10:27:53', '2014-09-11 10:27:53', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nun.', 'Kontakt', '', 'inherit', 'open', 'open', '', '21-revision-v1', '', '', '2014-09-11 10:27:53', '2014-09-11 10:27:53', '', 21, 'http://localhost/modul7_wp/?p=33', 0, 'revision', '', 0),
(34, 1, '2014-09-11 10:38:00', '2014-09-11 10:38:00', '', 'Presseinfo', '', 'publish', 'closed', 'closed', '', 'acf_presseinfo', '', '', '2014-09-11 10:43:16', '2014-09-11 10:43:16', '', 0, 'http://localhost/modul7_wp/?post_type=acf&p=34', 0, 'acf', '', 0),
(35, 1, '2014-09-11 10:39:44', '2014-09-11 10:39:44', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nun.', 'Kontakt', '', 'inherit', 'open', 'open', '', '21-revision-v1', '', '', '2014-09-11 10:39:44', '2014-09-11 10:39:44', '', 21, 'http://localhost/modul7_wp/?p=35', 0, 'revision', '', 0),
(36, 1, '2014-09-11 10:41:23', '2014-09-11 10:41:23', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nun.', 'Kontakt', '', 'inherit', 'open', 'open', '', '21-revision-v1', '', '', '2014-09-11 10:41:23', '2014-09-11 10:41:23', '', 21, 'http://localhost/modul7_wp/?p=36', 0, 'revision', '', 0),
(37, 1, '2014-09-11 10:44:09', '2014-09-11 10:44:09', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nun.', 'Kontakt', '', 'inherit', 'open', 'open', '', '21-revision-v1', '', '', '2014-09-11 10:44:09', '2014-09-11 10:44:09', '', 21, 'http://localhost/modul7_wp/?p=37', 0, 'revision', '', 0),
(38, 1, '2014-09-11 10:56:22', '2014-09-11 10:56:22', '', 'Single php', '', 'publish', 'closed', 'closed', '', 'acf_single-php', '', '', '2014-09-11 10:58:38', '2014-09-11 10:58:38', '', 0, 'http://localhost/modul7_wp/?post_type=acf&p=38', 0, 'acf', '', 0),
(39, 1, '2014-09-11 11:02:46', '2014-09-11 11:02:46', 'Velkommen til WordPress. Dette er dit første indlæg. Du kan rette eller slette det, og derefter er det bare om at begynde at blogge!', 'Hej Verden!', '', 'inherit', 'open', 'open', '', '1-revision-v1', '', '', '2014-09-11 11:02:46', '2014-09-11 11:02:46', '', 1, 'http://localhost/modul7_wp/?p=39', 0, 'revision', '', 0),
(40, 1, '2014-09-11 11:05:51', '2014-09-11 11:05:51', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nun.', 'T-shirt', '', 'publish', 'open', 'open', '', 't-shirt', '', '', '2014-09-12 09:44:18', '2014-09-12 09:44:18', '', 0, 'http://localhost/modul7_wp/?page_id=40', 0, 'page', '', 0),
(41, 1, '2014-09-11 11:05:51', '2014-09-11 11:05:51', '', 'T-shirt', '', 'inherit', 'open', 'open', '', '40-revision-v1', '', '', '2014-09-11 11:05:51', '2014-09-11 11:05:51', '', 40, 'http://localhost/modul7_wp/?p=41', 0, 'revision', '', 0),
(42, 1, '2014-09-11 11:17:38', '2014-09-11 11:17:38', '', 'T-shirt page', '', 'publish', 'closed', 'closed', '', 'acf_t-shirt-page', '', '', '2014-09-12 09:43:37', '2014-09-12 09:43:37', '', 0, 'http://localhost/modul7_wp/?post_type=acf&p=42', 0, 'acf', '', 0),
(44, 1, '2014-09-11 11:19:00', '2014-09-11 11:19:00', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nun.', 'T-shirt', '', 'inherit', 'open', 'open', '', '40-revision-v1', '', '', '2014-09-11 11:19:00', '2014-09-11 11:19:00', '', 40, 'http://localhost/modul7_wp/?p=44', 0, 'revision', '', 0),
(45, 1, '2014-09-11 11:35:24', '2014-09-11 11:35:24', '', 'About', '', 'publish', 'closed', 'closed', '', 'acf_about', '', '', '2014-09-11 12:05:30', '2014-09-11 12:05:30', '', 0, 'http://localhost/modul7_wp/?post_type=acf&p=45', 0, 'acf', '', 0),
(46, 1, '2014-09-11 11:38:20', '2014-09-11 11:38:20', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tincidunt feugiat lacus, sed lacinia neque ullamcorper ut. Nullam lacinia hendrerit pretium. Ut justo dolor, convallis non malesuada quis, lobortis in sem. Etiam in dictum neque. Vestibulum mattis sapien dolor, ac elementum lectus finibus sed. Donec nibh lorem, viverra vel nulla id, imperdiet feugiat nunc. Nunc consequat a dui vel volutpat. Suspendisse et mollis arcu. Nam dolor eros, viverra eget erat congue, lacinia feugiat mi. Morbi ultrices odio non commodo facilisis. Maecenas feugiat efficitur nibh at mollis.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Cras maximus sem eget orci blandit, id interdum libero dapibus. Integer egestas dignissim turpis, et luctus orci tristique quis. Maecenas vel dolor ac massa facilisis eleifend egestas vitae risus. In hac habitasse platea dictumst. Ut placerat tempor lacus, in sodales lorem molestie sit amet. Sed placerat erat id elit consectetur consectetur nec id eros. Cras eu', 'Om os', '', 'publish', 'open', 'open', '', 'om-os', '', '', '2014-09-12 11:15:11', '2014-09-12 11:15:11', '', 0, 'http://localhost/modul7_wp/?page_id=46', 0, 'page', '', 0),
(47, 1, '2014-09-11 11:38:20', '2014-09-11 11:38:20', '', 'Om os', '', 'inherit', 'open', 'open', '', '46-revision-v1', '', '', '2014-09-11 11:38:20', '2014-09-11 11:38:20', '', 46, 'http://localhost/modul7_wp/?p=47', 0, 'revision', '', 0),
(48, 1, '2014-09-11 12:06:11', '2014-09-11 12:06:11', '', 'Om os', '', 'inherit', 'open', 'open', '', '46-revision-v1', '', '', '2014-09-11 12:06:11', '2014-09-11 12:06:11', '', 46, 'http://localhost/modul7_wp/?p=48', 0, 'revision', '', 0),
(49, 1, '2014-09-11 12:07:04', '2014-09-11 12:07:04', ' ', '', '', 'publish', 'open', 'open', '', '49', '', '', '2014-09-12 09:40:03', '2014-09-12 09:40:03', '', 0, 'http://localhost/modul7_wp/?p=49', 3, 'nav_menu_item', '', 0),
(50, 1, '2014-09-11 12:07:04', '2014-09-11 12:07:04', ' ', '', '', 'publish', 'open', 'open', '', '50', '', '', '2014-09-12 09:40:03', '2014-09-12 09:40:03', '', 0, 'http://localhost/modul7_wp/?p=50', 4, 'nav_menu_item', '', 0),
(51, 1, '2014-09-12 08:14:20', '2014-09-12 08:14:20', '', 'Forside', '', 'trash', 'open', 'open', '', 'forside-2', '', '', '2014-09-12 08:24:44', '2014-09-12 08:24:44', '', 0, 'http://localhost/modul7_wp/?page_id=51', 0, 'page', '', 0),
(52, 1, '2014-09-12 08:11:42', '2014-09-12 08:11:42', '', 'Forside', '', 'publish', 'open', 'open', '', 'forside', '', '', '2014-09-12 08:11:42', '2014-09-12 08:11:42', '', 0, 'http://localhost/modul7_wp/?page_id=52', 0, 'page', '', 0),
(53, 1, '2014-09-12 08:11:42', '2014-09-12 08:11:42', '', 'Forside', '', 'inherit', 'open', 'open', '', '52-revision-v1', '', '', '2014-09-12 08:11:42', '2014-09-12 08:11:42', '', 52, 'http://localhost/modul7_wp/?p=53', 0, 'revision', '', 0),
(54, 1, '2014-09-12 08:14:20', '2014-09-12 08:14:20', '', 'Forside', '', 'inherit', 'open', 'open', '', '51-revision-v1', '', '', '2014-09-12 08:14:20', '2014-09-12 08:14:20', '', 51, 'http://localhost/modul7_wp/?p=54', 0, 'revision', '', 0),
(56, 1, '2014-09-12 08:16:45', '2014-09-12 08:16:45', 'Hej linux er lort', 'Ubuntu styrer', '', 'publish', 'open', 'open', '', 'ubuntu-styrer', '', '', '2014-09-12 08:16:45', '2014-09-12 08:16:45', '', 0, 'http://localhost/modul7_wp/?p=56', 0, 'post', '', 0),
(57, 1, '2014-09-12 08:16:45', '2014-09-12 08:16:45', 'Hej linux er lort', 'Ubuntu styrer', '', 'inherit', 'open', 'open', '', '56-revision-v1', '', '', '2014-09-12 08:16:45', '2014-09-12 08:16:45', '', 56, 'http://localhost/modul7_wp/?p=57', 0, 'revision', '', 0),
(59, 1, '2014-09-12 08:18:03', '2014-09-12 08:18:03', 'Hej linux er lort', 'Ubuntu styrer', '', 'inherit', 'open', 'open', '', '56-autosave-v1', '', '', '2014-09-12 08:18:03', '2014-09-12 08:18:03', '', 56, 'http://localhost/modul7_wp/?p=59', 0, 'revision', '', 0),
(60, 1, '2014-09-12 08:24:57', '2014-09-12 08:24:57', 'Dette er en eksempelside. Den er forskellig fra et indlæg, fordi den vil forblive det samme sted og være en del af dit websteds navigation (i de fleste temaer). De fleste vil lægge ud med en Om-side, der præsenterer dem for potentielle besøgende. Ordlyden kunne være noget i retning af:\n\n<blockquote>Hejsa! Jeg er cykelbud om dagen, prøver at blive skuespiller om aftenen og dette er min blog. Jeg bor i København, har en dejlig hund, der hedder King, og jeg kan lide Mojitos. (og at blive overrasket af regnvejr.)</blockquote>\n\n... eller noget i retning af:\n\n<blockquote>XYZ Dingenot fabrikken blev grundlagt i 1971 og har leveret kvalitetsdingenoter til offentligheden lige siden. Beliggende i Andeby, har 2.000 ansatte og bidrager med alverdens seje tiltag i lokalområdet.</blockquote>\n\nSom ny WordPress bruger, bør du gå til <a href="http://localhost/modul7_wp/wp-admin/">dit kontrolpanel</a> for at slette denne side og oprette nye sider til dit indhold. God fornøjelse!', 'Eksempelside', '', 'inherit', 'open', 'open', '', '2-revision-v1', '', '', '2014-09-12 08:24:57', '2014-09-12 08:24:57', '', 2, 'http://localhost/modul7_wp/?p=60', 0, 'revision', '', 0),
(61, 1, '2014-09-12 08:25:13', '2014-09-12 08:25:13', 'pjhgfdrtyuikolpælkjhg', 'Forside', '', 'inherit', 'open', 'open', '', '52-autosave-v1', '', '', '2014-09-12 08:25:13', '2014-09-12 08:25:13', '', 52, 'http://localhost/modul7_wp/?p=61', 0, 'revision', '', 0),
(62, 1, '2014-09-12 08:36:12', '2014-09-12 08:36:12', '', 'Frontpage banner', '', 'publish', 'closed', 'closed', '', 'frontpage-banner', '', '', '2014-09-13 08:10:23', '2014-09-13 08:10:23', '', 0, 'http://localhost/modul7_wp/?post_type=slideshow&p=62', 0, 'slideshow', '', 0),
(63, 1, '2014-09-12 09:19:30', '2014-09-12 09:19:30', '', 'Starbucks Crowd Challenge', '', 'trash', 'open', 'open', '', 'starbucks-crowd-challenge-2', '', '', '2014-09-12 09:27:32', '2014-09-12 09:27:32', '', 0, 'http://localhost/modul7_wp/?page_id=63', 0, 'page', '', 0),
(64, 1, '2014-09-12 09:21:42', '2014-09-12 09:21:42', '', 'Starbucks crowd challenge', '', 'publish', 'closed', 'closed', '', 'acf_starbucks-crowd-challenge', '', '', '2014-09-12 09:27:20', '2014-09-12 09:27:20', '', 0, 'http://localhost/modul7_wp/?post_type=acf&p=64', 0, 'acf', '', 0),
(65, 1, '2014-09-12 09:22:25', '2014-09-12 09:22:25', '', 'Starbucks Crowd Challenge', '', 'publish', 'open', 'open', '', 'starbucks-crowd-challenge', '', '', '2014-09-12 09:36:02', '2014-09-12 09:36:02', '', 0, 'http://localhost/modul7_wp/?page_id=65', 0, 'page', '', 0),
(66, 1, '2014-09-12 09:22:25', '2014-09-12 09:22:25', '', 'Starbucks Crowd Challenge', '', 'inherit', 'open', 'open', '', '65-revision-v1', '', '', '2014-09-12 09:22:25', '2014-09-12 09:22:25', '', 65, 'http://localhost/modul7_wp/?p=66', 0, 'revision', '', 0),
(67, 1, '2014-09-12 09:25:20', '0000-00-00 00:00:00', '', 'Automatisk kladde', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-09-12 09:25:20', '0000-00-00 00:00:00', '', 0, 'http://localhost/modul7_wp/?post_type=acf&p=67', 0, 'acf', '', 0),
(68, 1, '2014-09-12 09:27:32', '2014-09-12 09:27:32', '', 'Starbucks Crowd Challenge', '', 'inherit', 'open', 'open', '', '63-revision-v1', '', '', '2014-09-12 09:27:32', '2014-09-12 09:27:32', '', 63, 'http://localhost/modul7_wp/?p=68', 0, 'revision', '', 0),
(69, 1, '2014-09-12 09:36:02', '2014-09-12 09:36:02', '', 'Starbucks Crowd Challenge', '', 'inherit', 'open', 'open', '', '65-revision-v1', '', '', '2014-09-12 09:36:02', '2014-09-12 09:36:02', '', 65, 'http://localhost/modul7_wp/?p=69', 0, 'revision', '', 0),
(70, 1, '2014-09-12 09:40:03', '2014-09-12 09:40:03', ' ', '', '', 'publish', 'open', 'open', '', '70', '', '', '2014-09-12 09:40:03', '2014-09-12 09:40:03', '', 0, 'http://localhost/modul7_wp/?p=70', 5, 'nav_menu_item', '', 0),
(71, 1, '2014-09-12 09:44:18', '2014-09-12 09:44:18', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in erat neque. Fusce nec rhoncus leo, ac molestie metus. In commodo nisl arcu, semper scelerisque tortor gravida id. Nunc et turpis rutrum, consequat lorem in, rutrum mi. Ut scelerisque metus eu ipsum interdum, sed egestas magna elementum. Pellentesque faucibus leo ut ante posuere blandit. Maecenas sapien nun.', 'T-shirt', '', 'inherit', 'open', 'open', '', '40-revision-v1', '', '', '2014-09-12 09:44:18', '2014-09-12 09:44:18', '', 40, 'http://localhost/modul7_wp/?p=71', 0, 'revision', '', 0),
(72, 1, '2014-09-12 10:58:28', '2014-09-12 10:58:28', '', 'Blog', '', 'trash', 'open', 'open', '', 'blog', '', '', '2014-09-12 11:01:47', '2014-09-12 11:01:47', '', 0, 'http://localhost/modul7_wp/?page_id=72', 0, 'page', '', 0),
(73, 1, '2014-09-12 10:58:28', '2014-09-12 10:58:28', '', 'Blog', '', 'inherit', 'open', 'open', '', '72-revision-v1', '', '', '2014-09-12 10:58:28', '2014-09-12 10:58:28', '', 72, 'http://localhost/modul7_wp/?p=73', 0, 'revision', '', 0),
(74, 1, '2014-09-12 11:01:49', '0000-00-00 00:00:00', '', 'Automatisk kladde', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-09-12 11:01:49', '0000-00-00 00:00:00', '', 0, 'http://localhost/modul7_wp/?page_id=74', 0, 'page', '', 0),
(75, 1, '2014-09-12 11:02:28', '2014-09-12 11:02:28', 'Linux styrer', 'NVM Ubuntu sucks', '', 'publish', 'open', 'open', '', 'nvm-ubuntu-sucks', '', '', '2014-09-12 11:02:28', '2014-09-12 11:02:28', '', 0, 'http://localhost/modul7_wp/?p=75', 0, 'post', '', 0),
(76, 1, '2014-09-12 11:02:28', '2014-09-12 11:02:28', 'Linux styrer', 'NVM Ubuntu sucks', '', 'inherit', 'open', 'open', '', '75-revision-v1', '', '', '2014-09-12 11:02:28', '2014-09-12 11:02:28', '', 75, 'http://localhost/modul7_wp/?p=76', 0, 'revision', '', 0),
(77, 1, '2014-09-12 11:02:43', '2014-09-12 11:02:43', 'David har talt', 'Windowsphone er det bedste', '', 'publish', 'open', 'open', '', 'windows-er-det-bedste', '', '', '2014-09-12 11:05:12', '2014-09-12 11:05:12', '', 0, 'http://localhost/modul7_wp/?p=77', 0, 'post', '', 0),
(78, 1, '2014-09-12 11:02:43', '2014-09-12 11:02:43', 'David har talt', 'Windows er det bedste', '', 'inherit', 'open', 'open', '', '77-revision-v1', '', '', '2014-09-12 11:02:43', '2014-09-12 11:02:43', '', 77, 'http://localhost/modul7_wp/?p=78', 0, 'revision', '', 0),
(79, 1, '2014-09-12 11:03:21', '2014-09-12 11:03:21', '"Windows er en klar favorit til bedste styresystem"', 'Mathias HA udtaler sig!', '', 'publish', 'open', 'open', '', 'mathias-ha-udtaler-sig', '', '', '2014-09-12 11:03:21', '2014-09-12 11:03:21', '', 0, 'http://localhost/modul7_wp/?p=79', 0, 'post', '', 0),
(80, 1, '2014-09-12 11:03:21', '2014-09-12 11:03:21', '"Windows er en klar favorit til bedste styresystem"', 'Mathias HA udtaler sig!', '', 'inherit', 'open', 'open', '', '79-revision-v1', '', '', '2014-09-12 11:03:21', '2014-09-12 11:03:21', '', 79, 'http://localhost/modul7_wp/?p=80', 0, 'revision', '', 0),
(81, 1, '2014-09-12 11:03:53', '2014-09-12 11:03:53', 'True!', 'Nicolai har altid ret', '', 'publish', 'open', 'open', '', 'nicolai-har-altid-ret', '', '', '2014-09-12 11:03:53', '2014-09-12 11:03:53', '', 0, 'http://localhost/modul7_wp/?p=81', 0, 'post', '', 0),
(82, 1, '2014-09-12 11:03:53', '2014-09-12 11:03:53', 'True!', 'Nicolai har altid ret', '', 'inherit', 'open', 'open', '', '81-revision-v1', '', '', '2014-09-12 11:03:53', '2014-09-12 11:03:53', '', 81, 'http://localhost/modul7_wp/?p=82', 0, 'revision', '', 0),
(83, 1, '2014-09-12 11:05:12', '2014-09-12 11:05:12', 'David har talt', 'Windowsphone er det bedste', '', 'inherit', 'open', 'open', '', '77-revision-v1', '', '', '2014-09-12 11:05:12', '2014-09-12 11:05:12', '', 77, 'http://localhost/modul7_wp/?p=83', 0, 'revision', '', 0),
(84, 1, '2014-09-12 11:06:18', '2014-09-12 11:06:18', '', 'Om os', '', 'inherit', 'open', 'open', '', '46-revision-v1', '', '', '2014-09-12 11:06:18', '2014-09-12 11:06:18', '', 46, 'http://localhost/modul7_wp/?p=84', 0, 'revision', '', 0),
(85, 1, '2014-09-12 11:07:35', '2014-09-12 11:07:35', '', 'Om os', '', 'inherit', 'open', 'open', '', '46-revision-v1', '', '', '2014-09-12 11:07:35', '2014-09-12 11:07:35', '', 46, 'http://localhost/modul7_wp/?p=85', 0, 'revision', '', 0),
(86, 1, '2014-09-12 11:08:22', '2014-09-12 11:08:22', 'Mathias syntes windows er bedre end noget andet og at apple er ved at blive outdated', 'Om os', '', 'inherit', 'open', 'open', '', '46-revision-v1', '', '', '2014-09-12 11:08:22', '2014-09-12 11:08:22', '', 46, 'http://localhost/modul7_wp/?p=86', 0, 'revision', '', 0),
(87, 1, '2014-09-12 11:13:48', '2014-09-12 11:13:48', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tincidunt feugiat lacus, sed lacinia neque ullamcorper ut. Nullam lacinia hendrerit pretium. Ut justo dolor, convallis non malesuada quis, lobortis in sem. Etiam in dictum neque. Vestibulum mattis sapien dolor, ac elementum lectus finibus sed. Donec nibh lorem, viverra vel nulla id, imperdiet feugiat nunc. Nunc consequat a dui vel volutpat. Suspendisse et mollis arcu. Nam dolor eros, viverra eget erat congue, lacinia feugiat mi. Morbi ultrices odio non commodo facilisis. Maecenas feugiat efficitur nibh at mollis.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Cras maximus sem eget orci blandit, id interdum libero dapibus. Integer egestas dignissim turpis, et luctus orci tristique quis. Maecenas vel dolor ac massa facilisis eleifend egestas vitae risus. In hac habitasse platea dictumst. Ut placerat tempor lacus, in sodales lorem molestie sit amet. Sed placerat erat id elit consectetur consectetur nec id eros. Cras eu blandit dui, vulputate lobortis odio. Sed blandit et neque quis mollis. Donec tempus, lectus sollicitudin iaculis dignissim, ex leo fermentum ligula, sit amet tincidunt justo ante eget velit. In hac habitasse platea dictumst. Ut luctus lectus laoreet massa viverra, ut vehicula diam mollis.\r\n\r\nDonec semper, dolor a mollis laoreet, justo elit ullamcorper magna, sed consequat risus massa nec erat. Cras ultrices vitae ipsum sit amet dapibus. Cras ac commodo leo. Mauris finibus sapien eu elit posuere pulvinar. Cras non sem scelerisque, efficitur ligula vitae, suscipit ex. Maecenas aliquam efficitur orci non blandit. Duis est nulla, faucibus et dui nec, auctor dapibus lectus. Mauris iaculis venenatis ex, id ullamcorper mi lacinia sed. Nunc mauris risus, porttitor ac purus ut, euismod aliquam lectus. Donec aliquam tristique diam id blandit.', 'Om os', '', 'inherit', 'open', 'open', '', '46-revision-v1', '', '', '2014-09-12 11:13:48', '2014-09-12 11:13:48', '', 46, 'http://localhost/modul7_wp/?p=87', 0, 'revision', '', 0),
(88, 1, '2014-09-12 11:14:06', '2014-09-12 11:14:06', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tincidunt feugiat lacus, sed lacinia neque ullamcorper ut. Nullam lacinia hendrerit pretium. Ut justo dolor, convallis non malesuada quis, lobortis in sem. Etiam in dictum neque. Vestibulum mattis sapien dolor, ac elementum lectus finibus sed. Donec nibh lorem, viverra vel nulla id, imperdiet feugiat nunc. Nunc consequat a dui vel volutpat. Suspendisse et mollis arcu. Nam dolor eros, viverra eget erat congue, lacinia feugiat mi. Morbi ultrices odio non commodo facilisis. Maecenas feugiat efficitur nibh at mollis.', 'Om os', '', 'inherit', 'open', 'open', '', '46-revision-v1', '', '', '2014-09-12 11:14:06', '2014-09-12 11:14:06', '', 46, 'http://localhost/modul7_wp/?p=88', 0, 'revision', '', 0),
(89, 1, '2014-09-12 11:14:47', '2014-09-12 11:14:47', '', 'Om os', '', 'inherit', 'open', 'open', '', '46-revision-v1', '', '', '2014-09-12 11:14:47', '2014-09-12 11:14:47', '', 46, 'http://localhost/modul7_wp/?p=89', 0, 'revision', '', 0),
(91, 1, '2014-09-12 11:15:11', '2014-09-12 11:15:11', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tincidunt feugiat lacus, sed lacinia neque ullamcorper ut. Nullam lacinia hendrerit pretium. Ut justo dolor, convallis non malesuada quis, lobortis in sem. Etiam in dictum neque. Vestibulum mattis sapien dolor, ac elementum lectus finibus sed. Donec nibh lorem, viverra vel nulla id, imperdiet feugiat nunc. Nunc consequat a dui vel volutpat. Suspendisse et mollis arcu. Nam dolor eros, viverra eget erat congue, lacinia feugiat mi. Morbi ultrices odio non commodo facilisis. Maecenas feugiat efficitur nibh at mollis.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Cras maximus sem eget orci blandit, id interdum libero dapibus. Integer egestas dignissim turpis, et luctus orci tristique quis. Maecenas vel dolor ac massa facilisis eleifend egestas vitae risus. In hac habitasse platea dictumst. Ut placerat tempor lacus, in sodales lorem molestie sit amet. Sed placerat erat id elit consectetur consectetur nec id eros. Cras eu', 'Om os', '', 'inherit', 'open', 'open', '', '46-revision-v1', '', '', '2014-09-12 11:15:11', '2014-09-12 11:15:11', '', 46, 'http://localhost/modul7_wp/?p=91', 0, 'revision', '', 0),
(93, 1, '2014-09-13 08:07:14', '2014-09-13 08:07:14', '', 'Starbucks_banner', '', 'inherit', 'open', 'open', '', 'starbucks_banner', '', '', '2014-09-13 08:07:14', '2014-09-13 08:07:14', '', 62, 'http://math012r.keaweb.dk/goodvertising/modul7_wp/wp-content/uploads/2014/09/Starbucks_banner.png', 0, 'attachment', 'image/png', 0),
(94, 1, '2014-09-13 08:10:18', '2014-09-13 08:10:18', '', '1160x193', '', 'inherit', 'open', 'open', '', '1160x193', '', '', '2014-09-13 08:10:18', '2014-09-13 08:10:18', '', 62, 'http://math012r.keaweb.dk/goodvertising/modul7_wp/wp-content/uploads/2014/09/1160x193.gif', 0, 'attachment', 'image/gif', 0);
-- --------------------------------------------------------
--
-- Struktur-dump for tabellen `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;