-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhawkd.sql
1591 lines (1535 loc) · 596 KB
/
hawkd.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 4.1.14
-- http://www.phpmyadmin.net
--
-- Värd: 127.0.0.1
-- Tid vid skapande: 19 feb 2015 kl 13:23
-- Serverversion: 5.6.17
-- PHP-version: 5.5.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Databas: `hawkd`
--
-- --------------------------------------------------------
--
-- Tabellstruktur `wp_hawkd_commentmeta`
--
CREATE TABLE IF NOT EXISTS `wp_hawkd_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 ;
-- --------------------------------------------------------
--
-- Tabellstruktur `wp_hawkd_comments`
--
CREATE TABLE IF NOT EXISTS `wp_hawkd_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 ;
--
-- Dumpning av Data i tabell `wp_hawkd_comments`
--
INSERT INTO `wp_hawkd_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Mr WordPress', '', 'https://wordpress.org/', '', '2015-02-10 20:13:32', '2015-02-10 20:13:32', 'Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Tabellstruktur `wp_hawkd_links`
--
CREATE TABLE IF NOT EXISTS `wp_hawkd_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 ;
-- --------------------------------------------------------
--
-- Tabellstruktur `wp_hawkd_options`
--
CREATE TABLE IF NOT EXISTS `wp_hawkd_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=603 ;
--
-- Dumpning av Data i tabell `wp_hawkd_options`
--
INSERT INTO `wp_hawkd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost/hawkd', 'yes'),
(2, 'home', 'http://localhost/hawkd', 'yes'),
(3, 'blogname', 'hawkd', 'yes'),
(4, 'blogdescription', 'Just another WordPress site', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '[email protected]', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '[email protected]', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'closed', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'H:i', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '', '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:3:{i:0;s:30:"advanced-custom-fields/acf.php";i:1;s:36:"contact-form-7/wp-contact-form-7.php";i:2;s:43:"custom-post-type-ui/custom-post-type-ui.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', '1', 'yes'),
(39, 'default_email_category', '1', 'yes'),
(40, 'recently_edited', 'a:5:{i:0;s:63:"C:\\wamp\\www\\hawkd/wp-content/plugins/si-contact-form/readme.txt";i:1;s:72:"C:\\wamp\\www\\hawkd/wp-content/plugins/si-contact-form/si-contact-form.php";i:2;s:71:"C:\\wamp\\www\\hawkd/wp-content/plugins/si-contact-form/captcha/README.txt";i:3;s:67:"C:\\wamp\\www\\hawkd/wp-content/plugins/advanced-custom-fields/acf.php";i:4;s:56:"C:\\wamp\\www\\hawkd/wp-content/themes/hawkdtheme/style.css";}', 'no'),
(41, 'template', 'hawkdtheme', 'yes'),
(42, 'stylesheet', 'hawkdtheme', 'yes'),
(43, 'comment_whitelist', '1', 'yes'),
(44, 'blacklist_keys', '', 'no'),
(45, 'comment_registration', '', 'yes'),
(46, 'html_type', 'text/html', 'yes'),
(47, 'use_trackback', '0', 'yes'),
(48, 'default_role', 'subscriber', 'yes'),
(49, 'db_version', '30133', 'yes'),
(50, 'uploads_use_yearmonth_folders', '1', 'yes'),
(51, 'upload_path', '', 'yes'),
(52, 'blog_public', '1', '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', '', 'yes'),
(71, 'close_comments_days_old', '14', 'yes'),
(72, 'thread_comments', '1', 'yes'),
(73, 'thread_comments_depth', '5', 'yes'),
(74, 'page_comments', '', '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:0:{}', 'yes'),
(81, 'widget_rss', 'a:0:{}', 'yes'),
(82, 'uninstall_plugins', 'a:0:{}', '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', '30133', 'yes'),
(89, 'wp_hawkd_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:62:{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:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{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:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 'yes'),
(90, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(91, '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'),
(92, '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'),
(93, 'widget_archives', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(94, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'sidebars_widgets', 'a:3:{s:19:"wp_inactive_widgets";a:0:{}s:19:"primary-widget-area";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:13:"array_version";i:3;}', 'yes'),
(96, 'cron', 'a:5:{i:1424375340;a:1:{s:20:"wp_maybe_auto_update";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1424376825;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:1424376843;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:1424378132;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(99, '_transient_random_seed', 'a7c638db0e5f84a98173c40832828b19', 'yes'),
(107, 'can_compress_scripts', '1', 'yes'),
(125, '_site_transient_timeout_wporg_theme_feature_list', '1423610050', 'yes'),
(126, '_site_transient_wporg_theme_feature_list', 'a:4:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:6:"Layout";a:9:{i:0;s:12:"fixed-layout";i:1;s:12:"fluid-layout";i:2;s:17:"responsive-layout";i:3;s:10:"one-column";i:4;s:11:"two-columns";i:5;s:13:"three-columns";i:6;s:12:"four-columns";i:7;s:12:"left-sidebar";i:8;s:13:"right-sidebar";}s:8:"Features";a:20:{i:0;s:19:"accessibility-ready";i:1;s:8:"blavatar";i:2;s:10:"buddypress";i:3;s:17:"custom-background";i:4;s:13:"custom-colors";i:5;s:13:"custom-header";i:6;s:11:"custom-menu";i:7;s:12:"editor-style";i:8;s:21:"featured-image-header";i:9;s:15:"featured-images";i:10;s:15:"flexible-header";i:11;s:20:"front-page-post-form";i:12;s:19:"full-width-template";i:13;s:12:"microformats";i:14;s:12:"post-formats";i:15;s:20:"rtl-language-support";i:16;s:11:"sticky-post";i:17;s:13:"theme-options";i:18;s:17:"threaded-comments";i:19;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}', 'yes'),
(127, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1424348553;s:7:"checked";a:1:{s:10:"hawkdtheme";s:0:"";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'),
(132, '_transient_twentyfifteen_categories', '1', 'yes'),
(133, 'WPLANG', '', 'yes'),
(136, 'theme_mods_twentyfifteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1423599753;s:4:"data";a:2:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}}}}', 'yes'),
(137, 'current_theme', 'Hawkdtheme', 'yes'),
(138, 'theme_mods_hawkdtheme', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:9:"main-menu";i:3;}}', 'yes'),
(139, 'theme_switched', '', 'yes'),
(140, 'recently_activated', 'a:1:{s:35:"si-contact-form/si-contact-form.php";i:1424348348;}', 'yes'),
(145, 'acf_version', '4.4.0', 'yes'),
(149, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(176, 'cptui_post_types', 'a:2:{s:3:"api";a:21:{s:4:"name";s:3:"api";s:5:"label";s:3:"API";s:14:"singular_label";s:3:"API";s:11:"description";s:3:"API";s:6:"public";s:4:"true";s:7:"show_ui";s:4:"true";s:11:"has_archive";s:5:"false";s:19:"exclude_from_search";s:5:"false";s:15:"capability_type";s:4:"post";s:12:"hierarchical";s:5:"false";s:7:"rewrite";s:4:"true";s:12:"rewrite_slug";s:0:"";s:17:"rewrite_withfront";s:4:"true";s:9:"query_var";s:4:"true";s:13:"menu_position";s:0:"";s:12:"show_in_menu";s:4:"true";s:19:"show_in_menu_string";s:0:"";s:9:"menu_icon";N;s:8:"supports";a:0:{}s:10:"taxonomies";a:0:{}s:6:"labels";a:13:{s:9:"menu_name";s:0:"";s:9:"all_items";s:0:"";s:7:"add_new";s:0:"";s:12:"add_new_item";s:0:"";s:4:"edit";s:0:"";s:9:"edit_item";s:0:"";s:8:"new_item";s:0:"";s:4:"view";s:0:"";s:9:"view_item";s:0:"";s:12:"search_items";s:0:"";s:9:"not_found";s:0:"";s:18:"not_found_in_trash";s:0:"";s:6:"parent";s:0:"";}}s:3:"faq";a:21:{s:4:"name";s:3:"faq";s:5:"label";s:3:"FAQ";s:14:"singular_label";s:3:"FAQ";s:11:"description";s:3:"FAQ";s:6:"public";s:4:"true";s:7:"show_ui";s:4:"true";s:11:"has_archive";s:5:"false";s:19:"exclude_from_search";s:5:"false";s:15:"capability_type";s:4:"post";s:12:"hierarchical";s:5:"false";s:7:"rewrite";s:4:"true";s:12:"rewrite_slug";s:0:"";s:17:"rewrite_withfront";s:4:"true";s:9:"query_var";s:4:"true";s:13:"menu_position";s:0:"";s:12:"show_in_menu";s:4:"true";s:19:"show_in_menu_string";s:0:"";s:9:"menu_icon";N;s:8:"supports";a:0:{}s:10:"taxonomies";a:0:{}s:6:"labels";a:13:{s:9:"menu_name";s:0:"";s:9:"all_items";s:0:"";s:7:"add_new";s:0:"";s:12:"add_new_item";s:0:"";s:4:"edit";s:0:"";s:9:"edit_item";s:0:"";s:8:"new_item";s:0:"";s:4:"view";s:0:"";s:9:"view_item";s:0:"";s:12:"search_items";s:0:"";s:9:"not_found";s:0:"";s:18:"not_found_in_trash";s:0:"";s:6:"parent";s:0:"";}}}', 'yes'),
(363, '_transient_timeout_plugin_slugs', '1424434757', 'no'),
(364, '_transient_plugin_slugs', 'a:5:{i:0;s:30:"advanced-custom-fields/acf.php";i:1;s:19:"akismet/akismet.php";i:2;s:36:"contact-form-7/wp-contact-form-7.php";i:3;s:43:"custom-post-type-ui/custom-post-type-ui.php";i:4;s:9:"hello.php";}', 'no'),
(369, '_site_transient_timeout_browser_25b283ac5a6c8b3b071241d04470c1fe', '1424709663', 'yes'),
(370, '_site_transient_browser_25b283ac5a6c8b3b071241d04470c1fe', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"40.0.2214.111";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'),
(381, '_site_transient_timeout_available_translations', '1424128837', 'yes'),
(382, '_site_transient_available_translations', 'a:49:{s:2:"ar";a:8:{s:8:"language";s:2:"ar";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-17 19:01:24";s:12:"english_name";s:6:"Arabic";s:11:"native_name";s:14:"العربية";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/ar.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:2;s:3:"ara";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:2:"az";a:8:{s:8:"language";s:2:"az";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-27 15:23:28";s:12:"english_name";s:11:"Azerbaijani";s:11:"native_name";s:16:"Azərbaycan dili";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/az.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:2;s:3:"aze";}s:7:"strings";a:1:{s:8:"continue";s:5:"Davam";}}s:5:"bg_BG";a:8:{s:8:"language";s:5:"bg_BG";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-17 19:05:14";s:12:"english_name";s:9:"Bulgarian";s:11:"native_name";s:18:"Български";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/bg_BG.zip";s:3:"iso";a:2:{i:1;s:2:"bg";i:2;s:3:"bul";}s:7:"strings";a:1:{s:8:"continue";s:22:"Продължение";}}s:5:"bs_BA";a:8:{s:8:"language";s:5:"bs_BA";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-08 17:39:56";s:12:"english_name";s:7:"Bosnian";s:11:"native_name";s:8:"Bosanski";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/bs_BA.zip";s:3:"iso";a:2:{i:1;s:2:"bs";i:2;s:3:"bos";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:2:"ca";a:8:{s:8:"language";s:2:"ca";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-19 03:45:15";s:12:"english_name";s:7:"Catalan";s:11:"native_name";s:7:"Català";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/ca.zip";s:3:"iso";a:2:{i:1;s:2:"ca";i:2;s:3:"cat";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"cy";a:8:{s:8:"language";s:2:"cy";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-09 11:12:57";s:12:"english_name";s:5:"Welsh";s:11:"native_name";s:7:"Cymraeg";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/cy.zip";s:3:"iso";a:2:{i:1;s:2:"cy";i:2;s:3:"cym";}s:7:"strings";a:1:{s:8:"continue";s:6:"Parhau";}}s:5:"da_DK";a:8:{s:8:"language";s:5:"da_DK";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-29 08:44:51";s:12:"english_name";s:6:"Danish";s:11:"native_name";s:5:"Dansk";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/da_DK.zip";s:3:"iso";a:2:{i:1;s:2:"da";i:2;s:3:"dan";}s:7:"strings";a:1:{s:8:"continue";s:12:"Fortsæt";}}s:5:"de_CH";a:8:{s:8:"language";s:5:"de_CH";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-04 12:59:40";s:12:"english_name";s:20:"German (Switzerland)";s:11:"native_name";s:17:"Deutsch (Schweiz)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/de_CH.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:5:"de_DE";a:8:{s:8:"language";s:5:"de_DE";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-13 12:45:29";s:12:"english_name";s:6:"German";s:11:"native_name";s:7:"Deutsch";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/de_DE.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:2:"el";a:8:{s:8:"language";s:2:"el";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-29 22:16:49";s:12:"english_name";s:5:"Greek";s:11:"native_name";s:16:"Ελληνικά";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/el.zip";s:3:"iso";a:2:{i:1;s:2:"el";i:2;s:3:"ell";}s:7:"strings";a:1:{s:8:"continue";s:16:"Συνέχεια";}}s:5:"en_GB";a:8:{s:8:"language";s:5:"en_GB";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-17 20:53:36";s:12:"english_name";s:12:"English (UK)";s:11:"native_name";s:12:"English (UK)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/en_GB.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_AU";a:8:{s:8:"language";s:5:"en_AU";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-05 09:59:30";s:12:"english_name";s:19:"English (Australia)";s:11:"native_name";s:19:"English (Australia)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/en_AU.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_CA";a:8:{s:8:"language";s:5:"en_CA";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-28 01:01:02";s:12:"english_name";s:16:"English (Canada)";s:11:"native_name";s:16:"English (Canada)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/en_CA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"eo";a:8:{s:8:"language";s:2:"eo";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-08 22:46:58";s:12:"english_name";s:9:"Esperanto";s:11:"native_name";s:9:"Esperanto";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/eo.zip";s:3:"iso";a:2:{i:1;s:2:"eo";i:2;s:3:"epo";}s:7:"strings";a:1:{s:8:"continue";s:8:"Daŭrigi";}}s:5:"es_PE";a:8:{s:8:"language";s:5:"es_PE";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-19 08:14:32";s:12:"english_name";s:14:"Spanish (Peru)";s:11:"native_name";s:17:"Español de Perú";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/es_PE.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_ES";a:8:{s:8:"language";s:5:"es_ES";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-17 21:05:39";s:12:"english_name";s:15:"Spanish (Spain)";s:11:"native_name";s:8:"Español";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/es_ES.zip";s:3:"iso";a:1:{i:1;s:2:"es";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_MX";a:8:{s:8:"language";s:5:"es_MX";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-05 15:18:10";s:12:"english_name";s:16:"Spanish (Mexico)";s:11:"native_name";s:19:"Español de México";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/es_MX.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CL";a:8:{s:8:"language";s:5:"es_CL";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 19:47:01";s:12:"english_name";s:15:"Spanish (Chile)";s:11:"native_name";s:17:"Español de Chile";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/es_CL.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:2:"eu";a:8:{s:8:"language";s:2:"eu";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-09 12:20:08";s:12:"english_name";s:6:"Basque";s:11:"native_name";s:7:"Euskara";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/eu.zip";s:3:"iso";a:2:{i:1;s:2:"eu";i:2;s:3:"eus";}s:7:"strings";a:1:{s:8:"continue";s:8:"Jarraitu";}}s:5:"fa_IR";a:8:{s:8:"language";s:5:"fa_IR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-23 14:29:09";s:12:"english_name";s:7:"Persian";s:11:"native_name";s:10:"فارسی";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/fa_IR.zip";s:3:"iso";a:2:{i:1;s:2:"fa";i:2;s:3:"fas";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:2:"fi";a:8:{s:8:"language";s:2:"fi";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-17 07:01:16";s:12:"english_name";s:7:"Finnish";s:11:"native_name";s:5:"Suomi";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/fi.zip";s:3:"iso";a:2:{i:1;s:2:"fi";i:2;s:3:"fin";}s:7:"strings";a:1:{s:8:"continue";s:5:"Jatka";}}s:5:"fr_FR";a:8:{s:8:"language";s:5:"fr_FR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-17 19:01:48";s:12:"english_name";s:15:"French (France)";s:11:"native_name";s:9:"Français";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/fr_FR.zip";s:3:"iso";a:1:{i:1;s:2:"fr";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:2:"gd";a:8:{s:8:"language";s:2:"gd";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 17:37:43";s:12:"english_name";s:15:"Scottish Gaelic";s:11:"native_name";s:9:"Gàidhlig";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/gd.zip";s:3:"iso";a:3:{i:1;s:2:"gd";i:2;s:3:"gla";i:3;s:3:"gla";}s:7:"strings";a:1:{s:8:"continue";s:15:"Lean air adhart";}}s:5:"gl_ES";a:8:{s:8:"language";s:5:"gl_ES";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-17 18:37:43";s:12:"english_name";s:8:"Galician";s:11:"native_name";s:6:"Galego";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/gl_ES.zip";s:3:"iso";a:2:{i:1;s:2:"gl";i:2;s:3:"glg";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:3:"haz";a:8:{s:8:"language";s:3:"haz";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-12 01:05:09";s:12:"english_name";s:8:"Hazaragi";s:11:"native_name";s:15:"هزاره گی";s:7:"package";s:60:"https://downloads.wordpress.org/translation/core/4.1/haz.zip";s:3:"iso";a:1:{i:2;s:3:"haz";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:5:"he_IL";a:8:{s:8:"language";s:5:"he_IL";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-29 14:11:31";s:12:"english_name";s:6:"Hebrew";s:11:"native_name";s:16:"עִבְרִית";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/he_IL.zip";s:3:"iso";a:1:{i:1;s:2:"he";}s:7:"strings";a:1:{s:8:"continue";s:12:"להמשיך";}}s:2:"hr";a:8:{s:8:"language";s:2:"hr";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-19 14:39:57";s:12:"english_name";s:8:"Croatian";s:11:"native_name";s:8:"Hrvatski";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/hr.zip";s:3:"iso";a:2:{i:1;s:2:"hr";i:2;s:3:"hrv";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:5:"hu_HU";a:8:{s:8:"language";s:5:"hu_HU";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-07 11:10:15";s:12:"english_name";s:9:"Hungarian";s:11:"native_name";s:6:"Magyar";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/hu_HU.zip";s:3:"iso";a:2:{i:1;s:2:"hu";i:2;s:3:"hun";}s:7:"strings";a:1:{s:8:"continue";s:7:"Tovább";}}s:5:"id_ID";a:8:{s:8:"language";s:5:"id_ID";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-31 07:30:24";s:12:"english_name";s:10:"Indonesian";s:11:"native_name";s:16:"Bahasa Indonesia";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/id_ID.zip";s:3:"iso";a:2:{i:1;s:2:"id";i:2;s:3:"ind";}s:7:"strings";a:1:{s:8:"continue";s:9:"Lanjutkan";}}s:5:"it_IT";a:8:{s:8:"language";s:5:"it_IT";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-12 09:29:09";s:12:"english_name";s:7:"Italian";s:11:"native_name";s:8:"Italiano";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/it_IT.zip";s:3:"iso";a:2:{i:1;s:2:"it";i:2;s:3:"ita";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"ja";a:8:{s:8:"language";s:2:"ja";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-29 10:53:40";s:12:"english_name";s:8:"Japanese";s:11:"native_name";s:9:"日本語";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/ja.zip";s:3:"iso";a:1:{i:1;s:2:"ja";}s:7:"strings";a:1:{s:8:"continue";s:9:"続ける";}}s:5:"ko_KR";a:8:{s:8:"language";s:5:"ko_KR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-21 03:05:42";s:12:"english_name";s:6:"Korean";s:11:"native_name";s:9:"한국어";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/ko_KR.zip";s:3:"iso";a:2:{i:1;s:2:"ko";i:2;s:3:"kor";}s:7:"strings";a:1:{s:8:"continue";s:6:"계속";}}s:5:"lt_LT";a:8:{s:8:"language";s:5:"lt_LT";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-08 00:36:50";s:12:"english_name";s:10:"Lithuanian";s:11:"native_name";s:15:"Lietuvių kalba";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/lt_LT.zip";s:3:"iso";a:2:{i:1;s:2:"lt";i:2;s:3:"lit";}s:7:"strings";a:1:{s:8:"continue";s:6:"Tęsti";}}s:5:"my_MM";a:8:{s:8:"language";s:5:"my_MM";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-21 19:07:31";s:12:"english_name";s:7:"Burmese";s:11:"native_name";s:15:"ဗမာစာ";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/my_MM.zip";s:3:"iso";a:2:{i:1;s:2:"my";i:2;s:3:"mya";}s:7:"strings";a:1:{s:8:"continue";s:54:"ဆက်လက်လုပ်ေဆာင်ပါ။";}}s:5:"nb_NO";a:8:{s:8:"language";s:5:"nb_NO";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-10 16:35:13";s:12:"english_name";s:19:"Norwegian (Bokmål)";s:11:"native_name";s:13:"Norsk bokmål";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/nb_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nb";i:2;s:3:"nob";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsett";}}s:5:"nl_NL";a:8:{s:8:"language";s:5:"nl_NL";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-23 08:38:00";s:12:"english_name";s:5:"Dutch";s:11:"native_name";s:10:"Nederlands";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/nl_NL.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"pl_PL";a:8:{s:8:"language";s:5:"pl_PL";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-08 21:24:15";s:12:"english_name";s:6:"Polish";s:11:"native_name";s:6:"Polski";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/pl_PL.zip";s:3:"iso";a:2:{i:1;s:2:"pl";i:2;s:3:"pol";}s:7:"strings";a:1:{s:8:"continue";s:9:"Kontynuuj";}}s:5:"pt_PT";a:8:{s:8:"language";s:5:"pt_PT";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-02 11:59:53";s:12:"english_name";s:21:"Portuguese (Portugal)";s:11:"native_name";s:10:"Português";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/pt_PT.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_BR";a:8:{s:8:"language";s:5:"pt_BR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-21 11:05:23";s:12:"english_name";s:19:"Portuguese (Brazil)";s:11:"native_name";s:20:"Português do Brasil";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/pt_BR.zip";s:3:"iso";a:2:{i:1;s:2:"pt";i:2;s:3:"por";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"ro_RO";a:8:{s:8:"language";s:5:"ro_RO";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-11 09:08:03";s:12:"english_name";s:8:"Romanian";s:11:"native_name";s:8:"Română";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/ro_RO.zip";s:3:"iso";a:2:{i:1;s:2:"ro";i:2;s:3:"ron";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuă";}}s:5:"ru_RU";a:8:{s:8:"language";s:5:"ru_RU";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-17 18:16:58";s:12:"english_name";s:7:"Russian";s:11:"native_name";s:14:"Русский";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/ru_RU.zip";s:3:"iso";a:2:{i:1;s:2:"ru";i:2;s:3:"rus";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продолжить";}}s:5:"sk_SK";a:8:{s:8:"language";s:5:"sk_SK";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-12 19:18:28";s:12:"english_name";s:6:"Slovak";s:11:"native_name";s:11:"Slovenčina";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/sk_SK.zip";s:3:"iso";a:2:{i:1;s:2:"sk";i:2;s:3:"slk";}s:7:"strings";a:1:{s:8:"continue";s:12:"Pokračovať";}}s:5:"sl_SI";a:8:{s:8:"language";s:5:"sl_SI";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-13 22:38:48";s:12:"english_name";s:9:"Slovenian";s:11:"native_name";s:13:"Slovenščina";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/sl_SI.zip";s:3:"iso";a:2:{i:1;s:2:"sl";i:2;s:3:"slv";}s:7:"strings";a:1:{s:8:"continue";s:10:"Nadaljujte";}}s:5:"sr_RS";a:8:{s:8:"language";s:5:"sr_RS";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-18 19:08:01";s:12:"english_name";s:7:"Serbian";s:11:"native_name";s:23:"Српски језик";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/sr_RS.zip";s:3:"iso";a:2:{i:1;s:2:"sr";i:2;s:3:"srp";}s:7:"strings";a:1:{s:8:"continue";s:14:"Настави";}}s:5:"sv_SE";a:8:{s:8:"language";s:5:"sv_SE";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-29 09:41:07";s:12:"english_name";s:7:"Swedish";s:11:"native_name";s:7:"Svenska";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/sv_SE.zip";s:3:"iso";a:2:{i:1;s:2:"sv";i:2;s:3:"swe";}s:7:"strings";a:1:{s:8:"continue";s:9:"Fortsätt";}}s:2:"th";a:8:{s:8:"language";s:2:"th";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-11 11:46:46";s:12:"english_name";s:4:"Thai";s:11:"native_name";s:9:"ไทย";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.1/th.zip";s:3:"iso";a:2:{i:1;s:2:"th";i:2;s:3:"tha";}s:7:"strings";a:1:{s:8:"continue";s:15:"ต่อไป";}}s:5:"tr_TR";a:8:{s:8:"language";s:5:"tr_TR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-19 08:42:08";s:12:"english_name";s:7:"Turkish";s:11:"native_name";s:8:"Türkçe";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/tr_TR.zip";s:3:"iso";a:2:{i:1;s:2:"tr";i:2;s:3:"tur";}s:7:"strings";a:1:{s:8:"continue";s:5:"Devam";}}s:5:"zh_CN";a:8:{s:8:"language";s:5:"zh_CN";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-26 02:21:02";s:12:"english_name";s:15:"Chinese (China)";s:11:"native_name";s:12:"简体中文";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/zh_CN.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"继续";}}s:5:"zh_TW";a:8:{s:8:"language";s:5:"zh_TW";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-08 03:46:32";s:12:"english_name";s:16:"Chinese (Taiwan)";s:11:"native_name";s:12:"繁體中文";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/zh_TW.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"繼續";}}}', 'yes'),
(515, '_site_transient_timeout_browser_5c55dd0374d143d36857e7cd944440b3', '1424869406', 'yes'),
(516, '_site_transient_browser_5c55dd0374d143d36857e7cd944440b3', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"39.0.2171.95";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'),
(539, '_site_transient_timeout_fscf_kws_ad4', '1424378284', 'yes'),
(540, '_site_transient_fscf_kws_ad4', '<style>\n #kws_message { max-width: 98%; width:820px; font-size: 1.05em; font-family: sans-serif; }\n #kws_message .button-secondary { margin-left: .5em; }\n #kws_message h3 { display: block; margin: 1em 0 0 0; clear: both; }\n #kws_message .cc_logo { padding-top: .75em; }\n</style>\n<div id="kws_message" class="updated inline">\n <a href="http://katz.si/fscfdesign3?cc=design3-h3-p2-b4" class="alignright cc_logo"><img alt="Constant Contact" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARkAAAApCAMAAAA2w608AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAwBQTFRFtsbaGEV8JlOM+89tUXanma7KJk98mq3FiKLDqLnOi6G5GUaA7Lhp+slcUXSgRGaN/ee2/NqOUnOZboyxhqDC/eCh/NR8fZax+9F12+LsGENyUnSd+Mtxt8TWJlOR8LhYQ2qe66AhNF6VQ2eR+spg7Lx3i6LAiqLEHURyg57AvcvdYICpNVyNi6PC8qod9a4b8agd/vTe7KMf5psjb4qpJlGFk6rI+LEa/u7M/eKp/eq+NF+Y/NyV+8xn97Aa/d+dboy0tsXYxdDc6Z4hqLjK5Jkk99us7bVZ/vDTbouuNF2R+cVT1Nzm1d7qUXWk+9Bx1Nzkt8TUYH+ljqG5t8TSYH6eK1B8+sZVNVuFYIGvdZK4YH6g/evD+ujHqLrRpbnRYIGsma7I4ZUlmqzC/evGcIyui6K++LUocYupJlCAnrPN/eStHEV1+Nec6qxN+taN+9aDssPY9sBVfZe5Q2iWGUeE/vLZ/e3JKFKF/ei6/N2bNVuJxtDdx9Db9M+QnK3BjqG3Q2mZF0iIF0eHF0eGF0eFGEN1F0aDF0aBGER5F0V/GEN2GER6F0eEGER4qLrT093pF0V+i6PExdHibo22xdHhF0eIF0aCF0aAUnGVGER3GEV7fZi9ma/MxdHg76YeQ2qggJu/9KwcG0V4GkZ+iqTEUnKWF0Z/09zoqLrSG0V6fZi8fZm9xdDexdHf55wii6K9G0Z709znfZi7GkZ8eZW7/d2Y/NeFe5i8+shZ+sdY7aMf8KcefZe3xdDf+9iMi6G8+bw2qLnQtsXaws/ggZatxNHh/u/Q/NWAqLvT6bBc+stj/NR+8MqS+OXIxtLitMTZw9Dh9+C6VnOU1Nvk8a0rwc7fsMHWb4mnUXWmGEiH+9ub9+TJ/O7Vr8HW/vXgj6fG/N6b4OfvuMTSjKPAxtHe+cBEOVuDOFyJcIyw78B2/ezF9tGPfZWv7agu8c+gVnKT5aJA5qdP561cmq/L+uvW+uzW/NiKUnWj/OOs67Jb+MJUF0iJF0iK///gFBQU3oCw6gAAAQB0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AFP3ByUAAAqDSURBVHja7JoJdJTVFcc/w4QYtAFZGiRkGpOQImSKVALKQCUQRGAMBQwQERo2CwguLIqioiQggjLTWdrGZmKkhCakoRRbCrUsiooL3fe92t2W7gu25B/fvfd73zKZnIRU23PSvHMc37zv3ve/7/fuu28yg9Ha06wGaovWPvjGv175K4weHjaUHw5dd9WTz1wx5eqpS4f1kDGxBLb86YVrR+15nyaD1h4yCkv2ynlrhs/Dh20yw3rItKJ4xab9n1wzfPhDJz5gk0Hr/z0Z/OKSvZ8jMiplbDJv9JBpxUaTzNwT42wy/2hLBv+L4N6526Zjo3OaDJ61yUwjR8N9b4U6Nd/be1dG3hFNBD2e8o6mRWybSWblteM0mfdM+4aTDBD3eFuo1dXgv8YlWO4XzejbrYlIeZ2nxtPBtMjVZO4/c+K+5ctpjy5/XfbJMGOMttjtQtF0esddhkDYa2t60KkM67QMwmiJlicHbk2Dxh8oMoUr0u5XQGJG4+qBVz716c/f/CGbDIKOGFtaDFzYgYh3asdBKQLHpvqdmmF07B8Kh9EpGRUPwqEWTzBZYMCZe8xh+HMnLQb6TRjcz6ivr7/4YiEjT4mMK2FaWvwXBKZGLbCuMxser1Nzwy4DLs2WjsFEvZ3iFzRlUBcN1bUtNMCb889YORPCLffNyn/XF+djrE1moEVGg/EEVS2MBMvjF0SGPDuTM3CdGQ3GH1eaISPa4Qzi0HE2w2/urSo0nrYgcfeso/Ohk2v8a+8e3GuiIvPPy+ttMndpMjAkxggfY/OegDT7AtFD9ogMsrNmCceDBCeEnBUMIT6+3mB7mq2Jmqghh1BbIed7vQHlaOfWxj0T848OkomfN3DZF0wy4w0HGdNLkfGeVy3HOQ1dVKrVRFjBCIfDERmKhmSVNfzYUPOHKRIN1eBxT41acEQ5BcWpnK9l3vOgXqeHNL0hl2YwSsZBWaByD6tZaEhxV24ePnMmQlvI4apSRHlI0WqnVmPWxPxXabrXf3Lk5oZ+Fhk+TCaZ92oyCHOQrhitukPwOaawrtEqn1GuH0fswh1yXTUedirXTkFHUQlyppHm+ZhTNK69/YqXLFBoUBnzWO5eJAipcGusMm5F1pK0JGCCIvMm0LD6yqeODMRhTeZOPkwmma9ZZDhlgo5LI+S4qFRtBb31OiKrs/qyQCEb8rtuGjKyDUOW4XlYKeOsLc5LQKUS4i1O0XCN5V7uFqqBM9yILRNKditdc2bWxNcQihOBIyNOW2T6jXCQuVGTMbaq5ryO4HXfpnBfIkbY6kajViDRUMK973YKWoY5TIY0t7YDhgqonQayP/YWBN1CcScYvy3jT54yZyYAMYWAyOA2i8xPR7xsxGIvvvj157/z3dXa02j6qGpNjpSpk3Qwz5RXElsdjYjBMYRpy7xUOuIh/1bd4lZFZS+ptyrZI4ZfnCxDOkyNpJnj0IzrXYibJ06OjzcYEWQh7e61S3eNVDgBEzUikXiwworHlyxlbrlu9Ff+QiWFyIzFoMOXTRh07w13w920uVFaqVqx43OGVRvh52IQl6Sg800dfvHo4u+jNcaAHF3FpSezsBO7h3GKDFPNCuojTUfwcqIZWlj8zptRQHrA98mfCrElxD1w2npjelkxMvMlL8A4jUunDgvVC5mvjj4N/Pj6B6fdvvTSpOXaSKmsqqqya6Hg4LIDPt3xqEYhUcua4+YdU0FrhIDgDIZYN+kBNAoZhmHKoFRJVqXamnGbdky6VoWGTARvVWVlKeSx1xLKgbuUI9W9z24ya/8w5eq//43I/OyuG7H8jnVXPfn+Kz4zdekfk5PZRs0OMmSXHfg4L3PolYNs4p6H09XP0SBHLTFXpQwNNZJNjHpN8FgDPIkhMPSnkVLSrLVFc8SmVZcgzyl+tUqSByD3p+GYlwONckh2Kcckh0wimHVfembK7aivH6sqxZaHbhg3ao9J5kfJyTxOrcENvckkQ30eyOUg+eChoVIaGYGWWAHYNmzeyFssW2tmVa4yzLHIkOZz9nrIRD43IEb9Up/Mot/7UExCi9sIpebQa4OD8ePbtqUkPUr49x5F5vpTL4eQ1nf48BdO2GSSkzRSPqaalX/wEXR5K/vsk92i9ymSIKfo/3wcUEtL9GGxbVNB3Qbe4goeyK2qqkwByHCAJpNBmustzRhZl4omTzXJyjCJZzF8sn/FCULs6cgRlilFEi4ly0cRGeDAis/St74P/Moi8+d2yGTsUG2AFaUj0TkhtqWS2GJo2Qr6aDWJn6j1LqEl1sJHbxmn+KBYiNmx1pLhEk2mgDRnWJq15PO0Wbg4OVKUk6TGAEEykvwhQqkOIXqxSeAQmRW0/aMg8OsHZo7a8+3fI5Z7yV4mg3EWmVfaIXPsU9QO6aAHPKIak0EBdUeu1wMoph7LovYRGR1AS4TtJL0MceUBtlwvLA5okWLWtECxzUghwxM3WAN4mLrADOX+MBzzcm+GmNtk0kmmTQFG+pq+qqwMVVdWxUYh883f2WS+3A6ZQx+hVhigm079x0ugRMch6u2ozfi4akKKegfk3s2QlWbsVA0CSC0UxeyTgZGW0xLqPYc5bKi/8kURaRY1m5qslCIgOIMPkJPsAfUyAHLPMKNTD3DAFNphEee/3ArI7njCnY20/WtKZs1kgyqTzNwTHZNB1kXcpmcH0Jx9MI3m3pkOHC+SaGgNG1g6i7qYU0yfGwoFSRF5NktAhUAa++wsQCEtnJ2mk9MhEUlDwLy2D4pmVnozaQZ4tulqWgZYhFvJibYex6l3DM1krQQK5DnSRegYNvCAChfp0xUwljmoZTSZTfvnoR9H06jJ/Hz+szOH3rF20aJF7X5RqP7WXvWYo6UXcsyFG/h/RQh8QrXpPG2h6hWqGIuysphIFiA+c7IvcrWDIKcsdtpAXaC/WK7SSZPn1Bxzq4iZe5SOOezE2029dDSLYVogUSjd8U6RMWUec32rOnLv/rnmx68ok/nNyi1tP/ImIxNY9YTdNmc/ardVAWTvVu0kR0m9/iedD7GQxnbnYbMezKOXk5MTnIAxbKh6Otw8h+YTgTyHqEqAPGXKEJFJXpPB0+x+NBP93ULK1HZUZE6KzGbnn2S1Gzf90vp2syrlt+md/KmCvtND/+12W5bee5fZ1IrQh8YmU2JPpl6fhfqhAmOObd+u4MpgHui1DzvNtpwylWXvXdRbaBfLTIfmQuTpaRdkK2MaY4gSGbT1gkQhShPtuYv0RKa/k8y5c3KU+FN9Q+d/wJFvyANn+w6hVn12tnLNpDcLxjCPPtXV1WUc5E2qV/1BZO4jw33LpBJPZlPlNKb3kCF9S4B9qs0uIVN+/i3q3aQWEChThr1LHB89sKyaNft+T42ihKbtXVbCdZKc2BRlqneW41hAprCFykiInpSU8SwSrsj0ccgEfaN7XYcL/ZXD8auK89w5j2DiV5ytaPOlpOt7yYQDnDhnm5/hkmm2JuklGLZ54n7j+gv71fmju/JrVnf/XRu35R/N79LPfEZ3B9Mr/+iEHjJJyLzUK//Orv0y3L3JYPxLg+/t4k/m3ZzM4UFd/mcW3ZoMRl/T9X9j0c1z5j/4xydvCTAA95hdN8HdFIAAAAAASUVORK5CYII=" width="250" height="36" /></a>\n <h2>Follow up with your valuable contacts.</h2>\n <h3>Setting up the integration with Fast Secure Contact Form takes under 60 seconds!</h3>\n <p>When your form gets submitted, add the contact to a Constant Contact email newsletter.</p>\n <p>With <a href="http://katz.si/fscfdesign3?cc=design3-h3-p2-b4">Constant Contact</a>, use attractive, professional-looking email communications to stay in regular touch with your customers and build strong customer relationships.</p> <p><a href="http://katz.si/fscfdesign3?cc=design3-h3-p2-b4" class="button button-primary">1. Get Constant Contact</a> <a href="plugin-install.php?tab=plugin-information&plugin=contact-form-newsletter&section=description&TB_iframe=true&width=640&height=701" class="thickbox button button-secondary" title="Integrate Newsletters with Fast Secure Contact Form">2. Install the Newsletter Plugin</a></p>\n <img height="1" width="1" border="0" style="display: none;" src="http://tracking.katzseo.com/tracking202/static/gpx.php?amount=" onload="(function(e){if(jQuery(''.fscf_statbox'').length === 0) { jQuery(''#kws_message'').insertBefore(jQuery(''#si_contact_mike_challis_tip'')); } else { }})(jQuery);" />\n</div>', 'yes'),
(555, '_transient_timeout_si_contact_form_info', '1424272338', 'no');
INSERT INTO `wp_hawkd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(556, '_transient_si_contact_form_info', 'O:8:"stdClass":20:{s:4:"name";s:24:"Fast Secure Contact Form";s:4:"slug";s:15:"si-contact-form";s:7:"version";s:6:"4.0.33";s:6:"author";s:85:"<a href="http://www.642weather.com/weather/scripts.php">Mike Challis, Ken Carlson</a>";s:14:"author_profile";s:36:"//profiles.wordpress.org/mikechallis";s:12:"contributors";a:1:{s:12:"Mike Challis";s:36:"//profiles.wordpress.org/mikechallis";}s:8:"requires";s:5:"3.4.2";s:6:"tested";s:3:"4.1";s:13:"compatibility";a:1:{s:3:"4.1";a:3:{s:6:"4.0.30";a:3:{i:0;i:50;i:1;i:2;i:2;i:1;}s:6:"4.0.31";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:6:"4.0.32";a:3:{i:0;i:83;i:1;i:6;i:2;i:5;}}}s:6:"rating";d:90.399999999999991;s:11:"num_ratings";i:1658;s:7:"ratings";a:5:{i:5;i:1317;i:4;i:164;i:3;i:27;i:2;i:17;i:1;i:133;}s:10:"downloaded";i:5369107;s:12:"last_updated";s:21:"2015-02-18 2:23am GMT";s:5:"added";s:10:"2009-08-27";s:8:"homepage";s:37:"http://www.FastSecureContactForm.com/";s:8:"sections";a:6:{s:11:"description";s:7847:"<p>Easily create and add forms to WordPress. Fields are easy to add, remove, and re-order. The contact form will let the user send emails to a site''s admin, and also send a meeting request to talk over phone or video.</p>\n\n<p><div class=''video''></div></p>\n\n<p>Features: easy form edit, multiple forms, confirmation emails, no templates to mess with, and an option to redirect visitors to any URL after the message is sent. Includes CAPTCHA and Akismet support to block spammers. Spam is no longer a problem. You can add extra fields of any type: text, textarea, checkbox, checkbox-multiple, radio, select, select-multiple, attachment, date, time, hidden, password, and fieldset.</p>\n\n<ul>\n<li><a href="http://www.fastsecurecontactform.com/">FastSecureContactForm.com</a></li>\n<li><a href="http://downloads.wordpress.org/plugin/si-contact-form.zip">Download WordPress Plugin Version</a></li>\n<li><a href="http://www.fastsecurecontactform.com/download-php-script">Download PHP Script Version</a></li>\n</ul>\n\n<h4>Help Keep This Plugin Free</h4>\n\n<p>If you find this plugin useful to you, please consider <a href="https://www.fastsecurecontactform.com/donate"><strong>making a donation</strong></a> to help contribute to my time invested and to further development. Thanks for your kind support! - <a href="http://profiles.wordpress.org/users/MikeChallis/"><strong>Mike Challis</strong></a></p>\n\nFeatures:\n\n<ul>\n<li>All new improved 4.xx version code base.</li>\n<li>New user interface with tabs.</li>\n<li>New ''Fields'' tab where you can re-order the display sequence of all the fields via a drag and drop interface.</li>\n<li>Forms are easy to add, remove, label, and edit and preview. Add as many as you need.</li>\n<li>Comes with standard fields of (Name, Email, Subject, Message). Any of the standard fields can be disabled.</li>\n<li>Fields are easy to add, remove, and re-order.</li>\n<li>Add extra fields of any type: text, textarea, checkbox, checkbox-multiple, radio, select, select-multiple, attachment, date, time, hidden, password, fieldset(box). <a href="http://www.fastsecurecontactform.com/how-to-add-extra-fields">See FAQ</a></li>\n<li>File attachments are supported, see here for details: <a href="http://wordpress.org/support/topic/416371" rel="nofollow">http://wordpress.org/support/topic/416371</a></li>\n<li>Backup/restore tool. You can backup/restore all your forms or single forms and settings.<a href="http://www.fastsecurecontactform.com/backup-restore-forms">See FAQ</a></li>\n<li>Easy to hide subject and message fields for use as a newsletter signup.</li>\n<li>Send mail to single or multiple contacts.</li>\n<li>Optional - redirect to any URL after message sent.</li>\n<li>Optional - posted data can be sent as a query string on the redirect URL. <a href="http://www.fastsecurecontactform.com/sending-data-by-query-string">See faq</a></li>\n<li>Optional - confirmation email message.<a href="http://www.fastsecurecontactform.com/tip-add-email-autoresponder">See FAQ</a></li>\n<li>Valid coding for HTML, XHTML, HTML STRICT, Section 508, and WAI Accessibility.</li>\n<li>Reloads form data and warns user if user forgets to fill out a field.</li>\n<li>CAPTCHA can be turned off or hidden from logged in users and or admins.</li>\n<li>Auto form fill for logged in users.</li>\n<li>Customizable form field labels.</li>\n<li>Customizable CSS style.</li>\n<li>New PHP Sessions are no longer enabled by default allowing for best compatibility with servers, caching, themes, and other plugins. This should resolve any PHP sessions related issues some users had.</li>\n<li>New added filter hooks for 3rd party plugins and custom modifications.</li>\n<li>New improved validation of time fields.</li>\n<li>New improved CAPTCHA images.</li>\n<li>New improved select options setting.</li>\n<li>New more optimized HTML indents when view source, added ID tags to form elements.</li>\n<li>New setting on the Advanced tab to enable a "view / print message" button after message sent. This feature will be skipped if the "redirect after the message sends" is also enabled.</li>\n<li>New Default CSS style for ''labels on top'' is now responsive(note:your theme style has to be responsive also).</li>\n<li>New improved Styles tab with internal or external CSS Style feature, you choose what you want.</li>\n<li>New easier to use field labels, tags, and field options. You no longer have to escape comas in form labels and options.</li>\n<li>New feature: for select, radio, checbox-miltiple, select-multiple field types: If you add options as a key==value set (use == to separate) the value will show on the form and the key will show in the email.</li>\n<li>New field Setting: "Hide label" check this setting if you want to hide the field label on the form.</li>\n<li>New field setting: "Default as placeholder" Check this setting if you want the default text to be a placeholder inside the form field. The placeholder is a short hint that is displayed in the input field before the user enters a value. Works with the following input types only: name, email, subject, message, text, textarea, url, and password.</li>\n<li>New tags capability for fields.</li>\n<li>New ''Reset Form'' button to Tools tab.</li>\n<li>New ''Delete Form'' function to Tools tab.</li>\n<li>New ''Reset Styles on all forms'' button to the Tools tab.</li>\n<li>New setting to skip names of non-required and unfilled-out fields in emails.</li>\n<li>Sends Email with UTF-8 character encoding for US and International character support.</li>\n<li>Pre-fill in form fields from a URL query string. <a href="http://www.fastsecurecontactform.com/query-string-parameters">See FAQ</a></li>\n<li>Save emails to the WordPress database, or export to CSV or Excel. <a href="http://www.fastsecurecontactform.com/save-to-database">See FAQ</a></li>\n<li>I18n language translation support. <a href="http://www.fastsecurecontactform.com/how-to-translate">See FAQ</a></li>\n</ul>\n\nOnline Scheduling, Appointment Booking and Free Invoicing via vCita:\n\n<ul>\n<li>Add an online scheduling button to your form, or at the bottom of every page </li>\n<li>Display your up-to-date availability on your website, based on your existing calendar (Google, Outlook, etc)</li>\n<li>Invite leads and clients to schedule a phone call, book an appointment or request a service</li>\n<li>Automated confirmations and reminders will be sent to your clients, including meeting details (time, location or phone number)</li>\n<li>Scheduled appointments will be added to your calendar </li>\n<li>Built-in phone conference service, and easy integration with Skype, Google Hangout, and other online meetings. </li>\n<li>Collect payments online before the appointment or invoice and bill your clients for your time and services</li>\n<li>Learn more about vCita <a href="http://www.vcita.com/software/online_scheduling">Online Scheduling Software</a></li>\n</ul>\n\nSecurity:\n\n<ul>\n<li>Akismet spam protection support.</li>\n<li>Spam checks: prevents spammer forcing to:, cc:, bcc:, newlines, and other email injection attempts to spam the world.</li>\n<li>Makes sure the contact form was posted from your blog domain name only.</li>\n<li>Secure input validation.</li>\n<li>Email message footer shows blog username(if logged on), Date/Time timestamp, IP address, and user agent (browser version) of user who contacted you.</li>\n</ul>\n\nCAPTCHA Image Support:\n\n<ul>\n<li>Uses Open-source free PHP CAPTCHA library by <a href="http://www.phpcaptcha.org" rel="nofollow">http://www.phpcaptcha.org</a> (customized version included)</li>\n<li>Abstract backgrounds with multi colored, angled, distorted, text</li>\n<li>Arched lines through text</li>\n<li>Refresh button to reload CAPTCHA</li>\n<li>CAPTCHA can be disabled on the ''Security'' tab.</li>\n</ul>\n\nRequirements/Restrictions:\n\n<ul>\n<li>Works with Wordpress 3.4.2+ and WPMU (Wordpress 4+ is highly recommended)</li>\n<li>PHP5</li>\n</ul>";s:12:"installation";s:3985:"<ol>\n<li><p>Install automatically through the <code>Plugins</code>, <code>Add New</code> menu in WordPress, or upload the <code>si-contact-form</code> folder to the <code>/wp-content/plugins/</code> directory.</p></li>\n<li><p>Activate the plugin through the <code>Plugins</code> menu in WordPress. On the Admin screen use the Plugins side menu to select FS Contact Form to configure the forms.</p></li>\n<li><p>You must add this shortcode <code>[si-contact-form form=''1'']</code> in a Page, Post, or Text Widget. You can find this shortcode on the Basic Settings tab of any form. Here is how to add the shortcode: Log into your blog admin dashboard. Click <code>Pages</code>, click <code>Add New</code>, add a title to your page, enter the shortcode <code>[si-contact-form form=''1'']</code> in the page. Uncheck <code>Allow Comments</code>, then click <code>Publish</code>.</p></li>\n<li><p>Test an email from your form.</p></li>\n<li><p>Updates are automatic. Click on "Upgrade Automatically" if prompted from the admin menu. If you ever have to manually upgrade, simply deactivate, uninstall, and repeat the installation steps with the new version.</p></li>\n</ol>\n\n<h4>For best mail delivery results, be sure to properly configure the email settings on the Basic Settings tab:</h4>\n\n<p>Read the following instructions and watch the YouTube video below:</p>\n\n<p>Set the "Return-path address" setting to a real email address on the SAME domain as your web site. This step really is ALWAYS necessary so mail is properly identified as originating from your server. For best results the "Email To" and the "Return-path address" should ALWAYS be separate REAL email addresses on the SAME DOMAIN as your web site (don''t skip this important step!).</p>\n\n<p>Some people will like to set the "Email To" to a gmail.com, outlook.com, or some other webmail address (if that is what you want, go ahead and try it), but the "Return-path address" should ALWAYS be set to a real email addresses on the SAME DOMAIN as your web site. If you try a webmail address and your mail is not sending, try changing the "Email to" address to a REAL email addresses on the SAME DOMAIN as your web site. You can still deliver it to your webmail address by forwarding the email from a setting in your hosting control panel, or <a href="https://support.google.com/mail/answer/21289?hl=en">configuring your webmail to fetch a mail account</a>.</p>\n\n<p>Next step, check this setting box:\nEnable when web host requires "Mail From" strictly tied to site (don''t skip this important step!).</p>\n\n<p>Click "Save Changes", then test your form''s mail delivery by sending a message from the form on your page. When testing your form on your page, do not fill out the email field with the same email address as the "Email To" or "Return-path address". Use a different email address because some server''s security settings do not allow email to send from/to the same address.</p>\n\n<p>If you have other forms in use, be sure to repeat these settings for each form.</p>\n\n<p>Now your email is properly configured for best delivery. Your form Email should now be DMARC compliant for users who submit your form with yahoo, aol, comcast, or any other provider who now requires DMARC compliance.</p>\n\n<p>The email you receive will appear to be from your site email address, but because the email header "Reply-to" is set as the form user''s email address. You should be able to just hit reply and send email back to the real sender. Also you should see the sender''s email address in the message content. So it is still possible to send mail to that address if the "Reply-to" is somehow ignored by your email program.</p>\n\n<p><div class=''video''></div></p>\n\n<h4>I just installed this and do not get any email from it, what could be wrong?</h4>\n\n<p>Follow the instructions above, but if you still need help...</p>\n\n<p><a href="http://www.fastsecurecontactform.com/email-does-not-send">See the FAQ page: How to troubleshoot mail delivery</a></p>";s:11:"screenshots";s:1761:"<ol>\n <li>\n <a href=''//s.w.org/plugins/si-contact-form/screenshot-1.gif?r=1093407'' title=''Click to view full-size screenshot 1''><img class=''screenshot'' src=''//s.w.org/plugins/si-contact-form/screenshot-1.gif?r=1093407'' alt=''si-contact-form screenshot 1'' /></a>\n <p><p>screenshot-1.gif is the contact form.</p></p>\n </li>\n <li>\n <a href=''//s.w.org/plugins/si-contact-form/screenshot-2.gif?r=1093407'' title=''Click to view full-size screenshot 2''><img class=''screenshot'' src=''//s.w.org/plugins/si-contact-form/screenshot-2.gif?r=1093407'' alt=''si-contact-form screenshot 2'' /></a>\n <p><p>screenshot-2.gif is the contact form showing the inline error messages.</p></p>\n </li>\n <li>\n <a href=''//s.w.org/plugins/si-contact-form/screenshot-3.gif?r=1093407'' title=''Click to view full-size screenshot 3''><img class=''screenshot'' src=''//s.w.org/plugins/si-contact-form/screenshot-3.gif?r=1093407'' alt=''si-contact-form screenshot 3'' /></a>\n <p><p>screenshot-3.gif is the <code>Contact Form options</code> tab on the <code>Admin Plugins</code> page.</p></p>\n </li>\n <li>\n <a href=''//s.w.org/plugins/si-contact-form/screenshot-4.gif?r=1093407'' title=''Click to view full-size screenshot 4''><img class=''screenshot'' src=''//s.w.org/plugins/si-contact-form/screenshot-4.gif?r=1093407'' alt=''si-contact-form screenshot 4'' /></a>\n <p><p>screenshot-4.gif adding the shortcode <code>[si-contact-form form=''1'']</code> in a Page.</p></p>\n </li>\n <li>\n <a href=''//s.w.org/plugins/si-contact-form/screenshot-5.png?r=1093407'' title=''Click to view full-size screenshot 5''><img class=''screenshot'' src=''//s.w.org/plugins/si-contact-form/screenshot-5.png?r=1093407'' alt=''si-contact-form screenshot 5'' /></a>\n <p><p>screenshot-5.png Schedule an appointment feature.</p></p>\n </li>\n</ol>";s:9:"changelog";s:27236:"<h4>4.0.33</h4>\n\n<ul>\n<li>(17 Feb 2015) - fixed fscf_init_languages priority</li>\n<li>fixed a print array was left active during silent send</li>\n<li>updated turkish language file</li>\n</ul>\n\n<h4>4.0.32</h4>\n\n<ul>\n<li>(22 Dec 2014) - Move the filter hook si_contact_email_fields_posted to before Silent Remote Sending.</li>\n<li>add new advanced tab setting "Enable Internationalized Domain Names when checking for a valid email address". Because this setting relaxes the email validation check considerably, do not enable unless you have to allow Russian, Japanese, Chinese, etc. characters in the email address.</li>\n<li>Fix so field tags can have upper case characters.</li>\n</ul>\n\n<h4>4.0.30</h4>\n\n<ul>\n<li>(23 Sep 2014) - Translated Spanish 100% (es_ES) - Translated by <a href="http://www.mbrsolution.com/">Manuel</a></li>\n</ul>\n\n<h4>4.0.29</h4>\n\n<ul>\n<li>(18 Sep 2014) - Fix the validate email function is updated for new generic top-level domains (gTLDs) released in 2014 and beyond. Allows up to 12 characters like .training, .photography, .company, etc. </li>\n<li>Fix so honeypot field slug will never conflict with custom post types.</li>\n<li>Add new feature for Default field properties: For the Default setting of a date field type, you can enter any date in the configured format. Or to show today''s date as default, just put the word today in brackets. example: [today].</li>\n</ul>\n\n<h4>4.0.28</h4>\n\n<ul>\n<li>(13 Sep 2014) - Fix error ''Invalid argument supplied for foreach'' when add new form.</li>\n<li>Increase z-index for the calendar pop up.</li>\n<li>Updated Turkish language file.</li>\n</ul>\n\n<h4>4.0.27</h4>\n\n<ul>\n<li>(09 Sep 2014) - Fix ''After form additional HTML'' was not printing on form.</li>\n<li>Fix to check for conflicting post types and show a warning. None of the field slugs can be the same as a post type rewrite_slug or you will get "page not found" when posting the form with that field filled in. In this new version, if you have this conflict there will be a warning on the form and on the form edit page. Warning: one of your field tags conflicts with the post type redirect tag "tag name". To automatically correct this, click the "Save Changes" button on the form edit page. Also the form editor will not let a conflict happen while editing, but a conflict can still happen if you add custom post types. So if you add any custom post types, be sure to check your forms for any warning messages.</li>\n</ul>\n\n<h4>4.0.26</h4>\n\n<ul>\n<li>(24 Aug 2014) - Added a new setting on the Advanced tab "Enable to prevent double click on submit button." It is enabled by default.\nThis setting disables the Submit button after click, to prevent double click on the button. Also prevents going back and submitting the form again. Note: this setting is ignored if the "Are you sure?" popup for the submit button is enabled, or when you have filled in the Submit button input attributes setting with a "onclick" attribute.</li>\n<li>Fixed tags were sometimes showing in confirmation email.</li>\n<li>Fixed Success page additional HTML shows outside of fieldset box.</li>\n<li>Updated fscf-placeholders.min.js to version 3.0.2.</li>\n<li>Updated Turkish language file</li>\n</ul>\n\n<h4>4.0.25</h4>\n\n<ul>\n<li>(11 Aug 2014) - Fix ''Add New Field'' button not working on German translation. last fix was not working.</li>\n</ul>\n\n<h4>4.0.24</h4>\n\n<ul>\n<li>(10 Aug 2014) - Fix ''Add New Field'' button not working on German translation.</li>\n<li>Added Silent Conditional Field and value settings for the silent send feature on the Advanced tab. Use this optional setting to conditionally disable silent sending unless this field tag and value are selected and submitted. Example usage: Your form has a checkbox to "signup for our newsletter" with the tag "signup-newsletter". You do a silent send to MailChimp to sign up people to the newsletter but you want to disable the silent send if the checkbox is left unchecked. For this example you will set the Silent Conditional Field to "signup-newsletter" and the Silent Conditional Value to "selected", this will only match the field tag and value when the checkbox is selected on the form.</li>\n</ul>\n\n<h4>4.0.23</h4>\n\n<ul>\n<li>(05 Aug 2014) - Added "Success page additional HTML" setting to the Advanced tab. This is printed on the success page after the message sent text. Useful for tracking a conversion with Google Analytics. Put the Google Code for Conversion Page here. HTML is allowed.</li>\n<li>Fixed email DNS check setting was ignored.</li>\n</ul>\n\n<h4>4.0.22</h4>\n\n<ul>\n<li>(29 Jul 2014) - Fixed support links</li>\n</ul>\n\n<h4>4.0.21</h4>\n\n<ul>\n<li>(21 Jun 2014) - Fixed broken "Disable email sending" for data export.</li>\n<li>Better explanation of email settings. </li>\n</ul>\n\n<h4>4.0.20</h4>\n\n<ul>\n<li>(11 Jun 2014) - akismet 3.xx compatible.</li>\n<li>Bug fix: ampersand and quotes were showing as entity in the To: name in the email.</li>\n<li>Better explanation of an email setting. </li>\n</ul>\n\n<h4>4.0.19</h4>\n\n<ul>\n<li>(15 May 2014) - Removed themefuse ad (their site was flagged by Google as possibly infected).</li>\n<li>Bug Fix: the ''follow'' feature was not working correctly if fields were re-sorted.</li>\n<li>New feature: When Name field is set to "First Name, Last Name" you can use the check box "inline" to get the last name to follow the first name on the same line.</li>\n<li>tested for WP 3.9.1</li>\n</ul>\n\n<h4>4.0.18</h4>\n\n<ul>\n<li>(07 Dec 2013) - Bug fix: query into hidden field type was not working.</li>\n<li>Bug fix: Standard field labels did not translate in email message.</li>\n<li>Bug fix: Standard field labels changed on the Labels tab did not change in email message.</li>\n<li>Bug fix: fixed HTML validation errors for datepicker css and for textarea.</li>\n<li>Update German, French, and Turkish Languages.</li>\n</ul>\n\n<h4>4.0.17</h4>\n\n<ul>\n<li>(17 Nov 2013) - Bug fix: calendar js conflict when two forms are on same page with date fields.</li>\n<li>Bug fix: "Notice: Undefined index: subject" error if subject field is disabled.</li>\n<li>added filter hook for modifying redirect URL.</li>\n</ul>\n\n<h4>4.0.16</h4>\n\n<ul>\n<li>(25 Oct 2013) - Bug fix: some fields would not validate if value was zero.</li>\n<li>Bug fix: tags for time field types were not working in the confirmation email or subject.</li>\n<li>Bug fix: admin css improvements to avoid conflicting plugins.</li>\n<li>Added ip_address as an available data send / export field.</li>\n<li>Added setting to the Advanced tab to enable and HTML anchor tag on the form POST URL.</li>\n<li>updated German (de_DE) translation. </li>\n</ul>\n\n<h4>4.0.15</h4>\n\n<ul>\n<li>(12 Oct 2013) - allow HTML in "Your message has been sent, thank you." custom label.</li>\n<li>Bug fix: the attrubutes setting was not working on name, email, subject, fields.</li>\n<li>Bug fix: schedule a meeting button could show when not activated.</li>\n</ul>\n\n<h4>4.0.14</h4>\n\n<ul>\n<li>(11 Oct 2013) - Bug fix: view /print button did not work with some plugins.</li>\n<li>Bug fix: schedule a meeting button user preference default problem.</li>\n<li>updated German (de_DE) translation. </li>\n</ul>\n\n<h4>4.0.13</h4>\n\n<ul>\n<li>(08 Oct 2013) - Bux fix: some forms would fail to import when label had some Non-US-ASCII or Chinese characters.</li>\n<li>Bug fix: Form save error when tag had some Non-US-ASCII or Chinese characters. </li>\n<li>Bug fix: button on the Tools tab "Import forms from 3.xx version" did not always work correctly.</li>\n</ul>\n\n<h4>4.0.11 & 4.0.12</h4>\n\n<ul>\n<li>(06 Oct 2013) - Improved placeholder text to work on older browsers.</li>\n<li>Added new style setting for "Placeholder text" so you can change placeholder text color if you want.</li>\n<li>Note: if you are using the External CSS setting you should import the new placeholder css, click "View custom CSS" on the Styles tab to see it.</li>\n<li>added new setting to Advanced tab "Enable to have the email labels on same line as values".</li>\n<li>updated German (de_DE) translation.</li>\n<li>Bug fix: copy styles was not copying all of the style settings.</li>\n<li>Bug fix: button on the Tools tab "Import forms from 3.xx version" did not work correctly.</li>\n</ul>\n\n<h4>4.0.10</h4>\n\n<ul>\n<li>(03 Oct 2013) - Bug fix: Activation generates "unexpected output" notice to admin.</li>\n<li>Bug fix: Could not select "Block spam messages" for Akismet.</li>\n<li>Bug fix: Field Regex was always validating as if required.</li>\n<li>Bug fix: Atachment file types, and file size labels were not working properly.</li>\n<li>Bug fix: Field default text was not showing in form.</li>\n</ul>\n\n<h4>4.0.9</h4>\n\n<ul>\n<li>(02 Oct 2013) - Bug fix: PHP method of calling form display was not working.</li>\n<li>Bug fix: time validation did not work on 24 hour format.</li>\n</ul>\n\n<h4>4.0.7 & 4.0.8</h4>\n\n<ul>\n<li>(01 Oct 2013) - Added a button on the Tools tab "Import forms from 3.xx version" for those who might be troubled by an import failure.</li>\n<li>Bug Fix: fixed a couple problems with importing settings from 3.xx version.</li>\n<li>Bug fix: none of the language translations were working.</li>\n<li>Bug fix: there were some ui image 404 errors from includes/images</li>\n<li>Bug fix: vCita setting error.</li>\n<li>other minor bug fixes.</li>\n</ul>\n\n<h4>4.0.6</h4>\n\n<ul>\n<li>(29 Sep 2013) - Version 4.0.6 is fiinally released after one year of programming by Mike Challis and Ken Carlson and 6 weeks of beta testing.</li>\n<li>Most notable changes:</li>\n<li>All new code base with better use of class structure.</li>\n<li>New user interface with tabs.</li>\n<li>New ''Fields'' tab where you can re-order the display sequence of all the fields via a drag and drop interface.</li>\n<li>The standard fields (name,email,subject,message) can now be manipulated and re-ordered along with the extra fields in the new ''Fields'' tab.</li>\n<li>Forms are easier to add, remove, label, and select for edit or preview.</li>\n<li>Fields are easier to add, remove, and re-order.</li>\n<li>Easier to use field labels, tags, and field options. You no longer have to escape comas in form labels and options.</li>\n<li>Automatic import of settings from version 2.5.6 and all 3.xx versions.</li>\n<li>You can restore your backed up forms from version 2.8 and newer with ''Restore Settings'' on the new ''Tools'' tab.</li>\n<li>Updated Online Meeting Scheduler by vCita on the new ''Scheduler'' tab.</li>\n<li>Updated ''Constant Contact'' plugin integration for the new ''Newsletter'' settings tab.</li>\n<li>PHP Sessions are no longer enabled by default allowing for best compatibility with servers, caching, themes, and other plugins. This should resolve any PHP sessions related issues some users had.</li>\n<li>Added filter hooks for 3rd party plugins and custom modifications.</li>\n<li>Improved validation of time fields.</li>\n<li>Improved CAPTCHA images.</li>\n<li>More optimized HTML indents when view source.</li>\n<li>New setting on the Advanced tab to enable a "view / print message" button after message sent. This feature will be skipped if the "redirect after the message sends" is also enabled.</li>\n<li>Default CSS style for ''labels on top'' is now responsive(note:your theme style has to be responsive also).</li>\n<li>New feature: for select, radio, checbox-miltiple, select-multiple field types: If you add options as a key==value set (use == to separate) the value will show on the form and the key will show in the email.</li>\n<li>New field Setting: "Hide label" check this setting if you want to hide the field label on the form.</li>\n<li>New field setting: "Default as placeholder" Check this setting if you want the default text to be a placeholder inside the form field. The placeholder is a short hint that is displayed in the input field before the user enters a value. Works with the following input types only: name, email, subject, message, text, textarea, url, and password.</li>\n<li>New tags capability for fields.</li>\n<li>New ''Reset Form'' button to Tools tab.</li>\n<li>New ''Delete Form'' function to Tools tab.</li>\n<li>New ''Reset Styles on all forms'' button to the Tools tab.</li>\n<li>Lots of work on the Style tab:</li>\n<li>Added more style settings for Style of labels, field inputs, buttons, and text.</li>\n<li>Separated style sections into "Alignment DIVs", and "Style of labels, field inputs, buttons, and text".\n"Alignment DIVs" settings are for adjusting the alignments of the form elements.\nYou can also check "reset the alignment" to return to defaults and make the "labels on top" or "labels on left".\n"Style of labels, field inputs, buttons, and text" are for setting style of the form labels, field inputs, buttons, and text.\nThis is a great way to change label or field colors. You can add color:red; any style attributes you want.\nYou can also check "reset the styles" to return to defaults.</li>\n<li>New setting on the Style tab: "Select the method of delivering the form style":\n"Internal Style Sheet CSS (default)"\n"External Style Sheet CSS (requires editing theme style.css)"\nBy default, the FSCF form styles are editable below when using "Internal Style Sheet CSS". The style is included inline in the form HTML.\nCSS experts will like the flexibility of using their own custom style sheet by enabling "External Style Sheet CSS", then the FSCF CSS will NOT be included inline in the form HTML, and the custom CSS below must be included in the style.css of the theme. Be sure to remember this if you switch your theme later on.\nPremium themes can now add support for Fast Secure Contact Form style in the theme''s CSS. Select "External Style Sheet CSS" when instructed by the theme''s installation instructions.</li>\n<li>New "Reset Styles on all forms" button to the Tools menu, and you should click it once after upgrading from version 3.xx to acquire the many changes/improvements to the default styles.</li>\n<li>Editorial change: E-mail is now Email, and e-mail is now email.</li>\n<li>Includes all the recent improvements from the 3.xx versions.</li>\n<li>Hundreds of bug fixes and code improvements.</li>\n</ul>\n\n<h4>4.0.5 Beta 5</h4>\n\n<ul>\n<li>(27 Sep 2013) - added ability to use "Default as placeholder" setting with "Enable double email entry" setting enabled. The "Default" setting should be in this example format: "Email==Re-enter Email". Separate words with == separators.</li>\n<li>added ability to use "Default as placeholder" setting with "First Name, Last Name" setting enabled. The "Default" setting should be in this example format: "First Name==Last Name". Separate words with == separators.</li>\n<li>When using "Default as placeholder" setting with "First Name, Middle Name, Last Name" setting enabled. The "Default" setting should be in this example format: "First Name==Middle Name==Last Name". Separate words with == separators.</li>\n<li>added a warning message if placeholder is enabled with empty Default text.</li>\n<li>added a warning message if double email setting is enabled with Default text in wrong format.</li>\n<li>added a warning message if "First Name, Last Name" is enabled with Default text in wrong format.</li>\n<li>Bug Fix: left a diagnostic print statement in the code in the placeholder feature.</li>\n<li>added new feature for select, radio, checbox-miltiple, select-multiple field types: If you add options as a key==value set (use == to separate) the value will show on the form and the key will show in the email.</li>\n<li>added two new settings to fields:\n"Hide label" check this setting if you want to hide the field label on the form.\n"Default as placeholder" Check this setting if you want the default text to be a placeholder inside the form field. The placeholder is a short hint that is displayed in the input field before the user enters a value. Works with the following input types only: name, email, subject, message, text, textarea, url, and password.</li>\n<li>added a "Reset Styles on all forms" button to the Tools menu, and I suggest clicking it each time you replace the plugin files to test the beta because I have been making many changes/improvements to the default styles.</li>\n<li>added new css element "Field Pre-Follow DIV" (fscf-div-field-prefollow) to properly set fields just to before the follow fields to the proper with while allowing wider labels for other fields.</li>\n<li>changed the CSS for the "Field Left DIV" (fscf-div-field-left) on ''labels on top'' setting to fix labels not wide enough problem.</li>\n<li>Fix bug: option value of ''0'' was deleted.</li>\n<li>got rid of the additional sentence "Enter your email again." and the fields are now "Email", and "Re-Enter Email", just like Facebook signup has it.</li>\n<li>On Fields tab changed ''Name'' setting to ''Label'' as it perfectly relates to the actual form element.</li>\n<li>renamed the ''Border Style'' setting to ''Fieldset Box'' as it perfectly relates to the actual form element.</li>\n<li>also the external CSS element ''fscf-border'' was renamed to ''fscf-fieldset''</li>\n<li>added width:99%; max-width:250px; to the Field Follow DIV (labels on top) so follow fields are matching width</li>\n<li>added a separate style for fieldset field, so now there is "Form Fieldset Box" (fscf-fieldset) for the form fieldset and "Field Fieldset Box" (fscf-fieldset-field) for fieldset field types.</li>\n</ul>\n\n<h4>4.0.4 Beta 4</h4>\n\n<ul>\n<li>(24 Sep 2013) - added a setting on the Advanced tab to enable a "view / print message" button after message sent. This feature will be skipped if the "redirect after the message sends" is also enabled.</li>\n<li>added vCita Online Appointment scheduler.</li>\n<li>added a couple more style settings for vCita.</li>\n<li>integrated vcita with external style CSS feature.</li>\n<li>added mode Save Changes buttons on settings pages.</li>\n<li>Optimized default styles some more. To aquire all the new style changes, you have to click the checkboxes to reset the styles on the Style settings tab.</li>\n<li>Default CSS for ''labels on top'' is now responsive(note:your theme has to be also).</li>\n<li>Removed settings for text field size, textarea cols and rows, because this is now controlled by CSS instead.</li>\n<li>Adjusted CAPTCHA fonts larger.</li>\n<li>All time field selects default to blank, then you select them.</li>\n<li>Improved the time validation: if a time field is not required and you select hour but not day, it will fail validation with message: "The time selections are incomplete, select all or none."</li>\n<li>the * prefix is really not necessary for single selections in the email, so I removed it,</li>\n<li>you should only have a '' * '' separating fields with multiple selected options from now on.</li>\n<li>Fix bug: time fields now obey required, not required.</li>\n<li>added new setting to Advanced tab: "Enable to skip names of non-required and unfilled-out fields in emails."</li>\n<li>Fix bug: required field checkbox was stuck on required on every field when double email field was enabled.</li>\n<li>added more ID tags to form HTML.</li>\n</ul>\n\n<h4>4.0.3 Beta 3</h4>\n\n<ul>\n<li>(16 Sep 2013) - added more ID tags to form HTML.</li>\n<li>More work on the Style tab:</li>\n<li>added new setting to "Select the method of delivering the form style":</li>\n<li>"Internal Style Sheet CSS (default)"</li>\n<li>"External Style Sheet CSS (requires editing theme style.css)"</li>\n<li>By default, the FSCF form styles are editable below when using "Internal Style Sheet CSS". The style is included inline in the form HTML.</li>\n<li>CSS experts will like the flexibility of using their own custom style sheet by enabling "External Style Sheet CSS", then the FSCF CSS will NOT be included inline in the form HTML, and the custom CSS below must be included in the style.css of the theme. Be sure to remember this if you switch your theme later on.</li>\n<li>Premium themes may have added support for Fast Secure Contact Form style in the theme''s style.css. Select "External Style Sheet CSS" when instructed by the theme''s installation instructions.</li>\n<li>Note: if you use the setting "reset the alignment styles to labels on left(or top)", or "Reset the styles of labels, field inputs, buttons, and text", then the custom CSS below will reflect the changes. You would have to edit your custom CSS again to see the changes on the form.</li>\n<li>"Required field" will also be set when double email is enabled in the Email Address field settings.</li>\n<li>added Save Changes button to field details on the Fields tab</li>\n<li>added (standard field) note next to standard field names on the Fields tab.</li>\n<li>added note "Standard field names can be changed on the Labels tab." to the field details on the Fields tab</li>\n<li>added standard field note will indicate if a (standard field name was changed on the Labels tab).</li>\n<li>added a couple more filters.</li>\n<li>If you have changed a standard field label, it will display the changed label in bold on the Fields tab.</li>\n<li>Optimized code for email from name when name field is disabled</li>\n<li>Fix big: date validation failed if date field was emptied, even if date not required.</li>\n<li>Added "After form message" setting to the "Advanced'' tab, you can use this to add any HTML after the form.</li>\n<li>Adjusted CAPTCHA difficulty down slightly.</li>\n<li>Fix big: now uses correct Return-path address setting for the confirmation email</li>\n<li>Fix bug: confirmation email might send to admin if email field is disabled</li>\n<li>updated <a href="http://www.fastsecurecontactform.com/how-to-add-extra-fields" rel="nofollow">http://www.fastsecurecontactform.com/how-to-add-extra-fields</a></li>\n<li>Editorial changes to field instructions.</li>\n<li>Fix bug: the tools tab lost focus when submitting a tool option.</li>\n</ul>\n\n<h4>4.0.2 Beta 2</h4>\n\n<ul>\n<li>(30 Aug 2013) - Lots of work on the Style tab:</li>\n<li>Added more style settings for Style of labels, field inputs, buttons, and text.</li>\n<li>Separated style sections into "Alignment DIVs", and "Style of labels, field inputs, buttons, and text".</li>\n<li>"Alignment DIVs" settings are for adjusting the alignments of the form elements.</li>\n<li>You can also check "reset the alignment" to return to defaults and make the "labels on top" or "labels on left".</li>\n<li>"Style of labels, field inputs, buttons, and text" are for setting style of the form labels, field inputs, buttons, and text.</li>\n<li>This is a great way to change label or field colors. You can add color:red; any style attributes you want.</li>\n<li>You can also check "reset the styles" to return to defaults.</li>\n<li>Fix bug: The donate box div did not minify.</li>\n<li>Fix bug: The Label CSS and Field CSS field options did not work on all field types.</li>\n<li>Fix bug: max_forms_num could get out of sync when deleting forms.</li>\n<li>Fix bug: setting was ignored "Enable sender information in email footer"</li>\n<li>Fix bug: Custom Label CSS was ignored for checkbox, checkbox-multiple, and radio fields.</li>\n<li>Fix bug: CSS setting ''labels on left'' messed up checkbox, checkbox-multiple, and radio fields.</li>\n<li>Fix bug: CSS setting ''labels on left'' messed up HTML before/after form field position.</li>\n<li>Fix bug: Field Label setting for the Reset button adds onclick= to the label.</li>\n<li>Fix bug: When viewing a form preview, changing the form select switches back to Edit mode.</li>\n<li>Fix Bug: Reply-To email header was set to incorrect address.</li>\n<li>"Email From" setting renamed to the more accurate "Return-path address".</li>\n<li>Fixed and added more error label settings.</li>\n<li>Moved "Enable PHP sessions" setting to the ''Advanced'' tab.</li>\n<li>Split ''Styles/Labels'' tab into a ''Styles'' tab and a ''Labels'' tab.</li>\n<li>Optimize backup file download then test with IE, FF, Chrome, Opera.</li>\n<li>Added form_number to the ''fsctf_mail_sent'' action hook object array</li>\n<li>Added ''Domain Protect Settings'' to the ''Security'' settings tab</li>\n<li>Added setting for "Additional allowed domain names(optional)" to the ''Security'' settings tab.</li>\n<li>Added show/hide details labels to field settings toggle buttons.</li>\n<li>Added focus to new field with message when adding New Field.</li>\n<li>Added setting: CSS style for form checkbox, checkbox-multiple, and radio labels. (useful to change colors).</li>\n<li>Updated admin and form stylesheets.</li>\n<li>Edited some settings labels.</li>\n<li>More optimized HTML indents when view source.</li>\n<li>Minor UI changes.</li>\n</ul>\n\n<h4>4.0.1 Beta 1</h4>\n\n<ul>\n<li>(15 Aug 2013) - After one year of hard work, Mike Chalis and Ken Carlson have redeveloped the whole plugin.</li>\n<li>All new codebase with better use of class structure.</li>\n<li>New user interface with tabs.</li>\n<li>New ''Fields'' tab where you can re-order the display sequence of all the fields via a drag and drop interface.</li>\n<li>The standard fields (name,email,subject,message) can now be manipulated and re-ordered along with the extra fields in the new ''Fields'' tab.</li>\n<li>Forms are easier to add, remove, label, and select for edit or preview.</li>\n<li>Fields are easier to add, remove, and re-order.</li>\n<li>Easier to use field labels, tags, and field options. You no longer have to escape comas in form labels and options.</li>\n<li>A ''Reset Form'' and ''Delete Form'' button has been added to the new ''Tools'' tab.</li>\n<li>Automatic import of settings from older version 2.5.6 and newer.</li>\n<li>You can restore your backed up forms from version 2.8 and newer with ''Restore Settings'' on the new ''Tools'' tab.</li>\n<li>Updated Meeting Scheduler - by vCita is still being developed for the new ''Meeting'' settings tab.</li>\n<li>Updated ''Constant Contact'' plugin integration for the new ''Newsletter'' settings tab.</li>\n<li>PHP Sessions are no longer enabled by default allowing for best compatibility with servers, caching, themes, and other plugins. This should resolve many sessions related issues some users had.</li>\n<li>Added filter hooks for 3rd party plugins.</li>\n<li>Removed HTML before/after field divs.</li>\n<li>Relocated some email settings from ''Basic Settings'' to ''Advanced'' tab.</li>\n<li>Editorial change: E-mail is now Email, e-mail is email</li>\n<li>Includes all the recent improvements from the 3.xx versions.</li>\n<li>Many bug fixes and code improvements.</li>\n</ul>\n\n<h4>3.1.9</h4>\n\n<ul>\n<li>(15 Aug 2013) - Added announcement of Fast Secure Contact Form Version 4.0 Beta was released August, 15 2013. Please help test it!</li>\n<li><a href="http://www.fastsecurecontactform.com/beta">Download and test the 4.0 Beta</a></li>\n</ul>\n\n<h4>3.1.8.6</h4>\n\n<ul>\n<li>(13 Aug 2013) - fixed label style for checkbox, checkbox-multiple, and radio field types.</li>\n<li>removed divs for HTML before/after field settings.</li>\n<li>minor bug fixes.</li>\n</ul>\n\n<h4>3.1.8.5</h4>\n\n<ul>\n<li>(18 Jul 2013) - added new settings: "Submit button input attributes" and "Form action attributes". These can be used for Google Analytics tracking code.</li>\n<li>added captcha font randomization.</li>\n<li>fixed date does not have to be required.</li>\n<li>fixed date error message translation.</li>\n</ul>\n\n<h4>3.1.8.4</h4>\n\n<ul>\n<li>(07 Jul 2013) - Fixed CAPTCHA PHP warning on some servers.</li>\n<li>Added better date input validation.</li>\n</ul>\n\n<p><a href="http://www.fastsecurecontactform.com/changelog-archive">Fast Secure Contact Form - WordPress changelog archive</a></p>";s:3:"faq";s:7009:"<p><a href="http://www.fastsecurecontactform.com/faq-wordpress-version">See the official FAQ at FastSecureContactForm.com</a></p>\n\n<h4>I just installed this and do not get any email from it, what could be wrong?</h4>\n\n<p><a href="http://www.fastsecurecontactform.com/email-does-not-send">See FAQ page: How to troubleshoot email delivery</a></p>\n\n<h4>If I upgrade from version 3.xx, will my forms and settings be lost?</h4>\n\n<p>No, it will automatic import of settings from versions 2.5.6 up to 3.xx. As long as you do not use the delete button when deactivating the plugin.\nYou can and should <a href="http://www.fastsecurecontactform.com/backup-restore-forms">make a backup of your forms</a>.</p>\n\n<h4>I upgraded from version 3.xx, to 4.xx and my forms and settings did not import</h4>\n\n<p>The forms should have imported. In some rare cases, they don''t import. Sorry for any inconvenience. \nUpdate to the latest version, click the button on the Tools tab "Import forms from 3.xx version".</p>\n\n<p>More help is on this help page:\n<a href="http://www.fastsecurecontactform.com/forms-did-not-import">I upgraded to 4.xx version and my forms did not import</a></p>\n\n<h4>What happens during upgrade from 3.xx, where are the settings stored?</h4>\n\n<p>The upgrade is run automatically only once after installing or upgrading the 4.xx version over a 3.xx versions.\nThe 4.xx version uses different wp options settings than 3.xx\nThe options settings are rows in the wp_options database table.</p>\n\n<p>4.xx wp_options:\nfs_contact_global,\nfs_contact_form1,\nfs_contact_form2,\nfs_contact_form3,</p>\n\n<p>3.xx wp_options:\nsi_contact_gb,\nsi_contact_form,\nsi_contact_form2,\nsi_contact_form3,\nsi_contact_form4,</p>\n\n<p>During 4.xx install, the installation looks to see if 4.xx options are not present(first time install), and if 3.xx options are present(3.xx was installed previously), if it passes both those tests, then it runs the import code in\nclass-fscf-import.php</p>\n\n<h4>How do I backup or restore my forms?</h4>\n\n<p>On the Tools settings tab is a backup / restore tool.\nThe backup / restore feature can be used for backups or as a site to site transfer. You can back up ALL forms and transfer ALL forms to the same or new site using the restore feature. Or you can back up individual forms and restore them to the the same or new site replacing any one form selected during the restore. Please consider that restoring one form or ALL forms makes permanent replacements to the forms already on the site you restore them to.\nRead <a href="http://www.fastsecurecontactform.com/backup-restore-forms">more about backups</a></p>\n\n<h4>Is this plugin available in other languages?</h4>\n\n<p>Yes. To use a translated version, you need to obtain or make the language file for it.\nAt this point it would be useful to read <a href="http://codex.wordpress.org/Installing_WordPress_in_Your_Language" title="Installing WordPress in Your Language">Installing WordPress in Your Language</a> from the Codex. You will need an .mo file for this plugin that corresponds with the "WPLANG" setting in your wp-config.php file. Translations are listed below -- if a translation for your language is available, all you need to do is place it in the <code>/wp-content/plugins/si-contact-form/languages</code> directory of your WordPress installation. If one is not available, and you also speak good English, please consider doing a translation yourself (see the next question).</p>\n\n<p>The following translations are included in the download zip file:</p>\n\n<ul>\n<li>Albanian (sq_AL) - Translated by <a href="http://www.romeolab.com">Romeo Shuka</a></li>\n<li>Arabic (ar) partial translation - Translated by Jasmine Hassan</li>\n<li>Bulgarian (bg_BG) - Translated by <a href="http://chereshka.net">Dimitar Atanasov</a></li>\n<li>Chinese (zh_CN) - Translated by <a href="http://www.awuit.cn/">Awu</a> </li>\n<li>Danish (da_DK) - Translated by <a href="http://wordpress.blogos.dk/wpdadkdownloads/">GeorgWP</a></li>\n<li>Farsi(Persian)(fa_IR) partial translation - Translated by Ramin Firooz</li>\n<li>Finnish (fi) - Translated by <a href="http://www.guimikko.com/">Mikko Vahatalo</a> </li>\n<li>French (fr_FR) - Translated by <a href="http://pierre.sudarovich.free.fr/">Pierre Sudarovich</a></li>\n<li>German (de_DE) - Translated by <a href="http://sebastian.kreideweiss.info/">Sebastian Kreideweiss</a></li>\n<li>Greek (el) - Translated by <a href="http://www.jbaron.gr/">Ioannis</a></li>\n<li>Hebrew, Israel (he_IL) - Translated by Asaf Chertkoff FreeAllWeb GUILD</li>\n<li>Hungarian (hu_HU) - Translated by <a href="http://dmgmedia.hu">Jozsef Burgyan</a></li>\n<li>Italian (it_IT) - Translated by <a href="http://gidibao.net/" title="Gianni Diurno">Gianni Diurno</a></li>\n<li>Japanese (ja) - Translated by [Ichiro Kozuka]</li>\n<li>Norwegian Bokmal (nb_NO) - Translated by <a href="http://punktlig-ikt.no">Tore Johnny Bratveit</a></li>\n<li>Polish (pl_PL) - Translated by [Pawel Mezyk]</li>\n<li>Portuguese (pt_PT) - Translated by <a href="http://pws.op351.net/">AJBFerreira Blog</a></li>\n<li>Portuguese Brazil (pt_BR) - Translated by [Rui Alao]</li>\n<li>Romanian (ro_RO) - Translated by <a href="http://www.jibo.ro">Anunturi Jibo</a></li>\n<li>Russian (ru_RU) - Translated by <a href="http://www.iflexion.com/">Iflexion</a></li>\n<li>Spanish (es_ES) - Translated by <a href="http://www.mbrsolution.com/">Manuel</a></li>\n<li>Swedish (sv_SE) - Translated by <a href="http://walktheline.boplatsen.se/">Daniel Persson</a></li>\n<li>Traditional Chinese, Taiwan (zh_TW) - Translated by [Cjh]</li>\n<li>Turkish (tr_TR) - Translated by <a href="http://www.tapcalap.com/">Tolga</a></li>\n<li>Ukrainian (uk_UA) - Translated by <a href="http://wordpress.ua/">Wordpress.Ua</a></li>\n<li>More are needed... Please help translate.</li>\n</ul>\n\n<h4>Can I provide a translation?</h4>\n\n<p>Yes! \nHow to translate Fast Secure Contact Form for WordPress\n<a href="http://www.fastsecurecontactform.com/how-to-translate" rel="nofollow">http://www.fastsecurecontactform.com/how-to-translate</a></p>\n\n<h4>Is it possible to update the translation files for newest version?</h4>\n\n<p>How to update a translation of Fast Secure Contact Form for WordPress\n<a href="http://www.fastsecurecontactform.com/how-to-update-translation" rel="nofollow">http://www.fastsecurecontactform.com/how-to-update-translation</a></p>\n\n<p>For more help... <a href="http://www.fastsecurecontactform.com/faq-wordpress-version">See the official FAQ at FastSecureContactForm.com</a></p>\n\n<h4>What is the "Schedule an appointment" button on my contact form?</h4>\n\n<p>You can extend your contact form to let your users to schedule appointments based on your availability.\nLearn more about <a href="http://www.vcita.com/software/online_scheduling">Why should I add Online Scheduling to my website</a></p>\n\n<p>You can enable or disable this option in the "Scheduling" tab of your contact form plugin settings page.</p>\n\n<p>If you have additional questions visit <a href="http://support.vcita.com">vCita Support Page</a></p>";s:11:"other_notes";s:231:"<h3>Credits</h3>\n<ul>\n<li><a href="http://www.642weather.com/weather/scripts.php">Mike Challis</a> - Plugin Author / Lead programmer</li>\n<li><a href="http://kencarlsonconsulting.com/">Ken Carlson</a> - Plugin programmer</li>\n</ul>";}s:13:"download_link";s:58:"https://downloads.wordpress.org/plugin/si-contact-form.zip";s:4:"tags";a:10:{s:7:"akismet";s:7:"Akismet";s:7:"captcha";s:7:"captcha";s:7:"contact";s:7:"contact";s:12:"contact-form";s:12:"contact form";s:5:"email";s:5:"email";s:4:"form";s:4:"form";s:4:"mail";s:4:"mail";s:12:"multilingual";s:12:"multilingual";s:4:"spam";s:4:"spam";s:4:"wpmu";s:4:"wpmu";}s:11:"donate_link";s:44:"https://www.FastSecureContactForm.com/donate";}', 'no');
INSERT INTO `wp_hawkd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(559, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1424283610', 'yes'),
(560, '_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:"4916";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"3078";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"3022";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"2529";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2346";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1892";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"1729";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1680";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1678";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1676";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1612";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1609";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1505";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:4:"1322";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1276";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:4:"1175";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1171";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:4:"1083";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:4:"1079";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"918";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"905";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"874";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"843";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"837";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"794";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"758";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"748";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"709";}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";s:3:"700";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"692";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"682";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"657";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"649";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"642";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"642";}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";s:3:"623";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"620";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"605";}s:5:"share";a:3:{s:4:"name";s:5:"Share";s:4:"slug";s:5:"share";s:5:"count";s:3:"600";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"593";}}', 'yes'),
(562, 'wpcf7', 'a:1:{s:7:"version";s:3:"4.1";}', 'yes'),
(565, '_site_transient_timeout_browser_d2fc95119eff8f99bfaaae666eb704e2', '1424884861', 'yes'),
(566, '_site_transient_browser_d2fc95119eff8f99bfaaae666eb704e2', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"40.0.2214.111";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'),
(583, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1424383299', 'no');
INSERT INTO `wp_hawkd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(584, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:49:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:26:"https://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Feb 2015 23:40: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:39:"http://wordpress.org/?v=4.2-alpha-31473";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"WordPress 4.1.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:51:"https://wordpress.org/news/2015/02/wordpress-4-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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2015/02/wordpress-4-1-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Feb 2015 23:40: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=3436";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:345:"WordPress 4.1.1 is now available. This maintenance release fixes 21 bugs in version 4.1. Some of you may have been waiting to update to the latest version until now, but there just wasn’t much to address. WordPress 4.1 was a smooth-sailing release and has seen more than 14 million downloads in the last two months. For a full […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:3086:"<p>WordPress 4.1.1 is now available. This maintenance release fixes 21 bugs in version 4.1.</p>\n<p>Some of you may have been waiting to update to the latest version until now, but there just wasn’t much to address. WordPress 4.1 was a smooth-sailing release and has seen more than 14 million downloads in the last two months.</p>\n<p class="p1"><span class="s1">For a full list of changes, consult the <a href="https://core.trac.wordpress.org/query?milestone=4.1.1&group=severity&order=component">list of tickets</a> and the <a href="https://core.trac.wordpress.org/log/branches/4.1?stop_rev=30974&rev=31474">changelog</a>. We fixed one annoying issue where a tag and a category with the same name could get muddled and prevent each other from being updated.</span></p>\n<p>If you are one of the millions already running WordPress 4.1 and your site, we’ve started rolling out automatic background updates for 4.1.1 for sites <a href="https://wordpress.org/plugins/background-update-tester/">that support them</a>. Otherwise, <a href="https://wordpress.org/download/">download WordPress 4.1.1</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Thanks to everyone who contributed to 4.1.1: <a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="https://profiles.wordpress.org/chrico">ChriCo</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/dlh">David Herrera</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/hissy">Takuro Hishikawa</a>, <a href="https://profiles.wordpress.org/ipm-frommen">Thorsten Frommen</a>, <a href="https://profiles.wordpress.org/iseulde">Iseulde</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/sippis">sippis</a>, <a href="https://profiles.wordpress.org/tmatsuur">tmatsuur</a>, <a href="https://profiles.wordpress.org/tyxla">Marin Atanasov</a>, <a href="https://profiles.wordpress.org/valendesigns">Derek Herman</a>, and <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>.</p>\n<p>It is with both great honor and sadness we also recognize Kim Parsell as a contributor to this release and a <a href="https://make.wordpress.org/docs/2015/01/05/rip-kim-parsell/">truly beloved member of the community</a> until her untimely passing in December. The project is working to establish a conference travel <a href="https://make.wordpress.org/community/2015/01/15/remembering-kim-parsell/">scholarship</a> in her memory. We miss you, Kim.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2015/02/wordpress-4-1-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"WordPress 4.1 “Dinah”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"https://wordpress.org/news/2014/12/dinah/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:50:"https://wordpress.org/news/2014/12/dinah/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 18 Dec 2014 18:35:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3386";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:360:"Version 4.1 of WordPress, named “Dinah” in honor of jazz singer Dinah Washington, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style. Introducing Twenty Fifteen Our newest default theme, Twenty Fifteen, is […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:22698:"<p>Version 4.1 of WordPress, named “Dinah” in honor of jazz singer <a href="http://wikipedia.org/wiki/Dinah_Washington">Dinah Washington</a>, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style.</p>\n<hr />\n<h2 style="text-align: center">Introducing Twenty Fifteen</h2>\n<p><img class="aligncenter size-large wp-image-3389" src="https://wordpress.org/news/files/2014/12/2015-laptop-1024x533.png" alt="2015-laptop" width="692" height="360" /></p>\n<h3>Our newest default theme, Twenty Fifteen, is a blog-focused theme designed for clarity.</h3>\n<p><img class="alignright wp-image-3426 size-medium" src="https://wordpress.org/news/files/2014/12/2015-phones-languages-small-300x250.png" alt="" width="300" height="250" />Twenty Fifteen has flawless language support, with help from <a href="https://www.google.com/get/noto/">Google’s Noto font family</a>.</p>\n<p>The straightforward typography is readable on any screen size.</p>\n<p>Your content always takes center stage, whether viewed on a phone, tablet, laptop, or desktop computer.</p>\n<hr />\n<h2 style="text-align: center">Distraction-free writing</h2>\n<p><img class="aligncenter size-large wp-image-3392" src="https://wordpress.org/news/files/2014/12/dfw-screen-1024x614.png" alt="dfw-screen" width="692" height="415" /></p>\n<h3 style="text-align: center"><em>Just write.</em></h3>\n<p>Sometimes, you just need to concentrate on putting your thoughts into words. Try turning on <strong>distraction-free writing mode</strong>. When you start typing, all the distractions will fade away, letting you focus solely on your writing. All your editing tools instantly return when you need them.</p>\n<hr />\n<h2 style="text-align: center">The Finer Points</h2>\n<h5><strong><img class="alignleft wp-image-3405" src="https://wordpress.org/news/files/2014/12/icon-language2.png" alt="" width="80" height="80" /></strong>Choose a language</h5>\n<p>Right now, WordPress 4.1 is already translated into over forty languages, with more always in progress. You can switch to any translation on the General Settings screen.</p>\n<h5><strong><img class="alignleft wp-image-3406" src="https://wordpress.org/news/files/2014/12/icon-logout1.png" alt="" width="80" height="80" /></strong>Log out everywhere</h5>\n<p>If you’ve ever worried you forgot to sign out from a shared computer, you can now go to your profile and log out everywhere.</p>\n<h5><strong><img class="alignleft wp-image-3407" src="https://wordpress.org/news/files/2014/12/icon-vine1.png" alt="" width="80" height="80" /></strong>Vine embeds</h5>\n<p>Embedding videos from Vine is as simple as pasting a URL onto its own line in a post. See the <a href="https://codex.wordpress.org/Embeds">full list</a> of supported embeds.</p>\n<h5><strong><img class="alignleft wp-image-3408" src="https://wordpress.org/news/files/2014/12/icon-recommended1.png" alt="" width="80" height="80" /></strong>Plugin recommendations</h5>\n<p>The plugin installer suggests plugins for you to try. Recommendations are based on the plugins you and other users have installed.</p>\n<hr />\n<h2 style="text-align: center">Under the Hood</h2>\n<h5>Complex Queries</h5>\n<p>Metadata, date, and term queries now support advanced conditional logic, like nested clauses and multiple operators — <code>A AND ( B OR C )</code>.</p>\n<h5>Customizer API</h5>\n<p>The customizer now supports conditionally showing panels and sections based on the page being previewed.</p>\n<h5><code><title></code> tags in themes</h5>\n<p><code>add_theme_support( ''title-tag'' )</code> tells WordPress to handle the complexities of document titles.</p>\n<h5>Developer Reference</h5>\n<p>Continued improvements to inline code documentation have made the <a href="https://developer.wordpress.org/reference/">developer reference</a> more complete than ever.</p>\n<hr />\n<h2 style="text-align: center">The Choir</h2>\n<p>This release was led by <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, with the help of these awesome folks. Check out some of their profiles while listening to Dinah Washington on the music service of your choice:</p>\n<a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/kawauso">Adam Harley (Kawauso)</a>, <a href="https://profiles.wordpress.org/adelval">adelval</a>, <a href="https://profiles.wordpress.org/ajay">Ajay</a>, <a href="https://profiles.wordpress.org/akeda">Akeda Bagus</a>, <a href="https://profiles.wordpress.org/xknown">Alex Concha</a>, <a href="https://profiles.wordpress.org/tellyworth">Alex Shiels</a>, <a href="https://profiles.wordpress.org/aliso">Alison Barrett</a>, <a href="https://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="https://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="https://profiles.wordpress.org/norcross">Andrew Norcross</a>, <a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/rarst">Andrey "Rarst" Savchenko</a>, <a href="https://profiles.wordpress.org/andykeith">Andy Keith</a>, <a href="https://profiles.wordpress.org/andy">Andy Skelton</a>, <a href="https://profiles.wordpress.org/atimmer">Anton Timmermans</a>, <a href="https://profiles.wordpress.org/aubreypwd">aubreypwd</a>, <a href="https://profiles.wordpress.org/barry">Barry</a>, <a href="https://profiles.wordpress.org/toszcze">Bartosz Romanowski</a>, <a href="https://profiles.wordpress.org/bassgang">bassgang</a>, <a href="https://profiles.wordpress.org/bcworkz">bcworkz</a>, <a href="https://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="https://profiles.wordpress.org/neoxx">Bernhard Riedl</a>, <a href="https://profiles.wordpress.org/bigdawggi">bigdawggi</a>, <a href="https://profiles.wordpress.org/bobbravo2">Bob Gregor</a>, <a href="https://profiles.wordpress.org/bobbingwide">bobbingwide</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone B. Gorges</a>, <a href="https://profiles.wordpress.org/bradt">Brad Touesnard</a>, <a href="https://profiles.wordpress.org/bradparbs">bradparbs</a>, <a href="https://profiles.wordpress.org/bramd">Bram Duvigneau</a>, <a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="https://profiles.wordpress.org/brasofilo">brasofilo</a>, <a href="https://profiles.wordpress.org/bravokeyl">bravokeyl</a>, <a href="https://profiles.wordpress.org/bpetty">Bryan Petty</a>, <a href="https://profiles.wordpress.org/cgaffga">cgaffga</a>, <a href="https://profiles.wordpress.org/chiragswadia">Chirag Swadia</a>, <a href="https://profiles.wordpress.org/chouby">Chouby</a>, <a href="https://profiles.wordpress.org/cmmarslender">Chris Marslender</a>, <a href="https://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="https://profiles.wordpress.org/chrisscott">Chris Scott</a>, <a href="https://profiles.wordpress.org/chriseverson">chriseverson</a>, <a href="https://profiles.wordpress.org/chrisguitarguy">chrisguitarguy</a>, <a href="https://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="https://profiles.wordpress.org/ciantic">ciantic</a>, <a href="https://profiles.wordpress.org/antorome">Comparativa de Bancos</a>, <a href="https://profiles.wordpress.org/cojennin">Connor Jennings</a>, <a href="https://profiles.wordpress.org/corvannoorloos">Cor van Noorloos</a>, <a href="https://profiles.wordpress.org/corphi">Corphi</a>, <a href="https://profiles.wordpress.org/cramdesign">cramdesign</a>, <a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="https://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>, <a href="https://profiles.wordpress.org/dannydehaan">Danny de Haan</a>, <a href="https://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="https://profiles.wordpress.org/eightface">Dave Kellam</a>, <a href="https://profiles.wordpress.org/dpe415">DaveE</a>, <a href="https://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>, <a href="https://profiles.wordpress.org/davidanderson">David Anderson</a>, <a href="https://profiles.wordpress.org/davidmarichal">David Marichal</a>, <a href="https://profiles.wordpress.org/denis-de-bernardy">Denis de Bernardy</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/dougwollison">Doug Wollison</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/drprotocols">DrProtocols</a>, <a href="https://profiles.wordpress.org/dustyf">Dustin Filippini</a>, <a href="https://profiles.wordpress.org/eatingrules">eatingrules</a>, <a href="https://profiles.wordpress.org/plocha">edik</a>, <a href="https://profiles.wordpress.org/oso96_2000">Eduardo Reveles</a>, <a href="https://profiles.wordpress.org/eliorivero">Elio Rivero</a>, <a href="https://profiles.wordpress.org/enej">enej</a>, <a href="https://profiles.wordpress.org/ericlewis">Eric Lewis</a>, <a href="https://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="https://profiles.wordpress.org/evarlese">Erica Varlese</a>, <a href="https://profiles.wordpress.org/ejdanderson">Evan Anderson</a>, <a href="https://profiles.wordpress.org/fahmiadib">Fahmi Adib</a>, <a href="https://profiles.wordpress.org/fboender">fboender</a>, <a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="https://profiles.wordpress.org/ounziw">Fumito MIZUNO</a>, <a href="https://profiles.wordpress.org/garyc40">Gary Cao</a>, <a href="https://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/genkisan">genkisan</a>, <a href="https://profiles.wordpress.org/soulseekah">Gennady Kovshenin</a>, <a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="https://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>, <a href="https://profiles.wordpress.org/vancoder">Grant Mangham</a>, <a href="https://profiles.wordpress.org/tivnet">Gregory Karpinsky (@tivnet)</a>, <a href="https://profiles.wordpress.org/hakre">hakre</a>, <a href="https://profiles.wordpress.org/hanni">hanni</a>, <a href="https://profiles.wordpress.org/helen">Helen Hou-Sandí</a>, <a href="https://profiles.wordpress.org/iandstewart">Ian Stewart</a>, <a href="https://profiles.wordpress.org/ippetkov">ippetkov</a>, <a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="https://profiles.wordpress.org/jackreichert">Jack Reichert</a>, <a href="https://profiles.wordpress.org/_jameslee">jameslee</a>, <a href="https://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="https://profiles.wordpress.org/janrenn">janrenn</a>, <a href="https://profiles.wordpress.org/jaycc">JayCC</a>, <a href="https://profiles.wordpress.org/jeffsebring">Jeff Sebring</a>, <a href="https://profiles.wordpress.org/jenmylo">Jen</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/jesin">Jesin A</a>, <a href="https://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="https://profiles.wordpress.org/jnielsendotnet">jnielsendotnet</a>, <a href="https://profiles.wordpress.org/jartes">Joan Artes</a>, <a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="https://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="https://profiles.wordpress.org/johnpbloch">John P. Bloch</a>, <a href="https://profiles.wordpress.org/johnregan3">John Regan</a>, <a href="https://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="https://profiles.wordpress.org/jond3r">Jonas Bolinder (jond3r)</a>, <a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="https://profiles.wordpress.org/shelob9">Josh Pollock</a>, <a href="https://profiles.wordpress.org/joshuaabenazer">Joshua Abenazer</a>, <a href="https://profiles.wordpress.org/jstraitiff">jstraitiff</a>, <a href="https://profiles.wordpress.org/juliobox">Julio Potier</a>, <a href="https://profiles.wordpress.org/kopepasah">Justin Kopepasah</a>, <a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="https://profiles.wordpress.org/kadamwhite">K.Adam White</a>, <a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="https://profiles.wordpress.org/kasparsd">Kaspars</a>, <a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="https://profiles.wordpress.org/kerikae">kerikae</a>, <a href="https://profiles.wordpress.org/kworthington">Kevin Worthington</a>, <a href="https://profiles.wordpress.org/kwight">Kirk Wight</a>, <a href="https://profiles.wordpress.org/kitchin">kitchin</a>, <a href="https://profiles.wordpress.org/klihelp">klihelp</a>, <a href="https://profiles.wordpress.org/knutsp">Knut Sparhell</a>, <a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/drozdz">Krzysiek Drozdz</a>, <a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="https://profiles.wordpress.org/ldebrouwer">ldebrouwer</a>, <a href="https://profiles.wordpress.org/leewillis77">Lee Willis</a>, <a href="https://profiles.wordpress.org/lpointet">lpointet</a>, <a href="https://profiles.wordpress.org/spmlucas">Lucas Karpiuk</a>, <a href="https://profiles.wordpress.org/lkwdwrd">Luke Woodward</a>, <a href="https://profiles.wordpress.org/nofearinc">Mario Peshev</a>, <a href="https://profiles.wordpress.org/mark8barnes">Mark Barnes</a>, <a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="https://profiles.wordpress.org/marventus">Marventus</a>, <a href="https://profiles.wordpress.org/iammattthomas">Matt (Thomas) Miklic</a>, <a href="https://profiles.wordpress.org/mjbanks">Matt Banks</a>, <a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="https://profiles.wordpress.org/mboynes">Matthew Boynes</a>, <a href="https://profiles.wordpress.org/mdbitz">Matthew Denton</a>, <a href="https://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="https://profiles.wordpress.org/mattonomics">mattonomics</a>, <a href="https://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="https://profiles.wordpress.org/maxcutler">Max Cutler</a>, <a href="https://profiles.wordpress.org/mcadwell">mcadwell</a>, <a href="https://profiles.wordpress.org/meloniq">meloniq</a>, <a href="https://profiles.wordpress.org/michelwppi">Michel - xiligroup dev</a>, <a href="https://profiles.wordpress.org/gradyetc">Mike Burns</a>, <a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="https://profiles.wordpress.org/mikemanger">Mike Manger</a>, <a href="https://profiles.wordpress.org/mikeschinkel">Mike Schinkel</a>, <a href="https://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="https://profiles.wordpress.org/mikecorkum">mikecorkum</a>, <a href="https://profiles.wordpress.org/mitchoyoshitaka">mitcho (Michael Yoshitaka Erlewine)</a>, <a href="https://profiles.wordpress.org/batmoo">Mohammad Jangda</a>, <a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="https://profiles.wordpress.org/mor10">Morten Rand-Hendriksen</a>, <a href="https://profiles.wordpress.org/Nao">Naoko Takano</a>, <a href="https://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>, <a href="https://profiles.wordpress.org/nendeb55">nendeb55</a>, <a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="https://profiles.wordpress.org/nicolealleyinteractivecom">Nicole Arnold</a>, <a href="https://profiles.wordpress.org/nikv">Nikhil Vimal (NikV)</a>, <a href="https://profiles.wordpress.org/nivijah">Nivi Jah</a>, <a href="https://profiles.wordpress.org/nunomorgadinho">Nuno Morgadinho</a>, <a href="https://profiles.wordpress.org/olivm">olivM</a>, <a href="https://profiles.wordpress.org/jbkkd">Omer Korner</a>, <a href="https://profiles.wordpress.org/originalexe">OriginalEXE</a>, <a href="https://profiles.wordpress.org/patricknami">patricknami</a>, <a href="https://profiles.wordpress.org/pbearne">Paul Bearne</a>, <a href="https://profiles.wordpress.org/djpaul">Paul Gibbs</a>, <a href="https://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="https://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="https://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="https://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="https://profiles.wordpress.org/nprasath002">Prasath Nadarajah</a>, <a href="https://profiles.wordpress.org/prettyboymp">prettyboymp</a>, <a href="https://profiles.wordpress.org/raamdev">Raam Dev</a>, <a href="https://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="https://profiles.wordpress.org/mauryaratan">Ram Ratan Maurya</a>, <a href="https://profiles.wordpress.org/ramonchiara">ramonchiara</a>, <a href="https://profiles.wordpress.org/rhyswynne">Rhys Wynne</a>, <a href="https://profiles.wordpress.org/ricardocorreia">Ricardo Correia</a>, <a href="https://profiles.wordpress.org/richard2222">Richard</a>, <a href="https://profiles.wordpress.org/theorboman">Richard Sweeney</a>, <a href="https://profiles.wordpress.org/iamfriendly">Richard Tape</a>, <a href="https://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>, <a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, <a href="https://profiles.wordpress.org/robmiller">robmiller</a>, <a href="https://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="https://profiles.wordpress.org/romaimperator">romaimperator</a>, <a href="https://profiles.wordpress.org/roothorick">roothorick</a>, <a href="https://profiles.wordpress.org/ruudjoyo">Ruud Laan</a>, <a href="https://profiles.wordpress.org/ryan">Ryan Boren</a>, <a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="https://profiles.wordpress.org/salcode">Sal Ferrarello</a>, <a href="https://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>, <a href="https://profiles.wordpress.org/sandyr">Sandeep</a>, <a href="https://profiles.wordpress.org/scottlee">Scott Lee</a>, <a href="https://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="https://profiles.wordpress.org/greglone">ScreenfeedFr</a>, <a href="https://profiles.wordpress.org/scribu">scribu</a>, <a href="https://profiles.wordpress.org/sdasse">sdasse</a>, <a href="https://profiles.wordpress.org/bootsz">Sean Butze</a>, <a href="https://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="https://profiles.wordpress.org/nessworthy">Sean Nessworthy</a>, <a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/shahpranaf">shahpranaf</a>, <a href="https://profiles.wordpress.org/shinichin">ShinichiN</a>, <a href="https://profiles.wordpress.org/pross">Simon Prosser</a>, <a href="https://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="https://profiles.wordpress.org/siobhan">Siobhan</a>, <a href="https://profiles.wordpress.org/siobhyb">Siobhan Bamber (siobhyb)</a>, <a href="https://profiles.wordpress.org/sirzooro">sirzooro</a>, <a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="https://profiles.wordpress.org/sonjanyc">sonjanyc</a>, <a href="https://profiles.wordpress.org/spencerfinnell">Spencer Finnell</a>, <a href="https://profiles.wordpress.org/piontkowski">Spencer Piontkowski</a>, <a href="https://profiles.wordpress.org/stephdau">Stephane Daury</a>, <a href="https://profiles.wordpress.org/stephcook22">stephcook22</a>, <a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="https://profiles.wordpress.org/stephenharris">Stephen Harris</a>, <a href="https://profiles.wordpress.org/sbruner">Steve Bruner</a>, <a href="https://profiles.wordpress.org/stevenkword">Steven Word</a>, <a href="https://profiles.wordpress.org/iamtakashi">Takashi Irie</a>, <a href="https://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>, <a href="https://profiles.wordpress.org/tanner-m">Tanner Moushey</a>, <a href="https://profiles.wordpress.org/tlovett1">Taylor Lovett</a>, <a href="https://profiles.wordpress.org/tbrams">tbrams</a>, <a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="https://profiles.wordpress.org/tomauger">Tom Auger</a>, <a href="https://profiles.wordpress.org/willmot">Tom Willmot</a>, <a href="https://profiles.wordpress.org/topher1kenobe">Topher</a>, <a href="https://profiles.wordpress.org/topquarky">topquarky</a>, <a href="https://profiles.wordpress.org/zodiac1978">Torsten Landsiedel</a>, <a href="https://profiles.wordpress.org/toru">Toru Miki</a>, <a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="https://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>, <a href="https://profiles.wordpress.org/undergroundnetwork">undergroundnetwork</a>, <a href="https://profiles.wordpress.org/varunagw">VarunAgw</a>, <a href="https://profiles.wordpress.org/wawco">wawco</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/wokamoto">wokamoto</a>, <a href="https://profiles.wordpress.org/xsonic">xsonic</a>, <a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="https://profiles.wordpress.org/yurivictor">Yuri Victor</a>, <a href="https://profiles.wordpress.org/zbtirrell">Zach Tirrell</a>, and <a href="https://profiles.wordpress.org/vanillalounge">Ze Fontainhas</a>.\n<p>There were 283 contributors to this release, again a new high.</p>\n<p>If you want to help out or follow along, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>.</p>\n<p>Thanks for choosing WordPress. Happy holidays and see you next year for version 4.2!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:46:"https://wordpress.org/news/2014/12/dinah/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress 4.1 Release Candidate 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:78:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 18 Dec 2014 02:22:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3411";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:429:"The next release candidate for WordPress 4.1 is now available for testing. Seventy changes have gone in since the first release candidate. With no known issues left, we plan to release 4.1 tomorrow, December 18. To test, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the release candidate here (zip). If you’d like to learn more about […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"John Blackbourn";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1465:"<p>The next release candidate for WordPress 4.1 is now available for testing.</p>\n<p><a href="https://core.trac.wordpress.org/log/trunk?rev=30961&stop_rev=30827">Seventy changes</a> have gone in since the <a href="https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/">first release candidate</a>. With no known issues left, we plan to release 4.1 tomorrow, December 18.</p>\n<p>To test, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.1-RC3.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.1, visit the updated About screen in your dashboard (<strong><img src="https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png" alt="" width="16" height="16" /> → About</strong> in the toolbar) and also check out <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">the Beta 1 post</a>.</p>\n<p><strong>Plugin authors:</strong> Remember to test your plugins against 4.1, and if they’re compatible, make sure they are marked as tested up to 4.1. Be sure to follow along the core development blog; we’ve been posting <a href="https://make.wordpress.org/core/tag/4-1-dev-notes/">notes for developers for 4.1</a> as always.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:74:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"WordPress 4.1 Release Candidate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:76:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 11 Dec 2014 11:52:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:3:"4.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3375";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:341:"The release candidate for WordPress 4.1 is now available. We’ve made a lot of refinements over the last few weeks. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.1 on Tuesday, December 16, but we need your […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"John Blackbourn";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2301:"<p>The release candidate for WordPress 4.1 is now available.</p>\n<p>We’ve made a lot of refinements over the last few weeks. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.1 on Tuesday, December 16, but we need your help to get there. If you haven’t tested 4.1 yet, now is the time! (Please though, not on your live site unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p>To test WordPress 4.1 RC1, you can use the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin or you can <a href="https://wordpress.org/wordpress-4.1-RC1.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.1, visit the About screen in your dashboard (<strong><img src="https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png" alt="" width="16" height="16" /> → About</strong> in the toolbar) or check out the <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">beta announcement</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.1 and update your plugin’s <em>Tested up to</em> version in the readme to 4.1 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href="https://make.wordpress.org/core/">follow along the core development blog</a>, where we’ll continue to post <a href="https://make.wordpress.org/core/tag/4-1-dev-notes/">notes for developers</a> for 4.1. (For example: if you’ve written a child theme for Twenty Fifteen, some of the new pagination functions have been renamed for clarity.)</p>\n<p><em>Testing four point one</em><br />\n<em>Why are we up at this hour?</em><br />\n<em>Code is poetry</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:72:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:32:"WordPress 4.0.1 Security Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2014/11/wordpress-4-0-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2014/11/wordpress-4-0-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Nov 2014 18:55:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3363";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:345:"WordPress 4.0.1 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3395:"<p>WordPress 4.0.1 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be updated to 3.9.3, 3.8.5, or 3.7.5 to keep everything secure. (We don’t support older versions, so please update to 4.0.1 for the latest and greatest.)</p>\n<p>WordPress versions 3.9.2 and earlier are affected by a critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. This was reported by <a href="http://klikki.fi/">Jouko Pynnonen</a>. This issue does not affect version 4.0, but version 4.0.1 does address these eight security issues:</p>\n<ul>\n<li>Three cross-site scripting issues that a contributor or author could use to compromise a site. Discovered by <a href="http://joncave.co.uk/">Jon Cave</a>, <a href="http://www.miqrogroove.com/">Robert Chapin</a>, and <a href="https://johnblackbourn.com/">John Blackbourn</a> of the WordPress security team.</li>\n<li>A cross-site request forgery that could be used to trick a user into changing their password.</li>\n<li>An issue that could lead to a denial of service when passwords are checked. Reported by <a href="http://www.behindthefirewalls.com/">Javier Nieto Arevalo</a> and <a href="http://www.devconsole.info/">Andres Rojas Guerrero</a>.</li>\n<li>Additional protections for server-side request forgery attacks when WordPress makes HTTP requests. Reported by Ben Bidner (vortfu).</li>\n<li>An extremely unlikely hash collision could allow a user’s account to be compromised, that also required that they haven’t logged in since 2008 (I wish I were kidding). Reported by <a href="http://david.dw-perspective.org.uk">David Anderson</a>.</li>\n<li>WordPress now invalidates the links in a password reset email if the user remembers their password, logs in, and changes their email address. Reported separately by <a href="https://twitter.com/MomenBassel">Momen Bassel</a>, <a href="http://c0dehouse.blogspot.in/">Tanoy Bose</a>, and <a href="https://managewp.com/">Bojan Slavković of ManageWP</a>.</li>\n</ul>\n<p>Version 4.0.1 also fixes 23 bugs with 4.0, and we’ve made two hardening changes, including better validation of EXIF data we are extracting from uploaded photos. Reported by <a href="http://www.securesolutions.no/">Chris Andrè Dale</a>.</p>\n<p>We appreciated the <a href="https://codex.wordpress.org/FAQ_Security">responsible disclosure</a> of these issues directly to our security team. For more information, see the <a href="https://codex.wordpress.org/Version_4.0.1">release notes</a> or consult the <a href="https://core.trac.wordpress.org/log/branches/4.0?rev=30475&stop_rev=29710">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.0.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n<p><em>Already testing WordPress 4.1? The second beta is now available (<a href="https://wordpress.org/wordpress-4.1-beta2.zip">zip</a>) and it contains these security fixes. For more on 4.1, see <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">the beta 1 announcement post</a>.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/11/wordpress-4-0-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.1 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Nov 2014 22:35:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:4:"beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3352";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:346:"Welcome, everyone, to WordPress 4.1 Beta 1! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.1, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"John Blackbourn";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3409:"<p>Welcome, everyone, to WordPress 4.1 Beta 1!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.1, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="//wordpress.org/wordpress-4.1-beta1.zip">download the beta here</a> (zip).</p>\n<p>WordPress 4.1 is due for release next month, so we need your help with testing. Here are some highlights of what to test:</p>\n<ul>\n<li>Our beautiful new default theme, <a href="https://make.wordpress.org/core/2014/09/09/twenty-fifteen/">Twenty Fifteen</a>. It’s a clean, mobile-first, blog-focused theme designed through simplicity.</li>\n<li>A new <a href="https://make.wordpress.org/core/2014/11/11/focus-v2-demo-video/">distraction-free writing mode for the editor</a>. It’s enabled by default for beta, and we’d love feedback on it.</li>\n<li>The ability to automatically install new language packs right from the General Settings screen (available as long as your site’s filesystem is writable).</li>\n<li>A new inline formatting toolbar for images embedded into posts.</li>\n</ul>\n<p>There have been a lot of changes for developers to test as well:</p>\n<ul>\n<li><a href="https://make.wordpress.org/core/2014/10/20/update-on-query-improvements-in-4-1/">Improvements to meta, date, comment, and taxonomy queries</a>, including complex (nested, multiple relation) queries; and querying comment types (<a href="https://core.trac.wordpress.org/ticket/12668">#12668</a>).</li>\n<li>A single term shared across multiple taxonomies is now split into two when updated. For more, <a href="https://make.wordpress.org/core/2014/11/12/an-update-on-the-taxonomy-roadmap/">see this post</a>, <a href="https://core.trac.wordpress.org/ticket/5809">#5809</a>, and <a href="https://core.trac.wordpress.org/ticket/30335">#30335</a>.</li>\n<li>A new and better way for <a href="https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/">themes to handle title tags</a>.</li>\n<li>Several <a href="https://make.wordpress.org/core/2014/10/27/toward-a-complete-javascript-api-for-the-customizer/">improvements to the Customizer API</a>, including contextual panels and sections, and JavaScript templates for controls.</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.1, <a href="https://make.wordpress.org/core/tag/week-in-core/">check out the weekly review posts</a> on the main development blog.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on the WordPress Trac</a>. There, you can also find <a href="https://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.1">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Twenty Fifteen theme</em><br />\n<em> The beautiful face which hides</em><br />\n<em> Many improvements</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"Watch WordCamp San Francisco Livestream";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2014/10/wcsf-livestream/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2014/10/wcsf-livestream/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Oct 2014 20:18:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3341";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:381:"WordCamp San Francisco is the official annual WordPress conference, gathering the community every year since 2006. This is the time when Matt Mullenweg addresses the community in his annual State of the Word presentation – a recap of the year in WordPress and giving us a glimpse into its future. This year the speaker lineup is stellar. There will be talks by […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"Nikolay Bachiyski";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1975:"<p><a title="2014 edition" href="http://2014.sf.wordcamp.org">WordCamp San Francisco</a> is the official annual WordPress conference, gathering the community every year <a title="An old website for a WordPress long time ago" href="http://2006.sf.wordcamp.org">since 2006</a>. This is the time when Matt Mullenweg addresses the community in his annual <a href="http://wordpress.tv/?s=state+of+the+word">State of the Word</a> presentation – a recap of the year in WordPress and giving us a glimpse into its future.</p>\n<p>This year the speaker lineup is stellar. There will be talks by three of the lead WordPress developers: <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-andrew-nacin">Andrew Nacin</a>, <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-helen-hou-sandi">Helen Hou-Sandí</a>, and <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-mark-jaquith">Mark Jaquith</a>. We’re also looking forward to speakers like <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jenny-lawson">Jenny Lawson</a>, also known as The Bloggess, and <a href="http://2014.sf.wordcamp.org/speaker/chris-lema/">Chris Lema</a>. If you’re at all interested in the web, you will appreciate the appearance of <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jeff-veen">Jeff Veen</a> – one of the creators of Google Analytics and co-founder of Typekit.</p>\n<p>Even though San Francisco is far far away for most of you, you can still be part of the fun and watch all presentations in real-time via livestream:</p>\n<p><a href="http://2014.sf.wordcamp.org/tickets/">Get a livestream ticket and watch all talks from WordCamp San Francisco live</a></p>\n<p>If you hurry, you can get one of the special livestream tickets, including a WordCamp San Francisco 2104 t-shirt. You can find all the technical details and start times <a href="http://2014.sf.wordcamp.org/live-stream/">at the WordCamp San Francisco website</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/10/wcsf-livestream/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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 4.0 “Benny”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"https://wordpress.org/news/2014/09/benny/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:50:"https://wordpress.org/news/2014/09/benny/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 04 Sep 2014 17:05:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3296";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:370:"Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader Benny Goodman, is available for download or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:23571:"<p>Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader <a href="http://en.wikipedia.org/wiki/Benny_Goodman">Benny Goodman</a>, is available <a href="https://wordpress.org/download/">for download</a> or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience we think you’ll enjoy.</p>\n<div id="v-bUdzKMro-1" class="video-player"><embed id="v-bUdzKMro-1-video" src="https://v0.wordpress.com/player.swf?v=1.04&guid=bUdzKMro&isDynamicSeeking=true" type="application/x-shockwave-flash" width="692" height="388" title="Introducing WordPress 4.0 "Benny"" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div>\n<hr />\n<h2 style="text-align: center">Manage your media with style</h2>\n<p><img class="alignnone size-full wp-image-3316" src="https://wordpress.org/news/files/2014/09/media.jpg" alt="Media Library" width="1000" height="586" />Explore your uploads in a beautiful, endless grid. A new details preview makes viewing and editing any amount of media in sequence a snap.</p>\n<hr />\n<h2 style="text-align: center">Working with embeds has never been easier</h2>\n<div style="width: 632px; " class="wp-video"><!--[if lt IE 9]><script>document.createElement(''video'');</script><![endif]-->\n<video class="wp-video-shortcode" id="video-3296-1" width="632" height="445" autoplay="1" preload="metadata" controls="controls"><source type="video/mp4" src="//s.w.org/images/core/4.0/embed.mp4?_=1" /><source type="video/webm" src="//s.w.org/images/core/4.0/embed.webm?_=1" /><source type="video/ogg" src="//s.w.org/images/core/4.0/embed.ogv?_=1" /><a href="//s.w.org/images/core/4.0/embed.mp4">//s.w.org/images/core/4.0/embed.mp4</a></video></div>\n<p>Paste in a YouTube URL on a new line, and watch it magically become an embedded video. Now try it with a tweet. Oh yeah — embedding has become a visual experience. The editor shows a true preview of your embedded content, saving you time and giving you confidence.</p>\n<p>We’ve expanded the services supported by default, too — you can embed videos from CollegeHumor, playlists from YouTube, and talks from TED. <a href="https://codex.wordpress.org/Embeds">Check out all of the embeds</a> that WordPress supports.</p>\n<hr />\n<h2 style="text-align: center">Focus on your content</h2>\n<div style="width: 632px; " class="wp-video"><video class="wp-video-shortcode" id="video-3296-2" width="632" height="356" autoplay="1" preload="metadata" controls="controls"><source type="video/mp4" src="//s.w.org/images/core/4.0/focus.mp4?_=2" /><source type="video/webm" src="//s.w.org/images/core/4.0/focus.webm?_=2" /><source type="video/ogg" src="//s.w.org/images/core/4.0/focus.ogv?_=2" /><a href="//s.w.org/images/core/4.0/focus.mp4">//s.w.org/images/core/4.0/focus.mp4</a></video></div>\n<p>Writing and editing is smoother and more immersive with an editor that expands to fit your content as you write, and keeps the formatting tools available at all times.</p>\n<hr />\n<h2 style="text-align: center">Finding the right plugin</h2>\n<p><img class="aligncenter size-large wp-image-3309" src="https://wordpress.org/news/files/2014/09/add-plugin1-1024x600.png" alt="Add plugins" width="692" height="405" /></p>\n<p>There are more than 30,000 free and open source plugins in the WordPress plugin directory. WordPress 4.0 makes it easier to find the right one for your needs, with new metrics, improved search, and a more visual browsing experience.</p>\n<hr />\n<h2 style="text-align: center">The Ensemble</h2>\n<p>This release was led by <a href="http://helenhousandi.com">Helen Hou-Sandí</a>, with the help of these fine individuals. There are 275 contributors with props in this release, a new high. Pull up some Benny Goodman on your music service of choice, as a bandleader or in one of his turns as a classical clarinetist, and check out some of their profiles:</p>\n<p><a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>, <a href="https://profiles.wordpress.org/viper007bond">Alex Mills (Viper007Bond)</a>, <a href="https://profiles.wordpress.org/tellyworth">Alex Shiels</a>, <a href="https://profiles.wordpress.org/alexanderrohmann">Alexander Rohmann</a>, <a href="https://profiles.wordpress.org/aliso">Alison Barrett</a>, <a href="https://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="https://profiles.wordpress.org/amit">Amit Gupta</a>, <a href="https://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/andrezrv">Andres Villarreal</a>, <a href="https://profiles.wordpress.org/zamfeer">Andrew Mowe</a>, <a href="https://profiles.wordpress.org/sumobi">Andrew Munro (sumobi)</a>, <a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/andy">Andy Skelton</a>, <a href="https://profiles.wordpress.org/ankit-k-gupta">Ankit K Gupta</a>, <a href="https://profiles.wordpress.org/atimmer">Anton Timmermans</a>, <a href="https://profiles.wordpress.org/arnee">Arne Brachhold</a>, <a href="https://profiles.wordpress.org/aubreypwd">aubreypwd</a>, <a href="https://profiles.wordpress.org/filosofo">Austin Matzko</a>, <a href="https://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="https://profiles.wordpress.org/kau-boy">Bernhard Kau</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="https://profiles.wordpress.org/bradyvercher">Brady Vercher</a>, <a href="https://profiles.wordpress.org/bramd">Bram Duvigneau</a>, <a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="https://profiles.wordpress.org/krogsgard">Brian Krogsgard</a>, <a href="https://profiles.wordpress.org/brianlayman">Brian Layman</a>, <a href="https://profiles.wordpress.org/rzen">Brian Richards</a>, <a href="https://profiles.wordpress.org/camdensegal">Camden Segal</a>, <a href="https://profiles.wordpress.org/sixhours">Caroline Moore</a>, <a href="https://profiles.wordpress.org/mackensen">Charles Fulton</a>, <a href="https://profiles.wordpress.org/chouby">Chouby</a>, <a href="https://profiles.wordpress.org/chrico">ChriCo</a>, <a href="https://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="https://profiles.wordpress.org/chrisl27">chrisl27</a>, <a href="https://profiles.wordpress.org/caxelsson">Christian Axelsson</a>, <a href="https://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="https://profiles.wordpress.org/boda1982">Christopher Spires</a>, <a href="https://profiles.wordpress.org/clifgriffin">Clifton Griffin</a>, <a href="https://profiles.wordpress.org/jupiterwise">Corey McKrill</a>, <a href="https://profiles.wordpress.org/corphi">Corphi</a>, <a href="https://profiles.wordpress.org/extendwings">Daisuke Takahashi</a>, <a href="https://profiles.wordpress.org/ghost1227">Dan Griffiths</a>, <a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="https://profiles.wordpress.org/danielhuesken">Daniel Husken</a>, <a href="https://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>, <a href="https://profiles.wordpress.org/dannydehaan">Danny de Haan</a>, <a href="https://profiles.wordpress.org/dkotter">Darin Kotter</a>, <a href="https://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="https://profiles.wordpress.org/dllh">Daryl L. L. Houston (dllh)</a>, <a href="https://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>, <a href="https://profiles.wordpress.org/dlh">David Herrera</a>, <a href="https://profiles.wordpress.org/dnaber-de">David Naber</a>, <a href="https://profiles.wordpress.org/davidthemachine">DavidTheMachine</a>, <a href="https://profiles.wordpress.org/debaat">DeBAAT</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/donncha">Donncha O Caoimh</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/dustyn">Dustyn Doyle</a>, <a href="https://profiles.wordpress.org/eddiemoya">Eddie Moya</a>, <a href="https://profiles.wordpress.org/oso96_2000">Eduardo Reveles</a>, <a href="https://profiles.wordpress.org/edwin-at-studiojoyocom">Edwin Siebel</a>, <a href="https://profiles.wordpress.org/ehg">ehg</a>, <a href="https://profiles.wordpress.org/erayalakese">erayalakese</a>, <a href="https://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="https://profiles.wordpress.org/ebinnion">Eric Binnion</a>, <a href="https://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="https://profiles.wordpress.org/ejdanderson">Evan Anderson</a>, <a href="https://profiles.wordpress.org/eherman24">Evan Herman</a>, <a href="https://profiles.wordpress.org/fab1en">Fabien Quatravaux</a>, <a href="https://profiles.wordpress.org/fahmiadib">Fahmi Adib</a>, <a href="https://profiles.wordpress.org/feedmeastraycat">feedmeastraycat</a>, <a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="https://profiles.wordpress.org/garhdez">garhdez</a>, <a href="https://profiles.wordpress.org/garyc40">Gary Cao</a>, <a href="https://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/garza">garza</a>, <a href="https://profiles.wordpress.org/gauravmittal1995">gauravmittal1995</a>, <a href="https://profiles.wordpress.org/gavra">Gavrisimo</a>, <a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="https://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>, <a href="https://profiles.wordpress.org/vancoder">Grant Mangham</a>, <a href="https://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="https://profiles.wordpress.org/bordoni">Gustavo Bordoni</a>, <a href="https://profiles.wordpress.org/harrym">harrym</a>, <a href="https://profiles.wordpress.org/hebbet">hebbet</a>, <a href="https://profiles.wordpress.org/hinnerk">Hinnerk Altenburg</a>, <a href="https://profiles.wordpress.org/hlashbrooke">Hugh Lashbrooke</a>, <a href="https://profiles.wordpress.org/iljoja">iljoja</a>, <a href="https://profiles.wordpress.org/imath">imath</a>, <a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="https://profiles.wordpress.org/issuu">issuu</a>, <a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="https://profiles.wordpress.org/jacklenox">Jack Lenox</a>, <a href="https://profiles.wordpress.org/jackreichert">Jack Reichert</a>, <a href="https://profiles.wordpress.org/jacobdubail">Jacob Dubail</a>, <a href="https://profiles.wordpress.org/janhenkg">JanHenkG</a>, <a href="https://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="https://profiles.wordpress.org/jwenerd">Jared Wenerd</a>, <a href="https://profiles.wordpress.org/jaza613">Jaza613</a>, <a href="https://profiles.wordpress.org/jeffstieler">Jeff Stieler</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/jpry">Jeremy Pry</a>, <a href="https://profiles.wordpress.org/slimndap">Jeroen Schmit</a>, <a href="https://profiles.wordpress.org/jerrysarcastic">Jerry Bates (jerrysarcastic)</a>, <a href="https://profiles.wordpress.org/jesin">Jesin A</a>, <a href="https://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="https://profiles.wordpress.org/jesper800">Jesper van Engelen</a>, <a href="https://profiles.wordpress.org/engelen">Jesper van Engelen</a>, <a href="https://profiles.wordpress.org/jessepollak">Jesse Pollak</a>, <a href="https://profiles.wordpress.org/jgadbois">jgadbois</a>, <a href="https://profiles.wordpress.org/jartes">Joan Artes</a>, <a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="https://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="https://profiles.wordpress.org/jkudish">Joey Kudish</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="https://profiles.wordpress.org/johnzanussi">John Zanussi</a>, <a href="https://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="https://profiles.wordpress.org/jonnyauk">jonnyauk</a>, <a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="https://profiles.wordpress.org/softmodeling">Jordi Cabot</a>, <a href="https://profiles.wordpress.org/jjeaton">Josh Eaton</a>, <a href="https://profiles.wordpress.org/tai">JOTAKI Taisuke</a>, <a href="https://profiles.wordpress.org/juliobox">Julio Potier</a>, <a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="https://profiles.wordpress.org/jtsternberg">Justin Sternberg</a>, <a href="https://profiles.wordpress.org/greenshady">Justin Tadlock</a>, <a href="https://profiles.wordpress.org/kadamwhite">K.Adam White</a>, <a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="https://profiles.wordpress.org/kapeels">kapeels</a>, <a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="https://profiles.wordpress.org/kevinlangleyjr">Kevin Langley</a>, <a href="https://profiles.wordpress.org/kworthington">Kevin Worthington</a>, <a href="https://profiles.wordpress.org/kpdesign">Kim Parsell</a>, <a href="https://profiles.wordpress.org/kwight">Kirk Wight</a>, <a href="https://profiles.wordpress.org/kitchin">kitchin</a>, <a href="https://profiles.wordpress.org/ixkaito">Kite</a>, <a href="https://profiles.wordpress.org/knutsp">Knut Sparhell</a>, <a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/kurtpayne">Kurt Payne</a>, <a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="https://profiles.wordpress.org/leewillis77">Lee Willis</a>, <a href="https://profiles.wordpress.org/lessbloat">lessbloat</a>, <a href="https://profiles.wordpress.org/layotte">Lew Ayotte</a>, <a href="https://profiles.wordpress.org/lritter">lritter</a>, <a href="https://profiles.wordpress.org/lukecarbis">Luke Carbis</a>, <a href="https://profiles.wordpress.org/lgedeon">Luke Gedeon</a>, <a href="https://profiles.wordpress.org/m_i_n">m_i_n</a>, <a href="https://profiles.wordpress.org/funkatronic">Manny Fleurmond</a>, <a href="https://profiles.wordpress.org/targz-1">Manuel Schmalstieg</a>, <a href="https://profiles.wordpress.org/clorith">Marius (Clorith)</a>, <a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="https://profiles.wordpress.org/mjbanks">Matt Banks</a>, <a href="https://profiles.wordpress.org/sivel">Matt Martz</a>, <a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="https://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>, <a href="https://profiles.wordpress.org/mboynes">Matthew Boynes</a>, <a href="https://profiles.wordpress.org/mdbitz">Matthew Denton</a>, <a href="https://profiles.wordpress.org/mattheweppelsheimer">Matthew Eppelsheimer</a>, <a href="https://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="https://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="https://profiles.wordpress.org/meekyhwang">meekyhwang</a>, <a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="https://profiles.wordpress.org/mdawaffe">Michael Adams (mdawaffe)</a>, <a href="https://profiles.wordpress.org/michalzuber">michalzuber</a>, <a href="https://profiles.wordpress.org/midxcat">midxcat</a>, <a href="https://profiles.wordpress.org/mauteri">Mike Auteri</a>, <a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="https://profiles.wordpress.org/mikejolley">Mike Jolley</a>, <a href="https://profiles.wordpress.org/mikelittle">Mike Little</a>, <a href="https://profiles.wordpress.org/mikemanger">Mike Manger</a>, <a href="https://profiles.wordpress.org/mnelson4">Mike Nelson</a>, <a href="https://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="https://profiles.wordpress.org/mikeyarce">Mikey Arce</a>, <a href="https://profiles.wordpress.org/dimadin">Milan Dinic</a>, <a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="https://profiles.wordpress.org/usermrpapa">Mr Papa</a>, <a href="https://profiles.wordpress.org/mrmist">mrmist</a>, <a href="https://profiles.wordpress.org/m_uysl">Mustafa Uysal</a>, <a href="https://profiles.wordpress.org/muvimotv">MuViMoTV</a>, <a href="https://profiles.wordpress.org/nabil_kadimi">nabil_kadimi</a>, <a href="https://profiles.wordpress.org/namibia">Namibia</a>, <a href="https://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>, <a href="https://profiles.wordpress.org/nd987">nd987</a>, <a href="https://profiles.wordpress.org/neil_pie">Neil Pie</a>, <a href="https://profiles.wordpress.org/niallkennedy">Niall Kennedy</a>, <a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="https://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>, <a href="https://profiles.wordpress.org/schoenwaldnils">Nils Schonwald</a>, <a href="https://profiles.wordpress.org/ninos-ego">Ninos</a>, <a href="https://profiles.wordpress.org/nvwd">Nowell VanHoesen</a>, <a href="https://profiles.wordpress.org/compute">Patrick Hesselberg</a>, <a href="https://profiles.wordpress.org/pbearne">Paul Bearne</a>, <a href="https://profiles.wordpress.org/pdclark">Paul Clark</a>, <a href="https://profiles.wordpress.org/paulschreiber">Paul Schreiber</a>, <a href="https://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="https://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="https://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="https://profiles.wordpress.org/philipjohn">Philip John</a>, <a href="https://profiles.wordpress.org/senlin">Piet Bos</a>, <a href="https://profiles.wordpress.org/psoluch">Piotr Soluch</a>, <a href="https://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="https://profiles.wordpress.org/purzlbaum">purzlbaum</a>, <a href="https://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="https://profiles.wordpress.org/rclations">RC Lations</a>, <a href="https://profiles.wordpress.org/iamfriendly">Richard Tape</a>, <a href="https://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>, <a href="https://profiles.wordpress.org/rob1n">rob1n</a>, <a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, <a href="https://profiles.wordpress.org/rdall">Robert Dall</a>, <a href="https://profiles.wordpress.org/harmr">RobertHarm</a>, <a href="https://profiles.wordpress.org/rohan013">Rohan Rawat</a>, <a href="https://profiles.wordpress.org/rhurling">Rouven Hurling</a>, <a href="https://profiles.wordpress.org/ruudjoyo">Ruud Laan</a>, <a href="https://profiles.wordpress.org/ryan">Ryan Boren</a>, <a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="https://profiles.wordpress.org/sammybeats">Sam Brodie</a>, <a href="https://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>, <a href="https://profiles.wordpress.org/sathishn">Sathish Nagarajan</a>, <a href="https://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="https://profiles.wordpress.org/greglone">ScreenfeedFr</a>, <a href="https://profiles.wordpress.org/scribu">scribu</a>, <a href="https://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="https://profiles.wordpress.org/nessworthy">Sean Nessworthy</a>, <a href="https://profiles.wordpress.org/sergejmueller">Sergej Muller</a>, <a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/shanebp">shanebp</a>, <a href="https://profiles.wordpress.org/sharonaustin">Sharon Austin</a>, <a href="https://profiles.wordpress.org/shaunandrews">Shaun Andrews</a>, <a href="https://profiles.wordpress.org/simonp303">Simon Pollard</a>, <a href="https://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="https://profiles.wordpress.org/slobodanmanic">Slobodan Manic</a>, <a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="https://profiles.wordpress.org/sphoid">sphoid</a>, <a href="https://profiles.wordpress.org/stephdau">Stephane Daury</a>, <a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="https://profiles.wordpress.org/stompweb">Steven Jones</a>, <a href="https://profiles.wordpress.org/strangerstudios">strangerstudios</a>, <a href="https://profiles.wordpress.org/5um17">Sumit Singh</a>, <a href="https://profiles.wordpress.org/t4k1s">t4k1s</a>, <a href="https://profiles.wordpress.org/iamtakashi">Takashi Irie</a>, <a href="https://profiles.wordpress.org/taylorde">Taylor Dewey</a>, <a href="https://profiles.wordpress.org/thomasvanderbeek">Thomas van der Beek</a>, <a href="https://profiles.wordpress.org/tillkruess">Till Kruss</a>, <a href="https://profiles.wordpress.org/codenameeli">Tim 'Eli' Dalbey</a>, <a href="https://profiles.wordpress.org/tmeister">tmeister</a>, <a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="https://profiles.wordpress.org/tjnowell">Tom J Nowell</a>, <a href="https://profiles.wordpress.org/willmot">Tom Willmot</a>, <a href="https://profiles.wordpress.org/topher1kenobe">Topher</a>, <a href="https://profiles.wordpress.org/torresga">torresga</a>, <a href="https://profiles.wordpress.org/liljimmi">Tracy Levesque</a>, <a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="https://profiles.wordpress.org/treyhunner">treyhunner</a>, <a href="https://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>, <a href="https://profiles.wordpress.org/vinod-dalvi">Vinod Dalvi</a>, <a href="https://profiles.wordpress.org/vlajos">vlajos</a>, <a href="https://profiles.wordpress.org/voldemortensen">voldemortensen</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/winterdev">winterDev</a>, <a href="https://profiles.wordpress.org/wojtekszkutnik">Wojtek Szkutnik</a>, <a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="https://profiles.wordpress.org/katzwebdesign">Zack Katz</a>, <a href="https://profiles.wordpress.org/tollmanz">Zack Tollman</a>, and <a href="https://profiles.wordpress.org/zoerooney">Zoe Rooney</a>. Also thanks to <a href="http://michaelpick.wordpress.com/">Michael Pick</a> for producing the release video, and Helen with <a href="http://adriansandi.com">Adrián Sandí</a> for the music.</p>\n<p>If you want to follow along or help out, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.1!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:46:"https://wordpress.org/news/2014/09/benny/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:31:"WordPress 4.0 Release Candidate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:76:"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Aug 2014 12:20:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3287";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:321:"The first release candidate for WordPress 4.0 is now available! In RC 1, we’ve made refinements to what we’ve been working on for this release. Check out the Beta 1 announcement post for more details on those features. We hope to ship WordPress 4.0 next week, but we need your help to get there. If you […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2134:"<p>The first release candidate for WordPress 4.0 is now available!</p>\n<p>In RC 1, we’ve made refinements to what we’ve been working on for this release. Check out the <a href="https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">Beta 1 announcement post</a> for more details on those features. We hope to ship WordPress 4.0 <em>next week</em>, but we need your help to get there. If you haven’t tested 4.0 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p>To test WordPress 4.0 RC1, try the <a href="https://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.0-RC1.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.0, visit the awesome About screen in your dashboard (<strong><img src="https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692" alt="" width="16" height="16" /> → About</strong> in the toolbar).</p>\n<p><strong>Developers,</strong> please test your plugins and themes against WordPress 4.0 and update your plugin’s <em>Tested up to</em> version in the readme to 4.0 before next week. If you find compatibility problems, please be sure to post any issues to the support forums so we can figure those out before the final release. You also may want to <a href="https://make.wordpress.org/core/2014/08/21/introducing-plugin-icons-in-the-plugin-installer/">give your plugin an icon</a>, which we launched last week and will appear in the dashboard along with banners.</p>\n<p><em>It is almost time</em><br />\n<em> For the 4.0 release</em><br />\n<em> And its awesomeness</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:72:"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.0 Beta 4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 15 Aug 2014 05:06:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3280";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:353:"The fourth and likely final beta for WordPress 4.0 is now available. We’ve made more than 250 changes in the past month, including: Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes. Better handling of small screens in the media library modals. A separate bulk selection mode […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2003:"<p>The fourth and likely final beta for WordPress 4.0 is now available. We’ve made <a href="https://core.trac.wordpress.org/log?rev=29496&stop_rev=29229&limit=300">more than 250 changes</a> in the past month, including:</p>\n<ul>\n<li>Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes.</li>\n<li>Better handling of small screens in the media library modals.</li>\n<li>A separate bulk selection mode for the media library grid view.</li>\n<li>Improvements to the installation language selector.</li>\n<li>Visual tweaks to plugin details and customizer panels.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for a release this month, which means the next week will be critical for identifying and squashing bugs. If you’re just joining us, please see <a href="https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 4.0 yet, now is the time — and be sure to update the “tested up to” version for your plugins so they’re listed as compatible with 4.0.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the <a href="https://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.0-beta4.zip">download the beta here</a> (zip).</p>\n<p><em>We are working hard</em><br />\n<em>To finish up 4.0<br />\n</em><em>Will you help us too?</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:32:"https://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Thu, 19 Feb 2015 10:01:34 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:10:"x-pingback";s:37:"https://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Wed, 18 Feb 2015 23:40:39 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20150218170729";}', 'no');
INSERT INTO `wp_hawkd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(585, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1424383299', 'no'),
(586, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1424340099', 'no'),
(587, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1424383301', 'no');
INSERT INTO `wp_hawkd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(588, '_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:61:"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress Planet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:28:"http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:47:"WordPress Planet - http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:50:{i:0;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:49:"WPTavern: WordPress 4.1.1 Released, Fixes 21 Bugs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=39243";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/wordpress-4-1-1-released-fixes-21-bugs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2517:"<p>WordPress 4.1.1 <a title="https://wordpress.org/news/2015/02/wordpress-4-1-1/" href="https://wordpress.org/news/2015/02/wordpress-4-1-1/">is available</a> and fixes 21 bugs. According to Andrew Nacin who published the announcement, 4.1 was a smooth-sailing release and has been downloaded over 14 million times within the last two months. One of the bugs fixed<span class="s1"> is an issue where a tag and a category with the same name could get muddled and prevent each other from being updated. </span></p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/WP41DownloadCount.png" rel="prettyphoto[39243]"><img class="size-full wp-image-39245" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/WP41DownloadCount.png?resize=956%2C371" alt="WordPress 4.1 Download Count" /></a>WordPress 4.1 Download Count\n<p>Updates are slowly rolling out and if your site is configured to receive automatic updates, it should update within the next 72 hours. If not, visit <strong>Dashboard → Updates</strong> and click <strong>Update Now</strong> to manually trigger the update routine.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/KimParsell.png" rel="prettyphoto[39243]"><img class="size-full wp-image-36619" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/KimParsell.png?resize=655%2C418" alt="WordCamp San Francisco 2014 By Sheri Bigelow" /></a>WordCamp San Francisco 2014 By Sheri Bigelow\n<p>There are a handful of contributors to this release, but the one that sticks out is Kim Parsell. She <a title="https://core.trac.wordpress.org/ticket/30791" href="https://core.trac.wordpress.org/ticket/30791">helped fix an issue</a> where an old image file needed to be removed from core. Reading the release notes and coming across Kim’s name generates a rush of emotions as I remember the events surrounding New Years day. For those who don’t know, <a title="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away" href="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away">Kim passed away</a> earlier this year. In memory of Kim, The WordPress Foundation has <a title="http://wptavern.com/the-wordpress-foundation-creates-a-traveling-scholarship-in-memory-of-kim-parsell" href="http://wptavern.com/the-wordpress-foundation-creates-a-traveling-scholarship-in-memory-of-kim-parsell">created a traveling scholarship</a>.</p>\n<p>I think Nacin speaks for many when he says, “We miss you, Kim.”</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, 19 Feb 2015 01: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: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:43:"Matt: 7 Principles of Rich Web Applications";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44680";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://ma.tt/2015/02/7-principles-of-rich-web-applications/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:165:"<p>Automattician Guillermo Rauch writes on the <a href="http://rauchg.com/2014/7-principles-of-rich-web-applications/">7 Principles of Rich Web Applications</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Feb 2015 00:50:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:73:"WPTavern: Customizer Theme Switcher Approved for Merge Into WordPress 4.2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39224";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:83:"http://wptavern.com/customizer-theme-switcher-approved-for-merge-into-wordpress-4-2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3367:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/customizer-theme-switcher.jpg" rel="prettyphoto[39224]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/customizer-theme-switcher.jpg?resize=1025%2C473" alt="customizer-theme-switcher" class="aligncenter size-full wp-image-38931" /></a></p>\n<p>The <a href="http://wptavern.com/customizer-theme-switcher-officially-proposed-for-wordpress-4-2" target="_blank">Customizer Theme Switcher</a> feature plugin was approved for merge today during the regularly scheduled WordPress core development meeting. Lead developers and contributors in attendance agreed that there are no major blocking issues.</p>\n<p>The Customizer Theme Switcher in WordPress 4.2 will make it possible for users to browse through themes that have already been installed and activate a new one on the frontend via the customizer. The idea is to unify the UI designated for customizing a site to create a more consistent experience for users on the frontend. In the future, the theme installation process will also be added to the customizer.</p>\n<p>Many users initially had concerns about adding this feature to the narrow customizer UI. “I would like to see a full-screen iteration so it doesn’t feel like I am looking through a port hole,” Andrew Nacin said during the development meeting. His comment echoes the concerns of others who have doubts about browsing themes through the small customizer window.</p>\n<p>In response to WP Tavern <a href="http://wptavern.com/customizer-theme-switcher-officially-proposed-for-wordpress-4-2#comment-64073" target="_blank">commenters who oppose the new feature</a>, project leader Nick Halsey encouraged users to examine how the customizer will force developers to simplify their UIs:</p>\n<blockquote><p>I’ll also point out for everyone that while the Customizer controls window is fairly small, this is a balance with providing a reasonably sized preview of the front-end, and the narrow controls UI window is mobile-first out-of-the-box. Being forced to work with less real estate in the customizer controls forces developers to simplify their UIs and make things easier to use. If you’re shoving hundreds of options into the Customizer, you’re creating something that’s just as bad of an experience to use as if you’d done that in a custom admin screen.</p></blockquote>\n<p>In response to those concerned about the next step of adding the theme installation process to the customizer, Halsey <a href="http://wptavern.com/customizer-theme-switcher-officially-proposed-for-wordpress-4-2#comment-64035" target="_blank">assured</a> users that they are planning on making the customizer controls area almost full-width. This will ensure a more pleasant experience while selecting a theme from a large collection. The theme switcher feature added to WordPress 4.2 will happen in the more narrow customizer pane, since it is most often limited to a small collection of already installed themes.</p>\n<p>The <a href="https://wordpress.org/plugins/press-this/" target="_blank">Press This Revamp project</a> is also currently under consideration for merge into WordPress 4.2 and contributors will be testing it over the next week. The merge window runs through next Wednesday, followed by two weeks of iteration before the first beta is expected.</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, 18 Feb 2015 22:09:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:78:"WPTavern: CMS Commander’s WordPress Site Creation Tool is Available for Free";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=39187";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/cms-commanders-wordpress-site-creation-tool-is-available-for-free";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2784:"<p>CMS Commander <a title="http://cmscommander.com/create-pre-configured-wp-blogs-free/" href="http://cmscommander.com/create-pre-configured-wp-blogs-free/">has announced</a> that their new WordPress site creation tool will be <a title="https://cmscommander.com/members/signup/index/c/trial" href="https://cmscommander.com/members/signup/index/c/trial">free of charge</a>. CMS Commander specializes in helping users manage WordPress sites. The tool gives users the ability to deploy new WordPress sites to any host via FTP with pre-configured settings and pre-installed plugins.</p>\n<p>WordPress is famous for its five-minute install, but users generally need to configure a few settings before they can publish their first post. CMS Commander has several settings you can pre-configure including: permalinks, deleting default content, and disabling the theme and plugin file editors.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/CMSCommanderPreconfigureSettings.jpg" rel="prettyphoto[39187]"><img class="size-full wp-image-39218" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/CMSCommanderPreconfigureSettings.jpg?resize=700%2C196" alt="CMS Commander Pre-configured Settings" /></a>CMS Commander Pre-configured Settings\n<p>You can also add plugins from the <a title="https://wordpress.org/plugins/" href="https://wordpress.org/plugins/">WordPress plugin directory</a> that will be installed and activated as part of the installation process.</p>\n<p>During the beta testing period, premium users created more than 200 websites allowing the team to fix numerous bugs. As a result of the beta testing period, CMS Commander added several other <a title="http://cmscommander.com/improved-site-creation-backup-features/" href="http://cmscommander.com/improved-site-creation-backup-features/">pre-configured settings</a>. The only feature not available to free users is the ability to add commercial plugins.</p>\n<h2>Removing Friction</h2>\n<p>The typical way to install WordPress on a webhost is to visit WordPress.org, download a zip file, extract the contents, and upload it to a webserver. This is a process that some find difficult, especially if FTP is as an unfamiliar concept or they’re not familiar with MySQL databases.</p>\n<p>CMS Commander and other tools like it are helping to bridge the gap between the install and set up process. This allows users to more quickly get to the publishing parts of WordPress. However, if WordPress is <a title="http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share" href="http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share">to reach 50% marketshare</a>, it needs to find a way to remove this friction instead of relying on third-parties.</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, 18 Feb 2015 21:36:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:79:"WPTavern: Join the Discussion on Defining Network Types for WordPress Multisite";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=39193";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/join-the-discussion-on-defining-network-types-for-wordpress-multisite";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3760:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mailboxes.jpg" rel="prettyphoto[39193]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mailboxes.jpg?resize=1024%2C496" alt="mailboxes" class="aligncenter size-full wp-image-39214" /></a></p>\n<p>Towards the end of 2013, WordPress lead developer Andrew Nacin outlined a <a href="https://make.wordpress.org/core/2013/10/06/potential-roadmap-for-multisite/" target="_blank">potential roadmap for multisite</a> that would address a number of long-standing questions regarding network setup and organization.</p>\n<p>When multisite, formerly known as WPMU, was first introduced, building large blogging networks was the primary use case. Over the years, the uses for multisite have evolved to encompass those who use it to facilitate the management of multiple, and sometimes unrelated, sites. In the future, contributors want to add the option for super admins to select from a list of pre-configured network types when installing a new network.</p>\n<p>The <a href="https://wordpress.slack.com/archives/core-multisite/p1424209234000834" target="_blank">discussion</a> in the #core-multisite room on Slack this week centered around identifying and defining different network types. The terms Open/Closed and Trusted/Untrusted were identified as possibilities, but nothing has been set in stone, as both options are ambiguous and confusing.</p>\n<p>Jeremy Felt <a href="https://make.wordpress.org/core/2015/02/18/multisite-objective-defining-network-types/" target="_blank">summarized</a> the questions that need to be answered before multisite development can move forward:</p>\n<ul>\n<li>What network types are there?</li>\n<li>Which of these should be pre-configured in core?</li>\n<li>What are possible ways of managing these network types?</li>\n<li>What kind of experience can we introduce during network installation that makes this simple.</li>\n</ul>\n<p>Multisite is used in a wide variety of ways, i.e. networks where super admins control everything, blogging networks where site admins have limited capabilities, private networks with closed registration and a set of trusted admins, and many more. It’s difficult to accurately nail down a small set of pre-configured network types that will be suitable for any new installation.</p>\n<p>One interesting idea, <a href="https://make.wordpress.org/core/2015/02/18/multisite-objective-defining-network-types/#comment-25248" target="_blank">proposed by Mike Schinkel</a>, is to allow developers to register a custom network type in order to better fit unique cases:</p>\n<blockquote><p>It would seem the first step, then, would be to identify and document all these potential configuration options at an atomic level. From there we could then “map” Network Types to their associated configuration settings.</p>\n<p>Even better, Network Types could then be registered just like how Post Types, Post Statuses, and Taxonomies are registered which would make missing out on an important use-case in core much less problematic.</p></blockquote>\n<p>Even with the option to register custom network types, WordPress core will still need to identify the most common ones to include in its set of pre-configured options. Contributors have been discussing this issue over the span of several months in order to find the best way forward.</p>\n<p>If you want to join in the conversation regarding the future of multisite, particularly as it relates to defining network types, make sure to leave your feedback on the recent Make/Core post: <a href="https://make.wordpress.org/core/tag/multisite/" target="_blank">Multisite Objective: Defining Network Types</a>. This will be the main topic of next week’s multisite office hours.</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, 18 Feb 2015 18:47:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:79:"WPTavern: Create Interactive Images in WordPress with the Draw Attention Plugin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39165";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/create-interactive-images-in-wordpress-with-the-draw-attention-plugin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6844:"<p><a title="https://wordpress.org/plugins/draw-attention/" href="https://wordpress.org/plugins/draw-attention/">Draw Attention</a> is a new plugin created by <a title="http://tylerdigital.com/" href="http://tylerdigital.com/">Tyler Digital,</a> that makes it easy to create interactive images in WordPress. Some common use cases include: floor plans for trade shows, real estate properties, and seating charts. Nathan Tyler explains the inspiration behind the plugin:</p>\n<blockquote><p>Natalie and I have built custom solutions for clients for trade shows, real estate, floor plans, etc. and we’re always frustrated by the process. We wanted to build an elegant solution in WordPress that would display well on all devices and would be easy for clients and end-users to maintain themselves.</p></blockquote>\n<h2>How it Works</h2>\n<p>After installation, a new item labeled Draw Attention is added to the admin menu. Similar to a post, the edit image screen has an area to give images a title. There’s also a series of options to configure the highlight and info box styling. Users can add an image via upload or through the WordPress media library.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionEditImageScreen.png" rel="prettyphoto[39165]"><img class="size-full wp-image-39177" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionEditImageScreen.png?resize=1025%2C405" alt="Edit Image Screen" /></a>Edit image screen for Draw Attention\n<p>Once an image is added, you’ll see it near the bottom of the page within the Hotspot Areas section. From here, users can draw interactive hot spots on an image simply by clicking on the portion you want to highlight. It took a bit of practice, but I was able to make the entire logo a hotspot by clicking the edges of the circle. Hot spots can be manipulated by clicking and dragging on the square markers.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpots.png" rel="prettyphoto[39165]"><img class="size-full wp-image-39178" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpots.png?resize=1025%2C701" alt="Draw Attention Hot Spots" /></a>Draw Attention hot spots\n<p>One of the biggest drawbacks I discovered during testing, is that there’s no undo button. If you make a mistake, you need to select the clear button and start over. Depending on the size of the hot spot, it’s a frustrating user experience. Hot spots are able to have titles of their own as well as a description. You can also add a detailed image which will display above the more info box. Last but not least, you can remove the hot spot area from the image.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpotsConfig.png" rel="prettyphoto[39165]"><img class="size-full wp-image-39179" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpotsConfig.png?resize=1002%2C493" alt="DrawAttentionHotSpotConfiguration" /></a>Draw Attention hot spot configuration\n<p>Here’s an example of what an interactive image looks like on the WordPress frontend. What you can’t see from the screenshot, is that clicking on a hot spot displays the image title and description above the image using <a title="http://en.wikipedia.org/wiki/Ajax_%28programming%29" href="http://en.wikipedia.org/wiki/Ajax_%28programming%29">Ajax</a>. In order to display interactive images, the <strong>[drawattention]</strong> short code needs to be inserted into a post or page. The styling options as seen in the first screenshot control how the title and description display on the frontend. It’s also worth noting that interactive images are responsive, so they’ll look good on mobile devices.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpotsWordPressFrontend.png" rel="prettyphoto[39165]"><img class="size-full wp-image-39180" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpotsWordPressFrontend.png?resize=1025%2C810" alt="Draw Attention Hot Spots WordPress Frontend" /></a>How hot spots look on the WordPress frontend\n<h2>Needs Improvements</h2>\n<p>Draw Attention is a neat plugin that makes it easy to create hot spots on images. However, it’s the first version and it shows. In future versions, I’d like to see a number of things addressed.</p>\n<ol>\n<li>I’m confused as to the order of options displayed in the backend as styling options are displayed above image editing. I think these option panels should be reversed.</li>\n<li>The default highlight and info box styles didn’t display well on the testing environment. I’d like to see these options inherit colors that already exist within the theme.</li>\n<li>As mentioned previously, there needs to be an undo button as starting over is a frustrating experience.</li>\n<li>Setting the opacity to 55% displays a value of 55.00000000000001%</li>\n<li>Speaking of styling colors, it’s frustrating to edit display settings, click update, then refresh the post or page to see if the changes are ok. I’d like to see some sort of visual preview or something like the customizer so that I can configure the colors and see the changes live before I apply them.</li>\n<li>Instead of displaying the short code I need to use in a small, somewhat hidden meta box, I’d like to see a button in the visual post editor to make it easier to add to a post or page.</li>\n</ol>\n<p>One of the last remaining issues I have with Draw Attention is that users are limited to adding and editing <strong>one image</strong>. That’s because there’s a <a title="http://tylerdigital.com/products/draw-attention/" href="http://tylerdigital.com/products/draw-attention/">pro version</a> of the plugin available for $49 that contains the following additional features:</p>\n<ul>\n<li>Ability to create more than one interactive image</li>\n<li>Unlimited number of hot spot areas for each image</li>\n<li>20 different preset color schemes</li>\n<li>Custom layout options</li>\n</ul>\n<p>Limiting the plugin to one image gives users an idea on how it works, but I’d bump the limit to three or five. Users would then have more of an opportunity to discover cool uses cases and it might lead to more sales.</p>\n<p>With that said, it performed without any issues on WordPress 4.2 alpha. Tyler says they have plenty of items on their to-do list, “We have a bunch of items still on our to-do list, and we will be releasing regular updates for the next couple months based on community feedback.” If some of the issues are addressed and the image limits are raised, I think Draw Attention will be a nice solution for creating interactive images in WordPress.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Feb 2015 05:48:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:85:"WPTavern: WordCamp Prague 2015 Aims to Bring Central European Tech Community Together";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=39157";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:95:"http://wptavern.com/wordcamp-prague-2015-aims-to-bring-central-european-tech-community-together";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2983:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/prague.jpg" rel="prettyphoto[39157]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/prague.jpg?resize=1025%2C498" alt="prague" class="aligncenter size-full wp-image-39158" /></a></p>\n<p><a href="http://prague.wordcamp.org/2015/" target="_blank">WordCamp Prague</a> is gearing up for its second edition on February 28, 2015. The event will be held at the <a href="http://ozs.vse.cz/english/" target="_blank">University of Economics</a>. Organizers are planning two tracks of presentations: one for end users and bloggers and the other for WordPress developers and programmers.</p>\n<p>Co-organizer <a href="https://twitter.com/vladamusilek" target="_blank">Vladislav Musílek</a> said that the team is expecting 300-350 attendees. “The Czech WordPress community is young and we started meeting in the summer of 2013,” he said. “There were three small meetups with a maximum of 30 attendees, but our first WordCamp Prague in 2014 had 230 attendees.”</p>\n<p>Musílek is one of three local organizers who decided to hold a larger meetup every three months, with smaller ones taking place monthly. The three meetups held in 2014 attracted 130-150 attendees each, and sessions are published on <a href="https://www.youtube.com/channel/UCUj8Epquc13YwVvnAzyI9Vg" target="_blank">YouTube</a>.</p>\n<p>Although the Czech WordPress community is relatively small, it is situated in central Europe with easy access for attendees from other countries. “We invited developers from other countries, because modern WordPress trends are what is missing in the Czech community,” Musílek said.</p>\n<p>“But what is unique is Prague, a beautiful city in the center, with 23 European capital cities not more than 1000 km away, i.e. Vienna, Berlin, Brussels, Copenhagen, Paris, Rome, Warsaw and more.”</p>\n<p>Musílek said the organizers’ goal was to create a WordCamp not only for the Czech community but for the greater central European development community. Many of the sessions cater to developers, and Musílek said this is intentional. “I am a developer and I wanted to invite speakers who are working with modern and trending technologies that we’ll be using for development in the near future,” he said.</p>\n<p>WordCamp Prague’s schedule will host 16 sessions, including nine in English and seven in Czech. There will also be two workshops held in English and two in Czech. The variety of languages helps to make the event more accessible to international attendees. View the event’s <a href="http://prague.wordcamp.org/2015/program/" target="_blank">schedule</a> for more details. Tickets are still available for any attendees who decide to join at the last minute. If you’re still on the fence, check out the promotion video the organizers created for the upcoming event:</p>\n<p><span class="embed-youtube"></span></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Feb 2015 22:24: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:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"Matt: Developer Employment Act";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44697";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:46:"http://ma.tt/2015/02/developer-employment-act/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:689:"<blockquote><p>One theory I have is that there’s some secret “developer full-time employment act” that means these programmers have to do something even if it’s just replicating work that’s already been done. Kind of like New Jersey where every gas station is full serve (that had to be some full employment gambit back in the day).</p></blockquote>\n<p>Sounds like something that could be written today about Vox, Buzzfeed, Gawker, or any of the quixotic CMS projects at Washington Post, NY Times, Conde Nast, et al, but it was <a href="http://www.zdnet.com/article/wordpress-vs-an-army-of-clunky-content-management-systems/">actually written in 2007</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Feb 2015 21:50:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:65:"WPTavern: WordPress 4.2 on Track to Expand Core Support for Emoji";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=39129";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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-4-2-on-track-to-expand-core-support-for-emoji";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4194:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Twemoji.jpg" rel="prettyphoto[39129]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Twemoji.jpg?resize=700%2C320" alt="photo credit: Twitter.com" class="size-full wp-image-39143" /></a>photo credit: <a href="https://blog.twitter.com/2014/open-sourcing-twitter-emoji-for-everyone">Twitter.com</a>\n<p>Emoji characters were born in Japan in the late 90’s but took nearly a decade to break into global usage. They entered popular culture full force when select emoji character sets were incorporated into Unicode in 2010. Since that time, emoji popularity has grown, and there’s no denying that they are mainstream and here to stay.</p>\n<p>The good news is that better support for emoji will soon find its way into WordPress core. Last week, core contributor Gary Pendergast, unveiled <a href="https://make.wordpress.org/core/2015/02/13/emoji-chat-meeting-notes-february-12-2015/" target="_blank">a roadmap for better emoji support</a> and detailed the current state of the <a href="https://github.com/pento/x1f4a9" target="_blank">feature plugin</a>.</p>\n<p>Pendergast has spent quite a bit of time immersing himself in the history of emoji and the requirements for their support. Pendergast filled contributors in on the status of WordPress core support for emoji:</p>\n<blockquote><p>As of <a href="https://core.trac.wordpress.org/changeset/31349" target="_blank">r31349</a>, WordPress partially supports emoji. ~60% of WordPress sites are running MySQL 5.5 or later (so can be upgraded to store emoji), and ~40% of browsers natively support emoji. Emoji are a wildly popular method of communication, so we can expect them to be heavily used as soon as they’re available. The problem is, 60%/40% means a really bad experience for a huge number of our users, who’ll try to use emoji, and fail.</p></blockquote>\n<p>Getting more WordPress sites to run on MySQL 5.5+ would be no small task, so the emoji feature plugin is working around this by adding a wp_encode_emoji() function to turn emoji characters into HTML entities for sites using the utf8 character set. This gets the remaining ~40% of sites nearly all the way there.</p>\n<h3>Twemoji Fallback</h3>\n<p>The feature plugin proposes that WordPress adopt the <a href="https://github.com/twitter/twemoji" target="_blank">Twemoji</a> image set as a fallback for browsers that don’t display emoji natively, which reduces the extra load, especially for mobile browsers. Twitter open sourced its Twemoji 872 character image set last November, simultaneously partnering with Automattic to <a href="http://wptavern.com/wordpress-com-adds-emoji-support-coming-soon-to-jetpack" target="_blank">bring emoji to WordPress.com users</a>.</p>\n<p>Pendergast reports that the plugin is close to being finished, with only a handful of remaining <a href="https://github.com/pento/x1f4a9/issues" target="_blank">bugs to discuss</a>. The plugin has already been briefly reviewed by the accessibility team and requires only a few minor changes. The issue of where to host the images is still under discussion, and Pendergast and contributors are considering different options:</p>\n<blockquote><p>They’re currently hosted on WP.com’s CDN, but we’re investigating other options for where to host them, probably the W.org CDN. Given that the wp-admin Dashboard also loads things from Google, I have no problem with hosting them on an external CDN. There will naturally be a filter on the URL, to allow local hosting for sites that don’t want to use the CDN.</p></blockquote>\n<p>WordPress is on track to provide more comprehensive support for emoji in the near future. Pendergast says the project is on target for the upcoming 4.2 release.</p>\n<p>In the meantime, if you’d like to add emoji support to your self-hosted WordPress site, <a href="http://wptavern.com/new-plugin-adds-open-source-emoji-one-support-to-wordpress" target="_blank">WP Emoji One</a> is a good option. The plugin was the first to bring support for the open source <a href="http://emojione.com/" target="_blank">Emoji One</a> character set to WordPress posts and pages.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Feb 2015 21:29: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:9;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:74:"WPTavern: This Week On WPWeekly: Wade Foster, Co-founder and CEO of Zapier";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=39096";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"http://wptavern.com/this-week-on-wpweekly-wade-foster-co-founder-and-ceo-of-zapier";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1501:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/06/ZapierFeaturedImage.png" rel="prettyphoto[39096]"><img class="aligncenter size-full wp-image-24443" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/06/ZapierFeaturedImage.png?resize=650%2C200" alt="Zapier Featured Image" /></a></p>\n<p>This Wednesday at 9:30 PM Eastern on <a title="http://wptavern.com/wordpress-weekly" href="http://wptavern.com/wordpress-weekly">WordPress Weekly</a>, Marcus Couch and I will be joined by Wade Foster, Co-founder and CEO of <a title="https://zapier.com/" href="https://zapier.com/">Zapier</a>. Zapier is a service that acts as an integration point for more than 300 applications. <a title="https://zapier.com/zapbook/gravity-forms/" href="https://zapier.com/zapbook/gravity-forms/">GravityForms</a>, <a title="http://wptavern.com/wp-remote-now-supports-zapier" href="http://wptavern.com/wp-remote-now-supports-zapier">WP Remote</a>, and <a title="http://www.woothemes.com/products/woocommerce-zapier/" href="http://www.woothemes.com/products/woocommerce-zapier/">WooCommerce</a> are just a few examples of popular WordPress plugins and services that support Zapier. The following video explains how it works.</p>\n<p><span class="embed-youtube"></span></p>\n<p>We’re going to discuss the company’s history, how the service works, and interesting integrations people are creating with it. If you have questions you’d like us to ask Foster, submit them in the comments.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Feb 2015 02:30: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: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:52:"WPTavern: The Dude: A Fun Alternative to Hello Dolly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=39104";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/the-dude-a-fun-alternative-to-hello-dolly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2280:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/the-dude.jpg" rel="prettyphoto[39104]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/the-dude.jpg?resize=670%2C290" alt="the-dude" class="aligncenter size-full wp-image-39110" /></a></p>\n<p>This isn’t just a plugin, man. It’s <a href="https://wordpress.org/plugins/the-dude/" target="_blank">The Dude</a>, so that’s what you call it. That, or His Dudeness… Duder… or El Duderino, if, you know, you’re not into the whole brevity thing.</p>\n<p>It symbolizes the realization of an entire modern lazy hippie bowling amateur private investigator generation summed up in two words spoken most famously by Jeff Bridges.</p>\n<p>The Dude was created by WordPress developer <a href="http://kosvrouvas.com/" target="_blank">Kostas Vrouvas</a>, who seemed to have a bit of free time on his hands. It takes inspiration (and some code) from Matt Mullenweg’s <a href="https://wordpress.org/plugins/hello-dolly/" target="_blank">Hello Dolly</a> plugin, replacing the musical’s lyrics at the top of admin screens with quotes from <a href="http://www.imdb.com/title/tt0118715/">The Big Lebowski</a>.</p>\n<p>We tested the plugin and found that it works flawlessly. <a href="https://www.youtube.com/watch?v=VLR_TDO0FTg" target="_blank">The royal “we”</a>. You know, the editorial…</p>\n<p>Some of the random Lebowski quotes so far include:</p>\n<ul>\n<li>Walter, he peed on my rug!</li>\n<li>And, you know, he’s got emotional problems, man.</li>\n<li>Well, that’s like, your opinion, man.</li>\n<li>Also, my rug was stolen.</li>\n<li>You’re Mr. Lebowski. I’m the Dude.</li>\n<li>Oh, the usual. I bowl. Drive around. The occasional acid flashback.</li>\n<li>Mr. Treehorn treats objects like women, man.</li>\n<li>Hey, careful, man, there’s a beverage here!</li>\n</ul>\n<p>Amusing, yes? So if you prefer <a href="http://wptavern.com/ https://www.youtube.com/watch?v=sft3VHxru2s" target="_blank">Creedence</a> to Louis Armstrong, then you may want to mix yourself a white russian and activate <a href="https://wordpress.org/plugins/the-dude/" target="_blank">The Dude</a> on your WordPress blog.</p>\n<p>It really ties the site together.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Feb 2015 00:53:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:60:"WPTavern: Why WordPress Job Titles Don’t Mean Much Anymore";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=39069";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/why-wordpress-job-titles-dont-mean-much-anymore";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3590:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/JobTitleFeaturedImage.png" rel="prettyphoto[39069]"><img class="size-full wp-image-39089" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/JobTitleFeaturedImage.png?resize=650%2C200" alt="Job Titles Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/58871905@N03/5565517971">I love ’84</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>Mario Peshev published a great article that looks at where the WordPress community stands on <a title="http://devwp.eu/wordpress-job-titles-skills-stand/" href="http://devwp.eu/wordpress-job-titles-skills-stand/">job titles and skills</a>. Peshev explains why titles are out of control and how they don’t match their expected skill sets.</p>\n<blockquote><p>The problem with a number of general titles is that they are overused and it is no longer clear what the real meaning and level of expertise is. Moreover, they are so general, that it’s easy to be fooled into misusing them, seeing how many people just tag themselves in those categories.</p></blockquote>\n<p>I find it fascinating we’re having conversations on what people in the WordPress ecosystem call themselves. This is a big problem for people looking for WordPress experts who are routinely let down, because the people they’re hiring don’t actually have the skills required to get the job done.</p>\n<p>In some ways, the conversation circles back to the idea of having a <a title="http://wptavern.com/should-automattic-create-and-manage-a-wordpress-certification-program" href="http://wptavern.com/should-automattic-create-and-manage-a-wordpress-certification-program">WordPress certification program</a>. With a certification program, a document would clarify a person’s proficiency in WordPress. However, I think it opens up a new can of worms and isn’t the only solution.</p>\n<h2>Comparing a Corporate World to WordPress</h2>\n<p>In a typical corporation, titles are clearly laid out and each one has a set of skills attached to it. Employees know what they need to learn to get promoted to the next level. Employees also know the skills a person has with a particular title due to standards that dictate how it’s earned. In the WordPress ecosystem, titles are not earned, but rather, routinely made up. For example, I’ve used WordPress for more than seven years and consider myself a WordPress Tinkerer.</p>\n<p>Peshev outlines three distinct problems with the lack of standards, best practices, and business know-how in the WordPress community.</p>\n<ol>\n<li>Serious clients can’t find experts since everyone is an expert.</li>\n<li>Experts don’t get approached for larger systems (due to (1) ) and their time is wasted by people with the wrong perception of <em>expert</em>.</li>\n<li>The lack of satisfied clients and contractors means fewer customers are willing to invest in WordPress, fewer contractors are able to dedicate time back to WordPress, and there are fewer products developed as a result of WordPress driven projects.</li>\n</ol>\n<p>When looking at the big picture, the situation is a mess. It seems everyone has a WordPress title with no clear way to determine the skills that back it. Outside of some sort of regulation, I don’t see how the situation can improve. Perhaps the community can rally together to create a list of titles and assign appropriate skills to them? If you use a title to express your skills and knowledge to potential clients, what is it?</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 16 Feb 2015 23:24: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:"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:93:"WPTavern: Keep a CHANGELOG Project Aims to Standardize Best Practices for Writing Change Logs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=39051";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:103:"http://wptavern.com/keep-a-changelog-project-aims-to-standardize-best-practices-for-writing-change-logs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3140:"<p>A change log is the quickest, most convenient way for users and contributors to identify significant changes in a project as it moves from one version to the next. The log exists to keep users informed.</p>\n<p>Unfortunately, many open source project leaders have little motivation to provide a meaningful CHANGELOG file and are purely focused on shipping the code. Instead of writing clear, understandable logs for a release, many developers resort to dumping git logs, which are often rife with messy commit messages, into the CHANGELOG file.</p>\n<p><a href="http://olivierlacan.com/" target="_blank">Olivier Lacan</a>, software engineer at <a href="https://www.codeschool.com/" target="_blank">Code School</a>, has created a site and corresponding GitHub repository called <a href="http://keepachangelog.com/" target="_blank">Keep a CHANGELOG</a>, with an extensive collection of recommendations for writing better change logs.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/keep-a-changelog.png" rel="prettyphoto[39051]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/keep-a-changelog.png?resize=1025%2C788" alt="keep-a-changelog" class="aligncenter size-full wp-image-39070" /></a></p>\n<p>The project page offers a variety of tips for improving change logs, i.e. how to list releases, recommended date format, sections and labels for classifying changes, and file naming convention.</p>\n<p>One helpful tip Lacan offers, which isn’t commonly seen among even the finest, hand-crafted CHANGELOGs, is the recommendation for keeping an “Unreleased” section at the top. This helps users track for potential changes in progress for upcoming releases. Maintaining an “Unreleased” section minimizes the effort of writing the logs at release time, as you can easily add the version number to the section as changes are added and create a new Unreleased header.</p>\n<h3>Software Tools Are for People</h3>\n<p>Lacan makes a strong case for prioritizing the creation of a changelog for your open source project:</p>\n<blockquote><p>Why should I care? Because software tools are for people. If you don’t care, why are you contributing to open source?</p></blockquote>\n<p>He hopes that the Keep a CHANGELOG project will help to shape a better CHANGELOG file convention for all open source projects. Discussions and suggestions are welcome in the <a href="https://github.com/olivierlacan/keep-a-changelog/issues" target="_blank">issues queue</a> of the project’s GitHub repository. Contributors have already logged more than two dozen considerations.</p>\n<p>WordPress.org offers some <a href="https://wordpress.org/news/2009/07/improving-your-plugin-changelogs/" target="_blank">basic tips for improving change logs</a>, but the official plugin directory doesn’t require developers to maintain a CHANGELOG file. Lacan’s <a href="http://keepachangelog.com/" target="_blank">Keep a CHANGELOG project</a> is a complementary resource that can help WordPress developers and all open source project managers to write better logs for users and contributors.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 16 Feb 2015 21:45: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: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: Tickets On Sale For WordCamp North Canton, OH, 2015";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39054";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"http://wptavern.com/tickets-on-sale-for-wordcamp-north-canton-oh-2015";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2149:"<p> </p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/WCNorthCanton2015FeaturedImage.png" rel="prettyphoto[39054]"><img class="aligncenter size-full wp-image-39055" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/WCNorthCanton2015FeaturedImage.png?resize=650%2C314" alt="WordCamp North Canton 2015 Featured Image" /></a>Tickets are <a title="http://northcanton.wordcamp.org/2015/tickets/" href="http://northcanton.wordcamp.org/2015/tickets/">on sale</a> for the 3rd annual, WordCamp North Canton, OH, May 8th-9th. Tickets are available for Friday and Saturday, Friday only, or Saturday only. <span class="tix-ticket-excerpt">Friday features a full day of learning split between entrepreneur and WordPress sessions. Saturday is a full day of WordPress sessions with breakfast and lunch included in the ticket price. Ticket prices are as follows:</span></p>\n<ul>\n<li>$30 Friday and Saturday</li>\n<li>$20 Friday only</li>\n<li>$20 Saturday only</li>\n</ul>\n<p>The event takes place on the <a title="http://www.starkstate.edu/" href="http://www.starkstate.edu/">Stark State College campus</a> within the business and entrepreneurial center. As I <a title="http://wptavern.com/recap-of-wordcamp-north-canton-2014" href="http://wptavern.com/recap-of-wordcamp-north-canton-2014">mentioned last year</a>, the venue has high-speed internet so WiFi shouldn’t be a problem. Joe Rozsa, who is helping to organize the event, says lunch will be provided by <a title="http://www.solpiepizza.com/" href="http://www.solpiepizza.com/">SOL Pie Pizza</a>, formerly known as <a title="http://ermannospizza.com/" href="http://ermannospizza.com/">Ermannos Pizza</a>.</p>\n<p>Speakers have yet to be confirmed, but I’ll be participating on a panel discussion on <a title="http://wordpress.tv/2014/02/14/chris-lema-escaping-the-impostor-syndrome/" href="http://wordpress.tv/2014/02/14/chris-lema-escaping-the-impostor-syndrome/">imposter syndrome</a>. We’re going to share our experiences battling the syndrome on a daily basis and give advice on how to avoid its influence. Let me know if you plan on attending.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 16 Feb 2015 20:18:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:26:"Matt: Jonathan Ive Profile";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44703";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:42:"http://ma.tt/2015/02/jonathan-ive-profile/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2030:"<blockquote><p>Jobs’s taste for merciless criticism was notorious; Ive recalled that, years ago, after seeing colleagues crushed, he protested. Jobs replied, “Why would you be vague?,” arguing that ambiguity was a form of selfishness: “You don’t care about how they feel! You’re being vain, you want them to like you.” Ive was furious, but came to agree. “It’s really demeaning to think that, in this deep desire to be liked, you’ve compromised giving clear, unambiguous feedback,” he said. He lamented that there were “so many anecdotes” about Jobs’s acerbity: “His intention, and motivation, wasn’t to be hurtful.”</p></blockquote>\n<p>Your one #longread today should be <a href="http://www.newyorker.com/magazine/2015/02/23/shape-things-come">the New Yorker’s profile of Jonathan Ive</a> by Ian Parker. This anecdote resonated with me from the time I (poorly) did design for a living, and how much patience and stoicism are part of the job when working with a deciding stakeholder, often known as a client:</p>\n<blockquote><p>Bob Mansfield, a former senior hardware engineer at Apple, who is now semi-retired, recently described the pique that some colleagues felt about Ive’s privileged access. As he put it, “There’s always going to be someone vying for Dad’s attention.” But Mansfield was grateful for Ive’s cool handling of a C.E.O. who was “not the easiest guy to please.” Mansfield’s view was “Jony puts up with a lot, and, as a result of him doing it, people like me don’t have to.”</p></blockquote>\n<p>This also made me giggle.</p>\n<blockquote><p>Brunner is proud of the Beats brand, but it took him time to adjust to a design rhythm set as if for a sneaker company: “Originally, I hated it—‘Let’s do a version in the L.A. Lakers’ colors!’ ” He laughed. “ ‘Great. Purple and yellow. <em>Fantastic</em>.’ ”</p></blockquote>\n<p><a href="http://www.newyorker.com/magazine/2015/02/23/shape-things-come">Check out the entire thing</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 16 Feb 2015 16:01:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:28:"Matt: Pollan on Psychedelics";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44682";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://ma.tt/2015/02/pollan-on-psychedelics/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:643:"<p>To make it a full New Yorker weekend, here’s a <a href="http://longreads.com/">longread</a> from <a href="http://michaelpollan.com/">Michael Pollan</a>, best known for his book <a href="http://michaelpollan.com/books/the-omnivores-dilemma/">Omnivore’s Dilemma</a>, on <a href="http://www.newyorker.com/magazine/2015/02/09/trip-treatment">the reopened research on the potential therapeutic uses of psychedelics</a>. While we’re on Pollan it’s worth repeating his advice from <a href="http://michaelpollan.com/books/food-rules/">Food Rules</a>, <strong>“Eat food, not too much, mostly plants.”</strong></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 16 Feb 2015 00:54:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:27:"Matt: Ex Girlfriend Meeting";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44667";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"http://ma.tt/2015/02/ex-girlfriend-meeting/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:350:"<p>Since it’s Valentine’s day, here’s a little humor from the New Yorker’s Hallie Cantor: <a href="http://www.newyorker.com/humor/daily-shouts/imagine-boyfriends-ex-girlfriends-right-now">What I Imagine My Boyfriend’s Ex-Girlfriends Are Doing Right Now</a>. (That the character is named Matt is completely coincidental.)</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 14 Feb 2015 18:20:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:60:"WPTavern: Mayer WordPress Theme is Now Open Source on GitHub";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38975";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wptavern.com/mayer-wordpress-theme-is-now-open-source-on-github";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5274:"<p>Tom McFarlin released his <a href="https://github.com/pressware/mayer" target="_blank">Mayer WordPress theme on GitHub</a> today. The theme was designed with writers, bloggers, and authors in mind and was previously only <a href="https://theme.wordpress.com/themes/mayer/" target="_blank">available to WordPress.com users for $79</a>.</p>\n<p>Mayer is unique in that it was created to get users writing immediately, without having a bunch settings pages or additional widgets to configure. Content in the post editor is styled to match the front end, so users don’t need to leave the editor in order to see how it’s going to look.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mayer-for-wordpress-1024x819.png" rel="prettyphoto[38975]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mayer-for-wordpress-1024x819.png?resize=1024%2C819" alt="mayer-for-wordpress-1024x819" class="aligncenter size-full wp-image-39004" /></a></p>\n<p>Technically, the theme is already open source in terms of its licensing. However, up until this point, it was only distributed commercially via WordPress.com. McFarlin has written <a href="https://tommcfarlin.com/open-source-wordpress-themes/" target="_blank">several</a> <a href="https://tommcfarlin.com/mayer-for-wordpress-now-on-github/" target="_blank">posts</a> about how he came to the decision to make his products freely available on GitHub. He cites collaboration and accountability as the driving factors in his decision:</p>\n<p>“The advantage to this means that all of the work that the team and I have backlogged for this project (and for future projects) is publicly visible if for no other reason than for accountability,” he said. “Ideally though, we’d be able to benefit from the open source community that comes in the form of code reviews, pull requests, or just general conversations to help make the core product better.”</p>\n<h3>Free Products ≠ Free Support</h3>\n<p>Any theme or plugin author who decides to distribute a product for free will inevitably find the burden of support knocking at the door. It’s important to specify how much support, if any, is included for users who are receiving a product for free.</p>\n<p>“If the code itself falls under an open source license, then I’m willing to make the code freely available,” McFarlin said. <strong>“This does not mean that I’m willing to support the code base for those who haven’t paid, but that leads into an entirely different discussion.”</strong></p>\n<p>McFarlin will continue to sell the Mayer theme through his <a href="http://shop.pressware.co/mayer/" target="_blank">Pressware shop</a>. The $99/year price tag offers users professional support for a year.</p>\n<p>“To be clear, I’m not attempting yet-another-way to monetize or popularize a theme in hopes of making money,” McFarlin said. “The short of it is that the theme will sell given the right marketplace. If someone wants to freely use the theme, that’s fine – why not? After all, it may result in some pull requests or other issues that will improve the core theme.”</p>\n<p>Based on his experience navigating user expectations from open source software, McFarlin believes that there is no escaping the issue of support.</p>\n<p>“<span class="pullquote alignleft">I think that if you’re in the business of WordPress products (versus services), you’re in the support business whether you intend to be or not.</span> Everything that you release – regardless of where the transaction actually happens – is going to yield support from some of the customers,” he said.</p>\n<p>“In order to gain access to said support, the transaction just moves back one step from after accessing the source code rather than before accessing the source code.”</p>\n<p>This model is almost entirely the opposite of the larger theme marketplaces, such as Themeforest, where the customer has no option to preview the code or have a developer preview the code before purchasing the product. It’s essentially a blind purchase in hopes that you won’t have to ask for too much support.</p>\n<p>McFarlin is banking on the fact that users who need professional support will be willing to pay for it. <a href="http://themehybrid.com/" target="_blank">Theme Hybrid</a> is one notable shop that has pioneered this model for years, offering all of its open source products for free and charging for paid support. WordPress.com does something similar, with many of its free themes mirrored on WordPress.org. Pressware is moving in a similar direction and will be creating a products division to further experiment with the model. McFarlin plans to put more work up on GitHub in the future and will continue to write about his experience.</p>\n<p>The vast majority of WordPress theme developers have not experimented with this distribution model. For the most part, theme shops sell their products and free versions, if offered, are only available with a limited set of features. McFarlin hopes to prove that in an open source marketplace, a business can successfully sell support for a product that it’s already giving away for free.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 13 Feb 2015 23:56:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:60:"WPTavern: Excellent Primer on the WordPress REST API Project";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39010";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wptavern.com/excellent-primer-on-the-wordpress-rest-api-project";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1981:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WordPressRestAPIPrimerFeaturedImage.png" rel="prettyphoto[39010]"><img class="size-full wp-image-39017" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WordPressRestAPIPrimerFeaturedImage.png?resize=655%2C327" alt="Rest API Primer Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/22280677@N07/3349296482">The Poor Man’s Racehorse?</a> – <a href="https://creativecommons.org/licenses/by-nd/2.0/">(license)</a>\n<p>In the past two years, there’s been a lot of discussion surrounding the <a title="https://github.com/WP-API/WP-API" href="https://github.com/WP-API/WP-API">WordPress REST API project</a>. If you’re not familiar with it, Brian Krogsgard <a title="https://poststatus.com/wordpress-json-rest-api/" href="https://poststatus.com/wordpress-json-rest-api/">published a great article</a> that explains what it is, how to get involved, and the possibilities it opens up to developers. Krogsgard believes the REST API is “the most exciting project for the platform since custom post types were introduced in WordPress 2.9 and 3.0.”</p>\n<p>While the article does a good job explaining what the API is, I find it to be developer heavy for my understanding. I think it’s a project that I won’t truly understand how great it is until I use products built with it.</p>\n<p>For additional information, read our <a title="http://wptavern.com/ryan-mccue-on-creating-the-json-rest-api-for-wordpress" href="http://wptavern.com/ryan-mccue-on-creating-the-json-rest-api-for-wordpress">interview from 2013 with Ryan McCue</a>, project lead for the WordPress REST API. In the interview, McCue explains why the API is such a big deal and lists a few practical use cases. There’s also a great presentation from WordCamp San Francisco 2014 by Sam Hotchkiss, that explains how APIs like the REST API are changing the internet.</p>\n<p></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 13 Feb 2015 22:46:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:92:"WPTavern: HeroPress Fails to Attract Backers, Cancels Kickstarter Campaign Ahead of Deadline";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38963";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:101:"http://wptavern.com/heropress-fails-to-attract-backers-cancels-kickstarter-campaign-ahead-of-deadline";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2467:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/heropress-funding-canceled.jpg" rel="prettyphoto[38963]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/heropress-funding-canceled.jpg?resize=1008%2C392" alt="heropress-funding-canceled" class="aligncenter size-full wp-image-38973" /></a></p>\n<p>Topher DeRosia, creator of <a href="http://wptavern.com/heropress-launches-kickstarter-campaign-to-highlight-wordpress-developers" target="_blank">HeroPress</a>, <a href="http://heropress.com/cancelling-kickstarter-1/" target="_blank">announced</a> today that he is canceling the project’s Kickstarter campaign. During the past few weeks, the project attracted 33 backers who pledged $21,855 of the $60,000 AUD goal. When it became clear that the fundraiser was hopelessly behind on reaching its goal, DeRosia canceled the funding three days ahead of its deadline.</p>\n<blockquote><p>The Kickstarter contributors were great. The verbal and public support of people were wonderful. And lastly the naysayers were welcome and useful. With very few exceptions our detractors enhanced what we were doing, and I appreciate it.</p></blockquote>\n<p>HeroPress encountered no small amount of resistance from those who either didn’t support the concept or didn’t appreciate the approach. The project’s mission was to “develop the WordPress heroes of the world by sharing the accumulated wisdom of the community.” HeroPress’ communication strategy failed to communicate the mission of the project and struggled to identify practical goals, apart from creating videos to inspire community members.</p>\n<p>DeRosia attempted to further clarify the mission of the project through <a href="https://www.kickstarter.com/projects/heropress/heropress-developing-the-wordpress-heroes-of-the-w/posts" target="_blank">short interviews with potential speakers</a> and supporters. Unfortunately, the video updates didn’t adequately represent the quality of videos that the HeroPress creator hoped to deliver on his $60,000 AUD budget for the project.</p>\n<p>“Our plan at this point is to huddle and make a new plan and give it another shot,” DeRosia said. “We’ve learned an enormous amount about our audience, their needs, and our capabilities.” He plans to continue HeroPress with a new, more cost-effective approach that will better address the needs the project was created to solve.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 13 Feb 2015 20:19:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:49:"WPTavern: DevPress Retires Its Best Selling Theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38968";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wptavern.com/devpress-retires-its-best-selling-theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4439:"<p>Devin Price, who owns and operates the WordPress commercial theme shop <a title="https://devpress.com/" href="https://devpress.com/">DevPress</a>, <a title="https://devpress.com/zelda-released-zenith-retired/" href="https://devpress.com/zelda-released-zenith-retired/">announced</a> that he is retiring his best selling theme, <a title="https://devpress.com/demo/zenith" href="https://devpress.com/demo/zenith">Zenith</a>. I asked Price why he’s retiring his best product.</p>\n<p>“Retirement may not be the best term. It’s more like introducing the new year’s model and stopping production on the previous one. The designs match pretty close, but there were a lot of under the hood updates I wanted to do that would have broken child themes and created compatibility issues for existing customers.”</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/DevPressZeldaTheme.png" rel="prettyphoto[38968]"><img class="size-full wp-image-38970" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/DevPressZeldaTheme.png?resize=880%2C660" alt="Zelda Replaces Zenith" /></a>Zelda Replaces Zenith\n<p>The HTML markup in Zelda is almost entirely rewritten. “If I was a customer who had spent hours making customizations through a child theme, I would be sorely disappointed when I clicked that auto-update button. Whereas, introducing a new version let’s the user decide whether to switch or not.” Price said. He plans on supporting Zenith for another year to give customers an opportunity to decide whether or not to switch to the new theme.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ThemeRetirement.png" rel="prettyphoto[38968]"><img class="size-full wp-image-38982" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ThemeRetirement.png?resize=650%2C200" alt="Theme Retirement" /></a>photo credit: <a href="http://www.flickr.com/photos/120360673@N04/13856166954">Retirement Calendar</a> – <a href="https://creativecommons.org/licenses/by-sa/2.0/">(license)</a>\n<p>Price <a title="https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/#comment-799966" href="https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/#comment-799966">gives more insight</a> into his strategy within the comments of an article written by Tom McFarlin on <a title="https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/" href="https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/">planned obsolescence of WordPress themes</a>.</p>\n<blockquote><p>I think planned obsolescence or ‘theme retirement’ is a really good option for theme shops. Big updates (like converting a theme to be responsive, or using new development techniques like icon fonts) is sometimes really difficult to do in a way that won’t break child themes.</p>\n<p>We’re using a mix of the ‘Fork It’ and ‘Retire It’ options at DevPress. The ‘Cascade’ theme will become ‘Cascadia’ (for example) and we’ll make the new theme available for free to all customers who purchased the free version. Less popular themes will just be retired as we add new themes to take their place.</p></blockquote>\n<p>Although theme shops are able to retire themes and set up redirects to newer versions, retiring a theme is not as easy to do on the WordPress theme directory. According to Price, “You can request a takedown and release a theme under a different name, but there’s no way to 301 redirect the established traffic to the new spot.” Not only does a theme author lose traffic, but they also can’t push out critical updates for retired themes.</p>\n<p>DevPress isn’t the first theme shop to use a retirement strategy. Since 2012, WooThemes has <a title="http://docs.woothemes.com/document/retired-themes/" href="http://docs.woothemes.com/document/retired-themes/">retired 92</a> themes. Array also <a title="https://array.is/theme-retirement/" href="https://array.is/theme-retirement/">retires themes</a>, but offers them for free with no support. A theme retirement strategy makes sense from a business perspective, but as a customer, I expect themes I buy to stick around for a year or more.</p>\n<p>As a customer, what do you think about commercial theme companies retiring themes? For commercial theme shops, how does such a strategy help your business?</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 13 Feb 2015 20:13:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:27:"Matt: Passing of David Carr";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44692";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"http://ma.tt/2015/02/passing-of-david-carr/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:330:"<p>Shocked and dismayed this morning on the news that David Carr passed last night after collapsing in the New York Times newsroom, where he was working into the evening. If you’re not familiar with his work or legacy, <a href="http://mediagazer.com/150212/p36#a150212p36">these links on Mediagazer are a good start</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 13 Feb 2015 16:04:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:62:"WPTavern: A Look Back at 16 Automattic Acquisitions Since 2007";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38863";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wptavern.com/a-look-back-at-16-automattic-acquisitions-since-2007";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:23673:"<p>Since <a title="http://automattic.com/" href="http://automattic.com/">Automattic</a> was founded in 2005, it has acquired several businesses, services, products, and people. In August, the company will be 10 years old and I thought it would be interesting to see if the acquisitions the company has made are still around. The list is organized from earliest to latest.</p>\n<h2>Gravatar</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/GravatarLogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-18453 size-full" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/GravatarLogo.png?resize=239%2C63" alt="Gravatar Logo 2" /></a> <a title="http://en.gravatar.com/" href="http://en.gravatar.com/">Gravatar</a> stands for globally recognized avatar and is an image that follows you around on the web. This eliminates the hassle of maintaining a visual identity across multiple communities. In 2014, what was supposed to be a Gravatar mobile app, <a title="http://wptavern.com/automattics-planned-gravatar-app-morphs-into-a-selfies-app-for-android" href="http://wptavern.com/automattics-planned-gravatar-app-morphs-into-a-selfies-app-for-android">morphed into a Selfies app for Android</a>. Although Gravatar is supported in a number of applications, I think there’s still a lot of work to do before it becomes a globally recognized image. Gravatar was created by Tom Werner and <a title="http://blog.gravatar.com/2007/10/18/automattic-gravatar/" href="http://blog.gravatar.com/2007/10/18/automattic-gravatar/">acquired in 2007</a>.</p>\n<h2>BuddyPress Acqui-hire</h2>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2009/04/buddypresslogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-966 size-full" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2009/04/buddypresslogo.png?resize=212%2C76" alt="BuddyPress Logo" /></a><a title="https://buddypress.org/" href="https://buddypress.org/">BuddyPress</a> was conceived <a title="https://buddypress.org/about/story/" href="https://buddypress.org/about/story/">in 2008</a> by Andy Peatling and started out as a set of plugins to add social networking features to WordPress MU (multi-user). In March of 2008, Peatling was <a title="http://ma.tt/2008/03/backing-buddypress/" href="http://ma.tt/2008/03/backing-buddypress/">acqui-hired by Automattic</a> and joined the company as an employee. Peatling is not as active in BuddyPress core development, but thanks to John James Jacoby and the community surrounding it, it’s still an actively developed project. BuddyPress 2.2 <a title="http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api" href="http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api">was released in February and </a>features a new member type API and several bug fixes.</p>\n<h2>IntenseDebate</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2009/08/intensedebatelogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-2326 size-full" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2009/08/intensedebatelogo.png?resize=189%2C43" alt="IntenseDebate Logo" /></a><a title="http://intensedebate.com/home" href="http://intensedebate.com/home">IntenseDebate</a> is a third-party commenting service that showed a lot of promise of being a premiere service to replace the native commenting system in WordPress. It synced comments from the service to the local database to ensure no comments were lost. The service <a title="http://blog.intensedebate.com/2009/03/05/introducing-intensedebate-plugins-add-the-features-you-want/" href="http://blog.intensedebate.com/2009/03/05/introducing-intensedebate-plugins-add-the-features-you-want/">introduced</a> a <a title="http://intensedebate.com/plugins" href="http://intensedebate.com/plugins">plugin eco-system</a> in 2009, that I think if given more time, would have helped the service fly past the competition. Unfortunately, development on the service came to a halt somewhere <a title="http://wptavern.com/what-is-the-future-of-comments-in-wordpress" href="http://wptavern.com/what-is-the-future-of-comments-in-wordpress">between 2012 and 2013</a>.</p>\n<p>IntenseDebate was founded by Isaac Keyet and Jon Fox in 2006 and was <a title="http://ma.tt/2008/09/intense-debate-goes-automattic/" href="http://ma.tt/2008/09/intense-debate-goes-automattic/">acquired by Automattic</a> in 2008.</p>\n<h2>Polldaddy</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2010/02/polldaddylogo2.png" rel="prettyphoto[38863]"><img class="alignright size-full wp-image-3334" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2010/02/polldaddylogo2.png?resize=242%2C56" alt="polldaddylogo2" /></a><a title="https://polldaddy.com/" href="https://polldaddy.com/">Polldaddy</a> is a platform agnostic service that lets users create surveys and polls. Polldaddy was founded in 2006 by David Lenehan in Sligo, Ireland and was <a title="http://blog.polldaddy.com/2008/10/15/automattic-acquires-polldaddy/" href="http://blog.polldaddy.com/2008/10/15/automattic-acquires-polldaddy/">acquired by Automattic</a> in 2008. Between 2006 and when the company was acquired, about 1 million polls were created and 195 million votes were collected. At the time of Polldaddy’s acquisition, Automattic had <a title="http://www.theguardian.com/technology/pda/2010/nov/26/ireland-sligo-polldaddy-wordpress-startup" href="http://www.theguardian.com/technology/pda/2010/nov/26/ireland-sligo-polldaddy-wordpress-startup">about 20 employees</a>.</p>\n<h2>Blo.gs</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/blogslogo.png" rel="prettyphoto[38863]"><img class="alignright size-full wp-image-38873" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/blogslogo.png?resize=244%2C90" alt="blogs logo" /></a><a title="http://blo.gs" href="http://blo.gs">Blog.gs</a> is a directory of recently updated blogs founded in 2002 by Jim Winstead. In 2005, the company was <a title="http://trainedmonkey.com/2005/6/14/blo_gs_has_been_acquired_by_yahoo_" href="http://trainedmonkey.com/2005/6/14/blo_gs_has_been_acquired_by_yahoo_">acquired by Yahoo!</a> and in 2009, transferred to Automattic. According to the <a title="http://ma.tt/2009/04/blogs-lives-on/" href="http://ma.tt/2009/04/blogs-lives-on/">announcement</a>, Automattic planned to beef up the service, “We’re looking forward to beefing up the service and giving it a refresh, while continuing its reputation for reliability.” The site’s design hasn’t changed in years and features like search and ping submissions are broken.</p>\n<h2>After the Deadline</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2009/09/afterthedeadlinelogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-2512 size-full" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2009/09/afterthedeadlinelogo.png?resize=253%2C60" alt="afterthedeadlinelogo" /></a><a title="http://www.afterthedeadline.com/" href="http://www.afterthedeadline.com/">After the Deadline</a> is a contextual spell checking service created in 2009 by Raphael Mudge. Out of all the acquisitions Automattic has made, Mudge has <a title="http://blog.afterthedeadline.com/2009/09/08/after-the-deadline-acquired/" href="http://blog.afterthedeadline.com/2009/09/08/after-the-deadline-acquired/">one of the best acquisition stories</a> I’ve read. After <a title="http://news.ycombinator.com/item?id=636168" href="http://news.ycombinator.com/item?id=636168">publishing a comment</a> on a Hacker News article showing off how AtD works, Mullenweg got in touch with Mudge and acquired the company in 2009.</p>\n<p>Mudge stayed with the company for a few years, but moved on to focus his energy on a new passion, <a title="http://www.advancedpentest.com/" href="http://www.advancedpentest.com/">cyber security</a>. AtD is actively developed and is available as <a title="http://jetpack.me/support/spelling-and-grammar/" href="http://jetpack.me/support/spelling-and-grammar/">a module in Jetpack</a>.</p>\n<h2>Plinky</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Plinkylogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-38875 size-full" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Plinkylogo.png?resize=283%2C127" alt="Plinkylogo" /></a><a title="http://www.plinky.com/" href="http://www.plinky.com/">Plinky</a> is a service created by Thing Labs that inspired users to write content. Every day Plinky displayed a prompt with a question, idea, or challenge. Writers answered the challenge using the Plinky editor which made it easy to add rich media and send posts to social media services. Plinky was acquired by Automattic in 2010. In 2014, user registration was disabled and the service was placed into archive mode.</p>\n<h2>Code Garage</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2012/12/CodeGaragelogo.jpg" rel="prettyphoto[38863]"><img class="alignright wp-image-6754 size-full" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2012/12/CodeGaragelogo.jpg?resize=262%2C54" alt="Code Garage Logo" /></a><a title="http://codegarage.com/blog/" href="http://codegarage.com/blog/">Code Garage</a> provided backups, security scanning, and crisis control for WordPress sites. Customers could monitor 5 websites for $25 a month which was more affordable than VaultPress which charged a flat fee per site. Code Garage was founded in 2010 and <a title="http://blog.vaultpress.com/2012/12/21/vaultpress-in-the-garage/" href="http://blog.vaultpress.com/2012/12/21/vaultpress-in-the-garage/">acquired by Automattic</a> in 2012.</p>\n<p>In May of 2013, Code Garage <a title="http://wptavern.com/code-garage-migrations-are-underway" href="http://wptavern.com/code-garage-migrations-are-underway">migrated customers</a> to VaultPress and promptly shut the service down in July. As part of the acquisition, Peter Butler, one of the company’s founders, joined Automattic to work with the VaultPress team.</p>\n<h2>Simperium and Simplenote</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Simperiumlogo.png" rel="prettyphoto[38863]"><img class="alignright size-full wp-image-38878" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Simperiumlogo.png?resize=127%2C126" alt="Simperiumlogo" /></a> <a title="https://simperium.com/" href="https://simperium.com/">Simperium </a>is the creator of <a title="http://simplenote.com/" href="http://simplenote.com/">SimpleNote</a>, a note taking app that is synchronized across platforms. Simperium is a data synchronization service that allows developers to move data everywhere it’s needed. The company was founded in 2010 and <a title="http://ma.tt/2013/01/simplenote-and-simperium/" href="http://ma.tt/2013/01/simplenote-and-simperium/">acquired by Automattic</a> in 2013.</p>\n<h2>Poster</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/PosterApp.png" rel="prettyphoto[38863]"><img class="alignright size-medium wp-image-38945" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/PosterApp.png?resize=300%2C148" alt="Poster Mobile App" /></a>Poster was a slick, easy to use, WordPress mobile app for iOS that was founded by <a title="http://www.tomwitkin.com/" href="http://www.tomwitkin.com/">Tom Witkin</a> and <a title="http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/" href="http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/">acquired in 2013</a>. After the acquisition, the app was removed from the App Store and Witkin joined the mobile team at Automattic.</p>\n<p>Frederic Lardinois, who <a title="http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/" href="http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/">wrote about the news</a> on TechCrunch, described the app as, “one of the most elegant and smarter mobile WordPress clients.” The WordPress mobile apps continue to get better, but it’s unclear which improvements have been influenced by Witkin or Poster.</p>\n<h2>Lean Domain Search</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2013/07/LeanDomainSearchLogo.jpg" rel="prettyphoto[38863]"><img class="alignright size-full wp-image-7919" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2013/07/LeanDomainSearchLogo.jpg?resize=259%2C51" alt="Lean Domain Search Logo" /></a><a title="http://www.leandomainsearch.com/" href="http://www.leandomainsearch.com/">Lean Domain Search </a>is a service that allows users to find and register domain names. One of its signature features is the domain name generator which suggests domains based on a word or phrase. Lean Domain Search was created by Matt Mazur in 2012 and <a title="http://www.leandomainsearch.com/blog/45-lean-domain-search-acquired-by-automattic" href="http://www.leandomainsearch.com/blog/45-lean-domain-search-acquired-by-automattic">acquired in 2013.</a> When users find a domain they like, Lean Domain Search provides an option to register it and create a new blog on WordPress.com. Thanks to the acquisition, the service is still available and free to use.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/LeanDomainSearchResults.png" rel="prettyphoto[38863]"><img class="size-full wp-image-38882" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/LeanDomainSearchResults.png?resize=996%2C761" alt="Lean Domain Search Results" /></a>Lean Domain Search Results\n<p> </p>\n<h2>Cloudup</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2013/12/cloudup.png" rel="prettyphoto[38863]"><img class="alignright wp-image-12353 size-thumbnail" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2013/12/cloudup.png?resize=150%2C150" alt="cloudup" /></a><a title="https://cloudup.com/" href="https://cloudup.com/">Cloudup</a> is a free file-sharing service founded by Thianh Lu and Guillermo Rauch in 2010 and <a title="http://ma.tt/2013/09/automattic-cloudup/" href="http://ma.tt/2013/09/automattic-cloudup/">acquired in 2013</a>. <a title="http://techcrunch.com/2013/09/25/automattic-acquires-file-sharing-service-cloudup-to-build-faster-media-library-and-enable-co-editing/" href="http://techcrunch.com/2013/09/25/automattic-acquires-file-sharing-service-cloudup-to-build-faster-media-library-and-enable-co-editing/">According to TechCrunch</a>, the acquisition was supposed to help Automattic improve two particular features on WordPress.com. The media library used for uploading visual content and co-editing to give multiple users the ability to edit a post at the same time.</p>\n<p>Immediately following the deal, the team was tasked with revamping the post editor and replacing the media library on WordPress.com with Cloudup. Although Cloudup has <a title="https://cloudup.com/blog" href="https://cloudup.com/blog">continued to add new features</a>, it has yet to replace the media library or add the ability to edit posts at the same on WordPress.com.</p>\n<h2>Longreads</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/longreads.jpg" rel="prettyphoto[38863]"><img class="alignright size-medium wp-image-20743" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/longreads.jpg?resize=300%2C95" alt="longreads" /></a><a title="http://longreads.com/" href="http://longreads.com/">Longreads</a> is dedicated to finding and sharing the best long-form stories on the web. Longreads was founded by Mark Armstrong in 2009 and <a title="http://en.blog.wordpress.com/2014/04/09/longreads-joins-automattic/" href="http://en.blog.wordpress.com/2014/04/09/longreads-joins-automattic/">acquired in 2014. </a>Longreads operates under a paid subscription model with plans ranging from $3-5 per month.</p>\n<h2>Scroll Kit</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/scroll-kit.png" rel="prettyphoto[38863]"><img class="alignright size-medium wp-image-21768" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/scroll-kit.png?resize=300%2C158" alt="scroll-kit" /></a> <a title="http://www.scrollkit.com/" href="http://www.scrollkit.com/">Scroll Kit</a> allowed users to create web pages without writing a line of code using a powerful visual editor. It made headlines when co-founder, Cody Brown, <a title="http://techcrunch.com/2013/05/21/snow-fail-the-new-york-times-and-its-misunderstanding-of-copyright/" href="http://techcrunch.com/2013/05/21/snow-fail-the-new-york-times-and-its-misunderstanding-of-copyright/">recreated the famous Snow Fall piece</a> from the New York Times. Brown said he made the replica site in only an hour, “The New York Times spent hundreds of hours hand-coding ‘Snow Fall.’ We made a replica in an hour.”</p>\n<p>Founded by Kate Ray and Cody Brown, <a title="http://www.scrollkit.com/" href="http://www.scrollkit.com/">Scroll Kit</a> was <a title="http://ma.tt/2014/04/scrollkit-and-longreads-at-automattic/" href="http://ma.tt/2014/04/scrollkit-and-longreads-at-automattic/">acquired in 2014</a>. According to an announcement on the <a title="http://www.scrollkit.com/" href="http://www.scrollkit.com/">Scroll Kit website</a>, Ray and Brown joined the WordPress.com product team. Scroll Kit shut down its service and users had three months to export their content. I’ve never used Scroll Kit, so it’s hard to determine what improvements are influenced by Ray and Brown. <a title="http://wptavern.com/automattic-snaps-up-scroll-kit-to-add-to-the-wordpress-com-product-team" href="http://wptavern.com/automattic-snaps-up-scroll-kit-to-add-to-the-wordpress-com-product-team">We questioned</a> whether Scroll Kit’s editor would be added to the theme editing experience on WordPress.com. As a WordPress.com user, I haven’t noticed any major changes to the theme editing experience since the acquisition.</p>\n<h2>Parka</h2>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2013/07/bruteforcelogo.jpg" rel="prettyphoto[38863]"><img class="alignright size-full wp-image-7693" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2013/07/bruteforcelogo.jpg?resize=228%2C219" alt="Brute Protect Logo" /></a><a title="http://getparka.com/" href="http://getparka.com/">Parka</a> is the parent company of <a title="https://bruteprotect.com/" href="https://bruteprotect.com/">BruteProtect,</a> a service that provides brute force login protection for thousands of sites. Parka was established in 2013 by Sam Hotchkiss and <a title="http://jetpack.me/2014/08/26/automattic-bruteprotect/" href="http://jetpack.me/2014/08/26/automattic-bruteprotect/">acquired in 2014. </a>All seven Parka employees joined Automattic and are part of the Jetpack development team.</p>\n<p>As part of the acquisition, <a title="https://my.bruteprotect.com/" href="https://my.bruteprotect.com/">BruteProtect pro</a> services became free to use. BruteProtect is undergoing a transformation as it’s merged into Jetpack as a module. Merging with Jetpack will give millions of sites free brute force login protection making the web a safer place.</p>\n<h2>Code For The People</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/CodeForThePeopleLogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-38941 size-full" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/CodeForThePeopleLogo.png?resize=270%2C132" alt="CodeForThePeopleLogo" /></a><a title="http://codeforthepeople.com/" href="http://codeforthepeople.com/">Code For The People</a> is a WordPress development agency based in the United Kingdom and a long time partner of the <a title="http://vip.wordpress.com/" href="http://vip.wordpress.com/">WordPress.com VIP program</a>. Founded by Simon Dickson and Simon Wheatley, Code For The People was <a title="http://wptavern.com/automattic-acquires-code-for-the-people-expands-wordpress-com-vips-reach-into-european-markets" href="http://wptavern.com/automattic-acquires-code-for-the-people-expands-wordpress-com-vips-reach-into-european-markets">acquired in 2014. </a>All six employees joined Automattic and will help out the VIP team during European hours.</p>\n<p>This acquisition is historic for two reasons. The first is that CTFP is the first WordPress development agency to be acquired by Automattic. Second, CFTP employee John Blackbourn was leading<a title="http://wptavern.com/meet-john-blackbourn-wordpress-4-1-release-lead" href="http://wptavern.com/meet-john-blackbourn-wordpress-4-1-release-lead"> the development cycle for WordPress 4.1</a> when the acquisition occurred, turning him into an Automattic employee.</p>\n<p>In addition to talent, they also obtained CFTP’s <a href="http://babbleplugin.com/" target="_blank">Babble</a> plugin, an open source multilingual tool, that will continue to be maintained by Automattic. According to <a title="http://techcrunch.com/2014/11/06/automattic-buys-uks-code-for-the-people-to-build-out-its-wordpress-vip-enterprise-business/" href="http://techcrunch.com/2014/11/06/automattic-buys-uks-code-for-the-people-to-build-out-its-wordpress-vip-enterprise-business/">TechCrunch</a>, Mullenweg says Babble was a key part of the deal.</p>\n<h2>Thoughts and Observations</h2>\n<p>While going through the list of acquisitions Automattic has made over the years, a few things occurred to me. For all the great talent Automattic has acquired, it’s difficult to determine an individual’s influence on WordPress.com products. For instance, as an individual, Tom Witkin created an awesome mobile app for WordPress. Since being acquired, I can’t tell which improvements in the <a title="https://apps.wordpress.org/" href="https://apps.wordpress.org/">WordPress for iOS app</a> are the result of his work.</p>\n<p>Whether it’s due to time, difficulty, or other factors, certain items in some of the acquisition announcements have failed to materialize. A good example is the Cloudup acquisition. Nearly two years after the deal happened, WordPress.com and the self-hosted version still lack the ability to co-edit a post at the same time. There’s also no improvements to the media library I can trace back to the Cloudup team. It’s unclear if these are items still on the priority list or if they’ve been discarded.</p>\n<p>Another thing I noticed is that I didn’t recognize most of the businesses, products, and services acquired until after the acquisition announcement was published. It indicates Mullenweg has his eye on up and coming properties doing awesome things in the space. Unfortunately, in some instances, it means the product or service is shut down by Automattic eliminating any opportunity to use it. Poster, Blo.gs, and Scroll Kit immediately come to mind as things I’ll never have the chance to use.</p>\n<p>I hope you enjoyed this trip down memory lane. We’re at the beginning of a new year and with <a title="http://recode.net/2014/05/05/wordpress-parent-automattic-has-raised-160-million-now-valued-at-1-16-billion-post-money/" href="http://recode.net/2014/05/05/wordpress-parent-automattic-has-raised-160-million-now-valued-at-1-16-billion-post-money/">Automattic raising $160M in 2014</a>, it’s only a matter of time before we read about the next acquisition. Who or what do you think the company will acquire next?</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 13 Feb 2015 03:55:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:73:"WPTavern: Customizer Theme Switcher Officially Proposed for WordPress 4.2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38876";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:83:"http://wptavern.com/customizer-theme-switcher-officially-proposed-for-wordpress-4-2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2720:"<p>This week, Nick Halsey officially <a href="https://make.wordpress.org/core/2015/02/11/customizer-theme-switcher-feature-plugin-merge-proposal/" target="_blank">proposed</a> the Customizer Theme Switcher feature plugin for merge into WordPress 4.2. Halsey summarizes the goal of bringing theme switching into the customizer: “By integrating themes directly into the Customizer, live-previewing workflows are greatly simplified, and the relationship between themes and theme/site options is clarified for the user,” he said.</p>\n<p>Halsey explained that the new UI is part of a long-term plan to move all the “Appearance” functionality into the customizer. “The future roadmap includes <a href="https://wordpress.org/plugins/menu-customizer">Menus</a>, Theme-Install, and iterations on widgets that would allow the customizer to entirely replace those admin screens for most users,” he said.</p>\n<p>His proposal includes a video that demonstrates how a user might scroll through the customizer to browse and preview available themes.</p>\n<p><span class="embed-youtube"></span></p>\n<p>It’s important to note that if this feature plugin is cleared for merge, users will not have to search for and install themes from the narrow customizer pane. The Customizer Theme Switcher is intended for previewing and activating themes that have already been installed. Contributors on the project are proposing that WordPress 4.2 redirect the “Themes” link that appears in the frontend admin bar to the customizer, instead of the backend.</p>\n<p>In the future, Halsey plans to integrate theme installation into the customizer, but this is a larger effort that will be added to the project in a later release. Coming up with a UI that doesn’t make this a cramped and inconvenient experience is going to be a challenge.</p>\n<p>For more technical details on the proposed core changes and merge implementation, check out Halsey’s post on the <a href="https://make.wordpress.org/core/2015/02/11/customizer-theme-switcher-feature-plugin-merge-proposal/" target="_blank">Make/Core blog</a>. If you want to test out the new UI for theme switching, you can download the <a href="https://wordpress.org/plugins/customizer-theme-switcher/" target="_blank">Customizer Theme Switcher</a> plugin from WordPress.org.</p>\n<p>The feature plugin merge window will be closing the week of February 25th, and the official release is <a href="https://make.wordpress.org/core/version-4-2-project-schedule/" target="_blank">targeted for the week of April 22nd</a>. Updates on whether or not the Customizer Theme Switcher is approved for merge will be available within the next few weeks.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Feb 2015 21:04:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:85:"WPTavern: WPWeekly Episode 179 – Interview With James Laws, Co-founder of WP Ninjas";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=38913&preview_id=38913";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:90:"http://wptavern.com/wpweekly-episode-179-interview-with-james-laws-co-founder-of-wp-ninjas";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3285:"<p>In this episode of WordPress Weekly, <a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by the co-founder of <a title="http://wpninjas.com/" href="http://wpninjas.com/">WP Ninjas</a>, <a title="http://jameslaws.com/" href="http://jameslaws.com/">James Laws</a>. WP Ninjas specializes in WordPress plugins such as <a title="http://ninjaforms.com/" href="http://ninjaforms.com/">Ninjas Forms</a> and <a title="http://ninjademo.com/" href="http://ninjademo.com/">Ninja Demo</a>.</p>\n<p>In the show, Laws explains the origins of the business and why he decided to enter the forms market despite GravityForms being a popular choice among WordPress developers. He shares some of the mistakes he made early on such as competing based on price and offering a one time purchase price. Near the end of the interview, we find out what the future holds for both products.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/initiative-aims-to-improve-the-new-user-experience-in-wordpress-4-2" href="http://wptavern.com/initiative-aims-to-improve-the-new-user-experience-in-wordpress-4-2">Initiative Aims to Improve the New User Experience in WordPress 4.2</a><br />\n<a title="http://wptavern.com/the-first-conference-dedicated-to-wordpress-com-debuts-on-march-28th-in-portland-or" href="http://wptavern.com/the-first-conference-dedicated-to-wordpress-com-debuts-on-march-28th-in-portland-or">The First Conference Dedicated to WordPress.com Debuts on March 28th in Portland, OR</a><br />\n<a title="http://wptavern.com/wp-rocket-grows-from-0-to-35k-in-monthly-revenue" href="http://wptavern.com/wp-rocket-grows-from-0-to-35k-in-monthly-revenue">WP Rocket Grows From $0 to $35K in Monthly Revenue</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="https://wordpress.org/plugins/adminrocket/" href="https://wordpress.org/plugins/adminrocket/">AdminRocket</a> allows you to customize the WordPress backend with custom themes, dashboard widgets, and your own settings.</p>\n<p><a title="https://wordpress.org/plugins/seo-enforcer/" href="https://wordpress.org/plugins/seo-enforcer/">SEO Enforcer</a> is a small plugin that works with WordPress SEO by Yoast (it’s required), that will truncate your title or meta description tags if they’re too long.</p>\n<p><a title="https://wordpress.org/plugins/disable-wp-registration-page/" href="https://wordpress.org/plugins/disable-wp-registration-page/">Disable WP Registration Page</a> disables the default WordPress registration page by redirecting users who access the registration page URL to the default WordPress login page.</p>\n<p><strong>Next Episode:</strong> Wednesday, February 18th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #179:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Feb 2015 20:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:54:"Matt: What I Miss and Don’t Miss About San Francisco";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44012";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:38:"http://ma.tt/2015/02/left-my-heart-in/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5012:"<p>A few months ago I was chatting with <a href="http://www.borthwick.com/weblog/">John Borthwick</a>, who had just returned from a trip to San Francisco. I asked him how the city was doing as if he were a traveler who had visited someplace exotic — “How is it <em>over there</em>?” (As an investor he probably sees the crazier side of the city, since part of his job is looking at hundreds of companies, the vast majority of which will fail, and trying to pick a few winners.)</p>\n<p>Despite getting near-daily meeting requests, I don’t currently have any plans to visit San Francisco. I was there in June for a few days for Foo Camp and for drinks with <a href="http://www.tommarioni.com/">the artist Tom Marioni</a>. I returned for <a href="http://2014.sf.wordcamp.org/">WordCamp San Francisco in October</a>, and again a few weeks ago for <a href="http://scobleizer.com/">Scoble’s</a> 50th birthday party and a board meeting. But the couple-times-a-year rhythm seems to be enough for me. I’m enjoying the distance a bit, in fact.</p>\n<p>There has been plenty written about the bubble culture in SF right now, including on <a href="http://www.sfgate.com/bayarea/article/Is-the-antitech-movement-obsolete-6067623.php">the antitech movement that never really took off</a>. <a href="http://ma.tt/2013/03/evolution-of-san-francisco/">It’s a topic I already blogged about in 2013</a>. But I was curious to unpack my own thoughts about being away from it all.</p>\n<p>What I don’t miss:</p>\n<ul>\n<li>Too many meetings — every possible company is there, and everyone wants to meet.</li>\n<li>High prices for everything, from groceries to cocktails. Not even going to talk <a href="http://ma.tt/2014/12/how-paul-graham-is-wrong/">about the real estate market and rentals</a>.</li>\n<li>It takes forever to get across the city, even though it’s only 7 miles.</li>\n<li>The public transit, while workable, pales in comparison to other places like NYC.</li>\n<li>The weather isn’t bad, until you drive to Palo Alto or Marin and notice how much nicer it is there. (Or take a one-hour flight to Los Angeles or San Diego.)</li>\n<li>This is anecdotal, but I feel like cell phone service is terrible, especially for making calls. Calls are unintelligible and drop frequently. I think this is why everyone texts.</li>\n</ul>\n<p>I don’t have any problem with the social scene; SF might be tech-heavy, but it’s fairly easy to get out of the tech bubble. Many forget that San Francisco is home to a ton of people working for non-profits, in fashion, finance, bio-tech, art, and music.</p>\n<p>What I miss, deeply: <strong>the people.</strong> Some of my favorite people, professionally and personally, are in the Bay Area, and that’s the thing that will draw me back someday. I’m lucky that I can catch up with folks when they travel, like <a href="http://janekim.org/">Jane</a> or <a href="http://tonyconrad.wordpress.com/">Tony</a> in New York or <a href="http://om.co/">Om</a> in Italy. Of course the Automattic headquarters is there, along with some great colleagues, but I can also catch up with them at meetups.</p>\n<p>I miss how much <strong>technology permeates the culture</strong> there, from billboards to services like Uber or <a href="https://postmates.com/">Postmates</a> (or <a href="https://munchery.com/">Munchery</a> or <a href="https://www.spoonrocket.com/">Spoonrocket</a>) that today seem like conveniences, but will be the basis of something very meaningful down the line. You can feel like you’re living in the future there. Internet speeds seem to be getting better, too — local ISPs like <a href="https://webpass.net/">Webpass</a> and <a href="https://www.monkeybrains.net/">Monkeybrains</a> are leading the way, but even my Comcast account there delivers 120mbps.</p>\n<p>I miss being able to run along the water, and the close proximity to lots of beautiful nature areas (granted I didn’t take much advantage of those when I was still around). The quality of light is really nice — when you can see it. Restaurants, though tending toward pricey, offer great ingredients and quality.</p>\n<p>Finally, you can’t deny it’s a city of hustlers. This tweet has since been deleted, but you get the idea:</p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/photomatt">@photomatt</a> Can we interest you in any lemonade? Or what about a quick meeting at <a href="https://twitter.com/CoupaCafe">@CoupaCafe</a> in <a href="https://twitter.com/hashtag/paloalto?src=hash">#paloalto</a> <a href="http://t.co/ExoxtXHu38">pic.twitter.com/ExoxtXHu38</a></p>\n<p>— Closetclicks (@closetclicks) <a href="https://twitter.com/closetclicks/statuses/500345852352008193">August 15, 2014</a></p></blockquote>\n<p></p>\n<p><img class="wp-image-44687 size-full" src="http://i0.wp.com/ma.tt/files/2015/02/closetclicks_2015-Feb-11.jpg?resize=604%2C453" alt="" /></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Feb 2015 20:10:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:71:"WPTavern: SiteGround Sponsors a Full-Time Contributor to WordPress Core";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38870";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:81:"http://wptavern.com/siteground-sponsors-a-full-time-contributor-to-wordpress-core";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4217:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/siteground-offices.jpg" rel="prettyphoto[38870]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/siteground-offices.jpg?resize=720%2C352" alt="siteground-offices" class="aligncenter size-full wp-image-38896" /></a></p>\n<p><a href="https://profiles.wordpress.org/iseulde" target="_blank">Iseulde Van Dorpe</a> is joining <a href="https://www.siteground.com/" target="_blank">SiteGround</a> to work full-time as a contributor to WordPress core. She expects to work on a variety of different tasks, particularly those that relate to media and the editing experience. Van Dorpe’s recent core contributions helped to improve the editor for users in the 4.0 release.</p>\n<blockquote class="twitter-tweet" width="550"><p>There are many WordPress 4.0 standouts, but <a href="https://twitter.com/avryl">@avryl</a> took my editor sizing/scrolling idea and ran with it. Turned it into something *magical*.</p>\n<p>— Mark Jaquith (@markjaquith) <a href="https://twitter.com/markjaquith/status/507580649536880640">September 4, 2014</a></p></blockquote>\n<p></p>\n<p>SiteGround identified and selected its new contributor based on recommendations from others involved in core development. “In search of developing our WordPress involvement even further, we made some inquiries as to what is most needed by the project at the moment,” said Tina Kesova, VP of Strategic Partnerships at SiteGround.</p>\n<p>“The answer we received was that front-end and Javascript specialists will be very valuable. A recommendation for Iseulde’s work in this field was also received from several key WordPress people, who have been impressed with the things she has done for the last year since she first started contributing on a volunteer basis,” she said.</p>\n<p>For the past five years, SiteGround has been actively involved with supporting the project by sponsoring community events, dedicating employees to help with event orgranization, and sending speakers to share their knowledge at WordCamps around the world.</p>\n<p>“We also already have a great relationship with Mario Peshev, who is contributing to the core on a part-time basis sponsored by our company,” Kesova said. This experience helped with the company’s decision to sponsor Van Dorpe as a full-time contributor.</p>\n<p>“What truly won us after we had personally met her, was that she is not just a capable WordPress developer, but she is also a great fit for our company culture,” Kesova said. “She has the same passion for quality and efficiency that drives SiteGround.”</p>\n<h3>What does a full-time WordPress core contributor do?</h3>\n<p>SiteGround isn’t the first hosting company to sponsor an employee’s time for working on the WordPress project. WP Engine, Dreamhost, and a handful of others have been doing so for the past several years. The job varies, depending on the amount of time the company can lend and the contributor’s areas of specialty and interest.</p>\n<p>“As part of the SiteGround team Iseulde will be working full time contributing to WordPress core and helping with some maintenance tasks,” Kesova said. “She has some great ideas about improvements in the WordPress backend, including the editor and the media manager, and she will be also doing some support work for WordPress by reviewing and closing tickets and patches.”</p>\n<p>Van Dorpe, originally from Belgium, will be working remotely from her current home in Glasgow, Scotland. SiteGround’s main headquarters are in Sofia, Bulgaria, but it also has two offices in Bulgaria and one in Spain. The company is in the process of hiring its first American employee and plans to open an office in the USA soon.</p>\n<p>“As a web hosting company, we are aware of the big significance open source projects like WordPress have for our business, by helping people build their websites on top of the hosting service we provide,” Kesova said. “That is why we believe it is our duty to support such projects in a meaningful way that can help further their development.”</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Feb 2015 18:55:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:35:"Post Status: The WordPress REST API";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=8643";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"https://poststatus.com/wordpress-json-rest-api/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:22527:"<p>The WordPress REST API project is the most exciting project for the platform since custom post types were introduced in WordPress 2.9 and 3.0. I really believe that.</p>\n<p>While the project is under a major rewrite and not yet slated for a specific core release, it can be really confusing to figure out what’s going on.</p>\n<p>Let’s talk about what the new API is, why it matters, and go over the state of the API to answer some common questions I’ve seen.</p>\n<h3>What is a JSON REST API?</h3>\n<p>Let’s start by defining the acronyms. It may seem tedious for experienced developers, but it’s a good way to get us in the right mindset.</p>\n<h4>API: Application Program Interface</h4>\n<p>APIs have a broad definition. Any program is an API. When you have some form of construct in a programming language — like PHP for example — where the construct makes it possible to perform a programming task, that’s a good way to think of an API.</p>\n<p>Let’s use custom post types as an example. WordPress has a custom post types API. Really, it’s just a significant chunk of code that makes previously difficult tasks simpler. Now, you can create all new types of content — that mimic the content structure for posts and pages — with just a few lines of code.</p>\n<p>The core team created a programming interface to make that possible. That’s a layman’s definition for an API.</p>\n<h4>JSON: JavaScript Object Notation</h4>\n<p>JSON is a preferred format for structuring data so that a variety of applications can read it. You can create JSON formatted data from one programming language and read and process it from another. It’s similar to XML, but seemingly universally preferred over XML.</p>\n<p>JSON makes communication between something like WordPress and something like a mobile app completely possible, as JSON is a common data format between them, so that you can create data on the WordPress side and return it in JSON, so that the data can be easily read on the mobile app side. Such relationships don’t have to be between WordPress and a mobile app; it could be nearly anything, meaning “WordPress as an app platform” becomes much more realistic.</p>\n<div id="attachment_8687" class="wp-caption aligncenter"><img class="size-large wp-image-8687" src="https://poststatus.com/wp-content/uploads/2015/02/json-api-data-752x460.jpg" alt="A JSON blurb, at least how it looks when you go straight to the URL" width="752" height="460" /><p class="wp-caption-text">A JSON blurb, at least how it looks when you go straight to the URL</p></div>\n<p>JSON looks terrifying if you see it “raw”. For instance, Post Status has the WordPress REST API enabled, so if you go to <a href="https://poststatus.com/wp-json/posts">https://poststatus.com/wp-json/posts</a> you can see my recent posts in a JSON format. This isn’t pretty to the human eye, but for a programming language, it’s beautiful.</p>\n<h4>REST: Representational State Transfer</h4>\n<p>A REST API is an architectural preference. Most REST APIs, including WordPress’, are based on HTTP. This means that the primary actions of the REST API are HTTP actions: <code>POST</code>, <code>GET</code>, <code>PUT</code>, <code>DELETE</code>.</p>\n<p>So, with a REST API, we are reading or manipulating data using HTTP.</p>\n<p>Wikipedia kindly defines RESTful APIs better than I can, namely with a definition based upon the restraints on the API itself:</p>\n<blockquote><p>Web service APIs that adhere to the <a href="http://en.wikipedia.org/wiki/Representational_state_transfer#Architectural_constraints">REST architectural constraints</a> are called RESTful. HTTP based RESTful APIs are defined with these aspects:</p>\n<ul>\n<li>base <a class="mw-redirect" title="URI" href="http://en.wikipedia.org/wiki/URI">URI</a>, such as <code>http://example.com/resources/</code></li>\n<li>an <a title="Internet media type" href="http://en.wikipedia.org/wiki/Internet_media_type">Internet media type</a> for the data. This is often <a title="JSON" href="http://en.wikipedia.org/wiki/JSON">JSON</a> but can be any other valid Internet media type (e.g. XML, Atom, microformats, images, etc.)</li>\n<li>standard <a class="mw-redirect" title="HTTP method" href="http://en.wikipedia.org/wiki/HTTP_method">HTTP methods</a> (e.g., GET, PUT, POST, or DELETE)</li>\n<li>hypertext links to reference state</li>\n<li>hypertext links to reference related resources<sup id="cite_ref-8" class="reference"><a href="http://en.wikipedia.org/wiki/Representational_state_transfer#cite_note-8">[8]</a></sup></li>\n</ul>\n</blockquote>\n<p>These restrictions serve as standards that anyone working with a RESTful API can expect to exist. So, in my case, I’m utilizing both the WP API and the Mailchimp API on Post Status. Interacting with either feels similar, because they’ve placed similar constraints on themselves.</p>\n<h3>What is the WordPress REST API?</h3>\n<p>Now we know what a JSON REST API is, so we can better define what the WordPress one is.</p>\n<p><span class="pullquote alignright">The WordPress REST API is a common data and programming interface that abstracts the reading and writing of information for WordPress from the WordPress application as we’ve previously known it.</span> Now, developers working with WordPress don’t have to know that much about WordPress.</p>\n<h3>How can the WordPress REST API be used?</h3>\n<p>Developers will be able to perform nearly all the data manipulation and data reading functions that are possible with PHP, with the new API. What’s that mean? It means everything.</p>\n<h4>Ditching WordPress on the front-end</h4>\n<p>With the JSON API, the frontend of WordPress doesn’t have to be WordPress at all. For example, developers can completely bypass the WordPress templating engine using the API. They can even keep the backend of WordPress and the front-end of the website on completely different server stacks, because they just need to read the data using the API.</p>\n<p>There are already many websites doing this around the web. Some of them use custom APIs they built themselves, and others are using the new WordPress REST API. Let’s discuss a couple of examples:</p>\n<ol>\n<li>The New York Times uses the WordPress REST API for a variety of things. They are able to use the API in combination with their proprietary CMS. This allows them to pull WordPress data for placement on the Times’ homepage and other places very easily. They’re also using the REST API for their live event coverage, like this <a href="http://elections.nytimes.com/2014/liveblog">elections live blog</a>.</li>\n<li><a href="http://www.bloomberg.com/politics/">Bloomberg Politics</a> uses WordPress to publish, but based on the front-end of the website, you’d never know it. I don’t think they’re using the official WordPress REST API, but they could.</li>\n<li><a href="http://mashable.com/">Mashable</a> uses WordPress to publish, but their front-end is not WordPress at all. This is also a custom implementation, as they made the switch before the official REST API was even underway.</li>\n</ol>\n<p>These are three examples of news sites using REST APIs for the front-end. But the applications go much, much farther than that.</p>\n<h4>WordPress as an application</h4>\n<p>If you want to see a prime case study, watch K. Adam White’s presentation from WordCamp San Francisco 2014, where he talks about <a href="http://wordpress.tv/2014/11/03/k-adam-white-wordpress-in-weird-places-content-management-for-node-using-rest/">how his team used WordPress as the CMS for a node.js app</a>. This really highlights the potential I’m talking about.</p>\n<p>Looking through the resulting <a href="https://github.com/kadamwhite/expresspress">ExpressPress repo</a> that K. Adam highlights in his presentation is an educational and fascinating experience.</p>\n<h4>Custom WordPress admins</h4>\n<p>WordPress administration doesn’t have to use the WordPress admin as we know it. With the REST API, you can create, edit, and delete content just as well as you can read it.</p>\n<p>Eventually, the WordPress admin itself may be re-written on top of the REST API. Using the API, creating completely custom administration panels will be easier than ever before. This will allow developers to create catered administration experiences for a particular application.</p>\n<div id="attachment_8686" class="wp-caption aligncenter"><img class="size-large wp-image-8686" src="https://poststatus.com/wp-content/uploads/2015/02/json-api-wpcom-post-editor-752x561.jpg" alt="The WordPress.com editor" width="752" height="561" /><p class="wp-caption-text">The WordPress.com editor</p></div>\n<p>For example, WordPress.com has already utilized their own REST API (which will hopefully be a similar implementation to the core API once it’s included) to create a custom admin experience for their blogging platform.</p>\n<div id="attachment_8685" class="wp-caption aligncenter"><img class="size-large wp-image-8685" src="https://poststatus.com/wp-content/uploads/2015/02/wp-api-happy-tables-752x490.jpg" alt="The Happy Tables editor" width="752" height="490" /><p class="wp-caption-text">The Happy Tables editor</p></div>\n<p>Other services, like <a href="http://happytables.com">Happy Tables</a> for instance, have also created custom WordPress admins. Doing this in the future will be easier than ever because the REST API integrates existing WordPress functionality to the API, so that developers don’t have to reinvent the wheel.</p>\n<h4>App integrations</h4>\n<p>Additionally to custom web integrations, WordPress will be able to talk to apps easier than ever before as well.</p>\n<p>Previous apps that interfaced with WordPress would most often use XML-RPC. With the REST API, the ability to perform complex functions in a reliable manner is increased. It will be simpler than ever to create a mobile app that can not only read WordPress data, but also create, edit, and delete that data.</p>\n<p>The entire mobile app can be written in Objective-C, Swift, or whatever programming language, and interface with WordPress.</p>\n<p>An example of this in action is <a href="http://apppresser.com/">AppPresser</a> (<a title="AppPresser: A foundation for using WordPress to make mobile apps" href="https://poststatus.com/appresser-wordpress-mobile-apps/">which I covered</a> when it launched). AppPresser has created an application framework that integrates with the WordPress REST API to make creating WordPress apps for individual sites quite simple.</p>\n<p>But it’s not limited to app creation with a tool like AppPresser. People can now have one data-storage area (WordPress) that can power both the website and an app, and that is a powerful feature. Also, the apps can talk to and write to the WordPress database directly through the API.</p>\n<p>We will see dozens of WordPress apps and admin integrations over the next few years. We could even see whole startups build apps with WordPress as a base layer.</p>\n<p><span class="pullquote alignright">WordPress can provide an excellent foundation for user management, content management, and much more — reducing the amount of work a startup creating a prototype mobile application have to recreate themselves.</span> The REST API makes it so a mobile app can look completely custom and also use a tool as widely distributed as WordPress to power many of the internals.</p>\n<h3>When is the WordPress REST API going to be in core?</h3>\n<p>The REST API is under heavy development, and is also between major versions that will sever backward compatibility. That has made the state of the API confusing.</p>\n<p>The REST API hasn’t been slated for a particular release, though it is officially active <a href="https://make.wordpress.org/core/features-as-plugins/">for the “feature as plugin”</a> model. The goal is for it to hit core some time in 2015, so probably between WordPress 4.3 and 4.5. I’d guess closer to 4.5, as there will need to be a lot of testing once the new stable version comes out.</p>\n<h3>Keeping up with development</h3>\n<p>If you want to keep track of the WordPress REST API development, there are a variety of ways to do so, though finding the proper channels can be a challenge at the moment.</p>\n<p>First off, know that a major new version is being finalized as we speak, so there is disparity between 1.1.x and the upcoming version for information, code, and documentation. The version under development — and is a significant restructuring — has been under development for nearly seven months.</p>\n<p>The <a href="https://wordpress.org/plugins/json-rest-api/">WordPress.org official plugin page</a> is somewhat closely synchronized with the latest 1.x release, though it is a few commits behind. The plugin is authored by Ryan McCue, who is the project lead and the initial author of the plugin, as it was his Google Summer of Code project for the first iteration. The WordPress.org page could also use some updating to make it more obvious that it’s the official REST API plugin for the WordPress project.</p>\n<p>The <a href="https://github.com/WP-API/WP-API">WP API Github</a> is where active issue tracking, version management, and releases are being handled. The API has its own account on Github, rather than being a part of the WordPress account, as there are adjacent repos to the actual API and it wasn’t originally guaranteed to be in core.</p>\n<p>The key to understanding the various states of the WP REST API is to think in terms of <strong>Develop</strong>, <strong>Master</strong>, and <strong>Stable</strong> versions.</p>\n<ul>\n<li><a href="https://wordpress.org/plugins/json-rest-api/">WordPress.org plugin repository</a> is the Stable version of the WP API.</li>\n<li><a href="https://github.com/WP-API/WP-API/tree/master">Github Master branch</a> is where a Beta version of the next release is managed.</li>\n<li><a href="https://github.com/WP-API/WP-API/tree/develop">Github Develop branch</a> is where the active development occurs.</li>\n</ul>\n<p><strong>If you’re using the WordPress REST API in production, you should use the WordPress.org version only</strong>. The Github Master and Development versions should be used for development and testing only.</p>\n<h3>Improvements coming in the rewrite</h3>\n<p>The long development cycle for the new version of the REST API is because it’s a signifcant rewrite for the project.</p>\n<p>Based on feedback and real-world use cases, the team was able to identify necessary improvements that needed to happen.</p>\n<p>There have been many, many changes in this version, but a couple of big ones are as follows:</p>\n<ul>\n<li>New functions have been added to allow for registration of custom endpoints with namespaces and versions. Rachel Baker <a href="https://gist.github.com/krogsgard/c3975a2ff449f20e56f3">shared this gist with me</a> that showcases that. This means themes and plugins will be able to add to and extend the API, offering significantly more power to it.</li>\n<li>Comment creation and edit handling have been added in the rewrite.</li>\n<li>The team has also started work on support for options endpoints to be able to view, edit, and create general site options, which would make complete site management possible with the API, in addition to content management.</li>\n</ul>\n<p>The changes in the current development cycle have taken a long time, and have required some significant architectural changes, but are very much worth the long term benefits.</p>\n<h3>Contributors to the WordPress REST API</h3>\n<p>There have been <a href="https://github.com/WP-API/WP-API/graphs/contributors">49 code contributors</a> to the REST API project on Github. It’s already a huge community effort. However, there are some folks that are really driving the project forward.</p>\n<p><img class="aligncenter size-large wp-image-8684" src="https://poststatus.com/wp-content/uploads/2015/02/wp-api-contributors-752x484.png" alt="wp-api-contributors" width="752" height="484" /></p>\n<ul>\n<li><a href="https://twitter.com/rmccue">Ryan McCue</a>: Ryan is the overall project lead, and is generally steering the ship. This all started as his GSoC (Google Summer of Code) project and he is still the lead. He works for <a href="http://hmn.md/">Human Made</a>, primarily on Happy Tables.</li>\n<li><a href="https://twitter.com/rachelbaker">Rachel Baker</a>: Rachel is a project lead, and is doing a great deal of development, as well as education and evangelism. She works for <a href="http://10up.com">10up</a> as a Senior Web Engineer.</li>\n<li><a href="https://twitter.com/danielbachhuber">Daniel Bachhuber</a>: Daniel is in day to day conversations and also commits a lot of code to the project. He works for himself and is the interim engineering director at <a href="http://fusion.net/">Fusion</a>.</li>\n<li><a href="https://twitter.com/joe_hoyle">Joe Hoyle</a>: Joe is in day to day conversations and also commits a lot of code to the project. He is a co-founder of <a href="http://hmn.md/">Human Made</a>.</li>\n</ul>\n<p>Though I highlight these four contributors, but there are a whopping 400 people watching the #core-restapi channel in Slack, and there are 49 code contributors on Github. Everyone deserves a huge round of applause that’s taken part in the strategic, code, education aspects of this project.</p>\n<p>And this is all before it goes into the core development cycle. Once this gets slated for a specific release, it’s going to get an insane amount of attention to make sure it’s ready for prime time and the millions of WordPress installs out there.</p>\n<h3>Meetings and blogs for the REST API</h3>\n<p>The REST API has a standing channel and weekly meeting in WordPress Slack, as well as two blogs you can keep track of:</p>\n<ul>\n<li>#core-restapi on WordPress Slack is where day to day communication occurs, and a feed of commit activity also goes into that channel. The weekly meeting is also here — and is actually held twice per week — at 23:00 UTC on Mondays and Wednesdays.</li>\n<li>The <a href="https://make.wordpress.org/core/tag/json-api/">json-api tag on Make WordPress Core</a> is where blog posts about the API go. However, this has been rarely used, and is primarily just for release information.</li>\n<li>Frequent meeting notes and other discussions are posted on <a href="http://make.wp-api.org/">make.wp-api.org</a>, which is an 02 blog (P2’s mysterious successor).</li>\n<li>Documentation can be viewed on <a href="http://wp-api.org">wp-api.org</a>. It’s important to keep in mind that <strong>the docs on the main website are for the stable WordPress plugin</strong>, not the Develop branch.</li>\n</ul>\n<h3>Basics for using the WordPress REST API</h3>\n<p>The new API will make sense to people familiar with other REST APIs. However, if you are new to such things, even with the documentation you can easily get lost. I know I did.</p>\n<p>I will have a lot more resources for members soon, but I’ll try and give a quick intro to reading data now.</p>\n<p>The first thing to remember is that it’s very important to know if you will be reading data only or reading and changing data. If you are reading data from your own website, and using it on the same website, you don’t need to worry about authentication. If you are changing, adding, or deleting data, then you need to authenticate with the website you are making changes to.</p>\n<p>Let’s show a few simple examples of reading data with <code>GET</code>.</p>\n<p>A URL to pull content from Post Status would look like this:</p>\n<a href="https://gist.github.com/c983960972582c6ec2c0" target="_blank"><em>View this code snippet on GitHub.</em></a>\n<p>To pull content with <code>WP_Query</code> parameters you’re used to, you could do it like this:</p>\n<a href="https://gist.github.com/c983960972582c6ec2c0" target="_blank"><em>View this code snippet on GitHub.</em></a>\n<p>To pull content of a custom post type, you can do it like this:</p>\n<a href="https://gist.github.com/c983960972582c6ec2c0" target="_blank"><em>View this code snippet on GitHub.</em></a>\n<p>And to pull content of a custom post type with those same <code>WP_Query</code> parameters, it looks like this:</p>\n<a href="https://gist.github.com/c983960972582c6ec2c0" target="_blank"><em>View this code snippet on GitHub.</em></a>\n<p>What you see returned in those URLs is the JSON data we’re going after. Go ahead and put one of those URLs in a browser tab to see the return data.</p>\n<p>You can see how the method for grabbing that data feels familiar to using <code>WP_Query</code> for a standard WordPress loop. If you don’t specify a parameter, the defaults to <code>WP_Query</code> will be used.</p>\n<p>These URLs return that data, but obviously you’ll want to get that data programatically. You can do this within a WordPress install (or outside) with two common methods: PHP or AJAX.</p>\n<p>Handling the data will be similar to handling any other JSON data. I’ll have more on doing this with WordPress at a later date, but in the meantime you may enjoy <a href="http://torquemag.io/introduction-wordpress-new-universal-connector-json-rest-api/">Josh Pollock’s introduction</a> to using the REST API.</p>\n<p>Now, of course, you can query far more than posts, as the <a href="http://wp-api.org">WP API website</a> notes, but I just wanted to introduce the concepts.</p>\n<p>The API allows you to manage pretty much anything: posts, pages, custom post types, users, media, taxonomies, or even overall site data.</p>\n<h3>This is just the beginning</h3>\n<p>Unfortunately, I’ve hardly given a proper introduction to actually using the new WordPress REST API. That will have to wait until another time. That said, you should know have a pretty good understanding of what this project is, what it means for WordPress, and where to go to get started with the new API.</p>\n<p>I highly encourage you to educate yourself on this API, as well as experiment with it. You can use the Stable branch in production projects (like I do here on Post Status), but it would be really great to get more people testing and using the API in general so that when it ships with WordPress it will be as good as it can be.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 11 Feb 2015 22:31:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Brian Krogsgard";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:19:"Matt: Amazing Dance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44669";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:35:"http://ma.tt/2015/02/amazing-dance/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:183:"<p></p>\n<p>Incredible music (“Take Me To Church” by Hozier), incredible artist (the dancer, Sergei Polunin), and incredible photographer / director (David LaChapelle).</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 11 Feb 2015 19:08:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:58:"WPTavern: Tackling the Issue of WordPress Derivative Works";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38822";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wptavern.com/tackling-the-issue-of-wordpress-derivative-works";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6882:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/GPLFeaturedImage.png" rel="prettyphoto[38822]"><img class="size-full wp-image-24825" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/GPLFeaturedImage.png?resize=639%2C200" alt="GPL License Plate Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/benfrantzdale/170212544/">BenFrantzDale</a> – <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a>\n<p>In 2009-10, there <a title="http://wordpress.tv/2010/07/15/mixergy-interview-pearson-mullenweg/" href="http://wordpress.tv/2010/07/15/mixergy-interview-pearson-mullenweg/">was an intense debate</a> between the co-creator of WordPress, Matt Mullenweg, and the founder of DIY Themes, Chris Pearson. The debate centered on whether or not Thesis needed to be 100% GPL licensed. Thesis lifted lines of code from the core of WordPress, which <a title="https://markjaquith.wordpress.com/2010/07/17/why-wordpress-themes-are-derivative-of-wordpress/" href="https://markjaquith.wordpress.com/2010/07/17/why-wordpress-themes-are-derivative-of-wordpress/">some people claimed</a> made Thesis a derivative of WordPress. Pearson disagreed with the assessment which lead Mullenweg to insinuate <a title="http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/" href="http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/">he would take the matter to court</a>.</p>\n<p>Five years after that memorable debate, Richard Best of WP and Legal Stuff, <a title="http://wpandlegalstuff.com/wordpress-themes-gpl-conundrum-derivative-works/" href="http://wpandlegalstuff.com/wordpress-themes-gpl-conundrum-derivative-works/">has published a thorough analysis</a> of WordPress themes, the GPL license, and what is a derivative work. His post is a breath of fresh air and the best I’ve read so far on the subject. Best doesn’t sell themes or plugins in the WordPress ecosystem giving him a neutral position to discuss the matter. He also has a legal background, but does not offer legal advice through his site.</p>\n<p>Determining what defines a derivative work is complex, but according to Best, no one truly knows the answer to the question:</p>\n<blockquote><p>The reason we don’t truly know the answer is that the courts haven’t decided a case that is squarely on point (there are potentially analogous cases, of course, but – as far as I’m aware – no GPL or similar case directly on point). It is only the courts (in the absence of legislative intervention) that can finally determine the matter.</p>\n<p>Courts might apply what some might say are orthodox notions of what it means for something to be a derivative work or they might incrementally (some might say dangerously) develop the law on this point but we just don’t know. And even if the courts of one country made a definitive ruling on the point, courts in other countries – where other lawsuits might be commenced – could decide differently. As a result, uncertainty remains.</p></blockquote>\n<p>The debate against Thesis never went to court, but it spawned several conversations throughout the WordPress community, <a title="http://www.chipbennett.net/2010/07/20/wordpress-themes-gpl-and-copyright-case-law/" href="http://www.chipbennett.net/2010/07/20/wordpress-themes-gpl-and-copyright-case-law/"> like this one from Chip Bennett</a>. This is why <a title="http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/#comment-1584821297" href="http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/#comment-1584821297">some people</a> rallied for a court case to settle the matter once and for all. As far as WordPress is concerned, I think it’s unlikely a court case will ever take place.</p>\n<h2>Influence Instead of Lawyers</h2>\n<p>Mullenweg has other ways of influencing people to license their WordPress products 100% GPL which doesn’t require a lawyer. A good example is <a title="http://designcrumbs.com/automatically-blackballed" href="http://designcrumbs.com/automatically-blackballed">when Jake Caputo was banned</a> from speaking or participating at WordCamps because he didn’t license his themes 100% GPL on ThemeForest.</p>\n<p>After going back and forth in <a title="http://marketblog.envato.com/news/survey-results-about-gpl-opt-in-choice/" href="http://marketblog.envato.com/news/survey-results-about-gpl-opt-in-choice/">public debates</a>, ThemeForest <a title="http://marketblog.envato.com/general/100-gpl-option-now-available-plus-woothemes-arrives/" href="http://marketblog.envato.com/general/100-gpl-option-now-available-plus-woothemes-arrives/">eventually added the ability</a> for authors to choose between split-license and 100% GPL. After changing the license on all of his products to 100% GPL, Caputo was allowed to speak at WordCamps again. It’s this type of influence that prevents arguments from reaching the court system.</p>\n<h2>Only a Court Can Decide</h2>\n<p>There aren’t many posts these days debating the merits of GPL and WordPress. Best does a great job explaining why (emphasis mine):</p>\n<blockquote><p>I think the GPL/theme debate has reached the stage where it’s fair to say that a significant proportion of the WordPress community now frowns upon premium theme providers who either don’t GPL-license at all or (probably to a lesser extent) split-license their themes. That might not be good for business and that, for some, may be the bottom line.</p>\n<p>For some people, this frowning may be caused by a particular view of what the GPL requires <em>but</em> for others – and I think this is a particularly important point – it may be caused by a recognition of the enormous opportunities that WordPress makes possible and the open source spirit and generosity that pervades much of the WordPress community. <strong>I think we’ve reached the stage where, for some people, this is more about a community norm than it is about a strict reading of the GPL </strong>(not to mention the tedium of listening to more and more competing GPL arguments when, ultimately, only a court can decide).</p></blockquote>\n<p>If a debate like the one in 2010 were to happen again, I think we’d see a huge outcry from every corner of the community for a court case to settle the matter. After all, without that, everything else is a moot point, right? If you sell commercial WordPress themes and plugins, I highly encourage you to read his post. Also read his thoughts on a somewhat related topic, the <a title="http://wpandlegalstuff.com/gpl-assumptions-automatic-inheritance/" href="http://wpandlegalstuff.com/gpl-assumptions-automatic-inheritance/">assumptions of GPL and automatic inheritance</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 11 Feb 2015 00:37:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:78:"WPTavern: WordPress Theme Review Team Sets New Guidelines for Custom CSS Boxes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38826";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:88:"http://wptavern.com/wordpress-theme-review-team-sets-new-guidelines-for-custom-css-boxes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2252:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/css.jpg" rel="prettyphoto[38826]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/css.jpg?resize=1024%2C491" alt="css" class="aligncenter size-full wp-image-38846" /></a></p>\n<p>Custom CSS boxes in themes are a common feature that allow users to easily add their own styles without having to edit any theme files. The inclusion of this feature in themes, as opposed to plugins, has long been a hotly contested issue among theme developers.</p>\n<p>WordPress.org Theme Review team admin Justin Tadlock <a href="https://make.wordpress.org/themes/2015/02/10/custom-css-boxes-in-themes/" target="_blank">announced</a> today that the team has agreed upon new guidelines for the inclusion of CSS boxes. He summarized the conclusions following the debate:</p>\n<ul>\n<li>It’s preferred that theme authors leave this feature to plugins.</li>\n<li>However, it is allowed if handled safely.</li>\n<li>The edit_theme_options capability is required (like all theme options).</li>\n<li>The wp_filter_nohtml_kses(), wp_strip_all_tags(), or equivalent function must be used to sanitize the data before it’s saved into the database.</li>\n</ul>\n<p>The main issue here is sanitizing the CSS to make sure it’s safe to store in the database. The guidelines do not cover validating the CSS, as that is less of a safety concern.</p>\n<p>While adding custom CSS boxes still falls within theme territory, it is best to consider relegating this feature to a plugin in order to keep your theme safe and lean. If you still wish to offer this feature in your theme, Tadlock <a href="https://make.wordpress.org/themes/2015/02/10/custom-css-boxes-in-themes/" target="_blank">posted sample code</a> that will provide a good starting place for adding a custom CSS box to WordPress’ native customizer.</p>\n<p>Commercial theme authors who want to keep pace with WordPress.org theme review requirements will want to review the updated guidelines. The theme review team recommends using a plugin, such as <a href="http://jetpack.me/support/custom-css/" target="_blank">Jetpack’s custom CSS module</a>, as a safe alternative to allowing the theme to save custom CSS to the database.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Feb 2015 23:53:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:83:"WPTavern: iThemes to Host Free Online Training Event: Intro to WordPress Web Design";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38746";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:92:"http://wptavern.com/ithemes-to-host-free-online-training-event-intro-to-wordpress-web-design";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2962:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ithemes-training.jpg" rel="prettyphoto[38746]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ithemes-training.jpg?resize=932%2C445" alt="ithemes-training" class="aligncenter size-full wp-image-38816" /></a></p>\n<p>iThemes will be conducting a free online training event next week for those who are interested in getting started with WordPress. The <a href="https://ithemes.com/2015/02/05/free-intro-wordpress-web-design-workshop-february-18-20-2015/" target="_blank">Intro to WordPress Web Design</a> course will run from February 18 – 20 and will cover everything from learning how to set up a site to working with plugins and management tools:</p>\n<ul>\n<li>Understand what WordPress is, where it came from, why everything is a “post”—and who is Dolly?</li>\n<li>Unlock your WordPress site – learn how to set up your site the right way</li>\n<li>Unmask WordPress – learn the basics of how WordPress displays content for your site</li>\n<li>Supercharge your WordPress site with plugins</li>\n<li>Simplify your life with WordPress management tools and tips</li>\n<li>What to do to take your knowledge of WordPress to the next level</li>\n</ul>\n<p>The workshop is open to the first 1,000 registrants and will be taught by Benjamin Bradley, iThemes’ Training full-time instructor. Bradley has been working with the company for the past five years to build out a library of 600+ instructional videos for the community surrounding iThemes’ products. A chat room will be available for discussion and Q&A during the the online event.</p>\n<p>iThemes CEO Cory Miller began investing in the creation of training resources years ago after noticing that a lack of quality WordPress education material was putting an extra burden on his support staff. “We started this free online workshop several years ago in response to seeing many of the same questions being asked in our support area year after year,” Miller said.</p>\n<p>“We felt our customers weren’t able to make meaningful progress in learning the basics of WordPress web design because there weren’t good resources to do so. The need is there and it is great, in particular for online learning like this. It’s part of our contribution to building up our customers, but also the greater WordPress community,” he said.</p>\n<p>The event is not just for iThemes customers but is open to anyone. If you can’t attend the training sessions live, iThemes plans to make the recordings available on its blog after the event. If you or a family member, friend, or client want an approachable introduction to WordPress, <a href="https://attendee.gotowebinar.com/register/5530303058928143361" target="_blank">register for the course</a> at iThemes. Each session is only one hour and will put you on track to managing your own WordPress website.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Feb 2015 18:33:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:32:"Matt: On the Tim Ferriss Podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44665";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"http://ma.tt/2015/02/on-the-tim-ferriss-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:581:"<p>I had the great fun the other week of hanging with Tim Ferriss on his podcast, an episode he titled <a href="http://fourhourworkweek.com/2015/02/09/matt-mullenweg/">Matt Mullenweg on Polyphasic Sleep, Tequila, and Building Billion-Dollar Companies</a>. His previous guest <a href="http://fourhourworkweek.com/2015/02/02/arnold-schwarzenegger/">was Arnold Schwarzenegger</a> (!) and if you <a href="http://fourhourworkweek.com/category/the-tim-ferriss-show/">dig into the podcast archives there are some really amazing episodes</a>, I’m working my way through them now.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Feb 2015 18:30:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:88:"WPTavern: GitHub Updater 4.1 to Add Remote Installation for WordPress Plugins and Themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38758";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:98:"http://wptavern.com/github-updater-4-1-to-add-remote-installation-for-wordpress-plugins-and-themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3688:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/01/wpvsgithub.jpg" rel="prettyphoto[38758]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/01/wpvsgithub.jpg?resize=1025%2C381" alt="WordPress Versus Github" class="aligncenter size-full wp-image-15216" /></a></p>\n<p><a href="https://github.com/afragen/github-updater" target="_blank">GitHub Updater</a> is a plugin that developers often use to enable automatic updates to GitHub or Bitbucket-hosted WordPress plugins and themes. The project was started in July 2013 by <a href="http://thefragens.com/" target="_blank">Andy Fragen</a>, a trauma surgeon and plugin developer. Over the past two years GitHub Updater has received improvements from 14 <a href="https://github.com/afragen/github-updater/graphs/contributors" target="_blank">contributors</a>.</p>\n<p>Fragen’s work on GitHub Updater makes it possible for developers to stay in their <a href="http://wptavern.com/wordpress-org-vs-github-for-hosting-wordpress-plugins-and-themes" target="_blank">preferred GitHub/Bitbucket workflow</a> and still ship updates for plugins and themes to their users. After reading about how <a href="http://wptavern.com/wp-pusher-aims-to-provide-pain-free-deployment-of-wordpress-themes-and-plugins-from-github" target="_blank">WP Pusher is extending WordPress’ built-in auto updater to deploy remotely hosted themes and plugins</a>, Fragen was inspired to investigate the possibility of adding remote installation of WordPress extensions to his GitHub Updater.</p>\n<p>He now has the <code>develop</code> branch of the project working to successfully install both public and private GitHub or Bitbucket repositories remotely. “I must confess, the hardest part was getting everything in the Settings API functioning,” Fragen said.</p>\n<p>With the help of some code from the <a href="https://wordpress.org/plugins/zero-spam/" target="_blank">WordPress Zero Spam</a> plugin by Ben Marshall, and a few lines from <a href="http://tgmpluginactivation.com/" target="_blank">TGM Plugin Activation</a> by Thomas Griffin, he was able to get a tabbed settings interface in place in addition to the plugin dependency portion of the task.</p>\n<p>“After setting up the tabs in the Settings page I was able to simply create the correct endpoint for GitHub and Bitbucket,” Fragen said. “I thought allowing for private repository remote installation might prove more difficult but a couple of modifications in other parts of the plugin made this relatively painless. It certainly makes downloading a repo from GitHub, renaming it correctly, and then uploading it a single-click experience.”</p>\n<p><a href="https://github.com/afragen/github-updater" target="_blank">GitHub Updater</a> is <a href="https://github.com/afragen/github-updater/issues/34" target="_blank">not allowed in the WordPress.org directory</a>, as the guidelines forbid official plugins from allowing updates from anywhere outside of WordPress.org. Developers usually opt for using the GitHub Updater when they want to host their plugins on GitHub/Bitbucket, or need to provide updates for private repositories.</p>\n<p>The <a href="http://thefragens.com/2015/02/github-updater-and-remote-installation/" target="_blank">4.1 release of GitHub Updater</a> will include both remote installation and automatic updating in one package. If you want to test the functionality now, you can check out the <code>develop</code> branch. Feel free to log your issues and feedback on <a href="https://github.com/afragen/github-updater" target="_blank">GitHub</a>, as Fragen will be incorporating bug fixes into the 4.1 release.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Feb 2015 20:32:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:34;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"WPTavern: WP Rocket Grows From $0 to $35K in Monthly Revenue";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38729";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wptavern.com/wp-rocket-grows-from-0-to-35k-in-monthly-revenue";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3947:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WPRocketFeaturedImage.png" rel="prettyphoto[38729]"><img class="aligncenter size-full wp-image-38763" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WPRocketFeaturedImage.png?resize=672%2C281" alt="WP Rocket Featured Image" /></a></p>\n<p>WP Media, the company behind WordPress caching plugin WP Rocket, <a title="http://blog.wp-rocket.me/transparency-matters/" href="http://blog.wp-rocket.me/transparency-matters/">published a post</a> that highlights how successful the plugin has been since launching a year and a half ago. When we wrote about the <a title="http://wptavern.com/wp-rocket-launches-commercial-caching-plugin-for-wordpress" href="http://wptavern.com/wp-rocket-launches-commercial-caching-plugin-for-wordpress">international launch of WP Rocket</a>, we questioned whether it would be able to compete against all of the free, robust options available.</p>\n<p>In a show of transparency, WP Media shares stats that indicate the plugin is doing well. Since launching a year and a half ago, WP Rocket has achieved the following milestones while being a 100% bootstrapped company:</p>\n<ul>\n<li>$0 to $35 000 in monthly revenue</li>\n<li>0 to +15 000 websites using WP Rocket</li>\n<li>0 to +4300 customers.</li>\n</ul>\n<p>Despite launching the product without a business plan, customers have shown they’re willing to buy a caching solution that’s simple to configure and use.</p>\n<p>Jean-Baptiste Marchand-Arvier, Co-founder of WP Rocket, says the move towards greater transparency is inspired by other companies that have revealed revenue numbers, recruitment strategies, and productivity tips.</p>\n<blockquote><p>We are really inspired by great companies like <a href="https://bufferapp.com/">Buffer</a>, <a href="http://baremetrics.io">Baremetrics</a> and <a href="https://mattermark.com/">Mattermark</a> where transparency is a company culture. They share it through several channels:</p>\n<ul>\n<li><a href="https://open.bufferapp.com">Buffer Open Blog</a>, “Our journey to greater productivity, more transparency and a happier work culture”</li>\n<li><a href="https://medium.com/@DanielleMorrill">Medium posts of Danielle Morrill</a>, CEO and Cofounder of Mattermark</li>\n<li><a href="https://baremetrics.io/blog">Baremetrics Blog</a></li>\n</ul>\n<p><strong>These companies have helped us greatly</strong> by sharing a lot of internal information including their monthly revenue, and more.</p></blockquote>\n<p>At the end of 2014, <a title="https://pippinsplugins.com/2014-review/" href="https://pippinsplugins.com/2014-review/">Easy Digital Downloads</a> and <a title="http://wpninjas.com/2014-review/" href="http://wpninjas.com/2014-review/">WP Ninjas</a> published year-end reviews that show how well each plugin has done. However, Matt Medeiros, of MattReport.com <a title="http://mattreport.com/precursor-greatness/" href="http://mattreport.com/precursor-greatness/">cautions,</a> that while reading about the success of others can be motivational, it can also be depressing.</p>\n<blockquote><p>Entrepreneurs or small business owners that have been in the game month-after-month or 3 years in still struggling to make it. “Everyone is doing better shit than me.” or “Look at the money they are making! Why can’t I?”</p>\n<p>The new social has amplified everyone else’s success while making yours seem insignificant.</p></blockquote>\n<p>I want to see as many companies as possible open up to their customers and readers by publishing revenue numbers and strategies that don’t work out as intended. Aside from knowing the numbers, I think a lot of people in the community would love to read about the struggles businesses are having and what they’re doing to overcome them.</p>\n<p>WP Rocket is proving that, despite jumping into an established market, there’s enough room for new products to grow.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Feb 2015 20:21:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:94:"WPTavern: The First Conference Dedicated to WordPress.com Debuts on March 28th in Portland, OR";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38717";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:103:"http://wptavern.com/the-first-conference-dedicated-to-wordpress-com-debuts-on-march-28th-in-portland-or";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2200:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/PressPublishFeaturedImage.png" rel="prettyphoto[38717]"><img class="size-full wp-image-38718" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/PressPublishFeaturedImage.png?resize=668%2C262" alt="Press Publish Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/38072565@N00/462857539">Publish Akku</a> – <a href="https://creativecommons.org/licenses/by-nc/2.0/">(license)</a>\n<p>Those who use the <a title="https://wordpress.org/" href="https://wordpress.org/">self hosted version of WordPress</a> have access to <a title="http://central.wordcamp.org/" href="http://central.wordcamp.org/">WordCamps</a>, annual conferences dedicated to WordPress. Meanwhile, there has never been a conference focused on WordPress.com.</p>\n<p><a title="http://presspublish.events/" href="http://presspublish.events/">Press Publish</a> is a new <a title="http://presspublish.events/2015/02/04/portland-lineup-confirmed/" href="http://presspublish.events/2015/02/04/portland-lineup-confirmed/">series of events</a> focused on WordPress.com and Jetpack. The first is scheduled for <a title="http://presspublish.events/events/portland/" href="http://presspublish.events/events/portland/">March 28th, 2015 in Portland, OR</a>. There’s also a second event scheduled for <a title="http://presspublish.events/events/phoenix/" href="http://presspublish.events/events/phoenix/">April 18th, 2015 in Phoenix, AZ</a>.</p>\n<p>Each event lasts for one day and has two tracks. Speakers will share their personal success stories on using the WordPress.com platform. There will also be a handful of Automatticians on hand to answer any questions. Registration is open for both events and costs $250.00.</p>\n<p>Press Publish is an opportunity for attendees to learn from some of the brightest minds who make a living publishing content on WordPress.com. It’s also an opportunity for attendees to speak with Automatticians face to face to suggest features or enhancements to the service. The events and locations are part of a pilot program that, if successful, will likely spread to other places around the world.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Feb 2015 20:00:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:77:"WPTavern: Initiative Aims to Improve the New User Experience in WordPress 4.2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38655";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:87:"http://wptavern.com/initiative-aims-to-improve-the-new-user-experience-in-wordpress-4-2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4889:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/NewUserExperienceFeaturedImage.png" rel="prettyphoto[38655]"><img class="size-full wp-image-38713" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/NewUserExperienceFeaturedImage.png?resize=650%2C200" alt="New User Experience Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/35034347371@N01/414920055">zu.com – Image136</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>Drew Jaynes, who is <a title="http://wptavern.com/drew-jaynes-to-lead-wordpress-4-2" href="http://wptavern.com/drew-jaynes-to-lead-wordpress-4-2">leading the release cycle</a> for WordPress 4.2 <a title="https://make.wordpress.org/core/2015/02/05/4-2-community-initiative-nux-working-group/" href="https://make.wordpress.org/core/2015/02/05/4-2-community-initiative-nux-working-group/">announced on the Make.WordPress.core blog,</a> that a new community initiative has been launched called NUX or New User Experience. The group is made up of more than 15 members of the WordPress community who have experience in onboarding clients, training clients, and work with new users on a regular basis. According to the announcement, the group’s main task is as follows:</p>\n<blockquote><p>The group will be tasked with helping to identify common pain points new users might experience using WordPress. The hope is to (re)invigorate the conversation about making NUX a priority in core decision-making. We’ll work together to identify problems and recommend solutions.</p></blockquote>\n<p>With regards to 4.2, the group will brainstorm actionable goals and make recommendations to improve the new user experience throughout the WordPress backend. Jaynes says, “These changes would likely include improvements to contextual help on various screens, improvements to the content of the Welcome Panel, as well as adjustments to many other established workflows in core interfaces including the installation process.”</p>\n<p>Recommendations large and small will receive direct feedback from core developers. This provides an opportunity for new users to immediately contribute back to WordPress. The group’s first meeting will be held <a href="http://www.timeanddate.com/worldclock/fixedtime.html?iso=20150210T1900"><abbr class="date" title="2015-02-10T19:00:00+00:00">Tuesday, February 10, 2015 14:00 UTC-5</abbr></a> in the <a href="https://wordpress.slack.com/messages/core-flow/">#core-flow</a> channel on <a href="https://make.wordpress.org/chat">Slack</a>.</p>\n<h2>Re-establishing Easy as a Selling Point</h2>\n<p>I’ve used WordPress since 2008 and one of its strongest selling points has always been that it’s easy to use. However, as WordPress has advanced, I think it’s become progressively more difficult to use. Within the last two years, several articles have highlighted the increasing difficulty in using and explaining WordPress.</p>\n<ul>\n<li><a title="http://mor10.com/wordpress-easy-thats-ok/" href="http://mor10.com/wordpress-easy-thats-ok/">WordPress is not easy – and that’s OK</a></li>\n<li><a title="https://medium.com/@salliegoetsch/have-we-been-misleading-people-about-wordpress-9dcd7dbf3034" href="https://medium.com/@salliegoetsch/have-we-been-misleading-people-about-wordpress-9dcd7dbf3034">Have We Been Misleading People about WordPress?</a></li>\n<li><a title="http://wptavern.com/why-is-explaining-wordpress-to-someone-so-hard" href="http://wptavern.com/why-is-explaining-wordpress-to-someone-so-hard">Why Is Explaining WordPress To Someone So Hard?</a></li>\n</ul>\n<p>I think a good base to start from to improve the user experience is Jen Mylo’s <a title="http://jenmylo.com/2014/10/05/site-setup-journal-prologue/" href="http://jenmylo.com/2014/10/05/site-setup-journal-prologue/">site setup journal experiment</a>. In the series, Mylo documents what it’s like as a new user to install WordPress on a host, setup a website, and browse through documentation. <a title="http://jenmylo.com/2014/10/11/site-setup-journal-act-i/" href="http://jenmylo.com/2014/10/11/site-setup-journal-act-i/">Part 1</a> covers domains and hosting while <a title="http://jenmylo.com/2014/10/11/site-setup-journal-act-ii/" href="http://jenmylo.com/2014/10/11/site-setup-journal-act-ii/">part 2</a> is about setting up WordPress. Her journey is an eye-opening experience and shows how many areas of WordPress are ripe for improvement.</p>\n<p>If WordPress is going to achieve <a title="http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share" href="http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share">50% market share</a>, it needs to be easy to install and use. The New User Experience initiative is a good step towards ensuring the future of WordPress adoption.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Feb 2015 19:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:16:"Matt: Fusion.net";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44663";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:32:"http://ma.tt/2015/02/fusion-net/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:347:"<p>There’s <a href="http://fusion.net/">a relatively new site called Fusion.net that is definitely worth checking out</a>, it’s already full of great articles and they’re <a href="http://techmeme.com/lb">starting to climb up the Techmeme Leaderboard</a>. They run on <a href="http://vip.wordpress.com/">WordPress.com VIP</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Feb 2015 18:30:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:81:"WPTavern: Unplug Jetpack: Use Jetpack Modules Without Connecting to WordPress.com";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38723";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:90:"http://wptavern.com/unplug-jetpack-use-jetpack-modules-without-connecting-to-wordpress-com";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2837:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/unplug.jpg" rel="prettyphoto[38723]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/unplug.jpg?resize=1024%2C510" alt="photo credit: Unplugged - (license)" class="size-full wp-image-38734" /></a>photo credit: <a href="http://www.flickr.com/photos/23307937@N04/3415991748">Unplugged</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>Connecting a WordPress.com account in order to use Jetpack can be a hassle, especially when developing for clients or working on your local machine. If you like Jetpack but don’t want to connect to WordPress.com, there’s a new plugin that makes it easy to use the features that don’t require a connection.</p>\n<p><a href="https://wordpress.org/plugins/unplug-jetpack/" target="_blank">Unplug Jetpack</a> was created by WordPress developer <a href="http://tannermoushey.com/" target="_blank">Tanner Moushey</a>. With the plugin activated, you won’t be required to connect to WordPress.com unless you need to use Site stats, Publicize, Related Posts, etc. If you don’t see the module you’re looking for among the others, that means that it likely requires a WordPress.com connection in order to use it.</p>\n<p>The Unplug Jetpack plugin essentially puts Jetpack into development mode. Development mode was introduced in Jetpack <a href="http://jetpack.me/2013/03/28/jetpack-dev-mode-release/" target="_blank">2.2.1</a> to help developers with local testing. It allows you to use features that do not require a connection to WordPress.com servers. Ordinarily, turning on development mode requires adding a line to your wp-config.php file or employing the filter via a plugin.</p>\n<p>Unplug Jetpack is convenient, because it allows you to turn development mode on/off using a plugin. It uses the Jetpack-supported method for doing this and consists of just a couple lines of code:</p>\n<pre class="brush: php; light: true; title: ; notranslate">\nfunction uj_init() {\n add_filter( ''jetpack_development_mode'', ''__return_true'' );\n}\nadd_action( ''plugins_loaded'', ''uj_init'' );\n</pre>\n<p>When asked whether or not the plugin offers a performance boost as opposed to using non-WordPress.com dependent modules with the connection to WordPress.com, Moushey <a href="https://twitter.com/tannermoushey/status/564189285071351808" target="_blank">said</a> that it’s unlikely to have a significant performance impact. “But that is not really the point of this,” he said. It’s the principle of the matter – being able to use Jetpack’s code without the requirement of connecting to a third party. <a href="https://wordpress.org/plugins/unplug-jetpack/" target="_blank">Unplug Jetpack</a> lets you do that with the flip of a switch.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Feb 2015 18:22:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:23:"Matt: What is a Hacker?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44661";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:38:"http://ma.tt/2015/02/what-is-a-hacker/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"<p>Steven Levy asks <a href="https://medium.com/backchannel/what-is-a-hacker-51257cad8b54">What is a Hacker? and gets some great answers back</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Feb 2015 01:08:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:39:"Matt: Productivity of Working from Home";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44659";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://ma.tt/2015/02/productivity-of-working-from-home/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:270:"<p>FiveThirtyEight says <a href="http://fivethirtyeight.com/datalab/people-working-from-home-in-a-snowstorm-may-be-producing-more-than-you-are/">People Working From Home In A Snowstorm May Be Producing More Than You Are</a>, on the productivity of working from home.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 08 Feb 2015 03:41:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:28:"Matt: Tom Ford’s 15 Things";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44642";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://ma.tt/2015/02/tom-fords-15-things/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1195:"<p>For the <a href="http://www.vogue.co.uk/spy/15th-anniversary">15th anniversary of Vogue.com</a> noted fashion designer Tom Ford made a list of 15 things that every man should have, which are as follow:</p>\n<ol>\n<li>A sense of humour.</li>\n<li>A daily read of a newspaper.</li>\n<li>A sport that you love and are good at.</li>\n<li>Tweezers.</li>\n<li>A good cologne that becomes a signature.</li>\n<li>A well cut dark suit.</li>\n<li>A pair of classic black lace up shoes.</li>\n<li>A smart blazer.</li>\n<li>The perfect pair of dark denim jeans.</li>\n<li>Lots of crisp white cotton shirts.</li>\n<li>Always new socks and underwear, throw away the old ones every 6 months.</li>\n<li>A classic tuxedo.</li>\n<li>A beautiful day watch with a metal band.</li>\n<li>The perfect sunglasses.</li>\n<li>Perfect teeth. If you don’t have them, save up and get them fixed.</li>\n</ol>\n<p>A pretty good list, though I would <a href="http://cir.ca/">replace the newspaper with Circa</a>, and I must confess I’m not sure sure what #4 the tweezers are for.</p>\n<p><a href="http://om.co/2011/07/05/tom-ford-5-tips-to-be-a-modern-gentleman/">Om also has Tom Ford’s 5 tips for a modern gentleman</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 06 Feb 2015 23:49:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:66:"WPTavern: Customize Your Login Page Using the WordPress Customizer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38581";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:76:"http://wptavern.com/customize-your-login-page-using-the-wordpress-customizer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2713:"<p>As a result of the improvements to the Customizer API in WordPress 4.0 and 4.1, developers now have access to a wider array of controls and parameters that allow them to extend the feature for more varied uses beyond themes. The new <a href="https://wordpress.org/plugins/login-customizer/" target="_blank">Custom Login Customizer</a> plugin is a prime example of making the customizer available outside of a theme-related context.</p>\n<p>The plugin adds its own panel to the customizer with a myriad of options for customizing the design of your site’s login page.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/login-customizer.jpg" rel="prettyphoto[38581]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/login-customizer.jpg?resize=987%2C572" alt="login-customizer" class="aligncenter size-full wp-image-38688" /></a></p>\n<p>Custom Login Customizer allows you to customize nearly every aspect of the login form, including the following:</p>\n<ul>\n<li>Set a login logo, along with width, height, and padding</li>\n<li>Add a background, select background color and size</li>\n<li>Set a background for the form</li>\n<li>Adjust form styling – width, height, padding, border</li>\n<li>Style input field width, margin, background, and input/label colors</li>\n<li>Color picker for button background, border, hover background/border, button box shadow</li>\n<li>Select text colors</li>\n<li>Add custom CSS</li>\n</ul>\n<p>I tested the plugin and found it works smoothly as advertised. Once installed, navigate to Appearance > Login Customizer in order to launch your login page in the customizer while still being logged in.</p>\n<p>Custom Login Customizer was created by WordPress developer <a href="http://www.hardeepasrani.com/" target="_blank">Hardeep Asrani</a> and then sold to <a href="https://themeisle.com/" target="_blank">ThemeIsle.com</a> last week. “I believe Themeisle will most probably have a premium version with some more features in the future,” Asrani said. “However, the free plugin will still be there at the WordPerss.org repository and will have more features soon. At this moment, there’s no premium version or a plan for it.”</p>\n<p>There are many plugins out there which allow you to customize your login page. However, the advantage of using this particular one is that you can preview your changes live before saving them. This is one of the best uses of the customizer in a plugin that I have seen so far. It makes designing your login page an easy and enjoyable experience. Download the <a href="https://wordpress.org/plugins/login-customizer/" target="_blank">Login Customizer</a> from WordPress.org.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 06 Feb 2015 22:44:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:74:"WPTavern: Custom Metaboxes and Fields for WordPress (CMB2) Now Out of Beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38417";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"http://wptavern.com/custom-metaboxes-and-fields-for-wordpress-cmb2-now-out-of-beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4291:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/cmb2.jpg" rel="prettyphoto[38417]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/cmb2.jpg?resize=768%2C372" alt="photo credit: Different types of wand cases stacked - (license)" class="size-full wp-image-38683" /></a>photo credit: <a href="http://www.flickr.com/photos/22464562@N00/8084402724">Different types of wand cases stacked</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>The <a href="https://github.com/WebDevStudios/CMB2" target="_blank">Custom Metaboxes and Fields for WordPress (CMB2)</a> plugin is now officially out of beta and ready for public use. The tool was created to make it easy for developers to create metaboxes and forms with custom fields. Developers at <a href="http://webdevstudios.com/" target="_blank">WebDevStudios</a> took over the <a href="https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress" target="_blank">original CMB GitHub repository</a> from Jared Atchison, its original creator, in December of 2013.</p>\n<p>Justin Sternberg <a href="http://webdevstudios.com/2015/02/02/cmb2-wordpress-plugin/" target="_blank">explained</a> why WebDevStudios chose to start contributing to the CMB2 project:</p>\n<blockquote><p>After having been burned by some issues with other custom field plugins, we determined it was best to stick with code that we had some control over. We fell in love with CMB because it was a library we could include in any of our projects and it would just work while letting us keep all of the field configuration in the code, and more importantly, in our version control system.</p></blockquote>\n<p>Due to irreconcilable shortcomings in the original CMB, WebDevStudios opted to fork the project and create a new one that wouldn’t have the same backwards compatibility requirements. If you used CMB in the past, it’s important to note that the new CMB2 project has renamed every class, function, hook, and filter in the library to avoid conflicts with the original. It’s essentially a complete re-write.</p>\n<p>“CMB2 was built with a new mechanism to ensure it only loads the most recent version of CMB2 in your system,” Sternberg said. “This ensures that a plugin with an old bundled version will not conflict or take precedence over your up-to-date version.”</p>\n<p>The new <a href="https://wordpress.org/plugins/cmb2/" target="_blank">CMB2 is now available on WordPress.org</a> as a plugin for easy activation when you want to use it with one of your projects. As an alternative, you can <a href="https://github.com/WebDevStudios/CMB2/blob/master/example-functions.php#L14" target="_blank">include CMB2 directly</a>. The newly released plugin features the following:</p>\n<ul>\n<li>Create metaboxes to be used on post edit screens.</li>\n<li><a href="https://github.com/WebDevStudios/CMB2/wiki/Using-CMB-to-create-an-Admin-Theme-Options-Page" target="_blank">Create forms to be used on an options pages.</a></li>\n<li>Create forms to handle user meta and display them on user profile add/edit pages.</li>\n<li><a href="https://github.com/WebDevStudios/CMB2/wiki/Bringing-Metaboxes-to-the-Front-end" target="_blank">Flexible API that allows you to use CMB forms almost anywhere, even on the front-end</a></li>\n<li><a href="https://github.com/WebDevStudios/CMB2/wiki/Field-Types#types" target="_blank">30+ built-in field types</a></li>\n<li><a href="https://github.com/WebDevStudios/CMB2/wiki/Adding-your-own-field-types" target="_blank">Custom API hook that allows you to create your own field types</a></li>\n<li>Numerous hooks and filters, allowing you to modify many aspects of the library (without editing it directly)</li>\n<li>Repeatable fields for most field types are supported, as well as repeatable field groups</li>\n</ul>\n<p>The WebDevStudios team plans to maintain strict backwards compatibility moving forward, as of CMB2’s 2.0.1 release on WordPress.org. If you want to include CMB2 as part of your next project, make sure to check out the plugin’s <a href="https://github.com/WebDevStudios/CMB2/wiki" target="_blank">wiki and code library</a> for tips on how to add metaboxes, fields, and forms to WordPress themes and plugins.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 06 Feb 2015 21:05:54 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:72:"WPTavern: Harmonic: A Bold Free WordPress Theme for Artists and Bloggers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38617";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:81:"http://wptavern.com/harmonic-a-bold-free-wordpress-theme-for-artists-and-bloggers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3114:"<p>If you like designs that feature stunning, fullscreen background images, then Automattic’s latest free theme release is a prime candidate for your next blog redesign. <a href="https://wordpress.org/themes/harmonic" target="_blank">Harmonic</a> recently landed on WordPress.org and is rapidly closing in on 3,000 downloads.</p>\n<p>This theme puts the spotlight on your images and content. Harmonic’s striking homepage is accompanied by a minimalist, one-column blog design and an optional portfolio page template.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic.png" rel="prettyphoto[38617]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic.png?resize=880%2C660" alt="harmonic" class="aligncenter size-full wp-image-38619" /></a></p>\n<p>Each section of the scrolling front page has options in the customizer that let you assign a unique display. The customizer allows you to easily set a background for the news, page, widgets, and portfolio sections. You can even include a background shade so that the title and tagline are more readable. The Visibility options allow you to hide any of the sections you’re not currently using.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic-customizer.png" rel="prettyphoto[38617]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic-customizer.png?resize=1025%2C542" alt="harmonic-customizer" class="aligncenter size-full wp-image-38629" /></a></p>\n<p>Single posts and pages with a featured image will display in a fullscreen design similar to the homepage. The blog archive is available with your choice of a one or two-column layout.</p>\n<p>With the addition of Jetpack, Harmonic also supports site logo upload and a portfolio. The customizer includes options for three different thumbnail aspect ratios, including: landscape (4:3), portrait (3:4), and square (1:1).</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/media.jpg" rel="prettyphoto[38617]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/media.jpg?resize=1025%2C748" alt="media" class="aligncenter size-full wp-image-38635" /></a></p>\n<p>Harmonic includes a custom menu for social links and has support for 16 different social networks. Check out the <a href="https://harmonicdemo.wordpress.com/" target="_blank">live demo</a> on WordPress.com to see the theme in action.</p>\n<p>With the release of <a href="https://wordpress.org/themes/harmonic" target="_blank">Harmonic</a> for self-hosted sites, Automattic now has 60 free themes available in the directory. This theme caters to visual artists and bloggers who have large images to showcase in the background, portfolio, or gallery sections of the site.</p>\n<p>Harmonic is unique in that it transforms featured images and titles into a splash page style intro to single posts. If you want to use images to make a strong impact on your reader, this theme fits the bill. It’s available on both WordPress.com and self-hosted WordPress sites via the admin themes browser.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 06 Feb 2015 08:19:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:22:"Matt: Real NFL Scandal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44652";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:38:"http://ma.tt/2015/02/real-nfl-scandal/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1108:"<blockquote><p>Seattle’s decision to throw the ball at the goal line with 20 seconds to go in last night’s Super Bowl was a costly one. But in the long run, it won’t be nearly as costly to the rest of the United States as the National Football League (NFL) itself.</p>\n<p>Every year, the NFL rakes in around $9.5 billion in revenue. Its commissioner, Roger Goodell, meanwhile, has an annual salary of $44 million. And while those numbers might make sense for any big business, the NFL isn’t a business – not technically, at least.</p>\n<p>According to the Public Law 89-800, it’s a 501(c)6 tax-exempt nonprofit. That’s right, a nonprofit. In other words, the NFL, one of the most lucrative organizations in all of sports, is subsidized by you and me the taxpayers.</p></blockquote>\n<p>From <a href="http://www.truth-out.org/opinion/item/28885-the-real-nfl-scandal">The Real NFL Scandal</a>. If you’re curious, here’s a <a href="http://en.wikipedia.org/wiki/Category:501(c)(6)_nonprofit_organizations">list of other notable 501(c)(6) organizations</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 06 Feb 2015 00:47:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:46;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:67:"WPTavern: Why WooThemes is Smart to Discontinue Its Twitter Support";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38563";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wptavern.com/why-woothemes-is-smart-to-discontinue-its-twitter-support";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3992:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/woo-support-twitter-account.jpg" rel="prettyphoto[38563]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/woo-support-twitter-account.jpg?resize=1025%2C495" alt="woo-support-twitter-account" class="aligncenter size-full wp-image-38610" /></a></p>\n<p>WooThemes <a href="http://www.woothemes.com/2015/02/retiring-woosupport-twitter/" target="_blank">announced</a> this week that it will be retiring @WooSupport, its Twitter support account, in favor of other support channels. Social media manager Marina Pape reports that support at the company is otherwise healthy. “On the contrary, our support is cooking with Customer Happiness this week averaging 90%, all support teams coming in under 24 hours for first-reply time,” she said.</p>\n<p>WooThemes, like many other WordPress product and service providers, had expanded channels to try to offer support on as many different social channels as possible. Last October, the company <a href="http://www.woothemes.com/2014/10/glimpse-world-woosupport/" target="_blank">announced</a> changes in its support structure:</p>\n<blockquote><p>We’re opening more and more avenues of communication like the Community, the @WooSupport Twitter handle, and a streamlined Knowledge Base, as well as actively monitoring our social media and ideas boards. You name it, we’re working on it.</p></blockquote>\n<p>Over the past several months, WooThemes has discovered that offering Twitter support is more trouble than it’s worth. “Questions get technical and DMs and 140 characters are not ideal facilitators of such things,” Pape said in the announcement.</p>\n<p>“Yes, we want to encourage conversation. Yes, we want to have an ear to the ground and be able to help people when the rubber hits the road for them and escalate tickets if people have been waiting for unusually long periods,” she said. <strong>“But the truth of the matter is Twitter is not the place to handle support queries and when we try we shoot ourselves in the collective foot.”</strong></p>\n<p>WooThemes is making a smart move to pull back from a medium that wasn’t built to handle complex support queries. Instead of spreading staff thin over every social avenue, the company is concentrating on channeling users through an established ticketing system that is already working.</p>\n<p>While anyone can use Twitter for whatever purpose, within its 140 character limit, the brevity that the medium was designed for is not a good fit for managing support. If users find frustration in communicating within Twitter’s limited capacity, support on this channel is a waste of company time and resources.</p>\n<p>“But after letting @WooSupport run for a while, we realized what it was actually doing was creating an expectation that we never intended to meet which was that we were able to actually give support over Twitter,” Pape explained. <strong>“140 characters are not enough to talk about the weather let alone why your custom-built-million-moving-parts website is breaking.”</strong></p>\n<p>WooThemes is opting to limit support to its ZenDesk ticketing system, instead of having social media managers playing middleman via tweets. “DMs on Twitter to get details and sort out problems is akin to birthing pineapples,” Pape said. Encouraging the ticketing system as the primary avenue of support is a move toward greater efficiency.</p>\n<p>WordPress hosting companies and product/service providers would do well to examine how they are using their various social channels and whether or not some could be trimmed back in favor of more suitable mediums for communication. Cutting out Twitter support may not be the answer for every product or customer demographic, but being “always on” and “always available” via every channel is not a realistic approach to support.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 05 Feb 2015 20:56:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:95:"WPTavern: Thoughtful Comments Plugin Adds Comment Moderation Links to the Frontend of WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38542";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:105:"http://wptavern.com/thoughtful-comments-plugin-adds-comment-moderation-links-to-the-frontend-of-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3054:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/ThoughfulCommentsFeaturedImage.png" rel="prettyphoto[38542]"><img class="size-full wp-image-38557" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/ThoughfulCommentsFeaturedImage.png?resize=669%2C348" alt="Thoughful Comments Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/98640399@N08/9410826173">GirlOnRail_BKGs_BartaIV 1024×768</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>The backend of WordPress has a set of tools to help administrators moderate comments, but what if you could bring some of those tools to the frontend? Developed by <a title="http://foliovision.com" href="http://foliovision.com">Foliovision</a>, <a title="https://wordpress.org/plugins/thoughtful-comments/" href="https://wordpress.org/plugins/thoughtful-comments/">Thoughtful Comments</a> is compatible with Jetpack Comments and adds the following links to comments on the frontend of WordPress:</p>\n<ul>\n<li>Approve</li>\n<li>Delete</li>\n<li>Delete Thread</li>\n<li>Delete and Ban IP</li>\n<li>Delete Thread and Ban IP</li>\n</ul>\n<p>Usernames highlighted in red indicate a comment that’s in the moderation queue. You can either approve, delete, or delete and ban the IP address of moderated comments. It’s important to note that deleted comments are sent to the trash instead of being removed completely from WordPress. For this reason, I think the Delete link should be renamed to Trash so its function makes more sense.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/CommentInModeration.png" rel="prettyphoto[38542]"><img class="size-full wp-image-38554" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/CommentInModeration.png?resize=708%2C293" alt="Comment in Moderation Status" /></a>Comment in Moderation Status\n<p>You can also delete entire threads.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ThoughtfulCommentsLinks.png" rel="prettyphoto[38542]"><img class="size-full wp-image-38555" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ThoughtfulCommentsLinks.png?resize=640%2C267" alt="Various Administration Links" /></a>Various Administration Links\n<p>Editing posts, administering comments, and managing a site from the frontend is a huge time saver. With <a title="https://wordpress.org/plugins/wp-front-end-editor/" href="https://wordpress.org/plugins/wp-front-end-editor/">certain aspects of WordPress</a> making their way to the frontend, I wouldn’t be surprised if one day, the features within Thoughtful Comments end up in core. In the future, I think users will expect to be able to accomplish specific tasks like these without having to browse through clunky administration screens.</p>\n<p>Thoughtful Comments is compatible with WordPress 4.1 and available from the <a title="https://wordpress.org/plugins/thoughtful-comments/" href="https://wordpress.org/plugins/thoughtful-comments/">WordPress plugin directory</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 05 Feb 2015 18:33:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:78:"WPTavern: WPWeekly Episode 178 – A Conversation With Frenemy Brian Krogsgard";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=38572&preview_id=38572";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"http://wptavern.com/wpweekly-episode-178-a-conversation-with-frenemy-brian-krogsgard";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3687:"<p>In this episode of WordPress Weekly, <a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by the founder of <a title="https://poststatus.com/" href="https://poststatus.com/">PostStatus</a>, Brian Krogsgard. He explains how his experience writing for WPCandy provided the foundation to launch PostStatus. We find out how well the <a title="https://poststatus.com/club/" href="https://poststatus.com/club/">PostStatus club</a> is doing since launching two weeks ago. Last but not least, we discuss whether or not Krogsgard has the right ingredients to be financially successful in the WordPress content business.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/envato-stats-tips-for-getting-things-done-and-more-at-pressnomics-3" href="http://wptavern.com/envato-stats-tips-for-getting-things-done-and-more-at-pressnomics-3">Recap of PressNomics 3</a><br />\n<a title="http://wptavern.com/human-made-acquires-australian-based-wordpress-agency-sennza" href="http://wptavern.com/human-made-acquires-australian-based-wordpress-agency-sennza">Human Made Acquires Australian Based WordPress Agency Sennza</a><br />\n<a title="http://wptavern.com/zero-day-vulnerability-discovered-in-fancybox-for-wordpress-plugin" href="http://wptavern.com/zero-day-vulnerability-discovered-in-fancybox-for-wordpress-plugin">Zero Day Vulnerability Discovered in Fancybox for WordPress Plugin</a><br />\n<a title="http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api" href="http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api">BuddyPress 2.2 Spumoni Released, Featuring New Member Type API</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="https://wordpress.org/plugins/user-roles-and-capabilities/" href="https://wordpress.org/plugins/user-roles-and-capabilities/">User Roles and Capabilities</a> allows you to manage user roles and capabilities. Using this plugin, you can create new roles and delete existing roles.</p>\n<p><a title="https://wordpress.org/plugins/wp-style-kit/" href="https://wordpress.org/plugins/wp-style-kit/">WP Style Kit</a> is a plugin that adds additional features to the Custom Styles section of the Visual Editor. You can add beautiful custom styles such as, additional headlines, custom bullets, circles, quotes, and call out boxes.</p>\n<p><a title="https://wordpress.org/plugins/pet-adoption-listings/" href="https://wordpress.org/plugins/pet-adoption-listings/">Pet Adoption Listings</a> provides two easy ways to display listings of adoptable pets from a shelter’s profile at Adopt-a-Pet.com via an iframe.</p>\n<p><a title="https://wordpress.org/plugins/login-joomla-users/" href="https://wordpress.org/plugins/login-joomla-users/">Login Joomla Users</a> allows migrated users from Joomla to login to WordPress. Tested on WordPress 4.1 with users migrated from Joomla 2.5.9. After the first successful login, the password field will automatically be hashed by WordPress.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 11th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #178:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 05 Feb 2015 17:33:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:26:"Matt: Great Doctorow Essay";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44631";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:42:"http://ma.tt/2015/02/great-doctorow-essay/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:157:"<p>Cory Doctorow on <a href="http://www.wired.com/2014/12/government-computer-security">How Laws Restricting Tech Actually Expose Us to Greater Harm</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 05 Feb 2015 05:50:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Thu, 19 Feb 2015 10:01:36 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"215493";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Thu, 19 Feb 2015 09:45:14 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:"20150218170729";}', 'no');
INSERT INTO `wp_hawkd_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(589, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1424383301', 'no'),
(590, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1424340101', 'no'),
(591, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1424383303', 'no'),
(592, '_transient_feed_b9388c83948825c1edaef0d856b7b109', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"https://wordpress.org/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Feb 2015 09:38: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:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:25:"http://bbpress.org/?v=1.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:24:"Jetpack by WordPress.com";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"https://wordpress.org/plugins/jetpack/#post-23862";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Jan 2011 02:21:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"23862@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:28:"Your WordPress, Streamlined.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Tim Moore";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"Contact Form 7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"https://wordpress.org/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2141@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:54:"Just another contact form plugin. Simple but flexible.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WooCommerce - excelling eCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"https://wordpress.org/plugins/woocommerce/#post-29860";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Sep 2011 08:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"29860@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"WooThemes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"WordPress SEO by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"https://wordpress.org/plugins/wordpress-seo/#post-8321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jan 2009 20:34:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"8321@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast's WordPress SEO plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"Google Analytics by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Sep 2007 12:15:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2316@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:124:"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:7:"Akismet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:46:"https://wordpress.org/plugins/akismet/#post-15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:11:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"15@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:98:"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:19:"All in One SEO Pack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"753@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:126:"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"Google Analytics Dashboard for WP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 10 Mar 2013 17:07:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"50539@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:148:"Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your site.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Alin Marcu";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"WordPress Importer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/plugins/wordpress-importer/#post-18101";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 May 2010 17:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"18101@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brian Colinger";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"Page Builder by SiteOrigin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"https://wordpress.org/plugins/siteorigin-panels/#post-51888";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 11 Apr 2013 10:36:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"51888@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:111:"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"Greg Priday";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"Wordfence Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/plugins/wordfence/#post-29832";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 04 Sep 2011 03:13:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"29832@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:137:"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Wordfence";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:91:"NextGEN Facebook - Advanced Social SEO for Facebook, Google+, Pinterest, Twitter & More";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wordpress.org/plugins/nextgen-facebook/#post-40409";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 11 Jul 2012 20:13:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"40409@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:132:"Display your content in the best possible way on Facebook, Google+, Twitter, Pinterest, etc. - no matter how your webpage is shared!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"JS Morisset";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"Google XML Sitemaps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"https://wordpress.org/plugins/google-sitemap-generator/#post-132";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:31:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"132@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Arne Brachhold";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:22:"Advanced Custom Fields";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"https://wordpress.org/plugins/advanced-custom-fields/#post-25254";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 17 Mar 2011 04:07:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"25254@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:68:"Customise WordPress with powerful, professional and intuitive fields";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"elliotcondon";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:46:"iThemes Security (formerly Better WP Security)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/plugins/better-wp-security/#post-21738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 22 Oct 2010 22:06:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"21738@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:63:"The easiest, most effective way to secure WordPress in seconds.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Chris Wiegman";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:46:"https://wordpress.org/plugins/rss/view/popular";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:11:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Thu, 19 Feb 2015 10:01:38 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:"Thu, 19 Feb 2015 10:13:53 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Thu, 19 Feb 2015 09:38:53 +0000";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20150218170729";}', 'no'),
(593, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1424383303', 'no'),
(594, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1424340103', 'no'),
(595, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1424383303', 'no'),
(596, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wordpress.org/news/2015/02/wordpress-4-1-1/''>WordPress 4.1.1 Maintenance Release</a> <span class="rss-date">February 18, 2015</span><div class="rssSummary">WordPress 4.1.1 is now available. This maintenance release fixes 21 bugs in version 4.1. Some of you may have been waiting to update to the latest version until now, but there just wasn’t much to address. WordPress 4.1 was a smooth-sailing release and has seen more than 14 million downloads in the last two months. For a full […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wptavern.com/wordpress-4-1-1-released-fixes-21-bugs''>WPTavern: WordPress 4.1.1 Released, Fixes 21 Bugs</a></li><li><a class=''rsswidget'' href=''http://ma.tt/2015/02/7-principles-of-rich-web-applications/''>Matt: 7 Principles of Rich Web Applications</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/customizer-theme-switcher-approved-for-merge-into-wordpress-4-2''>WPTavern: Customizer Theme Switcher Approved for Merge Into WordPress 4.2</a></li></ul></div><div class="rss-widget"><ul><li class=''dashboard-news-plugin''><span>Popular Plugin:</span> <a href=''https://wordpress.org/plugins/nextgen-facebook/'' class=''dashboard-news-plugin-link''>NextGEN Facebook - Advanced Social SEO for Facebook, Google+, Pinterest, Twitter & More</a> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=nextgen-facebook&_wpnonce=dc97a9194b&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''NextGEN Facebook - Advanced Social SEO for Facebook, Google+, Pinterest, Twitter & More''>Install</a>)</span></li></ul></div>', 'no'),
(597, '_site_transient_timeout_theme_roots', '1424350128', 'yes'),
(598, '_site_transient_theme_roots', 'a:1:{s:10:"hawkdtheme";s:7:"/themes";}', 'yes'),
(600, '_site_transient_update_plugins', 'O:8:"stdClass":4:{s:12:"last_checked";i:1424348551;s:8:"response";a:0:{}s:12:"translations";a:0:{}s:9:"no_update";a:5:{s:30:"advanced-custom-fields/acf.php";O:8:"stdClass":6:{s:2:"id";s:5:"21367";s:4:"slug";s:22:"advanced-custom-fields";s:6:"plugin";s:30:"advanced-custom-fields/acf.php";s:11:"new_version";s:5:"4.4.0";s:3:"url";s:53:"https://wordpress.org/plugins/advanced-custom-fields/";s:7:"package";s:65:"https://downloads.wordpress.org/plugin/advanced-custom-fields.zip";}s:19:"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.4";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.3.0.4.zip";}s:36:"contact-form-7/wp-contact-form-7.php";O:8:"stdClass":6:{s:2:"id";s:3:"790";s:4:"slug";s:14:"contact-form-7";s:6:"plugin";s:36:"contact-form-7/wp-contact-form-7.php";s:11:"new_version";s:3:"4.1";s:3:"url";s:45:"https://wordpress.org/plugins/contact-form-7/";s:7:"package";s:61:"https://downloads.wordpress.org/plugin/contact-form-7.4.1.zip";}s:43:"custom-post-type-ui/custom-post-type-ui.php";O:8:"stdClass":7:{s:2:"id";s:5:"13183";s:4:"slug";s:19:"custom-post-type-ui";s:6:"plugin";s:43:"custom-post-type-ui/custom-post-type-ui.php";s:11:"new_version";s:5:"1.0.2";s:14:"upgrade_notice";s:300:"PLEASE TEST THIS UPDATE ON A DEV SITE IF YOU CAN, BEFORE UPDATING ON A LIVE SITE.\nFix issue with checked checkboxes for post type associations for taxonomies.\nFix "Get Code" spot related to post type associations for taxonomies.\nUpdate some text strings after localization feedback.\nFix typ";s:3:"url";s:50:"https://wordpress.org/plugins/custom-post-type-ui/";s:7:"package";s:68:"https://downloads.wordpress.org/plugin/custom-post-type-ui.1.0.2.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";}}}', 'yes'),
(602, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-4.1.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-4.1.1.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-4.1.1-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-4.1.1-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"4.1.1";s:7:"version";s:5:"4.1.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.1";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1424348554;s:15:"version_checked";s:5:"4.1.1";s:12:"translations";a:0:{}}', 'yes');
-- --------------------------------------------------------
--
-- Tabellstruktur `wp_hawkd_postmeta`
--
CREATE TABLE IF NOT EXISTS `wp_hawkd_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=1013 ;
--
-- Dumpning av Data i tabell `wp_hawkd_postmeta`
--
INSERT INTO `wp_hawkd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 2, '_edit_lock', '1424290108:1'),
(3, 2, '_edit_last', '1'),
(4, 5, '_edit_last', '1'),
(5, 5, '_edit_lock', '1424268420:1'),
(6, 7, '_edit_last', '1'),
(7, 7, '_edit_lock', '1424281143:1'),
(8, 9, '_menu_item_type', 'custom'),
(9, 9, '_menu_item_menu_item_parent', '0'),
(10, 9, '_menu_item_object_id', '9'),
(11, 9, '_menu_item_object', 'custom'),
(12, 9, '_menu_item_target', ''),
(13, 9, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(14, 9, '_menu_item_xfn', ''),
(15, 9, '_menu_item_url', 'http://localhost/hawkd/'),
(16, 9, '_menu_item_orphaned', '1423602035'),
(17, 10, '_menu_item_type', 'post_type'),
(18, 10, '_menu_item_menu_item_parent', '0'),
(19, 10, '_menu_item_object_id', '2'),
(20, 10, '_menu_item_object', 'page'),
(21, 10, '_menu_item_target', ''),
(22, 10, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(23, 10, '_menu_item_xfn', ''),
(24, 10, '_menu_item_url', ''),
(25, 10, '_menu_item_orphaned', '1423602036'),
(26, 11, '_menu_item_type', 'post_type'),
(27, 11, '_menu_item_menu_item_parent', '0'),
(28, 11, '_menu_item_object_id', '5'),
(29, 11, '_menu_item_object', 'page'),
(30, 11, '_menu_item_target', ''),
(31, 11, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(32, 11, '_menu_item_xfn', ''),
(33, 11, '_menu_item_url', ''),
(34, 11, '_menu_item_orphaned', '1423602036'),
(35, 12, '_menu_item_type', 'post_type'),
(36, 12, '_menu_item_menu_item_parent', '0'),
(37, 12, '_menu_item_object_id', '7'),
(38, 12, '_menu_item_object', 'page'),
(39, 12, '_menu_item_target', ''),
(40, 12, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(41, 12, '_menu_item_xfn', ''),
(42, 12, '_menu_item_url', ''),
(43, 12, '_menu_item_orphaned', '1423602037'),
(44, 13, '_menu_item_type', 'custom'),
(45, 13, '_menu_item_menu_item_parent', '0'),
(46, 13, '_menu_item_object_id', '13'),
(47, 13, '_menu_item_object', 'custom'),
(48, 13, '_menu_item_target', ''),
(49, 13, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(50, 13, '_menu_item_xfn', ''),
(51, 13, '_menu_item_url', 'http://localhost/hawkd/'),
(52, 13, '_menu_item_orphaned', '1423602102'),
(53, 14, '_menu_item_type', 'post_type'),
(54, 14, '_menu_item_menu_item_parent', '0'),
(55, 14, '_menu_item_object_id', '2'),
(56, 14, '_menu_item_object', 'page'),
(57, 14, '_menu_item_target', ''),
(58, 14, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(59, 14, '_menu_item_xfn', ''),
(60, 14, '_menu_item_url', ''),
(61, 14, '_menu_item_orphaned', '1423602103'),
(62, 15, '_menu_item_type', 'post_type'),
(63, 15, '_menu_item_menu_item_parent', '0'),
(64, 15, '_menu_item_object_id', '5'),
(65, 15, '_menu_item_object', 'page'),
(66, 15, '_menu_item_target', ''),
(67, 15, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(68, 15, '_menu_item_xfn', ''),
(69, 15, '_menu_item_url', ''),
(70, 15, '_menu_item_orphaned', '1423602103'),
(71, 16, '_menu_item_type', 'post_type'),
(72, 16, '_menu_item_menu_item_parent', '0'),
(73, 16, '_menu_item_object_id', '7'),
(74, 16, '_menu_item_object', 'page'),
(75, 16, '_menu_item_target', ''),
(76, 16, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(77, 16, '_menu_item_xfn', ''),
(78, 16, '_menu_item_url', ''),
(79, 16, '_menu_item_orphaned', '1423602104'),
(80, 17, '_menu_item_type', 'post_type'),
(81, 17, '_menu_item_menu_item_parent', '0'),
(82, 17, '_menu_item_object_id', '7'),
(83, 17, '_menu_item_object', 'page'),
(84, 17, '_menu_item_target', ''),
(85, 17, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(86, 17, '_menu_item_xfn', ''),
(87, 17, '_menu_item_url', ''),
(88, 17, '_menu_item_orphaned', '1423602136'),
(89, 18, '_menu_item_type', 'post_type'),
(90, 18, '_menu_item_menu_item_parent', '0'),
(91, 18, '_menu_item_object_id', '5'),
(92, 18, '_menu_item_object', 'page'),
(93, 18, '_menu_item_target', ''),
(94, 18, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(95, 18, '_menu_item_xfn', ''),
(96, 18, '_menu_item_url', ''),
(97, 18, '_menu_item_orphaned', '1423602136'),
(98, 19, '_menu_item_type', 'post_type'),
(99, 19, '_menu_item_menu_item_parent', '0'),
(100, 19, '_menu_item_object_id', '2'),
(101, 19, '_menu_item_object', 'page'),
(102, 19, '_menu_item_target', ''),
(103, 19, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(104, 19, '_menu_item_xfn', ''),
(105, 19, '_menu_item_url', ''),
(106, 19, '_menu_item_orphaned', '1423602137'),
(107, 20, '_menu_item_type', 'custom'),
(108, 20, '_menu_item_menu_item_parent', '0'),
(109, 20, '_menu_item_object_id', '20'),
(110, 20, '_menu_item_object', 'custom'),
(111, 20, '_menu_item_target', ''),
(112, 20, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(113, 20, '_menu_item_xfn', ''),
(114, 20, '_menu_item_url', 'http://localhost/hawkd/'),
(115, 20, '_menu_item_orphaned', '1423602182'),
(116, 21, '_menu_item_type', 'post_type'),
(117, 21, '_menu_item_menu_item_parent', '0'),
(118, 21, '_menu_item_object_id', '2'),
(119, 21, '_menu_item_object', 'page'),
(120, 21, '_menu_item_target', ''),
(121, 21, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(122, 21, '_menu_item_xfn', ''),
(123, 21, '_menu_item_url', ''),
(124, 21, '_menu_item_orphaned', '1423602182'),
(125, 22, '_menu_item_type', 'post_type'),
(126, 22, '_menu_item_menu_item_parent', '0'),
(127, 22, '_menu_item_object_id', '5'),
(128, 22, '_menu_item_object', 'page'),
(129, 22, '_menu_item_target', ''),
(130, 22, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(131, 22, '_menu_item_xfn', ''),
(132, 22, '_menu_item_url', ''),
(133, 22, '_menu_item_orphaned', '1423602183'),
(134, 23, '_menu_item_type', 'post_type'),
(135, 23, '_menu_item_menu_item_parent', '0'),
(136, 23, '_menu_item_object_id', '7'),
(137, 23, '_menu_item_object', 'page'),
(138, 23, '_menu_item_target', ''),
(139, 23, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(140, 23, '_menu_item_xfn', ''),
(141, 23, '_menu_item_url', ''),
(142, 23, '_menu_item_orphaned', '1423602183'),
(143, 24, '_menu_item_type', 'custom'),
(144, 24, '_menu_item_menu_item_parent', '0'),
(145, 24, '_menu_item_object_id', '24'),
(146, 24, '_menu_item_object', 'custom'),
(147, 24, '_menu_item_target', ''),
(148, 24, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(149, 24, '_menu_item_xfn', ''),
(150, 24, '_menu_item_url', 'http://localhost/hawkd/'),
(151, 24, '_menu_item_orphaned', '1423602184'),
(152, 25, '_menu_item_type', 'post_type'),
(153, 25, '_menu_item_menu_item_parent', '0'),
(154, 25, '_menu_item_object_id', '2'),
(155, 25, '_menu_item_object', 'page'),
(156, 25, '_menu_item_target', ''),
(157, 25, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(158, 25, '_menu_item_xfn', ''),
(159, 25, '_menu_item_url', ''),
(160, 25, '_menu_item_orphaned', '1423602184'),
(161, 26, '_menu_item_type', 'post_type'),
(162, 26, '_menu_item_menu_item_parent', '0'),
(163, 26, '_menu_item_object_id', '5'),
(164, 26, '_menu_item_object', 'page'),
(165, 26, '_menu_item_target', ''),
(166, 26, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(167, 26, '_menu_item_xfn', ''),
(168, 26, '_menu_item_url', ''),
(169, 26, '_menu_item_orphaned', '1423602184'),
(170, 27, '_menu_item_type', 'post_type'),
(171, 27, '_menu_item_menu_item_parent', '0'),
(172, 27, '_menu_item_object_id', '7'),
(173, 27, '_menu_item_object', 'page'),
(174, 27, '_menu_item_target', ''),
(175, 27, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(176, 27, '_menu_item_xfn', ''),
(177, 27, '_menu_item_url', ''),
(178, 27, '_menu_item_orphaned', '1423602185'),
(179, 28, '_edit_last', '1'),
(180, 28, '_edit_lock', '1424190320:1'),
(181, 30, '_edit_last', '1'),
(182, 30, '_edit_lock', '1424190331:1'),
(183, 33, '_menu_item_type', 'custom'),
(184, 33, '_menu_item_menu_item_parent', '0'),
(185, 33, '_menu_item_object_id', '33'),
(186, 33, '_menu_item_object', 'custom'),
(187, 33, '_menu_item_target', ''),
(188, 33, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(189, 33, '_menu_item_xfn', ''),
(190, 33, '_menu_item_url', 'http://localhost/hawkd/#'),
(192, 34, '_menu_item_type', 'post_type'),
(193, 34, '_menu_item_menu_item_parent', '0'),
(194, 34, '_menu_item_object_id', '2'),
(195, 34, '_menu_item_object', 'page'),
(196, 34, '_menu_item_target', ''),
(197, 34, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(198, 34, '_menu_item_xfn', ''),
(199, 34, '_menu_item_url', ''),
(200, 34, '_menu_item_orphaned', '1423602823'),
(201, 35, '_menu_item_type', 'post_type'),
(202, 35, '_menu_item_menu_item_parent', '0'),
(203, 35, '_menu_item_object_id', '5'),
(204, 35, '_menu_item_object', 'page'),
(205, 35, '_menu_item_target', ''),
(206, 35, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(207, 35, '_menu_item_xfn', ''),
(208, 35, '_menu_item_url', ''),
(209, 35, '_menu_item_orphaned', '1423602823'),
(210, 36, '_menu_item_type', 'post_type'),
(211, 36, '_menu_item_menu_item_parent', '0'),
(212, 36, '_menu_item_object_id', '7'),
(213, 36, '_menu_item_object', 'page'),
(214, 36, '_menu_item_target', ''),
(215, 36, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(216, 36, '_menu_item_xfn', ''),
(217, 36, '_menu_item_url', ''),
(218, 36, '_menu_item_orphaned', '1423602823'),
(219, 37, '_menu_item_type', 'post_type'),
(220, 37, '_menu_item_menu_item_parent', '0'),
(221, 37, '_menu_item_object_id', '28'),
(222, 37, '_menu_item_object', 'page'),
(223, 37, '_menu_item_target', ''),
(224, 37, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(225, 37, '_menu_item_xfn', ''),
(226, 37, '_menu_item_url', ''),
(228, 38, '_menu_item_type', 'post_type'),
(229, 38, '_menu_item_menu_item_parent', '0'),
(230, 38, '_menu_item_object_id', '30'),
(231, 38, '_menu_item_object', 'page'),
(232, 38, '_menu_item_target', ''),
(233, 38, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(234, 38, '_menu_item_xfn', ''),
(235, 38, '_menu_item_url', ''),
(237, 39, '_menu_item_type', 'custom'),
(238, 39, '_menu_item_menu_item_parent', '0'),
(239, 39, '_menu_item_object_id', '39'),
(240, 39, '_menu_item_object', 'custom'),
(241, 39, '_menu_item_target', ''),
(242, 39, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(243, 39, '_menu_item_xfn', ''),
(244, 39, '_menu_item_url', 'http://localhost/hawkd/#post-5'),
(246, 40, '_menu_item_type', 'custom'),
(247, 40, '_menu_item_menu_item_parent', '0'),
(248, 40, '_menu_item_object_id', '40'),
(249, 40, '_menu_item_object', 'custom'),
(250, 40, '_menu_item_target', ''),
(251, 40, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(252, 40, '_menu_item_xfn', ''),
(253, 40, '_menu_item_url', 'http://localhost/hawkd/#post-7'),
(255, 42, '_edit_last', '1'),
(256, 42, 'field_54db31002f497', 'a:11:{s:3:"key";s:19:"field_54db31002f497";s:5:"label";s:7:"Image 1";s:4:"name";s:7:"image_1";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:2:"id";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:2;}'),
(257, 42, 'field_54db31462f498', 'a:13:{s:3:"key";s:19:"field_54db31462f498";s:5:"label";s:6:"Text 1";s:4:"name";s:6:"text_1";s:4:"type";s:8:"textarea";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:9:"maxlength";s:0:"";s:4:"rows";s:0:"";s:10:"formatting";s:2:"br";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;}'),
(259, 42, 'position', 'acf_after_title'),
(260, 42, 'layout', 'default'),
(261, 42, 'hide_on_screen', ''),
(262, 42, '_edit_lock', '1424192256:1'),
(265, 44, 'image_1', '43'),
(266, 44, '_image_1', 'field_54db31002f497'),
(267, 44, 'text_1', 'Testar lite bara'),
(268, 44, '_text_1', 'field_54db31462f498'),
(269, 5, 'image_1', '83'),
(270, 5, '_image_1', 'field_54db31002f497'),
(271, 5, 'text_1', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? '),
(272, 5, '_text_1', 'field_54db31462f498'),
(274, 42, 'field_54db4d2190564', 'a:11:{s:3:"key";s:19:"field_54db4d2190564";s:5:"label";s:7:"Image 2";s:4:"name";s:7:"image_2";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:2:"id";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:6;}'),
(275, 42, 'field_54db4d4990565', 'a:13:{s:3:"key";s:19:"field_54db4d4990565";s:5:"label";s:6:"Text 2";s:4:"name";s:6:"text_2";s:4:"type";s:8:"textarea";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:9:"maxlength";s:0:"";s:4:"rows";s:0:"";s:10:"formatting";s:2:"br";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;}'),
(276, 42, 'field_54db4d5d90566', 'a:11:{s:3:"key";s:19:"field_54db4d5d90566";s:5:"label";s:7:"Image 3";s:4:"name";s:7:"image_3";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:2:"id";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:10;}'),
(278, 45, 'image_1', '43'),
(279, 45, '_image_1', 'field_54db31002f497'),
(280, 45, 'text_1', 'Testar lite bara'),
(281, 45, '_text_1', 'field_54db31462f498'),
(282, 45, 'image_2', ''),
(283, 45, '_image_2', 'field_54db4d2190564'),
(284, 45, 'text_2', 'den andra texten. Här kan det stå massa saker'),
(285, 45, '_text_2', 'field_54db4d4990565'),
(286, 45, 'image_3', ''),
(287, 45, '_image_3', 'field_54db4d5d90566'),
(288, 5, 'image_2', '85'),
(289, 5, '_image_2', 'field_54db4d2190564'),
(290, 5, 'text_2', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? '),
(291, 5, '_text_2', 'field_54db4d4990565'),
(292, 5, 'image_3', '84'),
(293, 5, '_image_3', 'field_54db4d5d90566'),
(294, 42, 'field_54db4e76daf30', 'a:13:{s:3:"key";s:19:"field_54db4e76daf30";s:5:"label";s:6:"Text 3";s:4:"name";s:6:"text_3";s:4:"type";s:8:"textarea";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:9:"maxlength";s:0:"";s:4:"rows";s:0:"";s:10:"formatting";s:2:"br";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:13;}'),
(296, 46, 'image_1', '43'),
(297, 46, '_image_1', 'field_54db31002f497'),
(298, 46, 'text_1', 'Testar lite bara'),
(299, 46, '_text_1', 'field_54db31462f498'),
(300, 46, 'image_2', ''),
(301, 46, '_image_2', 'field_54db4d2190564'),
(302, 46, 'text_2', 'den andra texten. Här kan det stå massa saker'),
(303, 46, '_text_2', 'field_54db4d4990565'),
(304, 46, 'image_3', ''),
(305, 46, '_image_3', 'field_54db4d5d90566'),
(306, 46, 'text_3', 'Här är den tredje texten.'),
(307, 46, '_text_3', 'field_54db4e76daf30'),
(308, 5, 'text_3', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? '),
(309, 5, '_text_3', 'field_54db4e76daf30'),
(313, 28, '_wp_page_template', 'faq-page.php'),
(314, 30, '_wp_page_template', 'api-page.php'),
(315, 5, '_wp_page_template', 'default'),
(316, 48, 'image_1', '43'),
(317, 48, '_image_1', 'field_54db31002f497'),
(318, 48, 'text_1', 'Testar lite bara'),
(319, 48, '_text_1', 'field_54db31462f498'),
(320, 48, 'image_2', '43'),
(321, 48, '_image_2', 'field_54db4d2190564'),
(322, 48, 'text_2', 'den andra texten. Här kan det stå massa saker'),
(323, 48, '_text_2', 'field_54db4d4990565'),
(324, 48, 'image_3', '43'),
(325, 48, '_image_3', 'field_54db4d5d90566'),
(326, 48, 'text_3', 'Här är den tredje texten.'),
(327, 48, '_text_3', 'field_54db4e76daf30'),
(328, 49, '_edit_last', '1'),
(329, 49, '_edit_lock', '1423742564:1'),
(330, 50, '_edit_last', '1'),
(331, 50, '_edit_lock', '1423742580:1'),
(332, 55, 'image_1', '43'),
(333, 55, '_image_1', 'field_54db31002f497'),
(334, 55, 'text_1', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis. Beatae excepturi laborum, optio et unde perferendis facilis autem tempore itaque, doloribus fugit repellat praesentium magnam porro id omnis sequi hic iusto provident amet eaque. Eos minus expedita sunt tempore saepe, impedit recusandae cum possimus pariatur amet nulla reiciendis quae consectetur! Ad minus nulla reiciendis illum facere harum.'),
(335, 55, '_text_1', 'field_54db31462f498'),
(336, 55, 'image_2', '43'),
(337, 55, '_image_2', 'field_54db4d2190564'),
(338, 55, 'text_2', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis. Beatae excepturi laborum, optio et unde perferendis facilis autem tempore itaque, doloribus fugit repellat praesentium magnam porro id omnis sequi hic iusto provident amet eaque. Eos minus expedita sunt tempore saepe, impedit recusandae cum possimus pariatur amet nulla reiciendis quae consectetur! Ad minus nulla reiciendis illum facere harum.'),
(339, 55, '_text_2', 'field_54db4d4990565'),
(340, 55, 'image_3', '43'),
(341, 55, '_image_3', 'field_54db4d5d90566'),
(342, 55, 'text_3', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis. Beatae excepturi laborum, optio et unde perferendis facilis autem tempore itaque, doloribus fugit repellat praesentium magnam porro id omnis sequi hic iusto provident amet eaque. Eos minus expedita sunt tempore saepe, impedit recusandae cum possimus pariatur amet nulla reiciendis quae consectetur! Ad minus nulla reiciendis illum facere harum.'),
(343, 55, '_text_3', 'field_54db4e76daf30'),
(344, 56, 'image_1', '43'),
(345, 56, '_image_1', 'field_54db31002f497'),
(346, 56, 'text_1', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(347, 56, '_text_1', 'field_54db31462f498'),
(348, 56, 'image_2', '43'),
(349, 56, '_image_2', 'field_54db4d2190564'),
(350, 56, 'text_2', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(351, 56, '_text_2', 'field_54db4d4990565'),
(352, 56, 'image_3', '43'),
(353, 56, '_image_3', 'field_54db4d5d90566'),
(354, 56, 'text_3', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(355, 56, '_text_3', 'field_54db4e76daf30'),
(357, 57, '_wp_attached_file', '2015/02/icon.png'),
(358, 57, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:200;s:6:"height";i:200;s:4:"file";s:16:"2015/02/icon.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"icon-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(359, 58, 'image_1', '57'),
(360, 58, '_image_1', 'field_54db31002f497'),
(361, 58, 'text_1', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(362, 58, '_text_1', 'field_54db31462f498'),
(363, 58, 'image_2', '57'),
(364, 58, '_image_2', 'field_54db4d2190564'),
(365, 58, 'text_2', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(366, 58, '_text_2', 'field_54db4d4990565'),
(367, 58, 'image_3', '57'),
(368, 58, '_image_3', 'field_54db4d5d90566'),
(369, 58, 'text_3', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(370, 58, '_text_3', 'field_54db4e76daf30'),
(371, 42, 'field_54e26beb2f6a5', 'a:13:{s:3:"key";s:19:"field_54e26beb2f6a5";s:5:"label";s:5:"Namn1";s:4:"name";s:6:"namn_1";s:4:"type";s:8:"textarea";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:9:"maxlength";s:0:"";s:4:"rows";s:0:"";s:10:"formatting";s:2:"br";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;}'),
(372, 42, 'field_54e26bf82f6a6', 'a:14:{s:3:"key";s:19:"field_54e26bf82f6a6";s:5:"label";s:0:"";s:4:"name";s:0:"";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:14;}'),
(374, 60, 'image_1', '57'),
(375, 60, '_image_1', 'field_54db31002f497'),
(376, 60, 'namn', 'Fredrika'),
(377, 60, '_namn', 'field_54e26beb2f6a5'),
(378, 60, 'text_1', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(379, 60, '_text_1', 'field_54db31462f498'),
(380, 60, 'image_2', '57'),
(381, 60, '_image_2', 'field_54db4d2190564'),
(382, 60, 'text_2', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(383, 60, '_text_2', 'field_54db4d4990565'),
(384, 60, 'image_3', '57'),
(385, 60, '_image_3', 'field_54db4d5d90566'),
(386, 60, 'text_3', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(387, 60, '_text_3', 'field_54db4e76daf30'),
(388, 60, '_', 'field_54e26bf82f6a6'),
(389, 5, 'namn', 'Fredrika'),
(390, 5, '_namn', 'field_54e26beb2f6a5'),
(391, 5, '_', 'field_54e26bf82f6a6'),
(393, 42, 'field_54e26d24dc35d', 'a:13:{s:3:"key";s:19:"field_54e26d24dc35d";s:5:"label";s:5:"Namn2";s:4:"name";s:6:"namn_2";s:4:"type";s:8:"textarea";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:9:"maxlength";s:0:"";s:4:"rows";s:0:"";s:10:"formatting";s:2:"br";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;}'),
(394, 42, 'field_54e26d35dc35e', 'a:13:{s:3:"key";s:19:"field_54e26d35dc35e";s:5:"label";s:5:"Namn3";s:4:"name";s:6:"namn_3";s:4:"type";s:8:"textarea";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:9:"maxlength";s:0:"";s:4:"rows";s:0:"";s:10:"formatting";s:2:"br";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:11;}'),
(396, 61, 'image_1', '57'),
(397, 61, '_image_1', 'field_54db31002f497'),
(398, 61, 'namn_1', 'Fredrika Conradsson'),
(399, 61, '_namn_1', 'field_54e26beb2f6a5'),
(400, 61, 'text_1', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(401, 61, '_text_1', 'field_54db31462f498'),
(402, 61, 'image_2', '57'),
(403, 61, '_image_2', 'field_54db4d2190564'),
(404, 61, 'namn_2', 'Fredrika Conradsson'),
(405, 61, '_namn_2', 'field_54e26d24dc35d'),
(406, 61, 'text_2', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(407, 61, '_text_2', 'field_54db4d4990565'),
(408, 61, 'image_3', '57'),
(409, 61, '_image_3', 'field_54db4d5d90566'),
(410, 61, 'namn_3', 'Fredrika Conradsson'),
(411, 61, '_namn_3', 'field_54e26d35dc35e'),
(412, 61, 'text_3', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(413, 61, '_text_3', 'field_54db4e76daf30'),
(414, 61, '_', 'field_54e26bf82f6a6'),
(415, 5, 'namn_1', ' Carl Gunnarsson'),
(416, 5, '_namn_1', 'field_54e26beb2f6a5'),
(417, 5, 'namn_2', 'Adam Torkelsson'),
(418, 5, '_namn_2', 'field_54e26d24dc35d'),
(419, 5, 'namn_3', 'Johanna Jonsson'),
(420, 5, '_namn_3', 'field_54e26d35dc35e'),
(421, 42, 'field_54e26f0bd0113', 'a:14:{s:3:"key";s:19:"field_54e26f0bd0113";s:5:"label";s:5:"Yrke1";s:4:"name";s:6:"yrke_1";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:4;}'),
(422, 42, 'field_54e26f33d0115', 'a:14:{s:3:"key";s:19:"field_54e26f33d0115";s:5:"label";s:5:"Yrke2";s:4:"name";s:6:"yrke_2";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:9;}'),
(423, 42, 'field_54e26f3bd0116', 'a:14:{s:3:"key";s:19:"field_54e26f3bd0116";s:5:"label";s:5:"Yrke3";s:4:"name";s:6:"yrke_3";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:12;}'),
(425, 62, 'image_1', '57'),
(426, 62, '_image_1', 'field_54db31002f497'),
(427, 62, 'namn_1', 'Sofia Nilsson'),
(428, 62, '_namn_1', 'field_54e26beb2f6a5'),
(429, 62, 'yrke_1', 'VD'),
(430, 62, '_yrke_1', 'field_54e26f0bd0113'),
(431, 62, 'text_1', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(432, 62, '_text_1', 'field_54db31462f498'),
(433, 62, 'image_2', '57'),
(434, 62, '_image_2', 'field_54db4d2190564'),
(435, 62, 'namn_2', 'Johan Larsson'),
(436, 62, '_namn_2', 'field_54e26d24dc35d'),
(437, 62, 'text_2', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(438, 62, '_text_2', 'field_54db4d4990565'),
(439, 62, 'yrke_2', 'Sekreterare '),
(440, 62, '_yrke_2', 'field_54e26f33d0115'),
(441, 62, 'image_3', '57'),
(442, 62, '_image_3', 'field_54db4d5d90566'),
(443, 62, 'namn_3', 'Anna Andersson'),
(444, 62, '_namn_3', 'field_54e26d35dc35e'),
(445, 62, 'yrke_3', 'Slav'),
(446, 62, '_yrke_3', 'field_54e26f3bd0116'),
(447, 62, 'text_3', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(448, 62, '_text_3', 'field_54db4e76daf30'),
(449, 62, '_', 'field_54e26bf82f6a6'),
(450, 5, 'yrke_1', 'VD'),
(451, 5, '_yrke_1', 'field_54e26f0bd0113'),
(452, 5, 'yrke_2', 'VD'),
(453, 5, '_yrke_2', 'field_54e26f33d0115'),
(454, 5, 'yrke_3', 'VD'),
(455, 5, '_yrke_3', 'field_54e26f3bd0116'),
(456, 63, 'image_1', '57'),
(457, 63, '_image_1', 'field_54db31002f497'),
(458, 63, 'namn_1', 'Sofia Nilsson'),
(459, 63, '_namn_1', 'field_54e26beb2f6a5'),
(460, 63, 'yrke_1', 'VD'),
(461, 63, '_yrke_1', 'field_54e26f0bd0113'),
(462, 63, 'text_1', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(463, 63, '_text_1', 'field_54db31462f498'),
(464, 63, 'image_2', '57'),
(465, 63, '_image_2', 'field_54db4d2190564'),
(466, 63, 'namn_2', 'Johan Larsson'),
(467, 63, '_namn_2', 'field_54e26d24dc35d'),
(468, 63, 'text_2', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(469, 63, '_text_2', 'field_54db4d4990565'),
(470, 63, 'yrke_2', 'Sekreterare '),
(471, 63, '_yrke_2', 'field_54e26f33d0115'),
(472, 63, 'image_3', '57'),
(473, 63, '_image_3', 'field_54db4d5d90566'),
(474, 63, 'namn_3', 'Anna Andersson'),
(475, 63, '_namn_3', 'field_54e26d35dc35e'),
(476, 63, 'yrke_3', 'Vaktmästare'),
(477, 63, '_yrke_3', 'field_54e26f3bd0116'),
(478, 63, 'text_3', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt sunt officiis.'),
(479, 63, '_text_3', 'field_54db4e76daf30'),
(480, 63, '_', 'field_54e26bf82f6a6'),
(481, 64, 'image_1', '57'),
(482, 64, '_image_1', 'field_54db31002f497'),
(483, 64, 'namn_1', 'Sofia Nilsson'),
(484, 64, '_namn_1', 'field_54e26beb2f6a5'),
(485, 64, 'yrke_1', 'VD'),
(486, 64, '_yrke_1', 'field_54e26f0bd0113'),
(487, 64, 'text_1', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt '),
(488, 64, '_text_1', 'field_54db31462f498'),
(489, 64, 'image_2', '57'),
(490, 64, '_image_2', 'field_54db4d2190564'),
(491, 64, 'namn_2', 'Johan Larsson'),
(492, 64, '_namn_2', 'field_54e26d24dc35d'),
(493, 64, 'text_2', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt '),
(494, 64, '_text_2', 'field_54db4d4990565'),
(495, 64, 'yrke_2', 'Sekreterare '),
(496, 64, '_yrke_2', 'field_54e26f33d0115'),
(497, 64, 'image_3', '57'),
(498, 64, '_image_3', 'field_54db4d5d90566'),
(499, 64, 'namn_3', 'Anna Andersson'),
(500, 64, '_namn_3', 'field_54e26d35dc35e'),
(501, 64, 'yrke_3', 'Vaktmästare'),
(502, 64, '_yrke_3', 'field_54e26f3bd0116'),
(503, 64, 'text_3', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt '),
(504, 64, '_text_3', 'field_54db4e76daf30'),
(505, 64, '_', 'field_54e26bf82f6a6'),
(506, 65, '_edit_last', '1'),
(507, 65, '_edit_lock', '1424270136:1'),
(508, 65, '_wp_page_template', 'default'),
(509, 67, '_edit_last', '1'),
(510, 67, 'field_54e27681cd816', 'a:11:{s:3:"key";s:19:"field_54e27681cd816";s:5:"label";s:6:"bild 1";s:4:"name";s:6:"bild_1";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:2:"id";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;}'),
(511, 67, 'field_54e2774ecd817', 'a:11:{s:3:"key";s:19:"field_54e2774ecd817";s:5:"label";s:6:"bild 2";s:4:"name";s:6:"bild_2";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:2:"id";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;}'),
(512, 67, 'field_54e2775acd818', 'a:11:{s:3:"key";s:19:"field_54e2775acd818";s:5:"label";s:6:"bild 3";s:4:"name";s:6:"bild_3";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:2:"id";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:6;}'),
(514, 67, 'position', 'acf_after_title'),
(515, 67, 'layout', 'no_box'),
(516, 67, 'hide_on_screen', ''),
(517, 67, '_edit_lock', '1424268732:1'),
(518, 68, 'Image_1', '57'),
(519, 68, '_Image_1', 'field_54e27681cd816'),
(520, 68, 'image_2', '57'),
(521, 68, '_image_2', 'field_54e2774ecd817'),
(522, 68, 'image_3', '57'),
(523, 68, '_image_3', 'field_54e2775acd818'),
(524, 65, 'Image_1', '71'),
(525, 65, '_Image_1', 'field_54e27681cd816'),
(526, 65, 'image_2', '57'),
(527, 65, '_image_2', 'field_54e2774ecd817'),
(528, 65, 'image_3', '57'),
(529, 65, '_image_3', 'field_54e2775acd818'),
(531, 69, 'image_1', '57'),
(532, 69, '_image_1', 'field_54e27681cd816'),
(533, 69, 'image_2', '57'),
(534, 69, '_image_2', 'field_54e2774ecd817'),
(535, 69, 'image_3', '57'),
(536, 69, '_image_3', 'field_54e2775acd818'),
(537, 70, 'image_1', '57'),
(538, 70, '_image_1', 'field_54e27681cd816'),
(539, 70, 'image_2', '57'),
(540, 70, '_image_2', 'field_54e2774ecd817'),
(541, 70, 'image_3', '57'),
(542, 70, '_image_3', 'field_54e2775acd818'),
(543, 71, '_wp_attached_file', '2015/02/Skärmavbild-2015-02-16-kl.-23.52.17.png'),
(544, 71, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:938;s:4:"file";s:48:"2015/02/Skärmavbild-2015-02-16-kl.-23.52.17.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:48:"Skärmavbild-2015-02-16-kl.-23.52.17-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:48:"Skärmavbild-2015-02-16-kl.-23.52.17-300x147.png";s:5:"width";i:300;s:6:"height";i:147;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:49:"Skärmavbild-2015-02-16-kl.-23.52.17-1024x500.png";s:5:"width";i:1024;s:6:"height";i:500;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;}}'),
(545, 72, 'image_1', '71'),
(546, 72, '_image_1', 'field_54e27681cd816'),
(547, 72, 'image_2', '57'),
(548, 72, '_image_2', 'field_54e2774ecd817'),
(549, 72, 'image_3', '57'),
(550, 72, '_image_3', 'field_54e2775acd818'),
(552, 73, 'bild_1', '57'),
(553, 73, '_bild_1', 'field_54e27681cd816'),
(554, 73, 'bild_2', '57'),
(555, 73, '_bild_2', 'field_54e2774ecd817'),
(556, 73, 'bild_3', '57'),
(557, 73, '_bild_3', 'field_54e2775acd818'),
(558, 65, 'bild_1', '91'),
(559, 65, '_bild_1', 'field_54e27681cd816'),
(560, 65, 'bild_2', '88'),
(561, 65, '_bild_2', 'field_54e2774ecd817'),
(562, 65, 'bild_3', '89'),
(563, 65, '_bild_3', 'field_54e2775acd818'),
(564, 67, 'field_54e27a8ec31b7', 'a:13:{s:3:"key";s:19:"field_54e27a8ec31b7";s:5:"label";s:9:"IconText1";s:4:"name";s:10:"icontext_1";s:4:"type";s:8:"textarea";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:9:"maxlength";s:0:"";s:4:"rows";s:0:"";s:10:"formatting";s:2:"br";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;}'),
(565, 67, 'field_54e27a9dc31b8', 'a:13:{s:3:"key";s:19:"field_54e27a9dc31b8";s:5:"label";s:9:"IconText2";s:4:"name";s:10:"icontext_2";s:4:"type";s:8:"textarea";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:9:"maxlength";s:0:"";s:4:"rows";s:0:"";s:10:"formatting";s:2:"br";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;}'),
(566, 67, 'field_54e27aa5c31b9', 'a:13:{s:3:"key";s:19:"field_54e27aa5c31b9";s:5:"label";s:9:"IconText3";s:4:"name";s:10:"icontext_3";s:4:"type";s:8:"textarea";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:9:"maxlength";s:0:"";s:4:"rows";s:0:"";s:10:"formatting";s:2:"br";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;}'),
(570, 75, 'bild_1', '57'),
(571, 75, '_bild_1', 'field_54e27681cd816'),
(572, 75, 'icontext_1', 'By using our CE certified backend you will save a huge amount of time when developing your software.'),
(573, 75, '_icontext_1', 'field_54e27a8ec31b7'),
(574, 75, 'bild_2', '57'),
(575, 75, '_bild_2', 'field_54e2774ecd817'),
(576, 75, 'icontext_2', 'With just a few lines of code and our non pre-defined schemas you are as flexible as always but now at an incredible speed.'),
(577, 75, '_icontext_2', 'field_54e27a9dc31b8'),
(578, 75, 'bild_3', '57'),
(579, 75, '_bild_3', 'field_54e2775acd818'),
(580, 75, 'icontext_3', 'We only use local server providers and we let your user decide in which country they want to store their information without affecting your cost.'),
(581, 75, '_icontext_3', 'field_54e27aa5c31b9'),
(582, 65, 'icontext_1', 'By using our CE certified backend you will save a huge amount of time when developing your software.'),
(583, 65, '_icontext_1', 'field_54e27a8ec31b7'),
(584, 65, 'icontext_2', 'With just a few lines of code and our non pre-defined schemas you are as flexible as always but now at an incredible speed.'),
(585, 65, '_icontext_2', 'field_54e27a9dc31b8'),
(586, 65, 'icontext_3', 'We only use local server providers and we let your user decide in which country they want to store their information without affecting your cost.'),
(587, 65, '_icontext_3', 'field_54e27aa5c31b9'),
(588, 67, 'field_54e27b4440521', 'a:14:{s:3:"key";s:19:"field_54e27b4440521";s:5:"label";s:6:"Titel1";s:4:"name";s:7:"titel_1";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:1;}'),
(589, 67, 'field_54e27b5140522', 'a:14:{s:3:"key";s:19:"field_54e27b5140522";s:5:"label";s:6:"Titel2";s:4:"name";s:7:"titel_2";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:4;}'),
(590, 67, 'field_54e27b5b40523', 'a:14:{s:3:"key";s:19:"field_54e27b5b40523";s:5:"label";s:6:"Titel3";s:4:"name";s:7:"titel_3";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:7;}'),
(593, 76, 'bild_1', '57'),
(594, 76, '_bild_1', 'field_54e27681cd816'),
(595, 76, 'titel_1', 'CE-COMPLIANT'),
(596, 76, '_titel_1', 'field_54e27b4440521'),
(597, 76, 'icontext_1', 'By using our CE certified backend you will save a huge amount of time when developing your software.'),
(598, 76, '_icontext_1', 'field_54e27a8ec31b7'),
(599, 76, 'bild_2', '57'),
(600, 76, '_bild_2', 'field_54e2774ecd817'),
(601, 76, 'titel_2', 'EASY SETUP'),
(602, 76, '_titel_2', 'field_54e27b5140522'),
(603, 76, 'icontext_2', 'With just a few lines of code and our non pre-defined schemas you are as flexible as always but now at an incredible speed.'),
(604, 76, '_icontext_2', 'field_54e27a9dc31b8'),
(605, 76, 'bild_3', '57'),
(606, 76, '_bild_3', 'field_54e2775acd818'),
(607, 76, 'titel_3', 'LOCAL SERVERS'),
(608, 76, '_titel_3', 'field_54e27b5b40523'),
(609, 76, 'icontext_3', 'We only use local server providers and we let your user decide in which country they want to store their information without affecting your cost.'),
(610, 76, '_icontext_3', 'field_54e27aa5c31b9'),
(611, 65, 'titel_1', 'CE-COMPLIANT'),
(612, 65, '_titel_1', 'field_54e27b4440521'),
(613, 65, 'titel_2', 'EASY SETUP'),
(614, 65, '_titel_2', 'field_54e27b5140522'),
(615, 65, 'titel_3', 'LOCAL SERVERS'),
(616, 65, '_titel_3', 'field_54e27b5b40523'),
(617, 77, 'bild_1', '57'),
(618, 77, '_bild_1', 'field_54e27681cd816'),
(619, 77, 'icontext_1', 'By using our CE certified backend you will save a huge amount of time when developing your software.\r\n<!--more--> \r\nBy using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.'),
(620, 77, '_icontext_1', 'field_54e27a8ec31b7'),
(621, 77, 'bild_2', '57'),
(622, 77, '_bild_2', 'field_54e2774ecd817'),
(623, 77, 'icontext_2', 'With just a few lines of code and our non pre-defined schemas you are as flexible as always but now at an incredible speed.'),
(624, 77, '_icontext_2', 'field_54e27a9dc31b8'),
(625, 77, 'bild_3', '57'),
(626, 77, '_bild_3', 'field_54e2775acd818'),
(627, 77, 'icontext_3', 'We only use local server providers and we let your user decide in which country they want to store their information without affecting your cost.'),
(628, 77, '_icontext_3', 'field_54e27aa5c31b9'),
(629, 78, 'bild_1', '57'),
(630, 78, '_bild_1', 'field_54e27681cd816'),
(631, 78, 'titel_1', 'CE-COMPLIANT'),
(632, 78, '_titel_1', 'field_54e27b4440521'),
(633, 78, 'icontext_1', 'By using our CE certified backend you will save a huge amount of time when developing your software.\r\n<?php <!--more--> ?>\r\nBy using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.By using our CE certified backend you will save a huge amount of time when developing your software.'),
(634, 78, '_icontext_1', 'field_54e27a8ec31b7'),
(635, 78, 'bild_2', '57'),
(636, 78, '_bild_2', 'field_54e2774ecd817'),
(637, 78, 'titel_2', 'EASY SETUP'),
(638, 78, '_titel_2', 'field_54e27b5140522'),
(639, 78, 'icontext_2', 'With just a few lines of code and our non pre-defined schemas you are as flexible as always but now at an incredible speed.'),
(640, 78, '_icontext_2', 'field_54e27a9dc31b8'),
(641, 78, 'bild_3', '57'),
(642, 78, '_bild_3', 'field_54e2775acd818'),
(643, 78, 'titel_3', 'LOCAL SERVERS'),
(644, 78, '_titel_3', 'field_54e27b5b40523'),
(645, 78, 'icontext_3', 'We only use local server providers and we let your user decide in which country they want to store their information without affecting your cost.'),
(646, 78, '_icontext_3', 'field_54e27aa5c31b9'),
(647, 79, 'bild_1', '57'),
(648, 79, '_bild_1', 'field_54e27681cd816'),
(649, 79, 'titel_1', 'CE-COMPLIANT');
INSERT INTO `wp_hawkd_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(650, 79, '_titel_1', 'field_54e27b4440521'),
(651, 79, 'icontext_1', 'By using our CE certified backend you will save a huge amount of time when developing your software.\r\n'),
(652, 79, '_icontext_1', 'field_54e27a8ec31b7'),
(653, 79, 'bild_2', '57'),
(654, 79, '_bild_2', 'field_54e2774ecd817'),
(655, 79, 'titel_2', 'EASY SETUP'),
(656, 79, '_titel_2', 'field_54e27b5140522'),
(657, 79, 'icontext_2', 'With just a few lines of code and our non pre-defined schemas you are as flexible as always but now at an incredible speed.'),
(658, 79, '_icontext_2', 'field_54e27a9dc31b8'),
(659, 79, 'bild_3', '57'),
(660, 79, '_bild_3', 'field_54e2775acd818'),
(661, 79, 'titel_3', 'LOCAL SERVERS'),
(662, 79, '_titel_3', 'field_54e27b5b40523'),
(663, 79, 'icontext_3', 'We only use local server providers and we let your user decide in which country they want to store their information without affecting your cost.'),
(664, 79, '_icontext_3', 'field_54e27aa5c31b9'),
(665, 80, 'bild_1', '57'),
(666, 80, '_bild_1', 'field_54e27681cd816'),
(667, 80, 'titel_1', 'CE-COMPLIANT'),
(668, 80, '_titel_1', 'field_54e27b4440521'),
(669, 80, 'icontext_1', 'By using our CE certified backend you will save a huge amount of time when developing your software.\r\n'),
(670, 80, '_icontext_1', 'field_54e27a8ec31b7'),
(671, 80, 'bild_2', '57'),
(672, 80, '_bild_2', 'field_54e2774ecd817'),
(673, 80, 'titel_2', 'EASY SETUP'),
(674, 80, '_titel_2', 'field_54e27b5140522'),
(675, 80, 'icontext_2', 'With just a few lines of code and our non pre-defined schemas you are as flexible as always but now at an incredible speed.'),
(676, 80, '_icontext_2', 'field_54e27a9dc31b8'),
(677, 80, 'bild_3', '57'),
(678, 80, '_bild_3', 'field_54e2775acd818'),
(679, 80, 'titel_3', 'LOCAL SERVERS'),
(680, 80, '_titel_3', 'field_54e27b5b40523'),
(681, 80, 'icontext_3', 'We only use local server providers and we let your user decide in which country they want to store their information without affecting your cost.'),
(682, 80, '_icontext_3', 'field_54e27aa5c31b9'),
(683, 81, 'bild_1', '57'),
(684, 81, '_bild_1', 'field_54e27681cd816'),
(685, 81, 'titel_1', 'CE-COMPLIANT'),
(686, 81, '_titel_1', 'field_54e27b4440521'),
(687, 81, 'icontext_1', 'By using our CE certified backend you will save a huge amount of time when developing your software.\r\n'),
(688, 81, '_icontext_1', 'field_54e27a8ec31b7'),
(689, 81, 'bild_2', '57'),
(690, 81, '_bild_2', 'field_54e2774ecd817'),
(691, 81, 'titel_2', 'EASY SETUP'),
(692, 81, '_titel_2', 'field_54e27b5140522'),
(693, 81, 'icontext_2', 'With just a few lines of code and our non pre-defined schemas you are as flexible as always but now at an incredible speed.'),
(694, 81, '_icontext_2', 'field_54e27a9dc31b8'),
(695, 81, 'bild_3', '57'),
(696, 81, '_bild_3', 'field_54e2775acd818'),
(697, 81, 'titel_3', 'LOCAL SERVERS'),
(698, 81, '_titel_3', 'field_54e27b5b40523'),
(699, 81, 'icontext_3', 'We only use local server providers and we let your user decide in which country they want to store their information without affecting your cost.'),
(700, 81, '_icontext_3', 'field_54e27aa5c31b9'),
(701, 82, 'bild_1', '57'),
(702, 82, '_bild_1', 'field_54e27681cd816'),
(703, 82, 'titel_1', 'CE-COMPLIANT'),
(704, 82, '_titel_1', 'field_54e27b4440521'),
(705, 82, 'icontext_1', 'By using our CE certified backend you will save a huge amount of time when developing your software.\r\n'),
(706, 82, '_icontext_1', 'field_54e27a8ec31b7'),
(707, 82, 'bild_2', '57'),
(708, 82, '_bild_2', 'field_54e2774ecd817'),
(709, 82, 'titel_2', 'EASY SETUP'),
(710, 82, '_titel_2', 'field_54e27b5140522'),
(711, 82, 'icontext_2', 'With just a few lines of code and our non pre-defined schemas you are as flexible as always but now at an incredible speed.'),
(712, 82, '_icontext_2', 'field_54e27a9dc31b8'),
(713, 82, 'bild_3', '57'),
(714, 82, '_bild_3', 'field_54e2775acd818'),
(715, 82, 'titel_3', 'LOCAL SERVERS'),
(716, 82, '_titel_3', 'field_54e27b5b40523'),
(717, 82, 'icontext_3', 'We only use local server providers and we let your user decide in which country they want to store their information without affecting your cost.'),
(718, 82, '_icontext_3', 'field_54e27aa5c31b9'),
(719, 83, '_wp_attached_file', '2015/02/Carl-200X200.jpg'),
(720, 83, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:200;s:6:"height";i:200;s:4:"file";s:24:"2015/02/Carl-200X200.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"Carl-200X200-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}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;}}'),
(721, 84, '_wp_attached_file', '2015/02/Johanna-200X200.jpg'),
(722, 84, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:200;s:6:"height";i:200;s:4:"file";s:27:"2015/02/Johanna-200X200.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"Johanna-200X200-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}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;}}'),
(723, 85, '_wp_attached_file', '2015/02/16fddf9.jpg'),
(724, 85, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:200;s:6:"height";i:200;s:4:"file";s:19:"2015/02/16fddf9.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"16fddf9-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}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;}}'),
(725, 86, 'image_1', '83'),
(726, 86, '_image_1', 'field_54db31002f497'),
(727, 86, 'namn_1', 'Sofia Nilsson'),
(728, 86, '_namn_1', 'field_54e26beb2f6a5'),
(729, 86, 'yrke_1', 'VD'),
(730, 86, '_yrke_1', 'field_54e26f0bd0113'),
(731, 86, 'text_1', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut sequi, id eius, earum similique excepturi fugiat veritatis eveniet ullam! Reiciendis quos possimus dignissimos nihil obcaecati quod dolorem culpa unde, illo? Modi illo ipsa eos perspiciatis dolorum pariatur omnis ad sed cum? Alias odit aspernatur doloremque dolorem aut fugiat quo corrupti assumenda, et, dolor deserunt '),
(732, 86, '_text_1', 'field_54db31462f498'),
(733, 86, 'image_2', '85'),