-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdurex_db.sql
1078 lines (1022 loc) · 573 KB
/
durex_db.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.8
-- http://www.phpmyadmin.net
--
-- Host: localhost:8889
-- Generation Time: Nov 17, 2014 at 08:44 AM
-- Server version: 5.5.34
-- PHP Version: 5.5.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `durex_db`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Mr WordPress', '', 'https://wordpress.org/', '', '2014-11-13 15:00:15', '2014-11-13 15:00:15', 'Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=399 ;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost:8888', 'yes'),
(2, 'home', 'http://localhost:8888', 'yes'),
(3, 'blogname', 'Durex Website', 'yes'),
(4, 'blogdescription', 'Someone Like Me is a global social movement created by Durex and the MTV Staying Alive Foundation, providing a stage for young people to talk about sex more openly', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '[email protected]', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '[email protected]', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '0', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%category%/%postname%', 'yes'),
(29, 'gzipcompression', '0', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:3:{i:0;s:29:"acf-repeater/acf-repeater.php";i:1;s:30:"advanced-custom-fields/acf.php";i:2;s:28:"kint-debugger/Kint.class.php";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'advanced_edit', '0', 'yes'),
(37, 'comment_max_links', '2', 'yes'),
(38, 'gmt_offset', '0', 'yes'),
(39, 'default_email_category', '1', 'yes'),
(40, 'recently_edited', '', 'no'),
(41, 'template', 'twentyfourteen', 'yes'),
(42, 'stylesheet', 'durex', 'yes'),
(43, 'comment_whitelist', '1', 'yes'),
(44, 'blacklist_keys', '', 'no'),
(45, 'comment_registration', '0', 'yes'),
(46, 'html_type', 'text/html', 'yes'),
(47, 'use_trackback', '0', 'yes'),
(48, 'default_role', 'subscriber', 'yes'),
(49, 'db_version', '29630', 'yes'),
(50, 'uploads_use_yearmonth_folders', '1', 'yes'),
(51, 'upload_path', '', 'yes'),
(52, 'blog_public', '0', 'yes'),
(53, 'default_link_category', '2', 'yes'),
(54, 'show_on_front', 'page', 'yes'),
(55, 'tag_base', '', 'yes'),
(56, 'show_avatars', '1', 'yes'),
(57, 'avatar_rating', 'G', 'yes'),
(58, 'upload_url_path', '', 'yes'),
(59, 'thumbnail_size_w', '150', 'yes'),
(60, 'thumbnail_size_h', '150', 'yes'),
(61, 'thumbnail_crop', '1', 'yes'),
(62, 'medium_size_w', '300', 'yes'),
(63, 'medium_size_h', '300', 'yes'),
(64, 'avatar_default', 'mystery', 'yes'),
(65, 'large_size_w', '1024', 'yes'),
(66, 'large_size_h', '1024', 'yes'),
(67, 'image_default_link_type', 'file', 'yes'),
(68, 'image_default_size', '', 'yes'),
(69, 'image_default_align', '', 'yes'),
(70, 'close_comments_for_old_posts', '0', 'yes'),
(71, 'close_comments_days_old', '14', 'yes'),
(72, 'thread_comments', '1', 'yes'),
(73, 'thread_comments_depth', '5', 'yes'),
(74, 'page_comments', '0', 'yes'),
(75, 'comments_per_page', '50', 'yes'),
(76, 'default_comments_page', 'newest', 'yes'),
(77, 'comment_order', 'asc', 'yes'),
(78, 'sticky_posts', 'a:0:{}', 'yes'),
(79, 'widget_categories', 'a: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:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(81, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(82, 'uninstall_plugins', 'a:0:{}', 'no'),
(83, 'timezone_string', '', 'yes'),
(84, 'page_for_posts', '0', 'yes'),
(85, 'page_on_front', '95', 'yes'),
(86, 'default_post_format', '0', 'yes'),
(87, 'link_manager_enabled', '0', 'yes'),
(88, 'initial_db_version', '29630', 'yes'),
(89, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a: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:5:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(96, 'cron', 'a:5:{i:1416236419;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:1416236452;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:1416237426;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1416252900;a:1:{s:20:"wp_maybe_auto_update";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}s:7:"version";i:2;}', 'yes'),
(98, '_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:57:"https://downloads.wordpress.org/release/wordpress-4.0.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:57:"https://downloads.wordpress.org/release/wordpress-4.0.zip";s:10:"no_content";s:68:"https://downloads.wordpress.org/release/wordpress-4.0-no-content.zip";s:11:"new_bundled";s:69:"https://downloads.wordpress.org/release/wordpress-4.0-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:3:"4.0";s:7:"version";s:3:"4.0";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.8";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1416209830;s:15:"version_checked";s:3:"4.0";s:12:"translations";a:0:{}}', 'yes'),
(103, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1416209832;s:7:"checked";a:4:{s:5:"durex";s:5:"1.0.0";s:14:"twentyfourteen";s:3:"1.2";s:14:"twentythirteen";s:3:"1.3";s:12:"twentytwelve";s:3:"1.5";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'),
(105, '_transient_random_seed', 'd28613e3b7f0b768e1f83a9deeb4967d', 'yes'),
(106, '_site_transient_timeout_browser_ac9386a299a38c45aff51ebe255b8219', '1416495653', 'yes'),
(107, '_site_transient_browser_ac9386a299a38c45aff51ebe255b8219', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Safari";s:7:"version";s:3:"8.0";s:10:"update_url";s:28:"http://www.apple.com/safari/";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/safari.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/safari.png";s:15:"current_version";s:1:"5";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(110, 'can_compress_scripts', '1', 'yes'),
(137, 'theme_mods_twentyfourteen', 'a:2:{s:18:"nav_menu_locations";a:1:{s:7:"primary";i:3;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1415954753;s:4:"data";a:4:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}}}}', 'yes'),
(138, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(166, 'recently_activated', 'a:0:{}', 'yes'),
(167, 'acf_version', '4.3.9', 'yes'),
(200, '_site_transient_timeout_browser_51bd052c5450203c845edcdfeadb3bca', '1416558287', 'yes'),
(201, '_site_transient_browser_51bd052c5450203c845edcdfeadb3bca', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"38.0.2125.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'),
(216, 'current_theme', 'Durex', 'yes'),
(217, 'theme_mods_durex', 'a:9:{i:0;b:0;s:16:"header_textcolor";s:3:"fff";s:16:"background_color";s:6:"f5f5f5";s:16:"background_image";s:0:"";s:17:"background_repeat";s:6:"repeat";s:21:"background_position_x";s:4:"left";s:21:"background_attachment";s:6:"scroll";s:18:"nav_menu_locations";a:3:{s:7:"primary";i:3;s:9:"secondary";i:0;s:6:"footer";i:7;}s:23:"featured_content_layout";s:4:"grid";}', 'yes'),
(218, 'theme_switched', '', 'yes'),
(224, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1415989229', 'yes'),
(225, '_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:"4690";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"2907";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"2823";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"2344";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2238";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1804";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"1619";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1591";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1569";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1533";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1496";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1485";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1403";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:4:"1236";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1183";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1133";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:4:"1081";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:4:"1027";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:4:"1018";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"849";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"844";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"838";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"806";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"798";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"747";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"710";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"709";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"673";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"663";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"631";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"626";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"623";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"619";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"613";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"600";}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";s:3:"572";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"564";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"561";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"554";}s:5:"share";a:3:{s:4:"name";s:5:"Share";s:4:"slug";s:5:"share";s:5:"count";s:3:"553";}}', 'yes'),
(226, '_site_transient_update_plugins', 'O:8:"stdClass":4:{s:12:"last_checked";i:1416209832;s:8:"response";a:0:{}s:12:"translations";a:0:{}s:9:"no_update";a:7:{s:30:"advanced-custom-fields/acf.php";O:8:"stdClass":6:{s:2:"id";s:5:"21367";s:4:"slug";s:22:"advanced-custom-fields";s:6:"plugin";s:30:"advanced-custom-fields/acf.php";s:11:"new_version";s:5:"4.3.9";s:3:"url";s:53:"https://wordpress.org/plugins/advanced-custom-fields/";s:7:"package";s:65:"https://downloads.wordpress.org/plugin/advanced-custom-fields.zip";}s:19:"akismet/akismet.php";O:8:"stdClass":6:{s:2:"id";s:2:"15";s:4:"slug";s:7:"akismet";s:6:"plugin";s:19:"akismet/akismet.php";s:11:"new_version";s:5:"3.0.3";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.3.0.3.zip";}s:33:"easy-instagram/easy-instagram.php";O:8:"stdClass":6:{s:2:"id";s:5:"34825";s:4:"slug";s:14:"easy-instagram";s:6:"plugin";s:33:"easy-instagram/easy-instagram.php";s:11:"new_version";s:3:"3.1";s:3:"url";s:45:"https://wordpress.org/plugins/easy-instagram/";s:7:"package";s:61:"https://downloads.wordpress.org/plugin/easy-instagram.3.1.zip";}s:9:"hello.php";O:8:"stdClass":6:{s:2:"id";s:4:"3564";s:4:"slug";s:11:"hello-dolly";s:6:"plugin";s:9:"hello.php";s:11:"new_version";s:3:"1.6";s:3:"url";s:42:"https://wordpress.org/plugins/hello-dolly/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip";}s:28:"kint-debugger/Kint.class.php";O:8:"stdClass":6:{s:2:"id";s:5:"29277";s:4:"slug";s:13:"kint-debugger";s:6:"plugin";s:28:"kint-debugger/Kint.class.php";s:11:"new_version";s:3:"0.3";s:3:"url";s:44:"https://wordpress.org/plugins/kint-debugger/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/kint-debugger.0.3.zip";}s:65:"oauth-twitter-feed-for-developers/twitter-feed-for-developers.php";O:8:"stdClass":6:{s:2:"id";s:5:"36031";s:4:"slug";s:33:"oauth-twitter-feed-for-developers";s:6:"plugin";s:65:"oauth-twitter-feed-for-developers/twitter-feed-for-developers.php";s:11:"new_version";s:5:"2.2.1";s:3:"url";s:64:"https://wordpress.org/plugins/oauth-twitter-feed-for-developers/";s:7:"package";s:82:"https://downloads.wordpress.org/plugin/oauth-twitter-feed-for-developers.2.2.1.zip";}s:34:"social-hashtags/social_hashtag.php";O:8:"stdClass":6:{s:2:"id";s:5:"41931";s:4:"slug";s:15:"social-hashtags";s:6:"plugin";s:34:"social-hashtags/social_hashtag.php";s:11:"new_version";s:5:"2.3.0";s:3:"url";s:46:"https://wordpress.org/plugins/social-hashtags/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/social-hashtags.zip";}}}', 'yes'),
(229, '_site_transient_timeout_browser_79cf3b876f3e9419808143194975b5ae', '1416591154', 'yes'),
(230, '_site_transient_browser_79cf3b876f3e9419808143194975b5ae', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"38.0.2125.122";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'),
(292, 'widget_pages', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(293, 'widget_calendar', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(294, 'widget_tag_cloud', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(295, 'widget_nav_menu', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(296, 'widget_widget_twentyfourteen_ephemera', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(330, 'category_children', 'a:0:{}', 'yes'),
(373, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1416244986', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(374, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:51:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s: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:"Fri, 14 Nov 2014 23:16:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/?v=4.1-beta1";s:7:"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: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:1;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s: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:2;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s: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:23538:"<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.03&guid=bUdzKMro&isDynamicSeeking=true" type="application/x-shockwave-flash" width="692" height="388" title="Introducing WordPress 4.0 "Benny"" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div>\n<hr />\n<h2 style="text-align: center">Manage your media with style</h2>\n<p><img class="alignnone size-full wp-image-3316" src="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">arnee</a>, <a href="https://profiles.wordpress.org/aubreypwd">Aubrey Portwood</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/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/tmeister">Enrique Chavez</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">Fab1en</a>, <a href="https://profiles.wordpress.org/fahmiadib">Fahmi Adib</a>, <a href="https://profiles.wordpress.org/feedmeastraycat">feedmeastraycat</a>, <a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="https://profiles.wordpress.org/garhdez">garhdez</a>, <a href="https://profiles.wordpress.org/garyc40">Gary Cao</a>, <a href="https://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/garza">garza</a>, <a href="https://profiles.wordpress.org/gauravmittal1995">gauravmittal1995</a>, <a href="https://profiles.wordpress.org/gavra">Gavrisimo</a>, <a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="https://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>, <a href="https://profiles.wordpress.org/vancoder">Grant Mangham</a>, <a href="https://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="https://profiles.wordpress.org/bordoni">Gustavo Bordoni</a>, <a href="https://profiles.wordpress.org/harrym">harrym</a>, <a href="https://profiles.wordpress.org/hebbet">hebbet</a>, <a href="https://profiles.wordpress.org/hinnerk">Hinnerk Altenburg</a>, <a href="https://profiles.wordpress.org/hlashbrooke">Hugh Lashbrooke</a>, <a href="https://profiles.wordpress.org/iljoja">iljoja</a>, <a href="https://profiles.wordpress.org/imath">imath</a>, <a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="https://profiles.wordpress.org/issuu">issuu</a>, <a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="https://profiles.wordpress.org/jacklenox">Jack Lenox</a>, <a href="https://profiles.wordpress.org/jackreichert">Jack Reichert</a>, <a href="https://profiles.wordpress.org/jacobdubail">Jacob Dubail</a>, <a href="https://profiles.wordpress.org/janhenkg">JanHenkG</a>, <a href="https://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="https://profiles.wordpress.org/jwenerd">Jared Wenerd</a>, <a href="https://profiles.wordpress.org/jaza613">Jaza613</a>, <a href="https://profiles.wordpress.org/jeffstieler">Jeff Stieler</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/jpry">Jeremy Pry</a>, <a href="https://profiles.wordpress.org/slimndap">Jeroen Schmit</a>, <a href="https://profiles.wordpress.org/jerrysarcastic">Jerry Bates (jerrysarcastic)</a>, <a href="https://profiles.wordpress.org/jesin">Jesin A</a>, <a href="https://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="https://profiles.wordpress.org/engelen">Jesper van Engelen</a>, <a href="https://profiles.wordpress.org/jesper800">Jesper van Engelen</a>, <a href="https://profiles.wordpress.org/jessepollak">Jesse Pollak</a>, <a href="https://profiles.wordpress.org/jgadbois">jgadbois</a>, <a href="https://profiles.wordpress.org/jartes">Joan Artes</a>, <a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="https://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="https://profiles.wordpress.org/jkudish">Joey Kudish</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="https://profiles.wordpress.org/johnzanussi">John Zanussi</a>, <a href="https://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="https://profiles.wordpress.org/jonnyauk">jonnyauk</a>, <a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="https://profiles.wordpress.org/softmodeling">Jordi Cabot</a>, <a href="https://profiles.wordpress.org/jjeaton">Josh Eaton</a>, <a href="https://profiles.wordpress.org/tai">JOTAKI Taisuke</a>, <a href="https://profiles.wordpress.org/juliobox">Julio Potier</a>, <a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="https://profiles.wordpress.org/jtsternberg">Justin Sternberg</a>, <a href="https://profiles.wordpress.org/greenshady">Justin Tadlock</a>, <a href="https://profiles.wordpress.org/kadamwhite">K.Adam White</a>, <a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="https://profiles.wordpress.org/ixkaito">Kaito</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/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/krogsgard">krogsgard</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/simonwheatley">Simon Wheatley</a>, <a href="https://profiles.wordpress.org/simonp303">simonp303</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</a>, <a href="https://profiles.wordpress.org/codenameeli">Tim ''Eli'' Dalbey</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: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.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:4;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.0 Beta 4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 15 Aug 2014 05:06:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3280";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:353:"The fourth and likely final beta for WordPress 4.0 is now available. We’ve made more than 250 changes in the past month, including: Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes. Better handling of small screens in the media library modals. A separate bulk selection mode […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2003:"<p>The fourth and likely final beta for WordPress 4.0 is now available. We’ve made <a href="https://core.trac.wordpress.org/log?rev=29496&stop_rev=29229&limit=300">more than 250 changes</a> in the past month, including:</p>\n<ul>\n<li>Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes.</li>\n<li>Better handling of small screens in the media library modals.</li>\n<li>A separate bulk selection mode for the media library grid view.</li>\n<li>Improvements to the installation language selector.</li>\n<li>Visual tweaks to plugin details and customizer panels.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for a release this month, which means the next week will be critical for identifying and squashing bugs. If you’re just joining us, please see <a href="https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 4.0 yet, now is the time — and be sure to update the “tested up to” version for your plugins so they’re listed as compatible with 4.0.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the <a href="https://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.0-beta4.zip">download the beta here</a> (zip).</p>\n<p><em>We are working hard</em><br />\n<em>To finish up 4.0<br />\n</em><em>Will you help us too?</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"WordPress 3.9.2 Security Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2014/08/wordpress-3-9-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2014/08/wordpress-3-9-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 06 Aug 2014 19:04:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3269";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:377:"WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately. This release fixes a possible denial of service issue in PHP’s XML processing, reported by Nir Goldshlager of the Salesforce.com Product Security Team. It was fixed by Michael Adams and Andrew Nacin of the WordPress […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2353:"<p>WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately.</p>\n<p>This release fixes a possible denial of service issue in PHP’s XML processing, reported by <a href="https://twitter.com/nirgoldshlager">Nir Goldshlager</a> of the Salesforce.com Product Security Team. It was fixed by Michael Adams and Andrew Nacin of the WordPress security team and David Rothstein of the <a href="https://www.drupal.org/SA-CORE-2014-004">Drupal security team</a>. This is the first time our two projects have coordinated joint security releases.</p>\n<p>WordPress 3.9.2 also contains other security changes:</p>\n<ul>\n<li>Fixes a possible but unlikely code execution when processing widgets (WordPress is not affected by default), discovered by <a href="http://www.buayacorp.com/">Alex Concha</a> of the WordPress security team.</li>\n<li>Prevents information disclosure via XML entity attacks in the external GetID3 library, reported by <a href="http://onsec.ru/en/">Ivan Novikov</a> of ONSec.</li>\n<li>Adds protections against brute attacks against CSRF tokens, reported by <a href="http://systemoverlord.com/">David Tomaschik</a> of the Google Security Team.</li>\n<li>Contains some additional security hardening, like preventing cross-site scripting that could be triggered only by administrators.</li>\n</ul>\n<p>We appreciated responsible disclosure of these issues directly to our security team. For more information, see the <a href="https://codex.wordpress.org/Version_3.9.2">release notes</a> or consult the <a href="https://core.trac.wordpress.org/log/branches/3.9?stop_rev=29383&rev=29411">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 3.9.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.9.2 within 12 hours. (If you are still on WordPress 3.8.3 or 3.7.3, you will also be updated to 3.8.4 or 3.7.4. We don’t support older versions, so please update to 3.9.2 for the latest and greatest.)</p>\n<p>Already testing WordPress 4.0? The third beta is <a href="https://wordpress.org/wordpress-4.0-beta3.zip">now available</a> (zip) and it contains these security fixes.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/08/wordpress-3-9-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.0 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/07/wordpress-4-0-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2014/07/wordpress-4-0-beta-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 18 Jul 2014 21:15:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3261";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:374:"WordPress 4.0 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). For more of what’s new in version 4.0, check out […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1745:"<p>WordPress 4.0 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, try the <a href="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-beta2.zip">download the beta here</a> (zip).</p>\n<p>For more of what’s new in version 4.0, <a href="https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Further refinements for the the plugin installation and media library experiences.</li>\n<li>Updated TinyMCE, which now includes better indentation for lists and the restoration of the color picker.</li>\n<li>Cookies are now tied to a session internally, so if you have trouble logging in, <a href="https://core.trac.wordpress.org/ticket/20276">#20276</a> may be the culprit.</li>\n<li>Various bug fixes (there were <a href="https://core.trac.wordpress.org/log?rev=29228&stop_rev=29060&limit=200">nearly 170 changes</a> since last week).</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href="https://core.trac.wordpress.org/">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.0">everything we’ve fixed</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2014/07/wordpress-4-0-beta-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.0 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Jul 2014 10:17:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3248";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"WordPress 4.0 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:4031:"<p>WordPress 4.0 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the <a href="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.0-beta1.zip">download the beta here</a> (zip).</p>\n<p>4.0 is due out next month, but to get there, we need your help testing what we’ve been working on:</p>\n<ul>\n<li><strong>Previews of <a href="https://codex.wordpress.org/Embeds">embedding via URLs</a></strong> in the visual editor and the “Insert from URL” tab in the media modal. Try pasting a URL (such as a <a href="http://wordpress.tv/">WordPress.tv</a> or YouTube video) onto its own line in the visual editor. (<a href="https://core.trac.wordpress.org/ticket/28195">#28195</a>, <a href="https://core.trac.wordpress.org/ticket/15490">#15490</a>)</li>\n<li>The <strong>Media Library</strong> now has a “grid” view in addition to the existing list view. Clicking on an item takes you into a modal where you can see a larger preview and edit information about that attachment, and you can navigate between items right from the modal without closing it. (<a href="https://core.trac.wordpress.org/ticket/24716">#24716</a>)</li>\n<li>We’re freshening up the <strong>plugin install experience</strong>. You’ll see some early visual changes as well as more information when searching for plugins and viewing details. (<a href="https://core.trac.wordpress.org/ticket/28785">#28785</a>, <a href="https://core.trac.wordpress.org/ticket/27440">#27440</a>)</li>\n<li><strong>Selecting a language</strong> when you run the installation process. (<a href="https://core.trac.wordpress.org/ticket/28577">#28577</a>)</li>\n<li>The <strong>editor</strong> intelligently resizes and its top and bottom bars pin when needed. Browsers don’t like to agree on where to put things like cursors, so if you find a bug here, please also let us know your browser and operating system. (<a href="https://core.trac.wordpress.org/ticket/28328">#28328</a>)</li>\n<li>We’ve made some improvements to how your keyboard and cursor interact with <strong>TinyMCE views</strong> such as the gallery preview. Much like the editor resizing and scrolling improvements, knowing about your setup is particularly important for bug reports here. (<a href="https://core.trac.wordpress.org/ticket/28595">#28595</a>)</li>\n<li><strong>Widgets in the Customizer</strong> are now loaded in a separate panel. (<a href="https://core.trac.wordpress.org/ticket/27406">#27406</a>)</li>\n<li>We’ve also made some changes to some <strong>formatting</strong> functions, so if you see quotes curling in the wrong direction, please file a bug report.</li>\n</ul>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="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.0">everything we’ve fixed</a> so far.</p>\n<p><strong>Developers:</strong> Never fear, we haven’t forgotten you. There’s plenty for you, too – more on that in upcoming posts. In the meantime, check out the <a href="https://make.wordpress.org/core/2014/07/08/customizer-improvements-in-4-0/#customizer-panels">API for panels in the Customizer</a>.</p>\n<p>Happy testing!</p>\n<p><em>Plugins, editor</em><br />\n<em>Media, things in between</em><br />\n<em>Please help look for bugs</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"WordPress 3.9.1 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2014/05/wordpress-3-9-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2014/05/wordpress-3-9-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 08 May 2014 18:40:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3241";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:385:"After three weeks and more than 9 million downloads of WordPress 3.9, we’re pleased to announce that WordPress 3.9.1 is now available. This maintenance release fixes 34 bugs in 3.9, including numerous fixes for multisite networks, customizing widgets while previewing themes, and the updated visual editor. We’ve also made some improvements to the new audio/video […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3106:"<p>After three weeks and more than 9 million downloads of <a title="WordPress 3.9 “Smith”" href="https://wordpress.org/news/2014/04/smith/">WordPress 3.9</a>, we’re pleased to announce that WordPress 3.9.1 is now available.</p>\n<p>This maintenance release fixes 34 bugs in 3.9, including numerous fixes for multisite networks, customizing widgets while previewing themes, and the updated visual editor. We’ve also made some improvements to the new audio/video playlists feature and made some adjustments to improve performance. For a full list of changes, consult the <a href="https://core.trac.wordpress.org/query?milestone=3.9.1">list of tickets</a> and the <a href="https://core.trac.wordpress.org/log/branches/3.9?rev=28353&stop_rev=28154">changelog</a>.</p>\n<p>If you are one of the millions already running WordPress 3.9, we’ve started rolling out automatic background updates for 3.9.1. For sites <a href="https://wordpress.org/plugins/background-update-tester/">that support them</a>, of course.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 3.9.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Thanks to all of these fine individuals for contributing to 3.9.1: <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</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/rzen">Brian Richards</a>, <a href="https://profiles.wordpress.org/ehg">Chris Blower</a>, <a href="https://profiles.wordpress.org/jupiterwise">Corey McKrill</a>, <a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/feedmeastraycat">feedmeastraycat</a>, <a href="https://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="https://profiles.wordpress.org/helen">Helen Hou-Sandi</a>, <a href="https://profiles.wordpress.org/imath">imath</a>, <a href="https://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="https://profiles.wordpress.org/m_i_n">m_i_n</a>, <a href="https://profiles.wordpress.org/clorith">Marius Jensen</a>, <a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="https://profiles.wordpress.org/dimadin">Milan Dinić</a>, <a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="https://profiles.wordpress.org/SergeyBiryukov">Sergey Biryukov</a>, and <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/05/wordpress-3-9-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"WordPress 3.9 “Smith”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"https://wordpress.org/news/2014/04/smith/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:50:"https://wordpress.org/news/2014/04/smith/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 16 Apr 2014 18:33:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3154";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:411:"Version 3.9 of WordPress, named “Smith” in honor of jazz organist Jimmy Smith, is available for download or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love. A smoother media editing experience Improved visual editing The updated visual editor has improved speed, accessibility, and mobile support. You can paste into the […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:23556:"<p>Version 3.9 of WordPress, named “Smith” in honor of jazz organist <a href="http://en.wikipedia.org/wiki/Jimmy_Smith_(musician)">Jimmy Smith</a>, is available <a href="https://wordpress.org/download/">for download</a> or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love.</p>\n<div id="v-sAiXhCfV-1" class="video-player"><embed id="v-sAiXhCfV-1-video" src="https://v0.wordpress.com/player.swf?v=1.03&guid=sAiXhCfV&isDynamicSeeking=true" type="application/x-shockwave-flash" width="692" height="388" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div>\n<h2 class="about-headline-callout" style="text-align: center">A smoother media editing experience</h2>\n<div>\n<p><img class="alignright wp-image-3168" src="//wordpress.org/news/files/2014/04/editor1-300x233.jpg" alt="editor" width="228" height="177" /></p>\n<h3>Improved visual editing</h3>\n<p>The updated visual editor has improved speed, accessibility, and mobile support. You can paste into the visual editor from your word processor without wasting time to clean up messy styling. (Yeah, we’re talking about you, Microsoft Word.)</p>\n</div>\n<div style="clear: both"></div>\n<div>\n<p><img class="alignright wp-image-3170" src="//wordpress.org/news/files/2014/04/image1-300x233.jpg" alt="image" width="228" height="178" /></p>\n<h3>Edit images easily</h3>\n<p>With quicker access to crop and rotation tools, it’s now much easier to edit your images while editing posts. You can also scale images directly in the editor to find just the right fit.</p>\n</div>\n<div style="clear: both"></div>\n<div>\n<p><img class="alignright wp-image-3187" src="//wordpress.org/news/files/2014/04/dragdrop1-300x233.jpg" alt="dragdrop" width="228" height="178" /></p>\n<h3>Drag and drop your images</h3>\n<p>Uploading your images is easier than ever. Just grab them from your desktop and drop them in the editor.</p>\n</div>\n<div style="clear: both"></div>\n<hr />\n<h2 style="text-align: center">Gallery previews</h2>\n<p><img class="aligncenter size-full wp-image-3169" src="//wordpress.org/news/files/2014/04/gallery1.jpg" alt="gallery" width="980" height="550" /></p>\n<p>Galleries display a beautiful grid of images right in the editor, just like they do in your published post.</p>\n<hr />\n<h2 style="text-align: center">Do more with audio and video</h2>\n\n<a href=''https://wordpress.org/news/files/2014/04/AintMisbehavin.mp3''>Ain''t Misbehavin''</a>\n<a href=''https://wordpress.org/news/files/2014/04/DavenportBlues.mp3''>Davenport Blues</a>\n<a href=''https://wordpress.org/news/files/2014/04/JellyRollMorton-BuddyBoldensBlues.mp3''>Buddy Bolden''s Blues</a>\n<a href=''https://wordpress.org/news/files/2014/04/Johnny_Hodges_Orchestra-Squaty_Roo-1941.mp3''>Squaty Roo</a>\n<a href=''https://wordpress.org/news/files/2014/04/Louisiana_Five-Dixie_Blues-1919.mp3''>Dixie Blues</a>\n<a href=''https://wordpress.org/news/files/2014/04/WolverineBlues.mp3''>Wolverine Blues</a>\n\n<p>Images have galleries; now we’ve added simple audio and video playlists, so you can showcase your music and clips.</p>\n<hr />\n<h2 style="text-align: center">Live widget and header previews</h2>\n<div style="width: 692px; " class="wp-video"><video class="wp-video-shortcode" id="video-3154-3" width="692" height="448" preload="metadata" controls="controls"><source type="video/mp4" src="//wordpress.org/news/files/2014/04/widgets.mp4?_=3" /><a href="//wordpress.org/news/files/2014/04/widgets.mp4">//wordpress.org/news/files/2014/04/widgets.mp4</a></video></div>\n<p>Add, edit, and rearrange your site’s widgets right in the theme customizer. No “save and surprise” — preview your changes live and only save them when you’re ready.</p>\n<p>The improved header image tool also lets you upload, crop, and manage headers while customizing your theme.</p>\n<hr />\n<h2 style="text-align: center">Stunning new theme browser</h2>\n<p><img class="aligncenter size-full wp-image-3172" src="//wordpress.org/news/files/2014/04/theme1.jpg" alt="theme" width="1003" height="558" /><br />\nLooking for a new theme should be easy and fun. Lose yourself in the boundless supply of free WordPress.org themes with the beautiful new theme browser.</p>\n<hr />\n<h2 style="text-align: center">The Crew</h2>\n<p>This release was led by <a href="http://nacin.com/">Andrew Nacin</a> and <a href="http://www.getsource.net/">Mike Schroder</a>, with the help of these fine individuals. There are 267 contributors with props in this release, a new high:</p>\n<p><a href="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/adamsilverstein">Adam Silverstein</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">Aubrey Portwood</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/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/ehg">Chris Blower</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 (eightface)</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/ethitter">Erick Hitter</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/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/gcorne">Gregory Cornelius</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/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/johnbillion">John Blackbourn</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/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/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/matveb">Matías Ventura</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/melchoyce">Mel Choyce</a>, <a href="https://profiles.wordpress.org/meloniq">meloniq</a>, <a href="https://profiles.wordpress.org/michael-arestad">Michael Arestad</a>, <a href="https://profiles.wordpress.org/michelwppi">Michel - xiligroup dev</a>, <a href="https://profiles.wordpress.org/mcsf">Miguel Fonseca</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/ounziw">Rescuework Support</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/shaunandrews">Shaun Andrews</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/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/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>. Also thanks to <a href="http://michaelpick.wordpress.com/">Michael Pick</a> for producing the release video.</p>\n<p>If you want to follow along or help out, check out <a href="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.0!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:46:"https://wordpress.org/news/2014/04/smith/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:32:"https://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Mon, 17 Nov 2014 05:23:05 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:"Fri, 14 Nov 2014 23:16:39 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20141115140811";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(375, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1416244986', 'no'),
(376, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1416201786', 'no'),
(377, '_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c', '1416244988', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(378, '_transient_feed_867bd5c64f85878d03a060509cd2f92c', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:61:"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress Planet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:28:"http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:47:"WordPress Planet - http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:50:{i:0;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"Matt: Munchery is Eating the Restaurant";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44307";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/11/munchery-is-eating-the-restaurant/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:285:"<p><a href="http://stavreas.com/munchery-is-eating-the-restaurant/">Munchery is Eating the Restaurant</a>, a cool write-up of Munchery which I’ve been a long-time fan of and is an <a href="http://audrey.co/">Audrey</a> company. Whenever I’m in SF I order from Munchery.</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, 16 Nov 2014 18:32: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: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:34:"Matt: Government Going Open Source";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44520";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://ma.tt/2014/11/government-going-open-source/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:195:"<p><a href="http://www.techrepublic.com/article/as-open-source-goes-mainstream-institutions-collaborate-differently/">As open source goes mainstream, institutions collaborate differently</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 15 Nov 2014 16:56: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: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:56:"WPTavern: WordPress 4.1 Beta 1 Now Available for Testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=33564";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wptavern.com/wordpress-4-1-beta-1-now-available-for-testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3042:"<p>WordPress 4.1 beta 1 was <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/" target="_blank">released</a> into the hands of eager testers today, just in time for the weekend. John Blackbourn announced the beta and outlined a list of features and improvements that you’ll want to put through the paces. The most visible items include the following:</p>\n<ul>\n<li>The new Twenty Fifteen default theme</li>\n<li>New distraction-free writing mode for the editor, enabled by default for beta</li>\n<li>The ability to automatically install new language packs right from the General Settings screen (available as long as your site’s file system is writable).</li>\n<li>A new inline formatting toolbar for images embedded into posts.</li>\n</ul>\n<p>The items listed do not include everything that’s coming in 4.1, but rather the features that require the most testing before the official release. There are also many improvements under the hood for developers to test:</p>\n<ul>\n<li><a href="https://make.wordpress.org/core/2014/10/20/update-on-query-improvements-in-4-1/" target="_blank">Improvements to meta, date, comment, and taxonomy queries</a>, including complex (nested, multiple relation) queries; and querying comment types</li>\n<li>A single term shared across multiple taxonomies is now split into two when updated.</li>\n<li>A new and better way for themes to handle <a href="http://wptavern.com/wordpress-4-1-to-introduce-theme-support-for-the-title-tag" target="_blank">title tags</a>.</li>\n<li><a href="https://make.wordpress.org/core/2014/10/27/toward-a-complete-javascript-api-for-the-customizer/" target="_blank">Improvements to the Customizer API</a>, including contextual panels and sections, and JavaScript templates for controls.</li>\n</ul>\n<p>The <a href="http://wptavern.com/focus-project-and-session-ui-approved-for-merge-into-wordpress-4-1" target="_blank">Focus project (the new DFW) was merged into core along with the user session UI</a>. So far, reaction to the new distraction-free writing mode has been mixed, with the most vocal feedback coming from those who are not looking forward to turning the feature off on multiple sites. WordPress core contributors will be gathering feedback during the beta period in order to determine whether or not the new DFW mode will be shipped as “on” by default. Having it off by default decreases users’ ability to discover the new DFW mode, but it would also help it to be more universally well-received.</p>\n<p>If you want to jump in and help test 4.1 beta 1 with all its exciting improvements, the easiest way is to get hooked up with the <a href="https://wordpress.org/plugins/wordpress-beta-tester/" target="_blank">WordPress Beta Tester</a> plugin. This will allow you to update your test install to use the “bleeding edge nightlies.” The other option is to download the zip file from Blackbourn’s <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/" target="_blank">beta 1 announcement</a> post.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Nov 2014 23:15: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: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:19:"Matt: Embrace HTTPS";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44518";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:35:"http://ma.tt/2014/11/embrace-https/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:139:"<p><a href="http://open.blogs.nytimes.com/2014/11/13/embracing-https/">9 Reasons Why News Media Sites Should Embrace HTTPS in 2015</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, 14 Nov 2014 22:09: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:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:83:"WPTavern: DevriX and Emil Uzelac Team Up to Produce Masonry, A Free WordPress Theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=33643";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/devrix-and-emil-uzelac-team-up-to-produce-masonry-a-free-wordpress-theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5454:"<p><a href="https://wordpress.org/themes/masonry" target="_blank">Masonry</a> is a new free WordPress theme with an elegant 1-column design. You’d be hard-pressed to find a theme that is easier to set up. It offers just a handful of options built into the native customizer, including the ability to customize the header colors and header background image.</p>\n<p>The theme is mobile-friendly, with a hidden sidebar that houses the primary navigation and widgets. It also has support for a footer menu and a social links menu at the top. With the help of the <a href="https://wordpress.org/plugins/regenerate-thumbnails/" target="_blank">Regenerate Thumbnails</a> plugin, you can have an existing site looking just like the Masonry demo in a matter of a couple minutes.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/masonry.png" rel="prettyphoto[33643]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/masonry.png?resize=880%2C660" alt="masonry" class="aligncenter size-full wp-image-33648" /></a></p>\n<h3>The Story Behind Masonry: A WordPress.org Theme Collaboration</h3>\n<p>There’s a unique story behind the creation of this theme. Masonry was started as a collaboration project between WordPress theme designer <a href="http://uzelac.com/" target="_blank">Emil Uzelac</a> and <a href="http://devrix.com/" target="_blank">DeviX</a>, a development company founded by Mario Peshev and Stanko Metodiev.</p>\n<p>Uzelac is most well-known for his work on the <a href="http://wptavern.com/a-day-in-the-life-of-a-wordpress-theme-reviewer" target="_blank">WordPress.org Theme Review Team</a> and his popular free <a href="http://wordpress.org/themes/responsive" target="_blank">Responsive theme</a> that was eventually <a href="http://mattreport.com/trent-lapinski-cyberchimps/" target="_blank">acquired by CyberChimps</a>. He put out a tweet, announcing his availability:</p>\n<blockquote class="twitter-tweet" width="550"><p>You have a WordPress project and I have 2 weeks free, let’s talk! <a href="https://twitter.com/hashtag/WordPress?src=hash">#WordPress</a></p>\n<p>— Emil Uzelac (@emiluzelac) <a href="https://twitter.com/emiluzelac/status/508451598620979200">September 7, 2014</a></p></blockquote>\n<p></p>\n<p>Uzelac was Peshev’s mentor for the Theme Review Team in 2011 before he promoted him to a reviewer. This was back in the days when you had to pass more than a dozen test reviews before moving on. “Emil is super dedicated to the WPTRT and a great person and should not be left unemployed at any time,” Peshev said. He responded to his tweet, and a theme collaboration was born.</p>\n<p>DevriX set out some ideas for the theme and then hired Uzelac to design and develop it. “We have added several things and will keep maintaining it, but we paid him for a full zip file that was (almost) ready to go on WordPress.org,” Peshev said. “Since he’s one of the TRT admins, it was the easiest way to cover the hundreds of requirements there.”</p>\n<p>Peshev said that DevriX gets no practical business benefit from the theme, as the company doesn’t perform customization or installation services. He saw it as a good way to give back to the community while also helping volunteers to find more work for their expertise.</p>\n<h3>Making the Theme Review Team More Visible</h3>\n<p>As a result of this collaboration experience, Peshev discovered that there is no easy way for people to find and hire those who are skilled at preparing a theme for approval on WordPress.org. He suggested that a directory of Theme Review team members might be a good idea for promoting the folks who have these abilities.</p>\n<blockquote><p>There is no clear way to hire any of them for theme reviews or building a theme following the WordPress.org guidelines. I assume that small and medium agencies would be willing to pay for professional reviews or getting themes built for any reason, which would support both parties. I’ve had several clients paying for code reviews and fixing themes in order to get them in the WordPress.org Theme Directory.</p></blockquote>\n<p>In the past, themes have sometimes taken months to go through the process, after getting rejected a few times and then finally gaining approval. Hiring someone to help prepare a theme to pass WordPress.org guidelines can save a company a good chunk of time. <strong>“Given the 4-6 week period to get a theme reviewed, that’s a valuable service,”</strong> Peshev said.</p>\n<p>A directory would help people in the community to be able to identify the qualified Theme Review Team volunteers available to hire for code review, even for products that are marketed outside of WordPress.org. “Same goes for all the other teams that don’t get props in the Core releases, such as docs, polyglots and accessibility” Peshev said. “In this case, theme reviewers are not listed anywhere and not publicly available for hire (for new themes or professional reviews).”</p>\n<p>In the case of Uzelac and Peshev’s collaboration, the end result is a nice free theme for the community to enjoy. With all the volunteer hours put into reviewing themes for WordPress.org, do you think reviewers could benefit from being listed in a directory? Or would this needlessly complicate the relationship between reviewers and submissions on 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, 14 Nov 2014 22:09: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: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:80:"WPTavern: Flynn O’Connor on Organizing and Marketing a WordCamp for Developers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=33505";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/flynn-oconnor-on-organizing-and-marketing-a-wordcamp-for-developers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7717:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/WordCampVancouver2014FeaturedImage.png" rel="prettyphoto[33505]"><img class="aligncenter size-full wp-image-33641" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/WordCampVancouver2014FeaturedImage.png?resize=680%2C296" alt="WordCamp Vancouver Featured Image" /></a></p>\n<p>One topic to come out of the discussion surrounding the <a title="http://wptavern.com/loopconf-sparks-controversy-with-tickets-priced-at-800" href="http://wptavern.com/loopconf-sparks-controversy-with-tickets-priced-at-800">cost to attend LoopConf</a> is the idea that WordCamps can’t be developer focused. One of the most exciting aspects of LoopConf is the chance to dive deep into technical discussions. WordCamps generally cater to a wide range of skill levels, which some feel prevent these types of discussions from occurring.</p>\n<p>There’s nothing in the <a title="http://plan.wordcamp.org/" href="http://plan.wordcamp.org/">WordCamp guidelines</a> that state WordCamps have to cater to all experience levels, it’s just what most organizers do based on the needs of their local community. In 2011, <a title="http://mor10.com/" href="http://mor10.com/">Morten Rand-Hendriksen</a> organized an event called <a title="https://web.archive.org/web/20110926234935/http://wordcampdevelopers.com/" href="https://web.archive.org/web/20110926234935/http://wordcampdevelopers.com/">WordCamp Developers</a> held in Vancouver, BC. WordPress developers and designers interested in learning about practical, applied WordPress development by industry leaders and local WordPress practitioners attended the event.</p>\n<p>Earlier this year, Flynn O’Connor co-organized <a title="http://2014.vancouver.wordcamp.org/" href="http://2014.vancouver.wordcamp.org/">WordCamp Vancouver, BC Developer Edition</a>. It was a one day event <a title="http://2014.vancouver.wordcamp.org/sessions/" href="http://2014.vancouver.wordcamp.org/sessions/">filled with WordPress developer topics</a> including, an introduction to the command line, advanced custom fields, and getting started with unit tests. I interviewed O’Connor to find out how he marketed the event and what he did to achieve a relevant audience.</p>\n<h2>Interview With Flynn O’Connor</h2>\n<p><strong>At what point did you realize you needed to have a Developer Edition of WordCamp Vancouver?</strong></p>\n<p>This is something that our team discussed after the previous year’s WordCamp completed. There was a desire to not only create a camp for WordPress developers but also a WordPress focused event that would be of interest to the larger tech community within Vancouver to see what WordPress could do. While attending other events like <a title="http://2014.cascadiajs.com/" href="http://2014.cascadiajs.com/">CascadiaJS</a> conference, I found myself correcting a lot of people’s old pre-conceived notions of what WordPress is and can do now.</p>\n<p><strong>How did you market WordCamp Vancouver Developer Edition so that a majority of the attendees are developer or designer oriented?</strong></p>\n<p>We tried to be clear with our content that this event was going to focus on building with WordPress and not necessarily about end user topics. In emails, on the website, social media and in community posts like the one <a title="http://wptavern.com/wordcamp-vancouver-to-hold-developer-edition-in-july" href="http://wptavern.com/wordcamp-vancouver-to-hold-developer-edition-in-july">WPTavern published</a> about our event we tried to get the message out that if you can or wanted to know how to build on WordPress, this would be an event for you.</p>\n<p>We also connected with other tech related meet up groups and asked for the assistance in getting the word out about our event and reached out to several schools that offered web development programs and offered their students discount tickets. Even so, there are some people who are going to attend because they’re aware of WordPress and want to see what it’s all about but don’t know how to design or develop for it. From our experience, we’ve found you can’t really stop that.</p>\n<p><strong>What type of feedback did you get after the event? Did some attendees complain that the content was over their head?</strong></p>\n<p>Yes, we did get some people who said some of the talks were advanced for them. But from the ones I talked to that brought this up, quite of a few of them were not discouraged by this. We can’t cater to everyone and make everyone happy but if we provide our attendees content that will challenge them, then hopefully, we are encouraging them to learn more and helping them to become better developers.</p>\n<p><strong>What advice can you give to organizers who want to put on a developer focused WordCamp?</strong></p>\n<p>Reach out to the tech community beyond WordPress, not only for attendees but also speakers. Many of them will be happy to help. Don’t be afraid of the content being too advanced for some attendees but try to balance out the talks so that less experienced developers don’t feel overwhelmed the entire time.</p>\n<p>Talk to meet up and smaller local event planners to get a sense for your community’s general skill level so you can better anticipate likely attendance levels for the more advanced talks. I am one of the co-organizers for the Vancouver meet up and I focus on the dev branch, so I had a decent idea of how many high level developers in our community would actually attend these events.</p>\n<h2>Understanding The Needs Of The Local Community</h2>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/LocalImage.png" rel="prettyphoto[33505]"><img class="size-full wp-image-33651" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/LocalImage.png?resize=640%2C126" alt="Local Image" /></a>photo credit: <a href="https://www.flickr.com/photos/arimoore/1232161364/">arimoore</a> – <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a>\n<p>Organizers are <a title="https://make.wordpress.org/community/2013/08/20/organizing-a-non-wordcamp/" href="https://make.wordpress.org/community/2013/08/20/organizing-a-non-wordcamp/">encouraged to experiment</a> and break from the mold while still following the guidelines. WordCamp Vancouver Developer Edition proves it’s possible and if you look at <a title="http://i0.wp.com/2014.vancouver.wordcamp.org/files/2014/07/WordCamp-Vancouver-2014-Public-Budget-Sheet11.png" href="http://i0.wp.com/2014.vancouver.wordcamp.org/files/2014/07/WordCamp-Vancouver-2014-Public-Budget-Sheet11.png" rel="prettyphoto[33505]">their budget sheet</a>, it cost just over $18,000. So not only can organizers create a WordPress developer centric event using the WordCamp branding, the financial support of doing so makes it much more affordable.</p>\n<p>One of the keys to the success of WordCamp Vancouver for developers and designers is understanding the needs of the local WordPress community. If there is sufficient demand and the community is large enough, consider organizing an event in your area. There’s also no rules in the guidelines that limit the amount of WordCamps per year in a given city. This means organizers can continue to have traditional WordCamps while organizing a separate event catered to developers.</p>\n<p>I want to know from those who have organized 500-1,000 person WordCamps if you plan to branch out and create smaller, niche events while using the WordCamp branding? If so, please let us know in the comments. Also feel free to share concerns, ideas, or ask questions related to organizing a niche event.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Nov 2014 20:33: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: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:67:"WPTavern: WPWeekly Episode 170 – I’ve Got Your Drama Right Here";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33629&preview_id=33629";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wpweekly-episode-170-ive-got-your-drama-right-here";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3719:"<p>Since our guest couldn’t make it due to illness, <a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I took the opportunity to thank all of the wonderful listeners who responded to our call to action in <a title="http://wptavern.com/wpweekly-episode-169-wordpress-is-now-a-verb" href="http://wptavern.com/wpweekly-episode-169-wordpress-is-now-a-verb">episode 169</a>. I followed up the first segment with a 10-15 minute rant beginning at <strong>13:25</strong> on WP Drama. Marcus and I agree that it’s a dismissive term and doesn’t offer anything productive to the WordPress ecosystem. After the rant, we discuss the news of the week and Marcus gives his two-word review of Ghost.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/wooconf-the-first-ever-conference-dedicated-to-woocommerce-deemed-a-success" href="http://wptavern.com/wooconf-the-first-ever-conference-dedicated-to-woocommerce-deemed-a-success">WooConf, The First Ever Conference Dedicated to WooCommerce Deemed a Success</a><br />\n<a title="http://wptavern.com/why-wordpress-doesnt-need-to-fear-ghost-yet" href="http://wptavern.com/why-wordpress-doesnt-need-to-fear-ghost-yet">Why WordPress Doesn’t Need to Fear Ghost, Yet</a><br />\n<a title="http://wptavern.com/john-james-jacoby-launches-indiegogo-campaign-to-fund-buddypress-bbpress-and-glotpress-development" href="http://wptavern.com/john-james-jacoby-launches-indiegogo-campaign-to-fund-buddypress-bbpress-and-glotpress-development">John James Jacoby Launches Indiegogo Campaign to Fund BuddyPress, bbPress, and GlotPress Development</a><br />\n<a title="http://wptavern.com/happy-joe-uses-wordpress-to-train-and-help-veterans-find-careers-in-web-technology" href="http://wptavern.com/happy-joe-uses-wordpress-to-train-and-help-veterans-find-careers-in-web-technology">Happy Joe Uses WordPress to Train and Help Veterans Find Careers in Web Technology</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="https://wordpress.org/plugins/google-webfont-optimizer/" href="https://wordpress.org/plugins/google-webfont-optimizer/">Google Webfont Optimizer</a> finds every Google Fonts request and bulks them together so the site only asks Google once for the fonts instead of multiple times.</p>\n<p><a title="https://wordpress.org/plugins/note/" href="https://wordpress.org/plugins/note/">Note</a> is a simple and easy to use widget for editing bits of text, live, in your WordPress front-end Customizer. Note was <a title="http://wptavern.com/note-by-slocum-studio-is-a-real-time-customizable-text-widget" href="http://wptavern.com/note-by-slocum-studio-is-a-real-time-customizable-text-widget">recently reviewed</a> on WP Tavern.</p>\n<p><a title="https://wordpress.org/plugins/baw-login-logout-menu/" href="https://wordpress.org/plugins/baw-login-logout-menu/">BAW Login/Logout menu</a> enables you to add a real login/logout item menu that autoswitches when a user is logged in or out. You can also configure a redirect for the login/logout action.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, November 19th 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 #170:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Nov 2014 15:01: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: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:29:"Matt: US Internet Competition";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44355";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"http://ma.tt/2014/11/us-internet-competition/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:741:"<blockquote><p>In the United States, the Federal Communications Commission in 2002 reclassified high-speed Internet access as an information service, which is unregulated, rather than as telecommunications, which is regulated. Its hope was that Internet providers would compete with one another to provide the best networks. That didn’t happen. The result has been that they have mostly stayed out of one another’s markets.\n</p></blockquote>\n<p><a href="http://www.nytimes.com/2014/10/31/upshot/why-the-us-has-fallen-behind-in-internet-speed-and-affordability.html?_r=1&abt=0002&abg=0">Why the U.S. Has Fallen Behind in Internet Speed and Affordability</a>. Also has one of my favorite animated GIFs I’ve seen in a Times story.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Nov 2014 02:05: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:63:"WPTavern: Get Jetpack’s Markdown Module Without Using Jetpack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=18338";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/get-jetpacks-markdown-module-without-using-jetpack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3464:"<p><a href="http://about.me/ahspw/" target="_blank">Anas H. Sulaiman</a> is a WordPress plugin developer who has created several extensions that extract modules from <a href="http://jetpack.me/" target="_blank">Jetpack</a> so that they can be used independently. He recently renamed his WordPress.org profile to “JP Bot” and is gradually adding to his collection of Jetpack-extractions:</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/jp-bot-plugins.jpg" rel="prettyphoto[18338]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/jp-bot-plugins.jpg?resize=700%2C222" alt="jp-bot-plugins" class="aligncenter size-full wp-image-33603" /></a></p>\n<p>One of his most popular plugins is <a href="https://wordpress.org/plugins/jetpack-markdown/" target="_blank">JP Markdown</a>, which essentially duplicates Jetpack’s <a href="http://jetpack.me/support/markdown/" target="_blank">Markdown module</a>. It allows you to compose WordPress content in Markdown and have it published as HTML. I gave the plugin a test run and found that it works as advertised:</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/markdown-test.jpg" rel="prettyphoto[18338]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/markdown-test.jpg?resize=660%2C540" alt="markdown-test" class="aligncenter size-full wp-image-33614" /></a></p>\n<p>JP Markdown even includes the “Use Markdown for Comments” feature that you can enable under <strong>Settings > Discussion</strong>. This plugin is a solid option if you like the Markdown module in Jetpack but don’t want everything else that comes with it.</p>\n<p>The JP Bot family of plugins extracted from Jetpack currently includes:</p>\n<ul>\n<li><a href="http://wordpress.org/plugins/jetpack-sharing/" target="_blank">JP Sharing</a> – Share content with Facebook, Twitter, et al.</li>\n<li><a href="http://wordpress.org/plugins/jetpack-widget-visibility/" target="_blank">JP Widget Visibility</a> – Control what pages your widgets appear on.</li>\n<li><a href="http://wordpress.org/plugins/jetpack-markdown/" target="_blank">JP Markdown</a> – Write in Markdown, publish in HTML.</li>\n<li><a href="http://wordpress.org/plugins/jp-custom-css/" target="_blank">JP Custom CSS</a> – Customize your site’s CSS without modifying your theme.</li>\n<li><a href="https://wordpress.org/plugins/jetpack-gravatar-hovercards/" target="_blank">JP Gravatar Hovercards</a> – Show a pop-up business card of your users’ gravatar profiles in comments.</li>\n<li><a href="https://wordpress.org/plugins/jetpack-omnisearch/" target="_blank">JP Omnisearch</a> – A single search box, that lets you search many different things.</li>\n</ul>\n<p>Using Jetpack requires being connected to WordPress.com. While some users appreciate the convenience and professional support they receive from the Jetpack team, there are many who have reservations about hooking their site up to another third-party service. JP Bot’s <a href="https://profiles.wordpress.org/wpjp/" target="_blank">collection of Jetpack-extraction plugins</a> offer you an alternative to many of Jetpack’s most popular modules. For more alternatives to Jetpack, check out <a href="http://wptavern.com/15-plugins-to-get-jetpack-functionality-without-using-jetpack" target="_blank">15+ Plugins To Get Jetpack Functionality Without Using Jetpack</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, 14 Nov 2014 00:22:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:86:"WPTavern: Taxonomy Filter: A Simple Plugin to Filter Taxonomies in the WordPress Admin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=33566";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/taxonomy-filter-a-simple-plugin-to-filter-taxonomies-in-the-wordpress-admin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3323:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/06/postit-notes.jpg" rel="prettyphoto[33566]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/06/postit-notes.jpg?resize=1024%2C532" alt="photo credit: H. Michael Arrighi - cc" class="size-full wp-image-25350" /></a>photo credit: <a href="http://www.flickr.com/photos/arrighi/8562416557/">H. Michael Arrighi</a> – <a href="http://creativecommons.org/licenses/by/2.0/">cc</a>\n<p>When WordPress is used heavily as a content management system, taxonomies play a very important role for grouping information. While your standard blog might only have a handful of categories, more content-heavy sites can include hundreds of terms within custom taxonomies.</p>\n<p>Scrolling through an impossibly long list of categories or terms can be a clunky experience in the post editor. <a href="https://wordpress.org/plugins/taxonomy-filter/" target="_blank">Taxonomy Filter</a> is a new solution for this, created by Andrea Landonio, a software engineer at Condé Nast in Milan.</p>\n<p>The plugin allows users to filter hierarchical term taxonomies inside the WordPress admin. Specifically, it adds a custom input field for filtering taxonomies when a user is assigning them in the post editor. Here’s an example with the default category taxonomy:</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/category-filter.jpg" rel="prettyphoto[33566]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/category-filter.jpg?resize=282%2C357" alt="category-filter" class="aligncenter size-full wp-image-33578" /></a></p>\n<p>Categories are automatically narrowed down as you type, so that you can easily locate the one you’re looking for.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/category-filtering.jpg" rel="prettyphoto[33566]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/category-filtering.jpg?resize=282%2C279" alt="category-filtering" class="aligncenter size-full wp-image-33579" /></a></p>\n<p>The Taxonomy Filter plugin has a settings page that allows you configure which taxonomies you want to make filterable. Currently, it only works with hierarchical taxonomies, including default categories and <a href="http://codex.wordpress.org/Custom_Taxonomies" target="_blank">custom taxonomies</a>. (It does not support non-hierarchical tags.)</p>\n<p>The settings page gives you two options:</p>\n<ul>\n<li>Enable on post management pages (allow you to turn on/off filter field)</li>\n<li>Hide filter field if taxonomy is empty</li>\n</ul>\n<p>I tested the plugin and found that it works as advertised to quickly filter taxonomies. One added benefit is that it’s likely to keep users from impatiently creating new categories when they overlook an existing category due to too much scrolling. The instinct is to just create a new one which may have a similar name to one that already exists. This further bloats the list and makes categories less effective for grouping content.</p>\n<p>Installing the Taxonomy Filter plugin is one small way that you can make assigning a taxonomy a little more convenient and less clunky in the admin. <a href="https://wordpress.org/plugins/taxonomy-filter/" target="_blank">Download</a> it for free from WordPress.org.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Nov 2014 20:55: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: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:63:"Lorelle on WP: WordPress Vancouver Social Meetup Sunday, Nov 16";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:37:"http://lorelle.wordpress.com/?p=12005";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://lorelle.wordpress.com/2014/11/13/wordpress-vancouver-social-meetup-sunday-nov-16/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:474:"The next WordPress Social Meetup in Vancouver, Washington, is this Sunday, November 16 at 4-7PM. Reserve your spot now on the WordPress PDX Meetup page. We will be getting our social WordPress on in the the Parkway Plaza Building near the Vancouver Mall, a quick hop for those crossing I-205 from Portland or up I-5 […]<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=lorelle.wordpress.com&blog=72&post=12005&subd=lorelle&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Nov 2014 16:24:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"Lorelle VanFossen";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:76:"WPTavern: Focus Project and Session UI Approved for Merge Into WordPress 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:28:"http://wptavern.com/?p=33514";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:86:"http://wptavern.com/focus-project-and-session-ui-approved-for-merge-into-wordpress-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4571:"<p>John Blackbourn announced this afternoon that he will be merging the Focus Project into WordPress core ahead of the upcoming 4.1 release. Last week Jeff Chandler explored <a href="http://wptavern.com/how-the-focus-project-plans-to-enhance-distraction-free-writing-in-wordpress" target="_blank">how the Focus Project plans to enhance distraction-free writing</a> in WordPress. If you haven’t been following the project, it’s essentially a complete re-think of the way WordPress has approached the DFW feature.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/dfw.jpg" rel="prettyphoto[33514]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/dfw.jpg?resize=417%2C395" alt="dfw" class="alignright size-full wp-image-33545" /></a>Mark Jaquith posted a <a href="https://make.wordpress.org/core/2014/11/11/focus-v2-demo-video/" target="_blank">demo video</a> of the feature earlier this week when proposing it to be <a href="https://core.trac.wordpress.org/ticket/29806" target="_blank">merged into core</a> for 4.1. If you haven’t tested it yet, this video gives you a good idea of how the feature will work.</p>\n<p>In general, WordPress users have found distraction-free writing to be a valuable experience but are dissatisfied with the disconnect of being separated from the rest of the publishing tools in the editor. The Focus Project minimizes the transition, automatically fading the non-essential parts of the editor when you start typing. It keeps the the publishing tools just a mouse swipe away.</p>\n<p>The old DFW button is now changed to be a disabling toggle. For the 4.1 beta, this new feature will be automatically on, and WordPress core contributors will use this time to gather feedback and decide whether or not it should be on or off by default. If left on by default, it will be the most visible new feature in 4.1, since it impacts anyone who uses the content editor.</p>\n<h3>Session UI Approved to Merge Into Core</h3>\n<p>The second item approved for merge into 4.1 is the <a href="https://core.trac.wordpress.org/ticket/30264" target="_blank">user session UI</a>, which is essentially a button that displays when a user has more than one active session. When clicked, the button will log the user out of all other sessions.</p>\n<p>During today’s core development chat, Blackbourn also outlined plans for the putting the session UI feature on track for future improvements. “We’ll use the <a href="https://github.com/johnbillion/wp-session-manager" target="_blank">session UI repo on GitHub</a> for future iterations (and we’ll do it as a proper feature plugin too if necessary),” he said. “Or it might just not be developed any further.”</p>\n<p>He also clarified that planned improvements to extension installation and update screens will not make it into this release. “So unfortunately due to the work that some core folks have been doing on 4.0.1, the improvements that were slated for the plugin and theme install (and update) screens has not progressed past mockups, so that has been shelved for 4.1,” Blackbourn said.</p>\n<h3>Shared Terms Will be Split in WordPress 4.1</h3>\n<p>Under the hood, developers can look forward to progress on the taxonomy roadmap. Boone Gorges has made <a href="https://make.wordpress.org/core/2014/11/12/an-update-on-the-taxonomy-roadmap/" target="_blank">huge strides in fixing issues with shared terms</a>. Unraveling this knot was an extraordinary feat, not unlike navigating through a minefield, when it comes to backwards compatibility.</p>\n<p>As of 4.1, updating a shared term will cause it to be split into two separate terms. This solves a common problem where you update a term and have the others changed unintentionally. It also paves the way for more exciting improvements to taxonomy meta and post relationships, as Andrew Nacin <a href="https://make.wordpress.org/core/2013/07/28/potential-roadmap-for-taxonomy-meta-and-post-relationships/" target="_blank">outlined</a> last year.</p>\n<p>The new <a href="http://wptavern.com/twenty-fifteen-officially-added-to-the-development-version-of-wordpress" target="_blank">Twenty Fifteen default theme</a> should also ship in this release, ready just in time for the new year. Blackbourn and contributors are aiming to have WordPress 4.1 beta 1 available Thursday around lunchtime GMT. The official release is <a href="https://make.wordpress.org/core/version-4-1-project-schedule/" target="_blank">scheduled</a> for the week of December 8th.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Nov 2014 00:28: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: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:83:"WPTavern: bbPress Slack Integration: Send New Topics and Replies to a Slack Channel";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33359";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/bbpress-slack-integration-send-new-topics-and-replies-to-a-slack-channel";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3290:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/slack-logo.jpg" rel="prettyphoto[33359]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/slack-logo.jpg?resize=700%2C314" alt="slack-logo" class="aligncenter size-full wp-image-33466" /></a></p>\n<p>WordPress recently adopted <a href="https://slack.com/" target="_blank">Slack</a> as its primary communication tool for contributor teams, largely replacing IRC. When trac tickets are mentioned in Slack, they are automatically linked up, which helps contributors reference and connect discussions. So far, the app has been enthusiastically received, especially since it offers a far more mobile-friendly option for asynchronous communication.</p>\n<p>WordPress-related projects outside of core have also started using Slack for team collaboration. Contributors to the <a href="http://pods.io/" target="_blank">Pods Framework</a> are finding Slack to be instrumental for staying connected. That’s why <a href="http://joshpress.net/" target="_blank">Josh Pollock</a>, community manager for the project, created <a href="https://wordpress.org/plugins/bbpress-slack-integration/" target="_blank">bbPress Slack Integration</a>. This new plugin allows you to send notifications of new bbPress topics and replies to your Slack channel of choice.</p>\n<h3>Staying on Top of Support Requests</h3>\n<p>The Pods team already had GitHub and Asana integrations with their channels. These were working well, but they were missing updates from their bbPress-powered <a href="http://pods.io/forums" target="_blank">support forums</a> in the team’s support channel.</p>\n<p>“The external integrations help keep us aware of what’s happening, while we’re working,” Pollock said. “This plugin does the same thing for support requests and makes us more responsive when we are in ‘Pods Mode.''”</p>\n<p>The bbPress Slack Integration plugin uses the <a href="http://codex.wordpress.org/HTTP_API" target="_blank">WordPress HTTP API</a> and a Slack webhook to send notifications from the forum where it is installed.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/bbpress-slack.png" rel="prettyphoto[33359]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/bbpress-slack.png?resize=607%2C108" alt="bbpress-slack" class="aligncenter size-full wp-image-33501" /></a></p>\n<p>In order to use the plugin with your own bbPress forums, you’ll first need to add a new Slack webhook by visiting:</p>\n<p><code>https://your-team-name.slack.com/services/new/incoming-webhook</code></p>\n<p>Set a channel to receive the notifications, copy the URL for the webhook, and paste it into the plugin’s settings page (Settings->bbPress Slack). You’ll be all set to start receiving bbPress notifications within your specified slack channel.</p>\n<p>If you think that bbPress integration will help your team communicate better on Slack, you can <a href="https://wordpress.org/plugins/bbpress-slack-integration/" target="_blank">download</a> the plugin for free from WordPress.org. bbPress Slack Integration is also available on <a href="https://github.com/Shelob9/jp-bbpress-slack-integration" target="_blank">GitHub</a> if you want to contribute.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Nov 2014 21:44:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:92:"WPTavern: Happy Joe Uses WordPress to Train and Help Veterans Find Careers in Web Technology";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=33365";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:102:"http://wptavern.com/happy-joe-uses-wordpress-to-train-and-help-veterans-find-careers-in-web-technology";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:8167:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/VeteransDayFeaturedImage.png" rel="prettyphoto[33365]"><img class="size-full wp-image-33378" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/VeteransDayFeaturedImage.png?resize=638%2C285" alt="Veterans Day Featured Image" /></a>photo credit: <a href="https://www.flickr.com/photos/soldiersmediacenter/6343590279/">The U.S. Army</a> – <a href="http://creativecommons.org/licenses/by/2.0/">cc</a>\n<p>One of the toughest battles a U.S. military veteran faces after returning from active duty is finding a job and reentering the work force. The battle is so tough that in 2011, First Lady Michelle Obama and Dr. Jill Biden came together to launch <a title="http://www.whitehouse.gov/joiningforces" href="http://www.whitehouse.gov/joiningforces">Joining Forces</a>. Joining Forces is a nationwide initiative calling all Americans to rally around service members, veterans, and their families and support them through wellness, education, and employment opportunities.</p>\n<p><a title="http://www.jamesdalman.com/" href="http://www.jamesdalman.com/">James Dalman</a>, who honorably served in the Oklahoma National Guard, is doing his part to help veterans find jobs in the web technology industry through his non-profit organization, <a title="https://www.happyjoe.org" href="https://www.happyjoe.org">Happy Joe</a>.</p>\n<h2>The Happy Joe Mission</h2>\n<p>Happy Joe is a 501 c3 non-profit organization that helps U.S. veterans with entrepreneurship and employment opportunities. Training initiatives prepare veterans not only for a career in the web technology industry, but also provide the skills necessary to start their own businesses. Most of the <a title="http://www.happyjoe.org/happy-joe-team/" href="http://www.happyjoe.org/happy-joe-team/">team behind the organization</a> is either in active duty or has previous military experience.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/HappyJoeLogo.png" rel="prettyphoto[33365]"><img class="aligncenter size-full wp-image-33486" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/HappyJoeLogo.png?resize=385%2C111" alt="Happy Joe Logo" /></a></p>\n<p>The organization’s mission is to give back to veterans in a measurable way that makes a deep impact.</p>\n<blockquote><p>Happy Joe provides career placement and job training in the web technology industry free of charge to our veterans. We help them navigate their re-entry into the civilian marketplace and advocate for the rights that they’ve earned the right to. And we partner with the best companies and resources to ensure that our military veterans have every opportunity to become successful after their commitment to service is over.</p></blockquote>\n<p>Training and job placement programs are funded primarily by the <a title="https://www.happyjoe.org/donate/" href="https://www.happyjoe.org/donate/">Happy Joe Scholarship Fund</a>. 100% of the donations and contributions go towards the efforts of working with veterans. Funds are also obtained through a sponsorship program several companies routinely contribute to, including <a title="http://automattic.com/" href="http://automattic.com/">Automattic</a> and <a title="http://ithemes.com/" href="http://ithemes.com/">iThemes</a>.</p>\n<h2>WordPress’ Role at Happy Joe</h2>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/WPBootCamp.png" rel="prettyphoto[33365]"><img class="size-full wp-image-33462" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/WPBootCamp.png?resize=639%2C200" alt="WordPress Boot Camp" /></a>photo credit: <a href="https://www.flickr.com/photos/vamcmag/3098352208/">MizGingerSnaps</a> – <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/">cc</a>\n<p>WordPress is the cornerstone used to help veterans learn a valuable skill. By learning WordPress, veterans can take advantage of valuable opportunities to work in the field either as an employee or through contract work. Dalman tells the Tavern that in 2015, as part of the training initiative, he’ll launch WP Bootcamps. “WP Bootcamps will be tailored to the military community and help our Armed Forces veterans to set up resume style websites on WordPress so that they can be seen as technology relevant.”</p>\n<h2>Success Stories</h2>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/10/SuccessFeaturedImage.png" rel="prettyphoto[33365]"><img class="size-full wp-image-32204" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/10/SuccessFeaturedImage.png?resize=636%2C278" alt="Success Featured Image" /></a>photo credit: <a href="https://www.flickr.com/photos/seeveeaar/2035597695/">seeveeaar</a> – <a href="http://creativecommons.org/licenses/by-nd/2.0/">cc</a>\n<p>When asked if there are any success stories, Dalman points to himself as an example, “Personally, WordPress has allowed me as a veteran to launch very successful businesses in the marketplace, in addition to helping other veterans do the same. I am not the most tech savvy person in the world, but WordPress has provided me with the ability to make a great living, doing work I love to do.”</p>\n<p>Learning and working with WordPress affords him the opportunity to travel and meet amazing people in the community. When asked by veterans if they can make a living in web technology using WordPress, Dalman responds, “I tell them if I can do it, they certainly can!” Some of the veterans taking advantage of Happy Joe are homeless or in deep financial trouble but are using WordPress to make a better life for themselves. Dalman notes that success stories of members will soon be shared on the Happy Joe website.</p>\n<h2>Happy Joe Needs Your Financial Support</h2>\n<p>While spreading the word about Happy Joe is appreciated, Dalman says the organization first and foremost needs financial assistance. “We need people to help fund the training and mentoring of our veterans. We have a lot of people who are sharing the story and mission of Happy Joe and we are <strong>VERY</strong> appreciative of that. However, we need sponsorships and donations to make a true difference.”</p>\n<p>Happy Joe is working with around a dozen veterans with more on the way. According to Dalman, there are a half-dozen companies willing and ready to hire veterans. However, the organization can’t make it happen without funding. “There is work that we need to do to get veterans up to speed and ready. This takes time, money, and commitment. So please, go and <a title="https://www.happyjoe.org/donate/" href="https://www.happyjoe.org/donate/">donate</a> to Happy Joe today so that we <strong>ALL</strong> can make a difference.”</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/HappyJoeCorporateSponsorLevels.png" rel="prettyphoto[33365]"><img class="size-full wp-image-33472" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/HappyJoeCorporateSponsorLevels.png?resize=1025%2C83" alt="Happy Joe Corporate Sponsor Levels" /></a>Happy Joe Corporate Sponsor Levels\n<p>If you’re interested in contributing financial support to the Happy Joe project, you can do so via the <a title="https://www.happyjoe.org/donate/" href="https://www.happyjoe.org/donate/">donations page</a>. Keep in mind that it’s a 501c3 non-profit organization meaning <strong>donations are tax-deductible</strong>. 100% of public donations and contributions go directly to helping the veterans Happy Joe works with. There’s also a <a title="https://www.happyjoe.org/sponsors/" href="https://www.happyjoe.org/sponsors/">sponsorship page</a> that explains not only how companies can get involved but also the benefits each sponsorship level provides. For example, Alpha Team sponsors which are the highest tier receive VIP access to trained and dependable veterans.</p>\n<p>Veterans day in the U.S. is a reminder for Americans to remember and thank those who honorably serve or served in the military, it’s organizations like Happy Joe that think of them and give back year round.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Nov 2014 21:30: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:"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:22:"Matt: Novice to Master";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44273";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/11/novice-to-master/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:151:"<p><a href="http://blog.djmnet.org/2013/01/14/from-novice-to-master-and-back-again/">From Novice to Master, and Back Again</a>, by David Mackenzie.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Nov 2014 14:38: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:15;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:71:"WPTavern: Note by Slocum Studio is a Real-Time Customizable Text Widget";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33400";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/note-by-slocum-studio-is-a-real-time-customizable-text-widget";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3832:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/NoteFeaturedImage.png" rel="prettyphoto[33400]"><img class="aligncenter size-full wp-image-33449" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/NoteFeaturedImage.png?resize=663%2C254" alt="Note by Slocum Studio Featured Image" /></a></p>\n<p><a title="https://wordpress.org/plugins/note/" href="https://wordpress.org/plugins/note/">Note</a> is a simple and easy to use widget for editing bits of text, within the widget via the customizer developed by <a title="http://www.slocumstudio.com/" href="http://www.slocumstudio.com/">Slocum Studio</a>. Although you can edit text widgets in the customizer, it’s a boring experience and requires HTML knowledge to format text. Note enables you to add and edit content live from within the widget similar to a frontend editor.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/NoteWidgetinAction2.png" rel="prettyphoto[33400]"><img class="size-full wp-image-33442" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/NoteWidgetinAction2.png?resize=990%2C390" alt="Note Widget in Action" /></a>Note Widget in Action\n<p>From within the customizer, you can add a Title, apply a CSS class, or click the button which is like a shortcut to edit the widget’s content. One thing I noticed immediately is that applying a title doesn’t match the behavior of other widgets in WordPress. As you can see in the screenshot, the widget title doesn’t inherit the same style as the others. According to Matt Medeiros of Slocum Studio, this behavior is intentional.</p>\n<blockquote><p>We wanted the writing experience to be as pure as possible when using Note. We decided to omit displaying widget titles as part of that experience in the first version, but plan to revisit that in an upcoming release.</p></blockquote>\n<p>It may be intentional, but it gives me a sense that either the widget or my theme is broken. At its most basic level, Note should function the same way as a default text widget. Hopefully in a future version, the team will change the behavior to match that of a regular widget with an option to show or hide the title.</p>\n<p>Not only can you edit the widget’s content without visiting the backend, you can do it in style. Simply highlight text within the widget and a toolbar shows up allowing you to format the text. Note has a <strong>What You See Is What You Get</strong> interface. This is convenient since you no longer have to edit content, click save and publish, then refresh the page to see the changes.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/NotesToolbar.png" rel="prettyphoto[33400]"><img class="size-full wp-image-33443" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/NotesToolbar.png?resize=598%2C117" alt="Note Toolbar" /></a>Note Toolbar\n<p>One feature missing from Note is the ability to add media, but Medeiros confirmed it will be added in a future release. While testing Note, I encountered a bug that added a / to every word that has an apostrophe. For example, I’ve turned into I/’ve. The bug presents itself when the customizer is open and a page refresh occurs. The team is aware of the bug and is working on a fix.</p>\n<p>Overall, I like what I see from Note. Once a few bugs are squashed and the ability to display the widget title is added, it will be a great replacement for the default Text widget. Note is <a title="https://wordpress.org/plugins/note/" href="https://wordpress.org/plugins/note/">available for free</a> on the WordPress plugin directory. You can also follow development of Note <a title="https://github.com/sdsweb/note/" href="https://github.com/sdsweb/note/">on Github</a> where you can also file bug reports and contribute patches.</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, 11 Nov 2014 22:44:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:50:"WPTavern: Shortcake: A UI for WordPress Shortcodes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33308";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/shortcake-a-ui-for-wordpress-shortcodes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3172:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/shortcake.jpg" rel="prettyphoto[33308]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/shortcake.jpg?resize=1024%2C502" alt="photo credit: kendiala - cc" class="size-full wp-image-33434" /></a>photo credit: <a href="https://www.flickr.com/photos/kendiala/97929388/">kendiala</a> – <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a>\n<p>The <a href="https://codex.wordpress.org/Shortcode_API" target="_blank">Shortcode API</a> was introduced in 2008 when <a href="https://wordpress.org/news/2008/03/wordpress-25-brecker/" target="_blank">WordPress 2.5</a> was released. Over the past six years, the UI for adding shortcodes has changed very little, despite the fact that they remain a big part of how many WordPress users structure complex content.</p>\n<p><a href="https://github.com/fusioneng/Shortcake" target="_blank">Shortcake</a> is a new project created by the folks at <a href="http://next.fusion.net/2014/11/10/introducing-shortcake/" target="_blank">Fusion</a> with the aim of bringing new life to shortcodes. The plugin is aptly named, as it was designed to make shortcodes a piece of cake for users.</p>\n<p>Shortcake gives developers an easy way to register a UI for their shortcodes by utilizing 4.0’s <a href="https://core.trac.wordpress.org/changeset/29178" target="_blank">changes to TinyMCE views</a>. Developers can use the Shortcake plugin alongside add_shortcode to create a user-friendly interface for adding shortcode content and attributes to pages/posts.</p>\n<p>The Fusion team provided a before and after example of editing a shortcode for a pullquote, with an <a href="https://github.com/fusioneng/Shortcode-UI/blob/master/dev.php" target="_blank">example file</a> to show you how to use it:</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/shortcake-example.png" rel="prettyphoto[33308]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/shortcake-example.png?resize=645%2C655" alt="shortcake-example" class="aligncenter size-full wp-image-33427" /></a></p>\n<p>The plugin currently supports the following input types: text, checkbox, textarea, radio, select, email, url, number, and date. The team behind it plans to improve it to support data sources and will also be publishing more documentation and example usages.</p>\n<p>The VIP team at Automattic liked the plugin so much that they have now made it available for all WordPress.com VIP customers, which is a testament to its quality. Fusion plans to present the project at the next <a href="http://www.meetup.com/Big-Media-WordPress-Meetup/" target="_blank">Big Media & Enterprise WordPress meetup</a> in New York.</p>\n<p>Gone are the days when you can afford to torture your users with complex shortcodes. Shortcake is a new tool for your toolbox that enables you to provide your users/clients with a more intuitive UI that is less overwhelming. Check the project out on <a href="https://github.com/fusioneng/Shortcake" target="_blank">GitHub</a>, find out what you can create with it, and watch for improvements in the near future.</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, 11 Nov 2014 20:54:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:17;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"Matt: Michael Jordan on Big Data";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44336";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"http://ma.tt/2014/11/michael-jordan-on-big-data/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1861:"<blockquote><p>I like to use the analogy of building bridges. If I have no principles, and I build thousands of bridges without any actual science, lots of them will fall down, and great disasters will occur.</p>\n<p>Similarly here, if people use data and inferences they can make with the data without any concern about error bars, about heterogeneity, about noisy data, about the sampling pattern, about all the kinds of things that you have to be serious about if you’re an engineer and a statistician—then you will make lots of predictions, and there’s a good chance that you will occasionally solve some real interesting problems. But you will occasionally have some disastrously bad decisions. And you won’t know the difference a priori. You will just produce these outputs and hope for the best.</p></blockquote>\n<p>Today I learned there’s another <a href="http://www.cs.berkeley.edu/~jordan/">Michael Jordan</a> that is as awesome in machine learning as <a href="http://www.csnchicago.com/bulls/why-did-michael-jordan-choose-no-23">#23</a> is at basketball. <a href="http://spectrum.ieee.org/robotics/artificial-intelligence/machinelearning-maestro-michael-jordan-on-the-delusions-of-big-data-and-other-huge-engineering-efforts">IEEE’s article Machine-Learning Maestro Michael Jordan on the Delusions of Big Data and Other Huge Engineering Efforts</a> is worth a read and a re-read.</p>\n<p>It’s also worth noting that Professor Jordan <a href="http://www.reddit.com/r/MachineLearning/comments/2fxi6v/ama_michael_i_jordan/">did an AMA on Reddit</a>, and actually disagreed with the title and characterization of the IEEE interview and <a href="https://amplab.cs.berkeley.edu/2014/10/22/big-data-hype-the-media-and-other-provocative-words-to-put-in-a-title/">wrote a follow-up and response on a WordPress-powered blog</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, 11 Nov 2014 20:49: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: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:110:"WPTavern: John James Jacoby Launches Indiegogo Campaign to Fund BuddyPress, bbPress, and GlotPress Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=33368";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:118:"http://wptavern.com/john-james-jacoby-launches-indiegogo-campaign-to-fund-buddypress-bbpress-and-glotpress-development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4376:"<p><a href="http://johnjamesjacoby.wordpress.com/" target="_blank">John James Jacoby</a> launched an <a href="https://www.indiegogo.com/projects/buddypress-bbpress-glotpress-development" target="_blank">Indiegogo campaign</a> today with the goal of raising $50,000 to fund six months of full-time work on WordPress’ three sister projects: BuddyPress, bbPress, and GlotPress. While WordPress core has many contributors who are sponsored by companies, the sister projects have yet to receive this kind of investment from the community.</p>\n<p>Jacoby is a longtime WordPress developer/contributor and the project lead on <a href="https://buddypress.org" target="_blank">BuddyPress</a> and <a href="http://bbpress.org" target="_blank">bbPress</a>. WordPress depends heavily on the continued maintenance and improvement of the sister projects and he believes that they can benefit from having a dedicated developer.</p>\n<p>BuddyPress is the plugin that powers the 16 million WordPress.org profiles, activity stream, and badge system. The WordPress.org support forums, along with the thousands of plugin and theme support forums, are all powered by bbPress. <a href="http://blog.glotpress.org/" target="_blank">GlotPress</a> is a BackPress-powered application that enabled WordPress, BuddyPress, and bbPress to be translated into different languages. Improvements to GlotPress are critical for WordPress’ global mission to democratize publishing.</p>\n<p>“<span class="pullquote alignleft">WordPress is more community than software, yet the software that powers the community has nobody working on it full time</span>,” Jacoby said. “I want to change this.”</p>\n<p>The campaign came about after developer <a href="https://twitter.com/miss_jwo" target="_blank">Jenny Wong</a> made the suggestion during events surrounding WordCamp San Francisco. Wong has been instrumental in organizing community contribution days and has a passion for bringing people together. <strong>“I think a lot more would be done if there are dedicated people all over the community,”</strong> she said.</p>\n<p>Jacoby had considered the idea before but didn’t think there would be enough people interested in supporting it. With the suggestion and support from Wong and others at WCSF, he decided to give it a try. “BuddyPress, bbPress, and GlotPress came up so frequently, and I was pulled into so many discussions. I felt happy for how important those projects are to everyone, and sad that I haven’t found a way to truly dedicate myself to them,” Jacoby told the Tavern.</p>\n<p>“Near the end of the first day of the contributor summit, I was more emotional about it than I expected to be, and had a hard time translating that into words. Thankfully, Jen Mylo (who has always been super supportive to me) summed it up really nicely, and Jenny Wong followed up with the idea of raising money via Indiegogo.”</p>\n<p>Jacoby’s aim is to work on the projects “while remaining an independent and impartial entity with a dedicated period of distraction-free time.” Specifically, he plans to target the following items:</p>\n<ul>\n<li>Query and caching performance improvements to both BuddyPress and bbPress (to help them power the almost 20 million user profiles and the immense amount of activity going into them from all of the support forums)</li>\n<li>Media and Attachment support in BuddyPress</li>\n<li>Per-forum moderation in bbPress to help with plugin and theme moderation on WordPress.org.</li>\n</ul>\n<p>Progress on the sister projects has been slow, since current contributions are all volunteer-driven from folks who have other obligations. Jacoby was originally reluctant to attempt a fundraising campaign but recognizes the necessity of having the money available for distraction-free work. If the goal is not met, he will prorate the funds and will work in a dedicated capacity on the projects for as long as the funds allow.</p>\n<p>Within the first few hours of launching the campaign, Jacoby has already surpassed 20% of the goal. Check out the video and <a href="https://www.indiegogo.com/projects/buddypress-bbpress-glotpress-development" target="_blank">donate to the campaign</a> if you want to support a talented developer in giving WordPress’ sister projects a chance to thrive.</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:"Tue, 11 Nov 2014 19:47:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:23:"Matt: Open Source 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:21:"http://ma.tt/?p=44363";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:39:"http://ma.tt/2014/11/open-source-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:483:"<p>I’m as likely to give Twitter a hard time as anyone, but today I want to tell you about something great they did: <a href="https://blog.twitter.com/2014/open-sourcing-twitter-emoji-for-everyone">Twitter open sourced their emoji set for anyone to use</a>. We’ve been working with them behind the scenes on this and <a href="http://en.blog.wordpress.com/2014/11/06/emoji-everywhere/">launched the emoji for WP.com as well</a>. Support will be coming to Jetpack soon.</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, 11 Nov 2014 02:03: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:20;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"WPTavern: LoopConf Sparks Controversy with Tickets Priced at $800";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33290";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"http://wptavern.com/loopconf-sparks-controversy-with-tickets-priced-at-800";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9269:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/loopconf.jpg" rel="prettyphoto[33290]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/loopconf.jpg?resize=1025%2C485" alt="loopconf" class="aligncenter size-full wp-image-33347" /></a></p>\n<p>Last week <a href="http://loopconf.io/" target="_blank">LoopConf</a> announced that <a href="http://us9.campaign-archive1.com/?u=d852b760c6208bf25844e3b3d&id=d49b632196" target="_blank">early bird tickets will go on sale November 20th</a>. The conference is aimed at developers and organizers are planning for 700 – 1,000 attendees in Las Vegas on the weekend of May 7-8, 2015.</p>\n<p>A bit of controversy has surfaced regarding the ticket pricing, as LoopConf emerges as one of the most expensive WordPress-oriented conferences to date. With early bird tickets priced at $600 and regular tickets at $800, the combined sponsorship donations and estimated ticket sales have the potential to bring the total event budget just shy of a million dollars.</p>\n<p>Although events in this price range are not unheard of in the web industry, with many charging ticket prices in the thousands, WordPress-oriented conferences have traditionally been inexpensive. Because LoopConf is not endorsed by or affiliated with the WordPress Foundation, it doesn’t have to follow the <a href="http://plan.wordcamp.org/" target="_blank">guidelines</a> set for WordCamps. Organizers of WP Foundation-sponsored events must <a href="http://plan.wordcamp.org/agreement-among-wordcamp-organizers-speakers-sponsors-and-volunteers/" target="_blank">agree</a> to make the event “accessible to as many people as possible, regardless of financial status.”</p>\n<p>LoopConf ticket pricing poses a stark contrast to traditional WordPress-oriented events, drawing sharp criticism for catering to an elite segment of developers, while pricing out the vast majority of others in the community.</p>\n<blockquote class="twitter-tweet" width="550"><p>So <a href="https://twitter.com/loopconf">@loopconf</a> tickets are $600 for early bird and $800 regular? Wow. Good luck with that. You just priced out 90% of the WP community.</p>\n<p>— Brad Williams (@williamsba) <a href="https://twitter.com/williamsba/status/531210414055759873">November 8, 2014</a></p></blockquote>\n<p></p>\n<p>Supporters of LoopConf ticket prices count it as a step forward in legitimizing WordPress as a mainstream career opportunity. Eric Mann, in a response piece titled <a href="https://eamann.com/biz/wordpress-comes-age/" target="_blank">WordPress Comes of Age</a>, highlights the fact that some employers have been reluctant to pay for flights and accommodation for a conference with a $25-40 ticket price.</p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/norcross">@norcross</a> <a href="https://twitter.com/williamsba">@williamsba</a> That might actually be a big step forward in legitimizing WP as a mainstream career opportunity.</p>\n<p>— TJ List (@TJList) <a href="https://twitter.com/TJList/status/531213651579912192">November 8, 2014</a></p></blockquote>\n<p></p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/williamsba">@williamsba</a> <a href="https://twitter.com/loopconf">@loopconf</a> that’s what a tech conference costs in any other field. WP is the odd duck with cheap conferences</p>\n<p>— curtismchale (@curtismchale) <a href="https://twitter.com/curtismchale/status/531218846594920449">November 8, 2014</a></p></blockquote>\n<p></p>\n<p>I spoke with Brad Williams, one of the most vocal community members questioning the ticket prices, to find out if <a href="http://webdevstudios.com/" target="_blank">WebDevStudios</a> would be sending any of its employees to LoopConf. “Most likely not, unfortunately,” he said. “It’s a lot of money even for an agency to cover without understanding the value of it.”</p>\n<p>Williams said he was not opposed to the conference, but that it’s tough to assess the value that an attendee will receive. “If it’s pricey, but justified, it might be worth sending some of our devs,” he said. <strong>“Honestly it’s tough to say because we could also send them to 10+ WordCamps for that price.”</strong></p>\n<p>When LoopConf posted ticket prices, the email announcement said, “Think of it as more of a celebration of WordPress than a conference.” Without a full list of speakers and topics, aside from the generally well-known WordPress speakers featured on the homepage, onlookers are left scratching their heads.</p>\n<p>Amid controversy surrounding the high ticket prices, the organizers of the LoopConf posted a detailed <a href="http://loopconf.io/faq/" target="_blank">FAQ</a> section to the site to answer some of the public’s most pressing questions. The document helps to clarify what the organizers believe to be the value of the ticket price.</p>\n<p>When <a href="https://twitter.com/ryandonsullivan" target="_blank">Ryan Sullivan</a> set out to create a WordPress conference for developers, he had no idea that LoopConf would be pioneering a new segment of WordPress events. The organizing team, which includes a couple of experienced ng-conf organizers, was surprised to learn of the controversy surrounding the ticket pricing.</p>\n<p>Unlike a WordCamp, LoopConf is a for-profit endeavor and the team has no obligation to be financially transparent. “We won’t be publishing our budget,” Sullivan told the Tavern. “This is a for-profit endeavor but not to the degree most people think. Our margins are actually not very big, and basically cover our time and efforts for putting on the event itself.</p>\n<p>“Our number one goal is that everyone leaves feeling like it was a great investment, and if it ends up we risk a portion of our profits to make that a reality, then we’re fine with that.”</p>\n<p>He also doesn’t see any realistic way that the budget will reach a million dollars. “We are planning much more conservatively than that,” he said. What does he say to critics who believe the ticket prices to be exorbitant?</p>\n<blockquote><p>The ticket price is for the experience itself. Compared to other tech conferences outside of WordPress our prices are actually average or below average. I wish I had a way to illustrate how amazing this event will be without just having to say “this event is going to be amazing”, but that’s where we’re at right now I suppose. From hack nights, to an amazing party, to swag, to meals, to a premier conference space at a secluded resort, we’re truly trying to deliver in every way we can. It’s going to be a fantastic place to learn and connect with friends and colleagues who have truly common interests.</p></blockquote>\n<p>The LoopConf team hopes to announce speakers by Wednesday of this week. Of the 28 speakers lined up, Sullivan estimates that 6 or 7 will be from outside the WordPress community, with the majority of others having spoken previously at other WordPress events.</p>\n<p>“I think is important to mention is that even if these speakers have spoken at WordCamps before, it’s not likely they’ve given talks like they’ll be giving at LoopConf,” he said. <strong>“With a very developer focused audience a lot of these presenters will be able to give talks that they’re really excited about, which creates a very unique energy and environment for higher learning.”</strong></p>\n<p>The conference structure is also very different from what one might expect of a WordCamp. LoopConf doesn’t have a team of volunteers supporting the event but instead utilizes a paid event coordinator to manage the majority of the logistics with the venue, vendors, sponsors, etc. Sullivan expects that he and the other organizers will have a few months of working 20-30 hours per week leading up to the event.</p>\n<p>Those who are unable to attend LoopConf can watch all sessions via a global live stream for free. Videos of the sessions will also be available within minutes after sessions are finished and will be offered for free to anyone who wants to learn from the event’s speakers.</p>\n<p>WordPress conferences that fall under the WordCamp name have traditionally been inexpensive events, designed to bring together a local community. Because Sullivan and his team are pioneering a different event structure, they have endured a healthy amount of criticism. The team’s goal to bring in top developers from the larger community would not be possible within the confines of a traditional WordCamp.</p>\n<p>Sullivan hopes that other conference organizers will also be inspired to break out of the box and host more unique events. “I would love to see more niche conferences that are WordPress specific. There are already great conferences out there like WooConf, Pressnomics, Prestige, and some others that I’m probably forgetting,” he said. “If there’s an opportunity to get together for a good time and learn from each other in the process, count me in.”</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, 10 Nov 2014 22:32: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: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:57:"WPTavern: Why WordPress Doesn’t Need to Fear Ghost, Yet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33282";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wptavern.com/why-wordpress-doesnt-need-to-fear-ghost-yet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:11555:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/NoNeedToFearGhostYetFeaturedImage.png" rel="prettyphoto[33282]"><img class="size-full wp-image-33294" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/NoNeedToFearGhostYetFeaturedImage.png?resize=640%2C287" alt="No Need To Fear Ghost Just Yet Featured Image" /></a>photo credit: <a href="https://www.flickr.com/photos/blackzack00/12615597133/">black.zack00</a> – <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a>\n<p>Mark Gibbs, who <a title="http://www.networkworld.com/author/Mark-Gibbs/" href="http://www.networkworld.com/author/Mark-Gibbs/">writes for NetworkWorld,</a> published an article on how <a title="https://ghost.org/" href="https://ghost.org/">Ghost</a> may one day <a title="http://www.networkworld.com/article/2845372/software/ghost-could-scare-off-wordpress-from-the-top-of-the-blogging-platforms.html" href="http://www.networkworld.com/article/2845372/software/ghost-could-scare-off-wordpress-from-the-top-of-the-blogging-platforms.html">scare WordPress off</a> as the top publishing platform. Gibbs has some valid complaints with WordPress such as, plugins that don’t integrate with the menu system in a consistent way, incompatible themes, and the post editor.</p>\n<p>Although Ghost doesn’t have many of the same issues, I think it would if it was around for more than 10 years and its userbase was the size of WordPress. No software is perfect and in an open source environment, users are at the mercy of developers to provide updates to themes and plugins, an action that is not guaranteed.</p>\n<h2>The Post Editor Comparison</h2>\n<p>One of the most liked features of Ghost is the content editor. On the left, is the equivalent of the WordPress Text editor where you write content and can apply code via HTML or Markdown. On the right is a live preview that shows how content will look when it’s published. This single editor is like the WordPress Visual and Text editors combined.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/GhostContentEditor.png" rel="prettyphoto[33282]"><img class="size-full wp-image-33283" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/GhostContentEditor.png?resize=1025%2C303" alt="It''s Like a Visual and Text Editor in One!" /></a>It’s Like a WordPress Visual and Text Editor in One!\n<p>The editor is so well liked, several plugins exist that bring it to WordPress. <a title="http://wptavern.com/gust-plugin-brings-the-ghost-admin-panel-into-wordpress" href="http://wptavern.com/gust-plugin-brings-the-ghost-admin-panel-into-wordpress">Gust</a>, <a title="http://wptavern.com/markpress-plugin-transforms-wordpress-into-a-markdown-powered-journal" href="http://wptavern.com/markpress-plugin-transforms-wordpress-into-a-markdown-powered-journal">MarkPress</a>, and <a title="http://wptavern.com/prettypress-plugin-reinvents-wordpress-post-editing-with-live-preview" href="http://wptavern.com/prettypress-plugin-reinvents-wordpress-post-editing-with-live-preview">PrettyPress</a> add a live preview pane to the WordPress post editor. Gibbs notes how the WordPress editor differs from Ghost, “In contrast to WordPress the ‘Visual’ view in the editor is a simple interpretation of the HTML so you have to save and preview content to see how it’s really rendered by the currently selected theme.” While true, there is a simple way around this pitfall.</p>\n<p>WordPress supports the ability for theme developers to link a custom stylesheet to the TinyMCE visual editor. It’s called <a title="http://codex.wordpress.org/Function_Reference/add_editor_style" href="http://codex.wordpress.org/Function_Reference/add_editor_style">editor-style.css</a> and unfortunately, not many theme developers take advantage of this nifty feature. The stylesheet enables the visual editor to take on the look and feel of the frontend of the site, delivering a <em>what you see is what you get</em> experience. <a title="http://themehybrid.com/themes/stargazer" href="http://themehybrid.com/themes/stargazer">Stargazer</a> by Justin Tadlock is an excellent example of how to use editor-style.css.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/StarGazerVisualEditorStyle.png" rel="prettyphoto[33282]"><img class="size-full wp-image-33284" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/StarGazerVisualEditorStyle.png?resize=964%2C652" alt="The Visual Editor in Stargazer by Justin Tadlock" /></a>The Visual Editor in Stargazer by Justin Tadlock\n<p>Though the addition of editor-style.css doesn’t make the editor perfect, it vastly improves the writing experience. Having the content in the editor look the same as the final result is a huge convenience. Thanks to improved oEmbed previews <a title="http://wptavern.com/wordpress-4-0-benny-now-available-for-download" href="http://wptavern.com/wordpress-4-0-benny-now-available-for-download">in WordPress 4.0</a>, the Visual editor is the default view when I write content.</p>\n<p>The Text editor still has its use, especially when a snafu occurs in the Visual editor but I think in the future, the Visual editor will improve to the point that the choice between Text and Visual will disappear. In the decisions not options approach, there will be one editor to rule them all. Between the custom stylesheet and improvements to the visual editor, I believe the writing experience in WordPress is superior to Ghost.</p>\n<h2>The Ghost Dashboard</h2>\n<p>One of the other highly touted features of Ghost is its beautiful, <strong>non-existent</strong> dashboard. Gibbs notes that themes and the backend of Ghost are fully responsive. A note to Gibbs that the backend of WordPress is also fully responsive. The following image from the project’s <a title="https://www.kickstarter.com/projects/johnonolan/ghost-just-a-blogging-platform" href="https://www.kickstarter.com/projects/johnonolan/ghost-just-a-blogging-platform">Kickstarter page</a> was enough to convince some people to back the project.</p>\n<p>To this day, Ghost doesn’t have a dashboard <a title="https://github.com/TryGhost/Ghost/wiki/Planned-Features" href="https://github.com/TryGhost/Ghost/wiki/Planned-Features">but it’s coming</a>. I admit, the concept images of the dashboard are pretty, colorful, and display information in squares instead of big rectangles. The question I have is whether the actual implementation will look anything like the screenshot.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/GhostDashboard.jpg" rel="prettyphoto[33282]"><img class="size-full wp-image-33285" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/GhostDashboard.jpg?resize=700%2C481" alt="The Ghost Dashboard as Seen on its Kickstarter Page" /></a>The Ghost Dashboard as Seen on its Kickstarter Page\n<p>The WordPress Dashboard in comparison looks old but gives you the ability to arrange items the way you see fit. I’m not sure what can be done to make the dashboard <em>pretty</em>. With the eventual inclusion of the REST API to WordPress, we’ll likely see hundreds of different interpretations of not only the backend of WordPress, but the dashboard as well.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/TheWordPressDashboard.png" rel="prettyphoto[33282]"><img class="size-full wp-image-33286" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/TheWordPressDashboard.png?resize=1025%2C471" alt="The WordPress 4.0 Dashboard" /></a>The WordPress 4.0 Dashboard\n<h2>The Third Party</h2>\n<p>Gibbs highlights the fact that the number of third-party themes for Ghost continues to increase. Meanwhile, there are those in the WordPress community who think themes have <a title="http://chriswallace.net/wordpress-themes-become-commodity/" href="http://chriswallace.net/wordpress-themes-become-commodity/">become a commodity</a>. With WordPress now over 10 years old, there are plenty of free and commercial themes to choose from.</p>\n<p>Ghost has a <a title="http://marketplace.ghost.org/" href="http://marketplace.ghost.org/">marketplace available</a> which lists free and commercial themes. The biggest difference between it and the <a title="http://wordpress.org/extend/themes/" href="http://wordpress.org/extend/themes/">WordPress Theme Directory</a> is the inconsistent way of displaying and locating a theme. Ghost doesn’t have an official directory to host themes. Listing themes created by the community instead of hosting them takes away the ability to create a consistent user experience.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/GhostThemeMarketplace.png" rel="prettyphoto[33282]"><img class="size-full wp-image-33287" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/GhostThemeMarketplace.png?resize=1025%2C705" alt="The Ghost Theme Marketplace" /></a>The Ghost Theme Marketplace\n<p>When browsing themes on the marketplace, each listing takes you to a theme’s Github page, a site using the theme, a 404 page, or somewhere else on the web. While most of the Github pages for Ghost themes display information in a consistent manner, I prefer the browsing experience on the <a title="https://wordpress.org/themes/" href="https://wordpress.org/themes/">WordPress Theme Directory</a>.</p>\n<p>With the WordPress Theme Directory, I trust what I’m downloading as the code has been vetted, especially if it’s a recent addition. Information containing the version number and the average rating is consistently in the same location. The preview link is an added bonus but previews need work as they don’t always accurately render a theme.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/TheWordPressThemeDirectory.png" rel="prettyphoto[33282]"><img class="size-full wp-image-33288" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/TheWordPressThemeDirectory.png?resize=1025%2C889" alt="The WordPress Theme Directory" /></a>The WordPress Theme Directory\n<h2>Ghost is a Long Way From Scaring WordPress</h2>\n<p>Gibbs ends his article by saying, Ghost “has to be one of the most powerful and best engineered blogging platforms ever.” While I think the jury is still out on whether it’s the best engineered platform available, there is so much that goes into the success of an open source publishing system that it alone won’t propel the platform past WordPress. Ghost has the luxury of a fresh start and the opportunity to build a rock solid foundation for the platform’s future. However, it’s going to take more than that to knock WordPress off its pedestal.</p>\n<p>In its current form, Ghost satisfies an audience that wants a simple, frictionless, publishing experience. Ghost delivers but without a robust third-party ecosystem, I don’t see how it will ever reach the same plateau of WordPress. That’s not to say Ghost can’t or won’t be a successful project, it’s just that I don’t see it being used on 20% of the web.</p>\n<p>It’s early and Ghost has a long way to go before it hits the pivotal 1.0 milestone. The items listed on the <a title="https://trello.com/b/EceUgtCL/ghost-roadmap" href="https://trello.com/b/EceUgtCL/ghost-roadmap">project’s roadmap</a> indicate a lot of cool features are on the way. But for now, Ghost doesn’t have or do anything that WordPress should be afraid of.</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, 10 Nov 2014 19:21:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:23:"Matt: Onyx Communicator";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44361";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:39:"http://ma.tt/2014/11/onyx-communicator/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:453:"<p>OnBeep, an <a href="http://audrey.co/">Audrey</a> company, has <a href="http://www.onbeep.com/blog/2014/11/5/introducing-onyx">introduced their first product, the Onyx</a>. It’s a lot like the communicator from Star Trek. (Don’t wear it with a red shirt.) <a href="http://uk.businessinsider.com/onbeep-onyx-is-a-real-time-wearable-communicator-inspired-by-star-trek-2014-11?op=1?r=US">Business Insider covers the news pretty well</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, 10 Nov 2014 01:52:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:23;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:86:"WPTavern: WooConf, The First Ever Conference Dedicated to WooCommerce Deemed a Success";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33240";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:95:"http://wptavern.com/wooconf-the-first-ever-conference-dedicated-to-woocommerce-deemed-a-success";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4048:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/state-of-the-woo2014.jpg" rel="prettyphoto[33240]"><img class="size-full wp-image-33266" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/state-of-the-woo2014.jpg?resize=800%2C450" alt="State of the Woo at WooConf 2014" /></a>Mark Forrester Delivering the State of the Woo Courtesy of <a title="http://bobwp.com" href="http://bobwp.com">Bob Dunn</a>\n<p>Earlier this week, the first conference dedicated to <a title="http://www.woothemes.com/woocommerce/" href="http://www.woothemes.com/woocommerce/">WooCommerce</a> took place and from all accounts, it was a success. Held at <a title="http://969market.com/" href="http://969market.com/">969 Market</a> in San Francisco, CA, over 300 people attended <a title="http://conf.woocommerce.com/" href="http://conf.woocommerce.com/">WooConf </a>to learn about WooCommerce and eCommerce in general. While I didn’t attend the event, there are several people who have published their experience online.</p>\n<ul>\n<li>Torquemag – <a title="http://torquemag.io/interview-mark-forrester-wooconf/" href="http://torquemag.io/interview-mark-forrester-wooconf/">Interview With Mark Forrester, Co-founder of WooThemes</a></li>\n<li>Tony Perez – <a title="http://perezbox.com/2014/11/a-day-with-the-woo-wooconf-2014/" href="http://perezbox.com/2014/11/a-day-with-the-woo-wooconf-2014/">A Day With the Woo</a></li>\n<li>Bob Dunn – <a title="http://bobwp.com/woocommerce-conference-people/" href="http://bobwp.com/woocommerce-conference-people/">WooCommerce Conference, It’s all About the People</a></li>\n<li>Skyverge – <a title="https://www.skyverge.com/blog/wooconf-2014-recap/?utm_content=buffera13ad&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer" href="https://www.skyverge.com/blog/wooconf-2014-recap/?utm_content=buffera13ad&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer">WooConf 2014 Recap</a></li>\n<li>Prospress – <a title="http://prospress.com/wooconf-2014/?utm_content=bufferbefb1&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer" href="http://prospress.com/wooconf-2014/?utm_content=bufferbefb1&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer">WooConf 2014: The Best WooConf Ever</a></li>\n</ul>\n<p>On the night before the event, WooCommerce surpassed 5 million downloads.</p>\n<blockquote class="twitter-tweet" width="550"><p>It’s pretty neat that the night before <a href="https://twitter.com/hashtag/WooConf?src=hash">#WooConf</a> we hit 5 million downloads for WooCommerce! Thanks everyone :) <a href="http://t.co/iQAbnpMLzV">http://t.co/iQAbnpMLzV</a></p>\n<p>— WooThemes (@woothemes) <a href="https://twitter.com/woothemes/status/529291855671078913">November 3, 2014</a></p></blockquote>\n<p></p>\n<p>In an interview on Torquemag, Mark Forrester, the co-founder of WooThemes hinted at WooConf becoming an annual event. “We’ve had loads of really positive feedback over the last couple days from a lot of the attendees (we sold out at 320 attendees) so there’s definitely good reason for a follow-up in 2015.”</p>\n<p>Earlier this year, there was some question as to whether the presentations would be recorded. The official Twitter account for <a title="https://twitter.com/woothemes/status/530865280378228736" href="https://twitter.com/woothemes/status/530865280378228736">WooThemes confirmed</a> that sessions were recorded and will be released starting next week.</p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/thenbrent">@thenbrent</a> <a href="https://twitter.com/jeffr0">@jeffr0</a> We are indeed. Stay tuned on social next week :)</p>\n<p>— WooThemes (@woothemes) <a href="https://twitter.com/woothemes/status/530865280378228736">November 7, 2014</a></p></blockquote>\n<p></p>\n<p>We want to hear from those who attended the event. What did you think and would you like to see it become an annual thing or perhaps more than one per year with different locations?</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, 08 Nov 2014 00:39: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:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:24;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:68:"WPTavern: Beautiful Taxonomy Filters for WordPress Custom Post Types";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=33229";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:78:"http://wptavern.com/beautiful-taxonomy-filters-for-wordpress-custom-post-types";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4854:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/beautiful-taxonomy-filters.jpg" rel="prettyphoto[33229]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/beautiful-taxonomy-filters.jpg?resize=772%2C250" alt="beautiful-taxonomy-filters" class="aligncenter size-full wp-image-33231" /></a></p>\n<p><a href="https://wordpress.org/plugins/beautiful-taxonomy-filters/" target="_blank">Beautiful Taxonomy Filters</a> is a new plugin that adds filtering to your custom post type archives, based on taxonomy (terms/categories/tags). It allows visitors to filter CPTs by multiple terms on the frontend.</p>\n<p>The plugin automatically adds rewrite rules to create pretty filter URLs, without the use of JavaScript. Beautiful Taxonomy Filters was created by Swedish plugin developer Jonathan de Jong at the <a href="https://www.tigerton.se/" target="_blank">Tigerton</a> web agency. He created it using the <a href="https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate" target="_blank">WordPress Plugin Boilerplate</a> in order to structure the codebase with a standardized, object-oriented approach.</p>\n<p>The plugin uses <a href="http://ivaynberg.github.io/select2/" target="_blank">select2</a> to replace ugly select boxes with attractive, user-friendly dropdowns. (If JavaScript is not supported it will fall back to the default select boxes.) Below is an example from my tests using the plugin with a standard portfolio custom post type:</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/portfolio-filters.jpg" rel="prettyphoto[33229]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/portfolio-filters.jpg?resize=680%2C202" alt="portfolio-filters" class="aligncenter size-full wp-image-33249" /></a></p>\n<p>The plugin is capable of including as many filters as you want to include. However, if you have a post type with many different taxonimies, you may want to exclude ones that aren’t as useful for filtering.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/filters.png" rel="prettyphoto[33229]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/filters.png?resize=1025%2C578" alt="filters" class="aligncenter size-full wp-image-33252" /></a></p>\n<p>Beautiful Taxonomy Filters includes a settings page in the admin for activating post types, easily excluding taxonomies, enabling a “clear all” link, disabling the active filters heading, changing the design, and adding custom CSS.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/settings.jpg" rel="prettyphoto[33229]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/settings.jpg?resize=810%2C644" alt="settings" class="aligncenter size-full wp-image-33256" /></a></p>\n<p>The plugin features the following:</p>\n<ul>\n<li>Activate filtering on any registered public custom post type</li>\n<li>Exclude taxonomies you don’t want visitors to filter on</li>\n<li>Beautifies the resulting URLs. You won’t see any /posttype/?taxonomy1=term. Instead you’ll see /posttype/taxonomy/term</li>\n<li>Includes a complete functional filter component for you to put in your theme</li>\n<li>Ability to show your visitors information about their current active filtering</li>\n<li>Allows for custom GET parameters to be included. Extend the filter your way with maybe a custom search-parameter or whatever you like</li>\n<li>Many <a href="https://wordpress.org/plugins/beautiful-taxonomy-filters/other_notes/" target="_blank">filters and actions</a> for modifying the plugin’s behavior</li>\n</ul>\n<p>Currently, Beautiful Taxonomy Filters does not support selecting multiple terms from the same taxonomy. This feature is on the roadmap. The plugin author notes that he hopes to support this in a future release and have beautiful permalinks. If the permalinks don’t work out, he plans to add an option where you can opt out of pretty permalinks in order to gain the power of multiple terms filtering.</p>\n<p>Beautiful Taxonomy Filters does not support the built-in “post” post type. This is because de Jong has not yet been able to create proper rewrite rules for the multiple filtering to work, due to the fact that they are handled differently by WordPress than other CPTs. If you’re looking for filtering on regular posts, you’ll need to build that yourself, as it’s not included.</p>\n<p>This plugin provides an easy way to add multiple taxonomy filters to custom post type archives. It’s convenient and easy to extend with roughly a dozen filters and actions available. I tested it and found the plugin to work as advertised. Download <a href="https://wordpress.org/plugins/beautiful-taxonomy-filters/" target="_blank">Beautiful Taxonomy Filters</a> for free from WordPress.org.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 07 Nov 2014 22:49:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:77:"WPTavern: A Closer Look at iThemes’ Sync Pro Client Dashboard for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=33212";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:80:"http://wptavern.com/a-closer-look-at-ithemes-sync-client-dashboard-for-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3331:"<p>Sync is a <a title="https://ithemes.com/sync/" href="https://ithemes.com/sync/">product from iThemes</a> that makes it easy to manage multiple WordPress sites from a central location and is free to use for managing 10 sites or less. Using Sync, you can manage plugins, themes, users, comments, view site analytics, and log files. Similar to other WordPress remote management services, you need to have the Sync plugin installed on each site you want to manage. The plugin acts as a communication bridge between Sync and the site.</p>\n<p>Recently, a new feature called <a title="https://ithemes.com/2014/11/05/control-client-view-wordpress-dashboard-client-dashboard-ithemes-sync-pro/" href="https://ithemes.com/2014/11/05/control-client-view-wordpress-dashboard-client-dashboard-ithemes-sync-pro/">Client Dashboard</a> was added to <a title="https://ithemes.com/sync-pro/" href="https://ithemes.com/sync-pro/">Sync Pro</a>. With Client Dashboard, you can choose which parts of the backend are available to specific users. Hiding parts of the backend usually involves a lot of code, separate plugins, or knowing the proper permission levels for user roles. In Sync, configuring access to menus is as simple as checking a box.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/SyncClientDashboard.png" rel="prettyphoto[33212]"><img class="size-full wp-image-33221" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/SyncClientDashboard.png?resize=1025%2C496" alt="Configuring a Client Dashboard" /></a>Configuring a Client Dashboard\n<p>The following sections of the backend are able to be hidden from clients: Admin Menu, Admin Bar, Dashboard Widgets, and Admin Notices. One thing to keep in mind is that although you can hide menus, clients can still access hidden sections if they know the URL. By hiding admin notices generated by plugins, you prevent clients from accessing potentially hidden pages.</p>\n<p>As part of the client dashboard, you can enable Sync Stylesheet. The Sync Stylesheet adds spacing to items in the admin menu and increases the font size making it easier to read.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/SyncDashboardStyleSheet.png" rel="prettyphoto[33212]"><img class="size-full wp-image-33222" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/SyncDashboardStyleSheet.png?resize=469%2C481" alt="Admin Menu with Sync Stylesheet Enabled" /></a>Admin Menu with Sync Stylesheet Enabled\n<p>Despite WordPress’ reputation as being easy to use, it can be intimidating to first time users. Removing things they don’t need access to in the backend can significantly ease confusion and frustration.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/SimplifiedWordPress.png" rel="prettyphoto[33212]"><img class="size-full wp-image-33223" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/SimplifiedWordPress.png?resize=1025%2C627" alt="WordPress Simplified" /></a>WordPress Simplified\n<p>I tested Sync on WordPress 4.0 and it works flawlessly. If you’re looking for a client management portal with the ability to control a client’s experience with WordPress, <a title="https://ithemes.com/sync-pro/" href="https://ithemes.com/sync-pro/">Sync Pro</a> from iThemes is a great option.</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, 07 Nov 2014 20:57: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:"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: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:35:"WPTavern: Persistent Object Caching";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33195";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"http://wptavern.com/persistent-object-caching";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7299:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/cache-invalidation.png" rel="prettyphoto[33195]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/cache-invalidation.png?resize=1025%2C478" alt="cache-invalidation" class="aligncenter size-full wp-image-33217" /></a></p>\n<hr />\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/ryan-hellyer.jpeg" rel="prettyphoto[33195]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/ryan-hellyer.jpeg?resize=150%2C150" alt="ryan-hellyer" class="alignright size-thumbnail wp-image-33199" /></a><br />\nThis post was contributed by <a href="http://geek.ryanhellyer.net/" title="Ryan Hellyer" target="_blank">Ryan Hellyer</a>. He is from New Zealand, lives in Germany, and works as a full-time WordPress geek for <a href="http://forsitemedia.net/" target="_blank">Forsite Media</a> in the Netherlands. He spends his time building <a href="http://geek.ryanhellyer.net/products/" target="_blank">WordPress plugins</a> and getting up to mischief in his adopted home of Berlin.</p>\n<hr />\n<p>I have an issue with WordPress caching plugins. It’s not that I don’t like using them, or that they’re junk (most are, but that’s a separate issue). No, the problem is that most people don’t have the foggiest idea how WordPress handles caching internally, and what causes their site to run faster.</p>\n<h3>Static page caching</h3>\n<p>Most caching plugins do what is called static page caching. They cache a complete page, including all of it’s HTML. This is terrific, as it means that WordPress doesn’t need to regenerate the page every time someone visits it, but it means that those pages will be out of date sometimes when content is updated. Anyone who has used these plugins can usually attest to cursing at their site due to to the cache not updating when required.</p>\n<h3>Object caching</h3>\n<p>For a very long time, WordPress has had a caching system baked into it. Most WordPress developers I’ve met have no idea this exists. Some have used transients, which are a part of the WordPress caching API, but in my experience, very few developers properly understand how they work.</p>\n<p>By default, WordPress includes an internal caching system. If you use <code>get_option( ‘something’ );</code> somewhere in your site, then run that same code later on in that page, WordPress will only need to load the data from the database once, as it caches it for use later on in the page load. It does this via the <code>wp_cache_add()</code>, <code>wp_cache_set()</code> and <code>wp_cache_get()</code> functions.</p>\n<p>Transients behave in a similar way, but by default can store the data for use in subsequent page views by storing them in the database. Storing information in the database is resource intensive though, so transients must be used sparingly to avoid hammering the database too hard and actually causing the site to slow down rather than speed up.</p>\n<p>What we need is the ability to store information in a persistent way (for use on more than the current page load), which can be written to and from extremely rapidly (unlike caching in the database).</p>\n<h3>Persistent object caching</h3>\n<p>Although the object caching system in WordPress was designed to only work on a single page load by default, the smart folks on the WordPress core team ensured that it was trivial to plug into this and provide a way to store data however you want and for as long as you want. Awesome!</p>\n<p>A normal WordPress plugin cannot be used to provide persistent object caching in WordPress. You need to manually create a drop-in file called object-cache.php, which sits in the wp-content folder. Some of the larger (bloated?) plugins, will automatically generate this drop-in file in your wp-content folder.</p>\n<p>Once installed, the object caching drop-in will cache anything utilizing the WordPress caching API. This includes transients, which will automatically stop using the default database layer and instead make use of whatever object caching back-end is available.</p>\n<p>Some of the earlier implementations of object-cache.php files for WordPress simply stored the data in the database, or in flat static files. But there are a multitude of better backends/places to store small pieces of data like this, and there are many different object caching drop-ins available for WordPress to hook into these various systems.</p>\n<h3>In-memory data stores – ninja fast data storage</h3>\n<p>MySQL is fast, but nothing compares to just throwing some data into RAM for maximum performance. With this in mind, many people who are much smarter than I, have developed systems for allowing us to store random bits of data in the server’s RAM. The most popular of these is Memcached, but there are others including APC and Redis which are very popular. Since they store their data in RAM (when possible) and are designed to be fast rather than reliable, they are insanely fast at both data storage and retrieval.</p>\n<p>With a database or flat file caching back-end, you can not refresh your cache rapidly, or store tiny bits of data. With an in-memory data store, those problems do not exist. For this reason, use of an in-memory data storage back-end can provide an enormous performance advantage to sites using them in conjunction with the WordPress object caching API.</p>\n<p>To make use of one of these, simply ensure that Redis, Memcached or APC are installed on your server, then install one of their corresponding drop-in files (you have to get the correct one or all hell will break loose).</p>\n<ul>\n<li>Memcached – <a href="https://wordpress.org/plugins/memcached/" target="_blank">https://wordpress.org/plugins/memcached/</a></li>\n<li>Redis – <a href="https://wordpress.org/plugins/wp-redis/" target="_blank">https://wordpress.org/plugins/wp-redis/</a></li>\n<li>APC – <a href="https://wordpress.org/plugins/apc/" target="_blank">https://wordpress.org/plugins/apc/</a></li>\n</ul>\n<p>Once you have an appropriate object caching drop-in installed, you should notice an immediate increase in performance. WordPress caches a lot of data internally and none of that will need to be queried on every page load.</p>\n<p>It is entirely normal to see a stock WordPress installation go from 20+ MySQL queries per page down to 4 queries, as the object caching backend takes care of storing all of the data which does not change between page loads. The WordPress API always attempts to refresh the cache when required; there are some instances in which this does not work perfectly, but it is usually a flawless cache refreshing process.</p>\n<h3>Faster static page caching</h3>\n<p>There are ways to serve and refresh static page caching plugins via the WordPress object caching system too, including via the <a href="https://wordpress.org/plugins/batcache/" target="_blank">Batcache</a> plugin, provided by the kind folks at Automattic. This is beyond the scope of this blog post, but it is worth investigating if you also require static page caching.</p>\n<h3>Conclusion</h3>\n<p>Caching within WordPress is complex. Object caching is a vital tool for your toolbox, as it can provide a huge performance improvement without requiring you to resort to full page caching.</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, 07 Nov 2014 19:54:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:66:"WPTavern: WordPress.com Adds Emoji Support, Coming Soon to Jetpack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33152";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wptavern.com/wordpress-com-adds-emoji-support-coming-soon-to-jetpack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1951:"<p>Twitter announced today that it has open sourced <a href="https://blog.twitter.com/2014/open-sourcing-twitter-emoji-for-everyone" target="_blank">Twemoji</a>, a set of 872 emoji characters. This means that emoji characters tweeted from phones will now be visible on the web and will look the same across all platforms. Twitter also <a href="http://en.blog.wordpress.com/2014/11/06/emoji-everywhere/" target="_blank">partnered with Automattic</a> to bring emoji to WordPress.com, and users can start adding emoji to posts right away.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/emoji.png" rel="prettyphoto[33152]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/emoji.png?resize=620%2C420" alt="emoji" class="aligncenter size-full wp-image-33173" /></a></p>\n<p>Adding emoji to content is fairly easy and intuitive when done from a mobile device. On desktop, you might need a <a href="http://www.iemoji.com/emoji-cheat-sheet/all" target="_blank">cheat sheet</a>. Mac users can type Command + Control + Space while in a text editor. Windows 8+ users can make use of the <a href="http://blog.getemoji.com/emoji-keyboard-windows" target="_blank">touch keyboard</a>, which includes emoji support.</p>\n<p>Twitter’s announcement is major advance for emoji users worldwide, given that inconsistent emoji display across platforms has long been a sore issue.</p>\n<p>The Jetpack team is already busy adding emoji support so that self-hosted sites can also utilize them. However, any plugin developer can create a plugin that adds Twemoji to WordPress using the <a href="https://github.com/twitter/twemoji#api" target="_blank">Twemoji API</a>. If you have a self-hosted WordPress site and don’t use Jetpack, the <a href="http://wptavern.com/new-plugin-adds-open-source-emoji-one-support-to-wordpress" target="_blank">WP Emoji One</a> plugin is another option for adding emoji support to your site.</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, 07 Nov 2014 00:51: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: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:58:"WPTavern: WPWeekly Episode 169 – WordPress is Now a Verb";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33161&preview_id=33161";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wptavern.com/wpweekly-episode-169-wordpress-is-now-a-verb";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2976:"<p>In this week’s edition of WordPress Weekly, <a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I get you caught up with the news you need to know. We discuss the changes in Jetpack 3.2, WordSesh 3, and a recent security vulnerability in WP eCommerce. We also discuss whether or not WordPress is a verb.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/jetpack-3-2-released-introduces-new-site-logo-feature-for-theme-developers" href="http://wptavern.com/jetpack-3-2-released-introduces-new-site-logo-feature-for-theme-developers">Jetpack 3.2 Released, Introduces New Site Logo Feature for Theme Developers</a><br />\n<a title="http://wptavern.com/security-vulnerability-discovered-and-patched-in-wp-ecommerce" href="http://wptavern.com/security-vulnerability-discovered-and-patched-in-wp-ecommerce">Security Vulnerability Discovered and Patched in WP eCommerce</a><br />\n<a title="http://wptavern.com/wordsesh-3-is-set-for-december-20th-2014" href="http://wptavern.com/wordsesh-3-is-set-for-december-20th-2014">WordSesh 3 is Set for December 20th, 2014</a><br />\n<a title="http://wptavern.com/wpshout-publishes-the-results-of-its-2014-webhosting-survey" href="http://wptavern.com/wpshout-publishes-the-results-of-its-2014-webhosting-survey">WPShout Publishes The Results of Its 2014 Webhosting Survey</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="https://wordpress.org/plugins/user-profile/" href="https://wordpress.org/plugins/user-profile/">User Profile</a> allows you to create unlimited user input fields on user profiles and display them anywhere via shortcodes.</p>\n<p><a title="https://wordpress.org/plugins/beautiful-taxonomy-filters/" href="https://wordpress.org/plugins/beautiful-taxonomy-filters/">Beautiful taxonomy filters</a> is an easy and good-looking way to provide visitors with filtering for post types. With this plugin, you get a complete solution for adding filtering based on taxonomy terms/categories/tags.</p>\n<p><a title="https://wordpress.org/plugins/network-copier/" href="https://wordpress.org/plugins/network-copier/">Network Menu Copier</a> allows you to bulk copy menus between sites on a network which are using the same theme. This is a great plugin for those who repeatedly create the same menus.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, November 20th 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 #169:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 07 Nov 2014 00:37:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:83:"WPTavern: Vagrant Manager for OS X: Manage All Your Vagrant Machines from One Place";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33022";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/vagrant-manager-for-os-x-manage-all-your-vagrant-machines-from-one-place";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4021:"<p>Many WordPress developers have adopted <a href="https://www.vagrantup.com/" target="_blank">Vagrant</a> as part of their toolbox for creating development environments, due to the fact that it’s relatively lightweight and makes collaborative work much easier. <a href="https://github.com/Varying-Vagrant-Vagrants/VVV" target="_blank">Varying Vagrant Vagrants</a> is one of the most popular Vagrant configurations for WordPress, but there are many <a href="http://wptavern.com/13-vagrant-resources-for-wordpress-development" target="_blank">others</a> out there tailored to different uses, i.e. <a href="https://github.com/Chassis/Chassis" target="_blank">Chassis</a>, <a href="https://github.com/chad-thompson/vagrantpress" target="_blank">VagrantPress</a>, <a href="https://github.com/humanmade/Salty-WordPress" target="_blank">Salty WordPress</a>, and <a href="https://github.com/Automattic/vip-quickstart" target="_blank">VIP Quickstart</a>, to name a few.</p>\n<p><a href="https://github.com/lanayotech/vagrant-manager" target="_blank">Vagrant Manager</a> is a new tool for OS X that gives you a UI for managing all of your virtual machines in one place, no matter what kind of Vagrant configuration(s) you have running. Its convenient toolbar gives you access to all your VMs with the ability to execute commands.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/vagrant-manager.gif" rel="prettyphoto[33022]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/vagrant-manager.gif?resize=940%2C523" alt="vagrant-manager" class="aligncenter size-full wp-image-33144" /></a></p>\n<p>Vagrant Manager’s primary features include:</p>\n<ul>\n<li><strong>Indicators for running/halted VM’s:</strong> on (green), off (red), suspended (orange)</li>\n<li><strong>Execute vagrant commands:</strong> hover over a VM and select a command from the dropdown</li>\n<li><strong>Customization options available through the preferences pane:</strong> set preferences for launch, how VMs are displayed, refresh interval, etc.</li>\n<li><strong>Multi-Machine Support:</strong> run actions against one machine or all of them at once</li>\n</ul>\n<p>Adding Vagrant Manager is actually much easier than setting up a new Vagrant configuration. After you download it, Vagrant Manager automatically detects VirtualBox and Parallels machines. Any vagrant machines that you want it to detect must already be initialized. If you don’t see a machine in the list, simply run <code>vagrant init</code> on it. Machines will disappear from your list once destroyed, so you might want to add a bookmark in Vagrant Manager for quick access later.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/vagrant-manager.png" rel="prettyphoto[33022]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/vagrant-manager.png?resize=1025%2C575" alt="vagrant-manager" class="aligncenter size-full wp-image-33102" /></a></p>\n<p>The preferences pane lets you select your Terminal preference, change the icon theme for the status bar, launch at login, and show/hide various counts/notifications.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/preferences.png" rel="prettyphoto[33022]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/preferences.png?resize=900%2C953" alt="preferences" class="aligncenter size-full wp-image-33151" /></a></p>\n<p>Certainly, you don’t <em>need</em> a UI for managing your VMs, but it gives you a nice visual overview of all your machines in one centralized place. If you’re like me, and you constantly forget which machines you have running, this utility is a convenient addition to your menu bar. Vagrant Manager was released under the <a href="https://github.com/lanayotech/vagrant-manager/blob/develop/LICENSE.md" target="_blank">MIT License</a>. Download it for free from <a href="https://github.com/lanayotech/vagrant-manager" title="Vagrant Manager" target="_blank">GitHub</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 07 Nov 2014 00:15:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:108:"WPTavern: Automattic Acquires Code for the People, Expands WordPress.com VIP’s Reach Into European Markets";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33107";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:114:"http://wptavern.com/automattic-acquires-code-for-the-people-expands-wordpress-com-vips-reach-into-european-markets";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5199:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/05/automattic-offices.jpg" rel="prettyphoto[33107]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/05/automattic-offices.jpg?resize=1025%2C478" alt="photo credit: Peter Slutsky" class="size-full wp-image-22370" /></a>photo credit: <a href="http://peterslutsky.com/2013/05/14/pics-touring-automattics-new-office/">Peter Slutsky</a>\n<p>Matt Mullenweg announced today at <a href="http://websummit.net/" target="_blank">Web Summit in Dublin</a> that Automattic has acquired <a href="http://codeforthepeople.com/" target="_blank">Code for the People</a>, a UK-based WordPress development agency and longtime WordPress.com VIP partner. The acquisition adds all six members of the company, including co-founders Simon Dickson and Simon Wheatley, to the WordPress.com VIP team.</p>\n<p>“It’s a fairly natural transition for us,” Dickson told the Tavern. “We were part of Automattic’s VIP Featured Partner program from day one – so we’ve known a lot of these people for literally years.”</p>\n<p>Code for the People (CFTP) began talking to Automattic in the spring of this year on a very informal basis, but once the team decided it was a realistic prospect, things started to speed up. In joining the VIP team, CFTP will say goodbye to their days of designing and developing websites.</p>\n<p>Dickson anticipates that they will be joining in with what the VIP team is already doing, except in European hours. “The team exists to provide expertise and products to support the world’s biggest publishers, whether that’s on WordPress.com or self-hosted systems,” he said.</p>\n<p>As new Automattic employees, the team will help to expand VIP’s reach into the European market. <strong>“We’re looking forward to bringing an additional perspective to the team, based on our own experiences on the front line, and in the European market,”</strong> Dickson said.</p>\n<p>“Personally, I’ll be looking for ways to help develop the European ecosystem. It was something we talked about in Sofia: a lot of WP agencies would like some kind of network, formal or informal, to share ideas and experiences. I’m hoping it’s something I can do as part of my new role.”</p>\n<p>The acquisition includes CFTP’s <a href="http://babbleplugin.com/" target="_blank">Babble</a> plugin, an open source multilingual tool that Mullenweg counted as one of the key parts of the deal, according to <a href="http://techcrunch.com/2014/11/06/automattic-buys-uks-code-for-the-people-to-build-out-its-wordpress-vip-enterprise-business/" target="_blank">TechCrunch</a>. Babble will continue to be maintained by Automattic, the details of which are still being fleshed out.</p>\n<p>“We’ve been really encouraged by the prominence of the multilingual question in recent weeks and months,” Dickson said. “It’s an area where we know WordPress needs to do better; and it’s been great to see people recognizing Babble as, potentially, the most core-friendly way of answering it.”</p>\n<p>Code for the People is a company that was built on the principle of giving back to open source platforms. with employees regularly contributing to WordPress core. At the end of September it was announced that CFTP developer <a href="http://wptavern.com/meet-john-blackbourn-wordpress-4-1-release-lead" target="_blank">John Blackbourn would be leading WordPress 4.1</a>, a commitment the company made long before the acquisition deal was sealed.</p>\n<p><strong>“We felt it was important for a small team, even as small as ours, to stand up and say yes – the future of WordPress is that important to us,”</strong> Dickson said. Blackbourn will continue leading the release as an Automattic employee.</p>\n<p>The founders of CFTP never set out to get acquired. “Genuinely, we formed Code For The People as a means to an end. We wanted to support each other’s efforts to do interesting things with WordPress, and to make WordPress better as a result,” Dickson said.</p>\n<p>“Building a successful business was a happy bi-product of that, but it was never the primary motivation. We chose the name Code For The People very deliberately. It was always there to keep us honest, and ensure we stayed true to our mission.”</p>\n<p>It’s a bittersweet day as CFTP bids goodbye to many of their clients and the brand they worked to build. Dickson hopes to bring that same dedication to VIP clients at Automattic with a focus on expanding its services in Europe.</p>\n<p>The Code for the People brand will be retired. If you check out the farewell message on the company’s <a href="http://codeforthepeople.com" target="_blank">website</a>, you’ll notice that it was built using <a href="http://theme.wordpress.com/themes/ever-after/" target="_blank">Ever After</a>, a wedding theme by WordPress.com. Although the team is giving up the strong brand name they’ve created, they hope to carry on their shared love of open source software as employees of Automattic.</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, 06 Nov 2014 19:22:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:31;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"Matt: Acquiring Code For The People";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44359";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"http://ma.tt/2014/11/acquiring-code-for-the-people/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:496:"<p>I spoke with <a href="http://about.me/tonyconrad">Tony Conrad</a> and Laurie Segall at <a href="http://websummit.net/">Web Summit in Dublin</a> today and was able to announce that Automattic has <a href="http://vip.wordpress.com/2014/11/06/code-for-the-people/">acquired Code For The People to join our VIP team</a>. <a href="http://techcrunch.com/2014/11/06/automattic-buys-uks-code-for-the-people-to-build-out-its-wordpress-vip-enterprise-business/">Techcrunch also covered the news</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, 06 Nov 2014 17:06:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:32;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:21:"Matt: Texas Landslide";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44357";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"http://ma.tt/2014/11/texas-landslide/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:392:"<p>Mother Jones covers the results in Texas of the election in a harsh but fair way: <a href="http://www.motherjones.com/politics/2014/11/battleground-texas-greg-abbott-wendy-davis-flop">Wendy Davis Spent $36 Million and All She Got Was This Lousy Landslide. Now What?</a>. I think Texas will be the focal point of American politics in years to come, but this was not the year it started.</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, 06 Nov 2014 04:19:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:96:"WPTavern: Sidekick’s Pricing Experiment Reveals Valuable Lessons for WordPress Business Owners";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33068";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/sidekicks-pricing-experiment-reveals-valuable-lessons-for-wordpress-business-owners";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3748:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/SidekickPricingFeaturedImage.png" rel="prettyphoto[33068]"><img class="size-full wp-image-33085" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/SidekickPricingFeaturedImage.png?resize=639%2C200" alt="Sidekick Featured Image" /></a>photo credit: <a href="https://www.flickr.com/photos/disowned/1158857526/">Calamity Meg</a> – <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/">cc</a>\n<p>One of the most difficult parts of running a WordPress business is coming up with a revenue strategy. In a <a title="http://www.sidekick.pro/blog/updates/pricing-answers/" href="http://www.sidekick.pro/blog/updates/pricing-answers/">post on the official SIDEKICK blog</a>, Ben Fox explains that in the past two weeks, customers went through a pricing experiment with an opportunity to provide feedback. The feedback to SIDEKICK highlighted areas ripe for improvement including pricing, the number of plans, and determining value.</p>\n<p>One of the biggest lessons learned from the article is to base a price on value, not on cost.</p>\n<blockquote><p>Our biggest mistake when we started discussing price was trying to determine what it would cost us to support our platform and each customer, not what the value of our platform was to our customers. When you price based on cost, you leave money on the table. When you price based on value, everybody wins.</p></blockquote>\n<p>I’m happy to see SIDEKICK stick by its instincts after receiving the following feedback, “SaaS has no place in WordPress” and “I will only ever pay a flat fee for a plugin.” If SIDEKICK restructured its plans to cater to this mindset, they’ll almost certainly go out of business. Fox points out three things that would happen if SIDEKICK accepted a one-time flat fee and unlimited updates.</p>\n<ol>\n<li>We would never see a return on our investment and our customers would never see the value they’ve paid for</li>\n<li>The quality of our product would never really improve because we couldn’t afford to add new features or do much more than bug fix</li>\n<li>Our prices would go up exponentially because we would need to make sure we’re covering the lifetime COSTS of a customer. Not a smart way to do business.</li>\n</ol>\n<p>It’s <a title="http://mattreport.com/pricing-wordpress-product/" href="http://mattreport.com/pricing-wordpress-product/">been said before</a> and bears repeating, “the days of low-priced plugins and unlimited everything are going by the way side.” WordPress product businesses that operate with unlimited anything are almost certain to fail as it’s an unsustainable model. Customers need to realize this sooner rather than later.</p>\n<p>If pricing is something you’re having trouble with in your business, Chris Lema has written a series of posts you can read for free on the <a title="http://chrislema.com/tag/pricing/" href="http://chrislema.com/tag/pricing/">topic of pricing</a>. If you want something more in-depth, consider purchasing and reading <a title="http://chrislema.com/store/price-right-introduction-product-pricing/" href="http://chrislema.com/store/price-right-introduction-product-pricing/">The Price is Right</a> by Chris Lema. Matt Medeiros of <a title="http://mattreport.com/" href="http://mattreport.com/">MattReport.com</a> also has a lot of content on pricing and general business practices.</p>\n<p>I appreciate the transparency Fox offered regarding SIDEKICK’s pricing structure and the reasons behind it. It would be nice to see more companies share the lessons they’ve learned in the pricing game. By sharing knowledge, everyone in the WordPress ecosystem wins.</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, 06 Nov 2014 02:45:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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: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:58:"WPTavern: 10up Open Sources Its Engineering Best Practices";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33026";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/10up-open-sources-its-engineering-best-practices";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2796:"<p>Taylor Lovett, director of Web Engineering at 10up, <a href="http://10up.com/blog/2014/engineering-best-practices/" target="_blank">announced</a> today that the company is open sourcing its engineering best practices. <a href="http://10up.com/" target="_blank">10up</a> has historically been a leader in contributing to open platforms, most notably being one of the first development agencies to <a href="http://wptavern.com/10up-sponsors-helen-hou-sandi-to-work-full-time-on-wordpress-core" target="_blank">sponsor an employee to work full-time on WordPress core</a>.</p>\n<p>The company used GitHub pages to create a <a href="http://10up.github.io/Engineering-Best-Practices/" target="_blank">website featuring best practices</a> for tools, project structure, version control, PHP, and JavaScript.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/10up-best-practices.png" rel="prettyphoto[33026]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/10up-best-practices.png?resize=1025%2C848" alt="10up-best-practices" class="aligncenter size-full wp-image-33070" /></a></p>\n<p>10up’s best practices were created in an effort to standardize the company’s tools, frameworks, libraries, style, version control, etc., for its employees. <strong>“Standardization in engineering is increasingly important with such a large team. Over the past few months we collaborated as a company to document how we engineer and why,”</strong> Lovett said. The result is a concise public reference for 10up’s 90+ full time employees and anyone else who is interested.</p>\n<p>This collection of best practices and tools makes it easier for new employees to jump on board and be ready for efficient collaboration with others in the company. The in-depth guide covers everything from efficient database queries, data storage, namespacing, and security, to helpful tools for local development, dependency management, and version control.</p>\n<p>Although the page’s description emphasizes that the content is not geared to teach anyone to become an engineer, the best practices site is undoubtedly a valuable learning resource. If you’re new to WordPress development, the site will give you an idea of the kinds of tools that a top agency uses in order to work more efficiently.</p>\n<p>The team at 10up hopes that the <a href="http://10up.github.io/Engineering-Best-Practices/" target="_blank">best practices website</a> will also help to influence community members. The site states that company is willing to evolve the best practices through contributions and invites folks from the community to contribute to the site’s <a href="https://github.com/10up/Engineering-Best-Practices" target="_blank">repository on GitHub</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 05 Nov 2014 23:39:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:81:"WPTavern: Joseph Herbrandson on The Most Common Attacks Facing Today’s Websites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33014";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/joseph-herbrandson-on-the-most-common-attacks-facing-todays-websites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3386:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/CommonAttacksFeaturedImage.png" rel="prettyphoto[33014]"><img class="size-full wp-image-33016" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/CommonAttacksFeaturedImage.png?resize=639%2C200" alt="common Attacks Featured Image" /></a>photo credit: <a href="https://www.flickr.com/photos/defenceimages/10086117975/">Defence Images</a> – <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a>\n<p>Joseph Herbrandson of <a title="https://sucuri.net/" href="https://sucuri.net/">Sucuri </a>published an <a title="http://blog.sucuri.net/2014/11/most-common-attacks-affecting-todays-websites.html" href="http://blog.sucuri.net/2014/11/most-common-attacks-affecting-todays-websites.html">excellent article</a> listing the most common attacks today’s websites are facing. Herbrandson does a good job of explaining the attacks without inundating the reader with technical jargon. He also links to WordPress items that are relevant to each type of attack.</p>\n<p>I’ve spoken to Herbrandson at a few different WordCamps and one question I’ve asked him is “what does this all mean to the average user?” He answers the question in his post:</p>\n<blockquote><p>All software, old and new, follows the same concepts that made computers work decades prior to now. The only difference today is the number of complex layers that have been added to make the process seem confusing.</p>\n<p>The only ones confused though, are the people for whom the complexity was implemented to protect in the first place: <strong>the users</strong>. The continuous pattern of cyber-assault on everything from banks to bakeries, and across the board from Target to Apple, is showing that this world requires users to break the expectation of confusion and understand how Internet instigators are really coming after us.</p></blockquote>\n<p>Herbrandson and others in the field have the difficult task of informing the public without scaring it. I’ve sat in sessions at WordCamps where he educates users on website security and most of the attendees realize they have to take website security seriously. There’s only been a few times where attendees have become scared, but it’s good to be scared.</p>\n<p>However, a poor reaction to being scared is to install several different security focused plugins thinking you’ll be protected from every threat. In most cases, this will end up doing more harm than good as plugins lock down potentially useful features such as XML-RPC. I’m all for securing websites, but I also believe in such a thing as <em>too much security</em>. Unfortunately, there’s no such thing as a silver bullet to protect against every threat without being an inconvenience in some way.</p>\n<p>Definitely <a title="http://blog.sucuri.net/2014/11/most-common-attacks-affecting-todays-websites.html" href="http://blog.sucuri.net/2014/11/most-common-attacks-affecting-todays-websites.html">check out his article</a> and consider the questions asked at the bottom of the post. If you’ve never seen Herbrandson present on WordPress security fundamentals, here is a recorded presentation from WordCamp Orange County 2014. In the session, he covers simple principles everyone can implement to keep the risk of attacks as low as possible.</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:"Wed, 05 Nov 2014 22:46: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:64:"WPTavern: Bulk Deactivate: A New WordPress Plugin Debugging Tool";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33025";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wptavern.com/bulk-deactivate-a-new-wordpress-plugin-debugging-tool";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3653:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/03/bulk-install.jpg" rel="prettyphoto[33025]"><img class="size-full wp-image-19216" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/03/bulk-install.jpg?resize=974%2C524" alt="photo credit: -pdp- - cc" /></a>photo credit: <a href="http://www.flickr.com/photos/51553705@N00/8191743/">-pdp-</a> – <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a>\n<p>Entry level WordPress debugging often involves the tedious task of turning plugins on and off to track down the culprit that is breaking something on your site. When seeking help in support forums, users are often instructed to deactivate all of their plugins and activate one of the default themes.</p>\n<p>This process can become especially complicated when you have, for example, 55 plugins active, 10 inactive, and 4 recently active. Trying to remember which ones were previously active/inactive is maddening, especially if you’re new to the site and not aware of where and how the plugins are in use.</p>\n<p><a title="Bulk Deactivate " href="http://raison.co/bulk-deactivate/" target="_blank">Bulk Deactivate</a> is a new WordPress debugging tool that offers advanced options for saving your plugin list. After attending WordCamp Europe, the folks at <a href="http://raison.co/" target="_blank">Raison</a>, a WordPress development agency, decided to open source the plugin as part of their contribution towards the <a href="http://ma.tt/2014/09/five-for-the-future/" target="_blank">Five for the Future</a> initiative.</p>\n<p>Bulk Deactivate sets up shop under the Plugins menu in the admin and allows for tailoring exceptions via a dropdown select list of your active plugins.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/bulk-deactivate.jpg" rel="prettyphoto[33025]"><img class="aligncenter size-full wp-image-33033" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/bulk-deactivate.jpg?resize=925%2C586" alt="bulk-deactivate" /></a></p>\n<p>Ordinarily, after doing a bulk plugin deactivation, all your inactive plugins are lumped together. When using the Bulk Deactivate plugin as an alternative, you’ll get a saved list of the plugins that you just deactivated so you can easily re-activate them all again.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/activate-saved-plugins.jpg" rel="prettyphoto[33025]"><img class="aligncenter size-full wp-image-33042" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/activate-saved-plugins.jpg?resize=828%2C408" alt="activate-saved-plugins" /></a></p>\n<p>Bulk Deactivate is not an all-or-nothing plugin. It can be configured a number of different ways to suit your particular debugging requirements:</p>\n<ul>\n<li>Add exceptions, so essential plugins will not be deactivated</li>\n<li>Save a list of the plugins deactivated</li>\n<li>Activate the plugins you just deactivated</li>\n<li>Activate only a selection of the plugins just deactivated</li>\n<li>Advanced options for how the plugin save list is handled</li>\n</ul>\n<p>The next time you have to take up the task of isolating a plugin conflict, you might want to employ the help of the Bulk Deactivate plugin. I tested it and found it to work exactly as expected. This is one that you’ll want to bookmark for later. Download <a href="https://wordpress.org/plugins/bulk-deactivate/" target="_blank">Bulk Deactivate</a> from WordPress.org, or head on over to its <a href="https://github.com/raisonon/plugin-deactivate" target="_blank">GitHub repository </a>if you’d like to contribute code to make it better.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 05 Nov 2014 21:16: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: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:31:"Matt: State of the Word Q&A";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44348";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/11/state-of-the-word-qa/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:420:"<div id="v-WmCl2kwS-1" class="video-player"></div>\n<p>In addition to the <a href="http://ma.tt/2014/10/sotw-2014/">State of the Word presentation we talked about last week</a>, there was a half hour or so of questions and answers that followed. You can also <a href="http://wordpress.tv/2014/10/26/matt-mullenweg-state-of-the-word-2014-qa/">check it out on WordPress.tv</a>, which now plays everything HD by default.</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, 05 Nov 2014 16:59:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:69:"WPTavern: WPShout Publishes The Results of Its 2014 Webhosting Survey";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=33003";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://wptavern.com/wpshout-publishes-the-results-of-its-2014-webhosting-survey";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5213:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/WPShoutWebhostingSurveyFeaturedImage.png" rel="prettyphoto[33003]"><img class="size-full wp-image-30463" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/WPShoutWebhostingSurveyFeaturedImage.png?resize=635%2C265" alt="WPShout Webhosting Survey Featured Image" /></a>photo credit: <a href="https://www.flickr.com/photos/henryfaber/230444653/">hfabulous</a> – <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a>\n<p>Choosing a webhost is an <a title="http://wptavern.com/14-things-to-consider-when-choosing-a-webhost-for-your-wordpress-powered-site" href="http://wptavern.com/14-things-to-consider-when-choosing-a-webhost-for-your-wordpress-powered-site">important but difficult decision</a>, especially when a lot of reviews contain questionable content with affiliate links. It’s hard to find non-biased information such as real experiences customers have had with a company. One reliable source of information is the <a title="http://wpshout.com/wordpress-hosting-review-2014-results/" href="http://wpshout.com/wordpress-hosting-review-2014-results/">WPShout webhosting survey</a>.</p>\n<p>Despite a goal of 500, only 159 people responded to the survey. Although it’s not a large data set, it provides enough information to get a feel for the webhosting scene in the WordPress ecosystem. The survey collected data in seven areas:</p>\n<ol>\n<li>Average satisfaction</li>\n<li>Value</li>\n<li>Reliability</li>\n<li>Speed</li>\n<li>Support</li>\n<li>Median site count</li>\n<li>Usability</li>\n<li>WordPress compatibility</li>\n</ol>\n<p>Each respondent was asked to provide an overall impression between 1-10 to each area with an option to provide a text comment. Monthly cost of a plan, number of sites hosted on the plan, and monthly traffic to hosted sites was also collected.</p>\n<h2>The Pricing Valley</h2>\n<p>One of the data points I find interesting is the graph showing customer experience by monthly cost. Those who use the cheapest hosting plans $0-$5 have the worst experience overall. Those who use plans in the $6-$15 range show a significantly higher satisfaction rate across the board. The customer experience level drops off with plans in the $16-$49 range.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/CustomerSatisfactionLevels.png" rel="prettyphoto[33003]"><img class="size-full wp-image-33004" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/CustomerSatisfactionLevels.png?resize=866%2C580" alt="Customer Satisfaction Levels" /></a>Overall Satisfaction Levels Based on Monthly Cost\n<p>I’m surprised by this statistic since several of the managed WordPress hosting plans are in this price range. I expect customers to be the most satisfied with these plans since the service is catered to hosting WordPress sites. The results prove this isn’t the case and managed WordPress hosting providers have room for improvement. Customer satisfaction gradually rises with those who use plans that are $50 or more. I don’t think it’s any surprise that the saying “you get what you pay for” applies to the webhosting industry.</p>\n<h2>Small or Specialty Webhosts Ranked Well</h2>\n<p>The results indicate smaller webhosting companies are not only agile in serving customer needs, they’re likely to provide an exceptional level of support. These types of companies fit into a mid-level tier of cost and popularity. Examples include <a title="https://getflywheel.com/" href="https://getflywheel.com/">Flywheel</a> and <a title="http://asmallorange.com/" href="http://asmallorange.com/">A Small Orange</a>. <a title="https://www.digitalocean.com/" href="https://www.digitalocean.com/">Digital Ocean</a> also has a good showing with high rankings across the board.</p>\n<p>Established, large hosting companies such as <a title="https://www.dreamhost.com/" href="https://www.dreamhost.com/">Dreamhost</a> and <a title="http://mediatemple.net/" href="http://mediatemple.net/">Media Temple</a>, have less than stellar ratings. Comment feedback indicates Dreamhost needs to improve not only its tech support, but reliability across the board. “I’ve liked Dreamhost in the past, but it seems the speed becomes slower each year, the servers become less reliable, and the support less helpful.”</p>\n<h2>Things to Keep in Mind</h2>\n<p>It’s important to keep in mind that ratings and averages for some webhosting companies in the survey are based on 2-5 responses. The data should not be used by itself to make decisions on which company to host a site with. Instead, use the data in combination with several other sources of information such as recommendations, personal research, and non-affiliated reviews.</p>\n<p>I encourage you to <a title="http://wpshout.com/wordpress-hosting-review-2014-results/" href="http://wpshout.com/wordpress-hosting-review-2014-results/">review the results</a> and if you want access to the raw survey data, <a title="[email protected]" href="http://wptavern.com/[email protected]">send a request</a> to WPShout. Are you surprised at all by the results or are they par for the course?</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, 05 Nov 2014 08:28:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:68:"WPTavern: WordPress 4.1 to Introduce Theme Support for the Title Tag";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=32926";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:78:"http://wptavern.com/wordpress-4-1-to-introduce-theme-support-for-the-title-tag";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3782:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/title-tag.jpg" rel="prettyphoto[32926]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/title-tag.jpg?resize=1025%2C491" alt="title-tag" class="aligncenter size-full wp-image-32996" /></a></p>\n<p>WordPress 4.1 will be adding several major improvements for theme developers. Joost de Valk opened a <a href="https://core.trac.wordpress.org/ticket/18548" target="_blank">ticket</a> three years ago, requesting a better option for controlling the output of title tags. He proposed a patch that would output the title tag during the run of wp_head, based on whether the current theme has added theme_support. This implementation is finally gaining traction, after a great deal of discussion among WordPress contributors.</p>\n<p>This week <a href="http://wptavern.com/meet-john-blackbourn-wordpress-4-1-release-lead" target="_blank">John Blackbourn</a>, the lead for WordPress 4.1, <a href="https://core.trac.wordpress.org/changeset/30074" target="_blank">committed</a> a forward-compatible way for allowing plugin and theme authors to better customize the output of document titles. The upcoming release will introduce theme support for the <a href="https://codex.wordpress.org/Title_Tag" target="_blank">title tag</a>.</p>\n<pre class="brush: php; light: true; title: ; notranslate">add_theme_support( ''title-tag'' );</pre>\n<p><strong>“By declaring support like this, themes acknowledge that they are not defining titles on their own and WordPress can add it safely without duplication,”</strong> core contributor Konstantin Obenland explained when outlining title tag support in his most recent <a href="https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/" target="_blank">post</a> to the make/core blog.</p>\n<p>He elaborated further on the three year long effort, saying that it also served to correct an ancient practice of Kubrick, which appended the the blog name to <code>wp_title()</code>:</p>\n<pre class="brush: php; light: true; title: ; notranslate"><title><?php wp_title(''&laquo;'', true, ''right''); ?> <?php bloginfo(''name''); ?></title></pre>\n<p>That practice became fairly standard in WordPress themes. The new theme support for the title tag will make it easier for plugins and themes to manage the document title.</p>\n<h3>New Template Functions for Archive Title and Descriptions</h3>\n<p>WordPress 4.1 also introduces a couple of <a href="https://core.trac.wordpress.org/changeset/30223" target="_blank">new template functions</a> for archive titles and descriptions:</p>\n<ul>\n<li><code>get_the_archive_title()</code> and <code>the_archive_title()</code> for returning/displaying the title of the current term, date, post type, post format, or author archive.</li>\n<li><code>get_the_archive_description()</code> and <code>the_archive_description()</code> for returning/displaying the description associated with the current term archive.</li>\n</ul>\n<p>Developers will have these new functions at their disposal, thanks to efforts from Konstantin Obenland and Drew Jaynes.</p>\n<p>If you’re in the business building WordPress themes, you will want to take note of how to use the new title tag with backwards compatibility, as <a href="https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/" target="_blank">outlined</a> by Obenland.</p>\n<p>At this time, plugin developers are discouraged from building functionality around theme support for title tags. <strong>“The long term plan is to enable users to manage document titles from their admin, independent of which theme they’re using,”</strong> Obenland explained. Changes in WordPress 4.1 are the first step towards making title tags more plugin friendly.</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, 04 Nov 2014 21:36:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:40;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:51:"WPTavern: WordSesh 3 is Set for December 20th, 2014";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=32916";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wptavern.com/wordsesh-3-is-set-for-december-20th-2014";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3409:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/WordSesh3FeaturedImage.png" rel="prettyphoto[32916]"><img class="aligncenter size-full wp-image-32961" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/WordSesh3FeaturedImage.png?resize=650%2C266" alt="WordSesh 3 Featured Image" /></a></p>\n<p>The third annual <a title="http://wordsesh.org/" href="http://wordsesh.org/">WordSesh</a> will take place on December 20th, 2014 at UTC+0. Organized by <a title="http://scottbasgaard.com/" href="http://scottbasgaard.com/">Scott Basgaard</a>, WordSesh is like a virtual WordCamp except there is one session per hour for 24 hours.</p>\n<p>Unlike <a title="http://second.wordsesh.org/" href="http://second.wordsesh.org/">WordSesh 2</a>, this year’s event will have one track instead of two. As in previous years, it will be free to attend. The decision to only have one track is based on feedback from WordSesh 2 attendees. “While WS2 was “bigger and better” it felt a bit unorganized and I’d like to capture having everyone in one place again,” Basgaard told the Tavern.</p>\n<p>Basgaard is inviting specific individuals to speak at the event. The remaining slots will open to the public where speakers will be hand-picked. Sessions will be split into five categories with 3-4 sessions per category followed by a round table discussion. <a title="http://dradcast.com/" href="http://dradcast.com/">DradCast</a> will once again kick off the event in what has become part of the tradition. Basgaard sent the Tavern a tentative look at the schedule that includes the following categories: Business, Users, Themes, Plugins, and Community.</p>\n<h2>WordSesh is a Popular Event</h2>\n<p>Over 3,000 unique viewers from 85 different countries <a title="http://wptavern.com/wordsesh-recap-global-wordpress-event-pulls-3000-unique-viewers-from-85-countries" href="http://wptavern.com/wordsesh-recap-global-wordpress-event-pulls-3000-unique-viewers-from-85-countries">watched WordSesh 2</a>. Attendance for the event far exceeded that of most WordCamps. WordSesh 2 organizers shared some of their viewership stats on <a href="https://twitter.com/wordsesh" target="_blank">Twitter</a> and the results demonstrate that the event was a hit all over the world:</p>\n<ul>\n<li>The city of Sofia, Bulgaria, had the most viewers of any city in the world, followed by London and New york.</li>\n<li>36 unique viewers from Africa</li>\n<li>98 unique viewers from Oceania</li>\n<li>120 unique viewers from Asia</li>\n<li>843 unique viewers from Europe</li>\n<li>1,404 unique viewers from North / South America</li>\n<li>3,000 unique viewers over 85 countries</li>\n</ul>\n<p>WordSesh 2 experienced a few technical issues last year, but simplifying the event should help it run more smoothly. If you plan on attending WordSesh 3 or want to receive announcements, consider filling out the <a title="http://wordsesh.org/#signup-form" href="http://wordsesh.org/#signup-form">sign-up form</a>. If you can’t wait til December 20th, you can pass the time by watching all of the <a title="http://www.youtube.com/channel/UCHYYxtbhalXpKEMwyQHOexw/videos" href="http://www.youtube.com/channel/UCHYYxtbhalXpKEMwyQHOexw/videos">recorded sessions from WordSesh 2</a>.</p>\n<p>Let us know in the comments if you’re going to be one of the few who watch every session during the 24 hour extravaganza.</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, 04 Nov 2014 20:54:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:41;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:71:"WPTavern: New Plugin Makes It Easy to Embed WordPress Plugin Info Cards";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=32894";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/new-plugin-makes-it-easy-to-embed-wordpress-plugin-info-cards";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5013:"<p>WordPress 4.0 brought <a href="http://wptavern.com/wordpress-4-0-adds-custom-icons-to-the-plugin-installer" target="_blank">plugin icons and info cards</a> to the installer, offering developers more incentive to brand their extensions for a better appearance in the admin. Plugin branding has made exploring the 34,000+ items in the official <a href="https://wordpress.org/plugins/" target="_blank">Plugin Directory</a> a more friendly and colorful experience for users.</p>\n<p>Building on top of the new plugin identity cards, French WordPress developer <a href="http://b-website.com/" target="_blank">Brice Capobianco</a> created <a href="https://wordpress.org/plugins/wp-plugin-info-card/" target="_blank">WP Plugin Info Card</a> for showcasing plugins on the frontend of a site. This new plugin uses the <a href="http://codex.wordpress.org/WordPress.org_API" target="_blank">WordPress.org plugin API</a> to fetch data and provides a configurable shortcode for embedding plugin cards within your content.</p>\n<p>By default, the front of each card displays the plugin’s logo, author, ratings, downloads, and WordPress version required. The logo links to the plugin’s page on WordPress.org.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/plugin-info-cards.png" rel="prettyphoto[32894]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/plugin-info-cards.png?resize=1025%2C503" alt="plugin-info-cards" class="aligncenter size-full wp-image-32909" /></a></p>\n<p>If you click on the “Download” section at the bottom, the card is flipped using a smooth rotation effect, allowing you to download the zip file for the plugin.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/plugin-info-card-back-view.png" rel="prettyphoto[32894]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/plugin-info-card-back-view.png?resize=1025%2C499" alt="plugin-info-card-back-view" class="aligncenter size-full wp-image-32941" /></a></p>\n<p>Check out a <a href="http://b-website.com/wp-plugin-info-card-for-wordpress" target="_blank">live demo</a> to see the cards with the rotation feature.</p>\n<p>Capobianco created the plugin to be lightweight. It will only include the scripts and CSS if and when required. WP Plugin Info Cards also uses WordPress transients to store data returned by the API for 10 minutes. This means that your page load won’t be slowed down by requests for the plugin data.</p>\n<p>The plugin also includes a dashboard widget that can be set up by adding plugin slugs for the extensions you want to include. It’s easy to reorder via drag-and-drop.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/dashboard-widget-plugin-info.jpg" rel="prettyphoto[32894]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/dashboard-widget-plugin-info.jpg?resize=699%2C552" alt="dashboard-widget-plugin-info" class="aligncenter size-full wp-image-32946" /></a></p>\n<p>The dashboard widget feature seems less useful than the shortcode, unless you are intent on monitoring specific plugin stats in a list. The shortcode, however, has a whole host of parameters for customizing the frontend display:</p>\n<ul>\n<li><strong>slug:</strong> plugin slug name</li>\n<li><strong>image:</strong> image url to replace WP logo (default: empty)</li>\n<li><strong>logo:</strong> 128×128.jpg, 256×256.jpg, 128×128.png, 256×256.png, svg, no (default: svg)</li>\n<li><strong>banner:</strong> jpg, png, no (default:empty)</li>\n<li><strong>align:</strong> center, left, right (default: empty)</li>\n<li><strong>containerid:</strong> custom div id, may be used for anchor (default: wp-pic-PLUGIN-NAME)</li>\n<li><strong>margin:</strong> custom container margin – eg: “15px 0″ (default: empty)</li>\n<li><strong>clear:</strong> clear float before or after the card: before, after (default: empty)</li>\n<li><strong>custom:</strong> value to output : url, name, version, author, requires, rating, num_ratings, downloaded, last_updated, download_link (default: empty)</li>\n</ul>\n<p>It’s clear that Capobianco put quite a bit of effort into the plugin to ensure that its users could customize it for their own unique uses. The examples shown above were created using just the basic shortcode for each plugin:</p>\n<p><code>[wp-pic slug="buddypress"]</code></p>\n<p>WP Plugin Info Cards makes it easy to quickly create a list of your favorite plugins. You could also use it to showcase your own plugins or to create a list of plugins that you personally endorse. If you’re writing a guide or tutorial that requires the use of a collection of plugins, you could use WP Plugin Info Cards to easily build that list with download links for each. The next time you need to create a visual list of plugins in your content, download <a href="https://wordpress.org/plugins/wp-plugin-info-card/" target="_blank">WP Plugin Info Cards</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:"Tue, 04 Nov 2014 19:47: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: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:23:"Matt: Disqus Spam + Ads";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44350";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"http://ma.tt/2014/11/disqus-spam-ads/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1288:"<p>“We have the largest and deepest audience profiles on the web.” — David Fleck, general manager of advertising at Disqus. Translation: We’re <a href="http://www.businessinsider.com.au/disqus-launches-advertising-2014-11">tracking everyone who visits a website with Disqus enabled and building a profile of them</a> based on the content of the sites they visit and any comments they leave. “Deeper” than Facebook.</p>\n<p>“So I’m particularly excited to announce that we’re bringing our native advertising product, Sponsored Comments, to the world of programmatic and we’re doing it on a global basis. [...] Starting today, Xaxis clients, which include some of the best brands in the world, will buy and place Sponsored Comments advertising across much of the Disqus network.” Translation: It’s not comment spam if <a href="https://business.disqus.com/blog/disqus-launches-global-programmatic-native-advertising/">we’re getting paid for it</a>. </p>\n<p>I was just reading some comments the other day and thinking how it’d be great to see some sponsored brand content there instead of users, like there already was on the rest of the page. Glad there’s a solution for that on a global basis 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, 04 Nov 2014 14:28: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: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:86:"WPTavern: How The Focus Project Plans to Enhance Distraction Free Writing in 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=32888";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:96:"http://wptavern.com/how-the-focus-project-plans-to-enhance-distraction-free-writing-in-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:4521:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/FocusProjectFeaturedImage.png" rel="prettyphoto[32888]"><img class="aligncenter size-full wp-image-32904" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/FocusProjectFeaturedImage.png?resize=650%2C200" alt="Focus Project Featured Image" /></a></p>\n<p>One of the <a title="https://wordpress.org/plugins/focus/" href="https://wordpress.org/plugins/focus/">feature plugins</a> under development for possible inclusion to WordPress 4.1 is called <a title="https://core.trac.wordpress.org/ticket/29806" href="https://core.trac.wordpress.org/ticket/29806">Focus</a>. Focus enhances the Distraction Free Writing mode in WordPress. Janneke Van Dorpe is the lead developer for the project with Mark Jaquith and Andrew Ozz contributing as well. Unlike DFW mode in WordPress 4.0, Focus keeps the meta boxes, admin bar, and left hand menu just a mouse swipe away from view.</p>\n<a href="http://wptavern.com/how-the-focus-project-plans-to-enhance-distraction-free-writing-in-wordpress#gallery-32888-1-slideshow">Click to view slideshow.</a>\n<p>Although the interface surrounding the editor disappears, users can access the admin bar without the surrounding interface showing up. The admin bar and meta boxes below and to the right of the post editor fade away while the menu on the left moves out of view. I don’t find the animation to be distracting and the menus come back into view quickly.</p>\n<p>According to Jaquith, Distraction Free Writing in WordPress has a few issues. He outlines three primary reasons for the changes.</p>\n<ol>\n<li>The transition to and from it is distracting. It’s a separate editor and it makes you lose your place.</li>\n<li>You don’t have access to the same editing tools, so you would feel like you had to keep switching back and forth.</li>\n<li>It’s not very discoverable in the first place.</li>\n</ol>\n<p><span class="message_content">“Combine those things, and it just wasn’t compelling. Now, it engages when you type (fixing discoverability), its transition is seamless, but you still have instant access to all the same editing tools and all your regular meta boxes. It’s the best of both worlds,” Jaquith told the Tavern. </span></p>\n<p>I rarely use DFW mode in WordPress but after using the Focus plugin, I’m willing to give it a try. I like the fact that meta boxes and the menu are quickly accessible despite being hidden.</p>\n<h2>Needs Approval</h2>\n<p>John Blackbourn, who is <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">leading the release</a> of WordPress 4.1, has to determine whether the project is at a point where it can be merged into core. If it’s approved, those who update to WordPress 4.1 will see the enhancements currently in the Focus plugin. Once it’s merged into core, the plan is to use a <a title="http://wptavern.com/create-your-own-custom-pointers-in-the-wordpress-admin" href="http://wptavern.com/create-your-own-custom-pointers-in-the-wordpress-admin">feature pointer</a> to let users know of its existence.</p>\n<p>Since disabling DFW mode is as easy as pressing a button in the editor, this is a calculated risk. People who see the editor for the first time might make it their primary means of writing content. This in turn would lead to more users and possible improvements down the road. Even with using a feature pointer, I’m curious to see how users react to it being enabled after updating to WordPress 4.1.</p>\n<h2>How to Contribute to Focus</h2>\n<p>If you’d like to test drive the new DFW mode for WordPress, you can download it from the <a title="https://wordpress.org/plugins/focus/" href="https://wordpress.org/plugins/focus/">plugin directory</a>. If you encounter a bug, you can report it via the plugin’s <a title="https://github.com/avryl/focus" href="https://github.com/avryl/focus">GitHub page</a>. Alternatively, if you want to provide feedback in real-time, the team has a <a title="https://wordpress.slack.com/messages/feature-focus/" href="https://wordpress.slack.com/messages/feature-focus/">channel on Slack</a> that is actively monitored.</p>\n<p>Are you a fan and active user of Distraction Free Writing in WordPress? If so, what do you think of the changes? If you don’t use Distraction Free Writing, will you consider it due to the changes outlined above?</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, 04 Nov 2014 06:35: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: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:43:"Matt: Sugarman Documentary Director Suicide";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44271";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:39:"http://ma.tt/2014/11/sugarman-director/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:600:"<p>The other day I saw and really enjoyed the great <a href="http://www.sonyclassics.com/searchingforsugarman/">Searching for Sugarman documentary</a>, which I’d recommend. While reading more about the entire story of <a href="http://en.wikipedia.org/wiki/Sixto_Rodriguez">Rodriguez</a> I found that tragically the director of the film, Malik Bendjelloul, took his own life this year. <a href="http://www.theguardian.com/film/2014/jul/13/malik-bendjelloul-searching-for-sugar-man">The Observer has a look into his life and his other work, as well as the situation surrounding his death</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, 04 Nov 2014 04:59: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: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:71:"WPTavern: Jetpack 3.2 Introduces Centralized Posting from 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=32841";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/jetpack-3-2-introduces-centralized-posting-from-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:6066:"<p>Jetpack 3.2 was <a href="http://wptavern.com/jetpack-3-2-released-introduces-new-site-logo-feature-for-theme-developers" target="_blank">released</a> last week, featuring a new site logo feature for theme authors, bug fixes, and performance improvements. Today the Jetpack team officially <a href="http://jetpack.me/2014/11/03/jetpack-3-2/" target="_blank">announced</a> the release, along with a new feature that wasn’t mentioned in the changelog.</p>\n<h2>Centralized Posting from WordPress.com</h2>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/centralized-posting.png" rel="prettyphoto[32841]"><img class="aligncenter size-full wp-image-32854" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/centralized-posting.png?resize=700%2C316" alt="centralized-posting" /></a></p>\n<p>Self-hosted WordPress sites connected via Jetpack can now publish posts using the WordPress.com post editor. When you visit <a title="WordPress.com Post Editor" href="http://wordpress.com/post/" target="_blank">wordpress.com/post/</a> you’ll find a dropdown of your sites above the title field. Here you can select a Jetpack-connected site. Once you either save or publish a post, a progress bar crawls across the screen as WordPress.com communicates to your site.</p>\n<p>On first look, it seems that WordPress.com is aiming to become a centralized place for publishing WordPress content, regardless of where the site is hosted.</p>\n<p>But this begs the question: <strong>Why would I want to post to my self-hosted site from WordPress.com?</strong> Many themes now incorporate customized editor styles to help match the preview to the frontend a little better. The self-hosted post editor also includes better access to the rest of your content and integration with plugins you’ve added to customize that experience.</p>\n<h3>The Idea Behind Centralizing Posting from WordPress.com</h3>\n<p>I spoke with Jetpack team member <a href="http://stephanis.info/" target="_blank">George Stephanis</a> regarding the idea and direction behind the new centralized publishing option. He identified a number of complementary purposes for the new feature. “One is to dogfood the <a title="WordPress.com REST API" href="http://developer.wordpress.com/docs/api/" target="_blank">WordPress.com REST API</a>,” he said. “By using the REST API instead of the traditional wp-admin means, we can ensure we’ve covered edge cases in usage and that it’s appropriate for production usage.”</p>\n<p>He also sees the new posting option as a convenient way to get quick access to any of your sites. “Another purpose is for users that have fifty sites, and just want to throw quick thoughts up,” Stephanis said. When you have that many sites, accessing one through WordPress.com can be easier than going to the self-hosted admin and authenticating.</p>\n<p>However, he recognizes that centralized publishing is not necessarily beneficial for every site. “In-depth posts to customized installs will naturally have a better experience going right to their customized wp-admin editor.”</p>\n<p>After testing, I can confirm that it is fully functional for remote publishing, although it leaves somewhat of a disconnect between writing and seeing the live content. If you publish content, chances are that you want to visit your site anyway to see it live. Unless you’re simply saving a quick draft to your site, remote publishing doesn’t yet appear to have many advantages apart from convenience.</p>\n<h3>Experimenting with the WordPress Admin</h3>\n<p>The centralized publishing experience is just a first step, Stephanis said. The Jetpack team has more planned. “There’s more iterations and ways of managing and writing content that we can slip in more comfortably to the new WordPress.com editor, specifically as it doesn’t have to support a lot of the old metaboxes and custom stuff that wp-admin has,” he explained. <strong>“So it’s a way to safely iterate, while still maintaining the old wp-admin side.”</strong></p>\n<p>The upcoming <a href="https://github.com/wp-api" target="_blank">WP REST API</a> for WordPress core, along with ongoing <a href="https://wordpress.org/plugins/press-this/" target="_blank">experiments with the Press This feature</a>, will open up many more opportunities for developers to publish to WordPress without using the traditional admin at all. The folks at WordPress.com are experimenting with their own REST API and Stephanis said he is “eager to see the external APIs converge, as there’s a lot that both current implementations can gain from the other.”</p>\n<p>Centralized publishing isn’t the first WordPress.com REST API experiment. The <a href="http://wptavern.com/automattic-introduces-postbot-app-for-scheduling-photo-posts" target="_blank">Postbot app</a> introduced users to the possibility of publishing images without the admin. The WordPress.com API team also created <a href="https://developer.wordpress.com/2014/05/20/meet-sulfur/" target="_blank">Sulfer</a>, an open source media manager app built in JavaScript, using the API.</p>\n<p>How long before the “old” WordPress admin is obsolete? “The old wp-admin is never going away, from WordPress.com or self-hosted,” Stephanis said. “But in the world of API driven development, this is a big step forward.</p>\n<p>“By ensuring that our WordPress.com Editor can post comfortably to self-hosted sites and WordPress.com sites, that also ensures that third party clients can operate more confidently and that some of the odd quirks and edge cases have been ironed out already.”</p>\n<p>If you want to see the WordPress.com REST API in action, simply log into your account and post to one of your Jetpack-connected sites. Do you think you’ll use this feature often? Given that it’s only the first version, how do you think it could be improved to better support self-hosted publishers?</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, 03 Nov 2014 20:35:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:46;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:50:"Akismet: Akismet 3.0.3 for WordPress Available Now";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://blog.akismet.com/?p=1738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://blog.akismet.com/2014/11/03/akismet-3-0-3-for-wordpress-available-now/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1414:"<p>Version 3.0.3 of <a href="http://wordpress.org/plugins/akismet/">the Akismet plugin for WordPress</a> is now available.</p>\n<p>This update fixes a bug that could have prevented old spam comments from being deleted, and it gives you more control over how Akismet deletes old spam comments: the maximum age and number per batch are both <a href="https://plugins.trac.wordpress.org/browser/akismet/trunk/class.akismet.php?rev=1003398#L259">filterable</a>. You can also <a href="https://plugins.trac.wordpress.org/browser/akismet/trunk/class.akismet.php?rev=987350#L932">disable Akismet’s debug logging</a> even if you have <code>WP_DEBUG</code> enabled. Lastly, we’ve removed the “Check for Spam” button from the Spam folder; that just seemed reasonable.</p>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href="http://wordpress.org/plugins/akismet/">the WordPress plugins directory</a>.</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1738/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1738/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1738&subd=akismet&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 03 Nov 2014 20:00: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:17:"Christopher Finke";s: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:30:"Akismet: October Stats Roundup";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://blog.akismet.com/?p=1732";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"http://blog.akismet.com/2014/11/03/october-stats-roundup/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3084:"<p>Akismet had another record-breaking month in October. While in <a href="http://blog.akismet.com/2014/10/01/september-stats-roundup/">September</a> we hit and surpassed the 300-million spam messages per day milestone, in October we saw over <strong>400 million spam messages come through per day</strong> on 12 different days.</p>\n<p>Here are the daily stats:</p>\n<p><img class="alignnone size-large wp-image-1733" src="https://akismet.files.wordpress.com/2014/11/akismet-spam-and-ham-stats-october-2014.png?w=700&h=436" alt="akismet-spam-and-ham-stats-october-2014" /></p>\n<p>There was a rise of 44% in the number of spam comments caught from last month, and a 185% rise from last year in October.</p>\n<p>In total, <strong>Akismet caught 11,337,365,500 spam messages this month</strong>, and 207,939,000 ham messages. As usual, the amount of legitimate messages going around is much less than spam – coming in at 1.8% this month.</p>\n<div id="attachment_1734" class="wp-caption alignright"><img class="wp-image-1734 size-medium" src="https://akismet.files.wordpress.com/2014/11/tellurian.jpg?w=300&h=119" alt="Tellurian" width="300" height="119" /><p class="wp-caption-text">This is an image from page 390 of “School funds and school laws of Michigan: with notes and forms” (1859) published by <a href="https://www.flickr.com/photos/internetarchivebookimages/">Internet Archive Book Images</a></p></div>\n<p>To help visualize the numbers, picture a trip from the Earth to the sun. It is 150 million kilometres long on average (that’s approximately 93 million miles). <strong>If each kilometre represents one spam comment, it would take 75 trips to the sun to account for all the spam comments Akismet saw this month</strong>. On the other hand, if each legitimate comment were one kilometre, it would make up only one trip and a third.</p>\n<p>The busiest day for spam for Akismet this month was the 29th, with over 482 million spam comments caught. The slowest day was the 12th (coming in at only 273 million).</p>\n<p>Akismet missed only about 1 in every 11,475 spam comments this month. Your own blog’s spam comments may have followed similar rises and falls, and seen some missed spam comments. Please mark those missed comments as spam so that Akismet can learn from your feedback. If you notice a large number of spam comments coming through uncaught by Akismet, please <a href="http://akismet.com/contact/">contact us</a> and we’ll be glad to help.</p>\n<p><em>This post is part of a monthly series summarizing some stats and figures from the Akismet universe. Feel free to browse <a href="http://blog.akismet.com/category/monthly-roundup/">all of the posts in the series</a>.</em></p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1732/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1732&subd=akismet&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 03 Nov 2014 16:37: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:7:"Valerie";s: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:81:"WPTavern: WordPress for Android 3.3 Released, Features Improvements to the Reader";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=32726";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordpress-for-android-3-3-released-features-improvements-to-the-reader";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2373:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/10/android-app.png" rel="prettyphoto[32726]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/10/android-app.png?resize=296%2C500" alt="android-app" class="alignright size-large wp-image-32829" /></a>WordPress for Android 3.3 was <a href="https://apps.wordpress.org/2014/10/30/wordpress-android-app-version-3-3/" target="_blank">released</a> last week. A majority of the improvements found in this release center around enhancing <a href="http://en.support.wordpress.com/reader/" target="_blank">WordPress.com’s built-in Reader</a>.</p>\n<p>Android users will find a few changes in the app but nothing that would effect the normal publishing workflow:</p>\n<ul>\n<li>The post and the comment views are now split up in the Reader.</li>\n<li>Live support is back in the app – contact Automattic support by going to Settings-> Help and support-> Contact</li>\n</ul>\n<p>Version 3.3 was essentially a janitorial release with fixes for bugs that users found to be annoying. The following items have been patched up:</p>\n<ul>\n<li>Videos are now correctly resized to the screen width in the Reader</li>\n<li>Reader is no longer crashing with very long posts</li>\n<li>Web views on the notification screen are now working when all blogs are hidden</li>\n<li>Users now receive a notification that blank posts cannot be published</li>\n</ul>\n<p>If you don’t utilize WordPress.com features when publishing with the app, then you’re not likely to be impacted by the improvements in 3.3. The <a href="https://github.com/wordpress-mobile/WordPress-Android/milestones/3.4" target="_blank">3.4 milestone</a>, however, hints at the possibility of improvements to the media/themes grid layout and some important fixes for uploads. The planned enhancements will improve the experience of publishing media through the app.</p>\n<p>The WP for Android app team is always looking for more beta testers. If you want to join the beta testing program, you’ll get access to new features and improvements in progress, and you will have an opportunity to offer feedback on the app’s development. Sign up on the app’s dedicated <a href="https://plus.google.com/communities/108813167297661427043" title="WordPress for Android Google+ community" target="_blank">Google+ community page</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 03 Nov 2014 05:21: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:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:49;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"Matt: Nobel Prize & TSA";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44303";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"http://ma.tt/2014/11/nobel-prize-tsa/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:259:"<p><a href="http://blogs.scientificamerican.com/observations/2014/10/10/nobel-prize-airport-security/">What It’s Like to Carry Your Nobel Prize through Airport Security</a>. <cite>Hat tip: <a href="http://www.devthought.com/">Guillermo Rauch</a>.</cite></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 03 Nov 2014 04:10:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:"Mon, 17 Nov 2014 05:23:06 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"206615";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Mon, 17 Nov 2014 05:15:13 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20141115140811";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(379, '_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1416244988', 'no'),
(380, '_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1416201788', 'no'),
(381, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1416244991', 'no'),
(382, '_transient_feed_b9388c83948825c1edaef0d856b7b109', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"https://wordpress.org/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 17 Nov 2014 05:19:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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: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:32:"15@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:98:"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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:35:"23862@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s: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: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: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:34:"2141@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:54:"Just another contact form plugin. Simple but flexible.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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:35:"29832@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:137:"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Wordfence";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:34:"2316@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:124:"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"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:33:"132@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"arnee";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"WordPress SEO by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"https://wordpress.org/plugins/wordpress-seo/#post-8321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jan 2009 20:34:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"8321@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast's WordPress SEO plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WooCommerce - excelling eCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s: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:35:"29860@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"WooThemes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s: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:35:"18101@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brian Colinger";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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:35:"50539@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:148:"Displays Google Analytics reports and real-time statistics in your 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: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:21:"Disqus Comment System";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"https://wordpress.org/plugins/disqus-comment-system/#post-6808";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 28 Aug 2008 01:22: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:34:"6808@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:113:"The Disqus comment system replaces your WordPress comment system with your comments hosted and powered by Disqus.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Disqus";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"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:33:"753@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:126:"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:30:"Mass Advertising for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wordpress.org/plugins/mass-advertising/#post-69628";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 09 Jul 2014 12:05:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"69628@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:128:"Grow your -enterprise brand- and your business! Simply install, select your -advertising power- and... you are off to the races!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Mass Advertising";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:46:"iThemes Security (formerly Better WP Security)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s: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:35:"21738@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:63:"The easiest, most effective way to secure WordPress in seconds.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Chris Wiegman";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:11:"PlusCaptcha";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/pluscaptcha/#post-60441";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Nov 2013 22:02:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"60441@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"PlusCaptcha - Forget the spam, ugly and complicated captchas! The Easiest Captcha to Setup and Execute, with Auto-Setup Feature! TRUSTED BY +27 THOUSA";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"PlusCaptcha";s: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:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Mon, 17 Nov 2014 05:23:11 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:13:"last-modified";s:29:"Fri, 09 Mar 2007 22:11:30 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20141115140811";}', 'no'),
(383, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1416244991', 'no'),
(384, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1416201791', 'no'),
(385, '_transient_timeout_plugin_slugs', '1416288191', 'no'),
(386, '_transient_plugin_slugs', 'a:8:{i:0;s:30:"advanced-custom-fields/acf.php";i:1;s:29:"acf-repeater/acf-repeater.php";i:2;s:19:"akismet/akismet.php";i:3;s:33:"easy-instagram/easy-instagram.php";i:4;s:9:"hello.php";i:5;s:28:"kint-debugger/Kint.class.php";i:6;s:65:"oauth-twitter-feed-for-developers/twitter-feed-for-developers.php";i:7;s:34:"social-hashtags/social_hashtag.php";}', 'no'),
(387, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1416244991', 'no'),
(388, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/''>WordPress 4.1 Beta 1</a> <span class="rss-date">November 14, 2014</span><div class="rssSummary">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 […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://ma.tt/2014/11/munchery-is-eating-the-restaurant/''>Matt: Munchery is Eating the Restaurant</a></li><li><a class=''rsswidget'' href=''http://ma.tt/2014/11/government-going-open-source/''>Matt: Government Going Open Source</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/wordpress-4-1-beta-1-now-available-for-testing''>WPTavern: WordPress 4.1 Beta 1 Now Available for Testing</a></li></ul></div><div class="rss-widget"><ul><li class=''dashboard-news-plugin''><span>Popular Plugin:</span> <a href=''https://wordpress.org/plugins/woocommerce/'' class=''dashboard-news-plugin-link''>WooCommerce - excelling eCommerce</a> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=woocommerce&_wpnonce=b658652a1e&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''WooCommerce - excelling eCommerce''>Install</a>)</span></li></ul></div>', 'no'),
(392, '_site_transient_timeout_available_translations', '1416218954', 'yes'),
(393, '_site_transient_available_translations', 'a:41:{s:2:"ar";a:8:{s:8:"language";s:2:"ar";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 15:44:04";s:12:"english_name";s:6:"Arabic";s:11:"native_name";s:14:"العربية";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/ar.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:2;s:3:"ara";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:2:"az";a:8:{s:8:"language";s:2:"az";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-01 13:29:39";s:12:"english_name";s:11:"Azerbaijani";s:11:"native_name";s:16:"Azərbaycan dili";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/az.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:2;s:3:"aze";}s:7:"strings";a:1:{s:8:"continue";s:5:"Davam";}}s:5:"bg_BG";a:8:{s:8:"language";s:5:"bg_BG";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-08 11:17:50";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.0/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.0";s:7:"updated";s:19:"2014-09-04 15:47:16";s:12:"english_name";s:7:"Bosnian";s:11:"native_name";s:8:"Bosanski";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/bs_BA.zip";s:3:"iso";a:2:{i:1;s:2:"bs";i:2;s:3:"bos";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:2:"ca";a:8:{s:8:"language";s:2:"ca";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-19 13:59:46";s:12:"english_name";s:7:"Catalan";s:11:"native_name";s:7:"Català";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/ca.zip";s:3:"iso";a:2:{i:1;s:2:"ca";i:2;s:3:"cat";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"cy";a:8:{s:8:"language";s:2:"cy";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 16:43:49";s:12:"english_name";s:5:"Welsh";s:11:"native_name";s:7:"Cymraeg";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/cy.zip";s:3:"iso";a:2:{i:1;s:2:"cy";i:2;s:3:"cym";}s:7:"strings";a:1:{s:8:"continue";s:6:"Parhau";}}s:5:"da_DK";a:8:{s:8:"language";s:5:"da_DK";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-22 11:59:16";s:12:"english_name";s:6:"Danish";s:11:"native_name";s:5:"Dansk";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/da_DK.zip";s:3:"iso";a:2:{i:1;s:2:"da";i:2;s:3:"dan";}s:7:"strings";a:1:{s:8:"continue";s:12:"Fortsæt";}}s:5:"de_DE";a:8:{s:8:"language";s:5:"de_DE";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-26 13:41:46";s:12:"english_name";s:6:"German";s:11:"native_name";s:7:"Deutsch";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/de_DE.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:5:"en_CA";a:8:{s:8:"language";s:5:"en_CA";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 00:31:07";s:12:"english_name";s:16:"English (Canada)";s:11:"native_name";s:16:"English (Canada)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/en_CA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_GB";a:8:{s:8:"language";s:5:"en_GB";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 08:52:52";s:12:"english_name";s:12:"English (UK)";s:11:"native_name";s:12:"English (UK)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/en_GB.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_AU";a:8:{s:8:"language";s:5:"en_AU";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-06 00:56:37";s:12:"english_name";s:19:"English (Australia)";s:11:"native_name";s:19:"English (Australia)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/en_AU.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"es_ES";a:8:{s:8:"language";s:5:"es_ES";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 17:40:25";s:12:"english_name";s:15:"Spanish (Spain)";s:11:"native_name";s:8:"Español";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/es_ES.zip";s:3:"iso";a:1:{i:1;s:2:"es";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_PE";a:8:{s:8:"language";s:5:"es_PE";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 07:49:30";s:12:"english_name";s:14:"Spanish (Peru)";s:11:"native_name";s:17:"Español de Perú";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/es_PE.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s: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.0";s:7:"updated";s:19:"2014-09-05 06:55:23";s:12:"english_name";s:6:"Basque";s:11:"native_name";s:7:"Euskara";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/eu.zip";s:3:"iso";a:2:{i:1;s:2:"eu";i:2;s:3:"eus";}s:7:"strings";a:1:{s:8:"continue";s:8:"Jarraitu";}}s:5:"fa_IR";a:8:{s:8:"language";s:5:"fa_IR";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 15:58:20";s:12:"english_name";s:7:"Persian";s:11:"native_name";s:10:"فارسی";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/fa_IR.zip";s:3:"iso";a:2:{i:1;s:2:"fa";i:2;s:3:"fas";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:2:"fi";a:8:{s:8:"language";s:2:"fi";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-06 08:32:55";s:12:"english_name";s:7:"Finnish";s:11:"native_name";s:5:"Suomi";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/fi.zip";s:3:"iso";a:2:{i:1;s:2:"fi";i:2;s:3:"fin";}s:7:"strings";a:1:{s:8:"continue";s:5:"Jatka";}}s:5:"fr_FR";a:8:{s:8:"language";s:5:"fr_FR";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-04 17:49: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.0/fr_FR.zip";s:3:"iso";a:1:{i:1;s:2:"fr";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:2:"gd";a:8:{s:8:"language";s:2:"gd";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 17:37:43";s:12:"english_name";s:15:"Scottish Gaelic";s:11:"native_name";s:9:"Gàidhlig";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/gd.zip";s:3:"iso";a:3:{i:1;s:2:"gd";i:2;s:3:"gla";i:3;s:3:"gla";}s:7:"strings";a:1:{s:8:"continue";s:15:"Lean air adhart";}}s:5:"gl_ES";a:8:{s:8:"language";s:5:"gl_ES";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 01:18:12";s:12:"english_name";s:8:"Galician";s:11:"native_name";s:6:"Galego";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/gl_ES.zip";s:3:"iso";a:2:{i:1;s:2:"gl";i:2;s:3:"glg";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"he_IL";a:8:{s:8:"language";s:5:"he_IL";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 22:57:38";s:12:"english_name";s:6:"Hebrew";s:11:"native_name";s:16:"עִבְרִית";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/he_IL.zip";s:3:"iso";a:1:{i:1;s:2:"he";}s:7:"strings";a:1:{s:8:"continue";s:12:"להמשיך";}}s:2:"hr";a:8:{s:8:"language";s:2:"hr";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-20 14:09:34";s:12:"english_name";s:8:"Croatian";s:11:"native_name";s:8:"Hrvatski";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/hr.zip";s:3:"iso";a:2:{i:1;s:2:"hr";i:2;s:3:"hrv";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:5:"hu_HU";a:8:{s:8:"language";s:5:"hu_HU";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 19:12:04";s:12:"english_name";s:9:"Hungarian";s:11:"native_name";s:6:"Magyar";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/hu_HU.zip";s:3:"iso";a:2:{i:1;s:2:"hu";i:2;s:3:"hun";}s:7:"strings";a:1:{s:8:"continue";s:7:"Tovább";}}s:5:"id_ID";a:8:{s:8:"language";s:5:"id_ID";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 11:26:19";s:12:"english_name";s:10:"Indonesian";s:11:"native_name";s:16:"Bahasa Indonesia";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/id_ID.zip";s:3:"iso";a:2:{i:1;s:2:"id";i:2;s:3:"ind";}s:7:"strings";a:1:{s:8:"continue";s:9:"Lanjutkan";}}s:5:"it_IT";a:8:{s:8:"language";s:5:"it_IT";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-02 08:24:03";s:12:"english_name";s:7:"Italian";s:11:"native_name";s:8:"Italiano";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/it_IT.zip";s:3:"iso";a:2:{i:1;s:2:"it";i:2;s:3:"ita";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"ja";a:8:{s:8:"language";s:2:"ja";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-21 06:30:27";s:12:"english_name";s:8:"Japanese";s:11:"native_name";s:9:"日本語";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/ja.zip";s:3:"iso";a:1:{i:1;s:2:"ja";}s:7:"strings";a:1:{s:8:"continue";s:9:"続ける";}}s:5:"ko_KR";a:8:{s:8:"language";s:5:"ko_KR";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 07:54:33";s:12:"english_name";s:6:"Korean";s:11:"native_name";s:9:"한국어";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/ko_KR.zip";s:3:"iso";a:2:{i:1;s:2:"ko";i:2;s:3:"kor";}s:7:"strings";a:1:{s:8:"continue";s:6:"계속";}}s:5:"my_MM";a:8:{s:8:"language";s:5:"my_MM";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-06 08:41:35";s:12:"english_name";s:7:"Burmese";s:11:"native_name";s:15:"ဗမာစာ";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/my_MM.zip";s:3:"iso";a:2:{i:1;s:2:"my";i:2;s:3:"mya";}s:7:"strings";a:1:{s:8:"continue";s:54:"ဆက်လက်လုပ်ေဆာင်ပါ။";}}s:5:"nb_NO";a:8:{s:8:"language";s:5:"nb_NO";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 20:51:26";s:12:"english_name";s:19:"Norwegian (Bokmål)";s:11:"native_name";s:13:"Norsk bokmål";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/nb_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nb";i:2;s:3:"nob";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsett";}}s:5:"nl_NL";a:8:{s:8:"language";s:5:"nl_NL";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-17 06:23:19";s:12:"english_name";s:5:"Dutch";s:11:"native_name";s:10:"Nederlands";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/nl_NL.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"pl_PL";a:8:{s:8:"language";s:5:"pl_PL";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-03 17:44:34";s:12:"english_name";s:6:"Polish";s:11:"native_name";s:6:"Polski";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/pl_PL.zip";s:3:"iso";a:2:{i:1;s:2:"pl";i:2;s:3:"pol";}s:7:"strings";a:1:{s:8:"continue";s:9:"Kontynuuj";}}s:5:"pt_PT";a:8:{s:8:"language";s:5:"pt_PT";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-29 15:27:01";s:12:"english_name";s:21:"Portuguese (Portugal)";s:11:"native_name";s:10:"Português";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/pt_PT.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_BR";a:8:{s:8:"language";s:5:"pt_BR";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-30 13:29:44";s:12:"english_name";s:19:"Portuguese (Brazil)";s:11:"native_name";s:20:"Português do Brasil";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/pt_BR.zip";s:3:"iso";a:2:{i:1;s:2:"pt";i:2;s:3:"por";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"ru_RU";a:8:{s:8:"language";s:5:"ru_RU";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-21 12:32:07";s:12:"english_name";s:7:"Russian";s:11:"native_name";s:14:"Русский";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/ru_RU.zip";s:3:"iso";a:2:{i:1;s:2:"ru";i:2;s:3:"rus";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продолжить";}}s:5:"sk_SK";a:8:{s:8:"language";s:5:"sk_SK";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-20 13:05:09";s:12:"english_name";s:6:"Slovak";s:11:"native_name";s:11:"Slovenčina";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/sk_SK.zip";s:3:"iso";a:2:{i:1;s:2:"sk";i:2;s:3:"slk";}s:7:"strings";a:1:{s:8:"continue";s:12:"Pokračovať";}}s:5:"sr_RS";a:8:{s:8:"language";s:5:"sr_RS";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-04 15:37:38";s:12:"english_name";s:7:"Serbian";s:11:"native_name";s:23:"Српски језик";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/sr_RS.zip";s:3:"iso";a:2:{i:1;s:2:"sr";i:2;s:3:"srp";}s:7:"strings";a:1:{s:8:"continue";s:14:"Настави";}}s:5:"sv_SE";a:8:{s:8:"language";s:5:"sv_SE";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-11 20:39:56";s:12:"english_name";s:7:"Swedish";s:11:"native_name";s:7:"Svenska";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/sv_SE.zip";s:3:"iso";a:2:{i:1;s:2:"sv";i:2;s:3:"swe";}s:7:"strings";a:1:{s:8:"continue";s:9:"Fortsätt";}}s:2:"th";a:8:{s:8:"language";s:2:"th";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-10-09 03:43:17";s:12:"english_name";s:4:"Thai";s:11:"native_name";s:9:"ไทย";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.0/th.zip";s:3:"iso";a:2:{i:1;s:2:"th";i:2;s:3:"tha";}s:7:"strings";a:1:{s:8:"continue";s:15:"ต่อไป";}}s:5:"tr_TR";a:8:{s:8:"language";s:5:"tr_TR";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 17:57:59";s:12:"english_name";s:7:"Turkish";s:11:"native_name";s:8:"Türkçe";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/tr_TR.zip";s:3:"iso";a:2:{i:1;s:2:"tr";i:2;s:3:"tur";}s:7:"strings";a:1:{s:8:"continue";s:5:"Devam";}}s:5:"zh_CN";a:8:{s:8:"language";s:5:"zh_CN";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 00:41:46";s:12:"english_name";s:15:"Chinese (China)";s:11:"native_name";s:12:"简体中文";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/zh_CN.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"继续";}}s:5:"zh_TW";a:8:{s:8:"language";s:5:"zh_TW";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 06:58:31";s:12:"english_name";s:16:"Chinese (Taiwan)";s:11:"native_name";s:12:"繁體中文";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/zh_TW.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"繼續";}}}', 'yes'),
(394, 'rewrite_rules', 'a:74:{s:47:"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:42:"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:17:"category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:44:"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:39:"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:32:"tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:14:"tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:45:"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:40:"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:33:"type/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?post_format=$matches[1]&paged=$matches[2]";s:15:"type/([^/]+)/?$";s:33:"index.php?post_format=$matches[1]";s:12:"robots\\.txt$";s:18:"index.php?robots=1";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:27:"comment-page-([0-9]{1,})/?$";s:39:"index.php?&page_id=95&cpage=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:20:"(.?.+?)(/[0-9]+)?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";s:31:".+?/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:41:".+?/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:61:".+?/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:56:".+?/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:56:".+?/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:26:"(.+?)/([^/]+)/trackback/?$";s:57:"index.php?category_name=$matches[1]&name=$matches[2]&tb=1";s:46:"(.+?)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:69:"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]";s:41:"(.+?)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:69:"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]";s:34:"(.+?)/([^/]+)/page/?([0-9]{1,})/?$";s:70:"index.php?category_name=$matches[1]&name=$matches[2]&paged=$matches[3]";s:41:"(.+?)/([^/]+)/comment-page-([0-9]{1,})/?$";s:70:"index.php?category_name=$matches[1]&name=$matches[2]&cpage=$matches[3]";s:26:"(.+?)/([^/]+)(/[0-9]+)?/?$";s:69:"index.php?category_name=$matches[1]&name=$matches[2]&page=$matches[3]";s:20:".+?/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:30:".+?/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:50:".+?/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:45:".+?/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:45:".+?/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:38:"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:33:"(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:26:"(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:33:"(.+?)/comment-page-([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&cpage=$matches[2]";s:8:"(.+?)/?$";s:35:"index.php?category_name=$matches[1]";}', 'yes'),
(397, '_site_transient_timeout_theme_roots', '1416211629', 'yes'),
(398, '_site_transient_theme_roots', 'a:4:{s:5:"durex";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";s:14:"twentythirteen";s:7:"/themes";s:12:"twentytwelve";s:7:"/themes";}', 'yes');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=533 ;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 4, '_edit_last', '1'),
(3, 4, '_edit_lock', '1416117599:1'),
(4, 5, '_wp_attached_file', '2014/11/inner.jpg'),
(5, 5, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:374;s:4:"file";s:17:"2014/11/inner.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"inner-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:17:"inner-300x175.jpg";s:5:"width";i:300;s:6:"height";i:175;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"inner-640x372.jpg";s:5:"width";i:640;s:6:"height";i:372;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;}}'),
(6, 5, '_wp_attachment_image_alt', 'Picture'),
(10, 7, '_menu_item_type', 'taxonomy'),
(11, 7, '_menu_item_menu_item_parent', '0'),
(12, 7, '_menu_item_object_id', '2'),
(13, 7, '_menu_item_object', 'category'),
(14, 7, '_menu_item_target', ''),
(15, 7, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(16, 7, '_menu_item_xfn', ''),
(17, 7, '_menu_item_url', ''),
(19, 8, '_edit_last', '1'),
(20, 8, '_edit_lock', '1416117487:1'),
(22, 10, '_edit_last', '1'),
(23, 10, '_edit_lock', '1416114548:1'),
(25, 12, '_edit_last', '1'),
(26, 12, '_edit_lock', '1416119424:1'),
(28, 14, '_edit_last', '1'),
(29, 14, '_edit_lock', '1415986389:1'),
(31, 16, '_edit_last', '1'),
(32, 16, '_edit_lock', '1416117657:1'),
(35, 18, '_edit_last', '1'),
(36, 18, '_edit_lock', '1416117634:1'),
(39, 20, '_edit_last', '1'),
(40, 20, '_edit_lock', '1416116039:1'),
(41, 21, '_wp_attached_file', '2014/11/knowledge-1.jpg'),
(42, 21, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:233;s:4:"file";s:23:"2014/11/knowledge-1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"knowledge-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"knowledge-1-300x109.jpg";s:5:"width";i:300;s:6:"height";i:109;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;}}'),
(43, 21, '_wp_attachment_image_alt', 'knowledge'),
(46, 23, '_edit_last', '1'),
(47, 23, 'field_5464d1a6da512', 'a:12:{s:3:"key";s:19:"field_5464d1a6da512";s:5:"label";s:22:"Teaser Appearance Type";s:4:"name";s:22:"teaser_appearance_type";s:4:"type";s:6:"select";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:7:"choices";a:3:{s:8:"featured";s:8:"Featured";s:8:"one_grid";s:6:"1 Grid";s:11:"double_grid";s:6:"2 Grid";}s:13:"default_value";s:0:"";s:10:"allow_null";s:1:"0";s:8:"multiple";s:1:"0";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:2:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'),
(50, 23, 'position', 'normal'),
(51, 23, 'layout', 'no_box'),
(52, 23, 'hide_on_screen', ''),
(53, 23, '_edit_lock', '1415982000:1'),
(55, 20, 'teaser_appearance_type', 'featured'),
(56, 20, '_teaser_appearance_type', 'field_5464d1a6da512'),
(58, 24, 'teaser_appearance_type', 'one_grid: 1 Grid'),
(59, 24, '_teaser_appearance_type', 'field_5464d1a6da512'),
(60, 18, 'teaser_appearance_type', 'double_grid'),
(61, 18, '_teaser_appearance_type', 'field_5464d1a6da512'),
(63, 25, 'teaser_appearance_type', 'one_grid: 1 Grid'),
(64, 25, '_teaser_appearance_type', 'field_5464d1a6da512'),
(65, 16, 'teaser_appearance_type', 'double_grid'),
(66, 16, '_teaser_appearance_type', 'field_5464d1a6da512'),
(68, 26, 'teaser_appearance_type', 'one_grid: 1 Grid'),
(69, 26, '_teaser_appearance_type', 'field_5464d1a6da512'),
(70, 14, 'teaser_appearance_type', 'one_grid'),
(71, 14, '_teaser_appearance_type', 'field_5464d1a6da512'),
(73, 27, 'teaser_appearance_type', 'one_grid: 1 Grid'),
(74, 27, '_teaser_appearance_type', 'field_5464d1a6da512'),
(75, 12, 'teaser_appearance_type', 'one_grid'),
(76, 12, '_teaser_appearance_type', 'field_5464d1a6da512'),
(78, 28, 'teaser_appearance_type', 'one_grid: 1 Grid'),
(79, 28, '_teaser_appearance_type', 'field_5464d1a6da512'),
(80, 10, 'teaser_appearance_type', 'one_grid'),
(81, 10, '_teaser_appearance_type', 'field_5464d1a6da512'),
(83, 29, 'teaser_appearance_type', 'one_grid: 1 Grid'),
(84, 29, '_teaser_appearance_type', 'field_5464d1a6da512'),
(85, 8, 'teaser_appearance_type', 'one_grid'),
(86, 8, '_teaser_appearance_type', 'field_5464d1a6da512'),
(88, 30, 'teaser_appearance_type', 'double_grid: 2 Grid'),
(89, 30, '_teaser_appearance_type', 'field_5464d1a6da512'),
(90, 4, 'teaser_appearance_type', 'double_grid'),
(91, 4, '_teaser_appearance_type', 'field_5464d1a6da512'),
(93, 31, 'teaser_appearance_type', 'double_grid: 2 Grid'),
(94, 31, '_teaser_appearance_type', 'field_5464d1a6da512'),
(96, 32, 'teaser_appearance_type', 'double_grid: 2 Grid'),
(97, 32, '_teaser_appearance_type', 'field_5464d1a6da512'),
(100, 23, 'rule', 'a:5:{s:5:"param";s:9:"post_type";s:8:"operator";s:2:"==";s:5:"value";s:4:"post";s:8:"order_no";i:0;s:8:"group_no";i:0;}'),
(101, 23, 'rule', 'a:5:{s:5:"param";s:13:"post_category";s:8:"operator";s:2:"==";s:5:"value";s:1:"2";s:8:"order_no";i:1;s:8:"group_no";i:0;}'),
(104, 33, 'teaser_appearance_type', 'double_grid'),
(105, 33, '_teaser_appearance_type', 'field_5464d1a6da512'),
(107, 34, 'teaser_appearance_type', 'double_grid'),
(108, 34, '_teaser_appearance_type', 'field_5464d1a6da512'),
(110, 35, 'teaser_appearance_type', 'one_grid'),
(111, 35, '_teaser_appearance_type', 'field_5464d1a6da512'),
(113, 36, 'teaser_appearance_type', 'one_grid'),
(114, 36, '_teaser_appearance_type', 'field_5464d1a6da512'),
(116, 37, 'teaser_appearance_type', 'one_grid'),
(117, 37, '_teaser_appearance_type', 'field_5464d1a6da512'),
(119, 38, 'teaser_appearance_type', 'one_grid'),
(120, 38, '_teaser_appearance_type', 'field_5464d1a6da512'),
(122, 39, 'teaser_appearance_type', 'double_grid'),
(123, 39, '_teaser_appearance_type', 'field_5464d1a6da512'),
(125, 40, 'teaser_appearance_type', 'featured'),
(126, 40, '_teaser_appearance_type', 'field_5464d1a6da512'),
(128, 41, 'teaser_appearance_type', 'one_grid'),
(129, 41, '_teaser_appearance_type', 'field_5464d1a6da512'),
(131, 42, 'teaser_appearance_type', 'one_grid'),
(132, 42, '_teaser_appearance_type', 'field_5464d1a6da512'),
(134, 43, 'teaser_appearance_type', 'one_grid'),
(135, 43, '_teaser_appearance_type', 'field_5464d1a6da512'),
(137, 44, 'teaser_appearance_type', 'one_grid'),
(138, 44, '_teaser_appearance_type', 'field_5464d1a6da512'),
(140, 45, 'teaser_appearance_type', 'double_grid'),
(141, 45, '_teaser_appearance_type', 'field_5464d1a6da512'),
(143, 46, 'teaser_appearance_type', 'double_grid'),
(144, 46, '_teaser_appearance_type', 'field_5464d1a6da512'),
(146, 47, 'teaser_appearance_type', 'double_grid'),
(147, 47, '_teaser_appearance_type', 'field_5464d1a6da512'),
(148, 48, '_edit_last', '1'),
(149, 48, '_edit_lock', '1416010115:1'),
(150, 49, '_edit_last', '1'),
(151, 49, '_edit_lock', '1416107485:1'),
(152, 49, '_wp_page_template', 'default'),
(153, 48, '_wp_trash_meta_status', 'draft'),
(154, 48, '_wp_trash_meta_time', '1416010911'),
(156, 54, 'teaser_appearance_type', 'featured'),
(157, 54, '_teaser_appearance_type', 'field_5464d1a6da512'),
(159, 55, 'teaser_appearance_type', 'featured'),
(160, 55, '_teaser_appearance_type', 'field_5464d1a6da512'),
(162, 56, 'teaser_appearance_type', 'featured'),
(163, 56, '_teaser_appearance_type', 'field_5464d1a6da512'),
(164, 57, '_wp_attached_file', '2014/11/pengetahuan.jpg'),
(165, 57, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:646;s:6:"height";i:645;s:4:"file";s:23:"2014/11/pengetahuan.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"pengetahuan-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"pengetahuan-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"pengetahuan-646x372.jpg";s:5:"width";i:646;s:6:"height";i:372;s:9:"mime-type";s:10:"image/jpeg";}s:25:"twentyfourteen-full-width";a:4:{s:4:"file";s:23:"pengetahuan-646x576.jpg";s:5:"width";i:646;s:6:"height";i:576;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;}}'),
(166, 20, '_thumbnail_id', '57'),
(169, 58, 'teaser_appearance_type', 'featured'),
(170, 58, '_teaser_appearance_type', 'field_5464d1a6da512'),
(172, 59, 'teaser_appearance_type', 'featured'),
(173, 59, '_teaser_appearance_type', 'field_5464d1a6da512'),
(174, 60, '_wp_attached_file', '2014/11/pengetahuan-2.jpg'),
(175, 60, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:350;s:4:"file";s:25:"2014/11/pengetahuan-2.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"pengetahuan-2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"pengetahuan-2-300x175.jpg";s:5:"width";i:300;s:6:"height";i:175;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;}}'),
(179, 8, '_thumbnail_id', '60'),
(181, 61, '_wp_attached_file', '2014/11/knowledge-2.jpg'),
(182, 61, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:320;s:6:"height";i:273;s:4:"file";s:23:"2014/11/knowledge-2.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"knowledge-2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"knowledge-2-300x255.jpg";s:5:"width";i:300;s:6:"height";i:255;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;}}'),
(183, 62, '_wp_attached_file', '2014/11/knowledge-3.jpg'),
(184, 62, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:320;s:6:"height";i:273;s:4:"file";s:23:"2014/11/knowledge-3.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"knowledge-3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"knowledge-3-300x255.jpg";s:5:"width";i:300;s:6:"height";i:255;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;}}'),
(185, 63, '_wp_attached_file', '2014/11/knowledge-4.jpg'),
(186, 63, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:320;s:6:"height";i:273;s:4:"file";s:23:"2014/11/knowledge-4.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"knowledge-4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"knowledge-4-300x255.jpg";s:5:"width";i:300;s:6:"height";i:255;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;}}'),
(187, 4, '_thumbnail_id', '61'),
(189, 18, '_thumbnail_id', '63'),
(191, 16, '_thumbnail_id', '62'),
(193, 12, '_thumbnail_id', '62'),
(195, 64, '_edit_last', '1'),
(196, 64, '_edit_lock', '1416150932:1'),
(197, 64, '_wp_page_template', 'share.php'),
(198, 69, '_edit_last', '1'),
(199, 69, 'field_5468590b64bf2', 'a:8:{s:3:"key";s:19:"field_5468590b64bf2";s:5:"label";s:5:"Intro";s:4:"name";s:0:"";s:4:"type";s:3:"tab";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'),
(200, 69, 'field_5468599264bf3', 'a:14:{s:3:"key";s:19:"field_5468599264bf3";s:5:"label";s:5:"Title";s:4:"name";s:11:"intro_title";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;}'),
(201, 69, 'field_546859a264bf4', 'a:14:{s:3:"key";s:19:"field_546859a264bf4";s:5:"label";s:11:"Description";s:4:"name";s:17:"intro_description";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:2;}'),
(202, 69, 'field_546859b364bf5', 'a:8:{s:3:"key";s:19:"field_546859b364bf5";s:5:"label";s:7:"Twitter";s:4:"name";s:0:"";s:4:"type";s:3:"tab";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:3;}'),
(203, 69, 'field_546859c064bf6', 'a:14:{s:3:"key";s:19:"field_546859c064bf6";s:5:"label";s:5:"Intro";s:4:"name";s:13:"twitter_intro";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;}'),
(204, 69, 'field_546859fb64bf7', 'a:14:{s:3:"key";s:19:"field_546859fb64bf7";s:5:"label";s:9:"Link Text";s:4:"name";s:17:"twitter_link_text";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:5;}'),
(205, 69, 'field_54685a1a64bf8', 'a:14:{s:3:"key";s:19:"field_54685a1a64bf8";s:5:"label";s:11:"Twitter URL";s:4:"name";s:11:"twitter_url";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;}'),
(206, 69, 'field_54685a2864bf9', 'a:8:{s:3:"key";s:19:"field_54685a2864bf9";s:5:"label";s:9:"Instagram";s:4:"name";s:0:"";s:4:"type";s:3:"tab";s:12:"instructions";s:0:"";s:8:"required";s:1:"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:8;}'),
(207, 69, 'field_54685a3564bfa', 'a:14:{s:3:"key";s:19:"field_54685a3564bfa";s:5:"label";s:5:"Intro";s:4:"name";s:15:"instagram_intro";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;}'),
(208, 69, 'field_54685a3e64bfb', 'a:14:{s:3:"key";s:19:"field_54685a3e64bfb";s:5:"label";s:9:"Link Text";s:4:"name";s:19:"instagram_link_text";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:10;}'),
(209, 69, 'field_54685a4964bfc', 'a:14:{s:3:"key";s:19:"field_54685a4964bfc";s:5:"label";s:13:"Instagram URL";s:4:"name";s:13:"instagram_url";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;}'),
(210, 69, 'field_54685a5264bfd', 'a:8:{s:3:"key";s:19:"field_54685a5264bfd";s:5:"label";s:7:"Youtube";s:4:"name";s:0:"";s:4:"type";s:3:"tab";s:12:"instructions";s:0:"";s:8:"required";s:1:"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:13;}'),
(211, 69, 'field_54685a5e64bfe', 'a:14:{s:3:"key";s:19:"field_54685a5e64bfe";s:5:"label";s:5:"Intro";s:4:"name";s:13:"youtube_intro";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;}'),
(212, 69, 'field_54685a6864bff', 'a:14:{s:3:"key";s:19:"field_54685a6864bff";s:5:"label";s:9:"Link Text";s:4:"name";s:17:"youtube_link_text";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:15;}'),
(213, 69, 'field_54685a8a64c00', 'a:14:{s:3:"key";s:19:"field_54685a8a64c00";s:5:"label";s:11:"Youtube URL";s:4:"name";s:11:"youtube_url";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:16;}'),
(215, 69, 'position', 'normal'),
(216, 69, 'layout', 'no_box'),
(217, 69, 'hide_on_screen', ''),
(218, 69, '_edit_lock', '1416150947:1'),
(219, 70, 'intro_title', 'Bagikan'),
(220, 70, '_intro_title', 'field_5468599264bf3'),
(221, 70, 'intro_description', 'Berpartisipasi dalam gerakan sosial Someone Like Me sangat mudah, cukup dengan mengirimkan cerita lewat Twitter dan status update di Facebook'),
(222, 70, '_intro_description', 'field_546859a264bf4'),
(223, 70, 'twitter_intro', 'Ikutan ngobrol di Twitter yuk'),
(224, 70, '_twitter_intro', 'field_546859c064bf6'),
(225, 70, 'twitter_link_text', 'Gabung bareng kami di Twitter'),
(226, 70, '_twitter_link_text', 'field_546859fb64bf7'),
(227, 70, 'twitter_url', 'http://twitter.com/ariniastari'),
(228, 70, '_twitter_url', 'field_54685a1a64bf8'),
(229, 70, 'facebook_intro', ''),
(230, 70, '_facebook_intro', 'field_54685a3564bfa'),
(231, 70, 'facebook_link_text', ''),
(232, 70, '_facebook_link_text', 'field_54685a6864bff'),
(233, 70, 'facebook_url', ''),
(234, 70, '_facebook_url', 'field_54685a8a64c00'),
(235, 70, 'youtube_intro', ''),
(236, 70, '_youtube_intro', 'field_54685a5e64bfe'),
(237, 64, 'intro_title', 'Bagikan'),
(238, 64, '_intro_title', 'field_5468599264bf3'),
(239, 64, 'intro_description', 'Berpartisipasi dalam gerakan sosial Someone Like Me sangat mudah, cukup dengan mengirimkan cerita lewat Twitter dan status update di Facebook'),
(240, 64, '_intro_description', 'field_546859a264bf4'),
(241, 64, 'twitter_intro', 'Ikutan ngobrol di Twitter yuk'),
(242, 64, '_twitter_intro', 'field_546859c064bf6'),
(243, 64, 'twitter_link_text', 'Gabung bareng kami di Twitter'),
(244, 64, '_twitter_link_text', 'field_546859fb64bf7'),
(245, 64, 'twitter_url', 'http://twitter.com/ariniastari'),
(246, 64, '_twitter_url', 'field_54685a1a64bf8'),
(247, 64, 'facebook_intro', ''),
(248, 64, '_facebook_intro', 'field_54685a3564bfa'),
(249, 64, 'facebook_link_text', 'Gabung bareng kami di YouTube'),
(250, 64, '_facebook_link_text', 'field_54685a6864bff'),
(251, 64, 'facebook_url', 'http://youtube.com/ariniastari'),
(252, 64, '_facebook_url', 'field_54685a8a64c00'),
(253, 64, 'youtube_intro', 'Nonton bareng dan tulis pendapatmu di YouTube'),
(254, 64, '_youtube_intro', 'field_54685a5e64bfe'),
(256, 71, 'intro_title', 'Bagikan'),
(257, 71, '_intro_title', 'field_5468599264bf3'),
(258, 71, 'intro_description', 'Berpartisipasi dalam gerakan sosial Someone Like Me sangat mudah, cukup dengan mengirimkan cerita lewat Twitter dan status update di Facebook'),
(259, 71, '_intro_description', 'field_546859a264bf4'),
(260, 71, 'twitter_intro', 'Ikutan ngobrol di Twitter yuk'),
(261, 71, '_twitter_intro', 'field_546859c064bf6'),
(262, 71, 'twitter_link_text', 'Gabung bareng kami di Twitter'),
(263, 71, '_twitter_link_text', 'field_546859fb64bf7'),
(264, 71, 'twitter_url', 'http://twitter.com/ariniastari'),
(265, 71, '_twitter_url', 'field_54685a1a64bf8'),
(266, 71, 'instagram_intro', 'Tunjukin aspirasi kamu lewat Instagram'),
(267, 71, '_instagram_intro', 'field_54685a3564bfa'),
(268, 71, 'instagram_link_text', 'Gabung bareng kami di Instagram'),
(269, 71, '_instagram_link_text', 'field_54685a3e64bfb'),
(270, 71, 'instagram_url', 'http://instagram.com/ariniastari'),
(271, 71, '_instagram_url', 'field_54685a4964bfc'),
(272, 71, 'youtube_intro', 'Nonton bareng dan tulis pendapatmu di YouTube'),
(273, 71, '_youtube_intro', 'field_54685a5e64bfe'),
(274, 71, 'facebook_link_text', 'Gabung bareng kami di YouTube'),
(275, 71, '_facebook_link_text', 'field_54685a6864bff'),
(276, 71, 'facebook_url', 'http://youtube.com/ariniastari'),
(277, 71, '_facebook_url', 'field_54685a8a64c00'),
(278, 64, 'instagram_intro', 'Tunjukin aspirasi kamu lewat Instagram'),
(279, 64, '_instagram_intro', 'field_54685a3564bfa'),
(280, 64, 'instagram_link_text', 'Gabung bareng kami di Instagram'),
(281, 64, '_instagram_link_text', 'field_54685a3e64bfb'),
(282, 64, 'instagram_url', 'http://instagram.com/ariniastari'),
(283, 64, '_instagram_url', 'field_54685a4964bfc'),
(285, 72, 'intro_title', 'Bagikan'),
(286, 72, '_intro_title', 'field_5468599264bf3'),
(287, 72, 'intro_description', 'Berpartisipasi dalam gerakan sosial Someone Like Me sangat mudah, cukup dengan mengirimkan cerita lewat Twitter dan status update di Facebook'),
(288, 72, '_intro_description', 'field_546859a264bf4'),
(289, 72, 'twitter_intro', 'Ikutan ngobrol di Twitter yuk'),
(290, 72, '_twitter_intro', 'field_546859c064bf6'),
(291, 72, 'twitter_link_text', 'Gabung bareng kami di Twitter'),
(292, 72, '_twitter_link_text', 'field_546859fb64bf7'),
(293, 72, 'twitter_url', 'http://twitter.com/ariniastari'),
(294, 72, '_twitter_url', 'field_54685a1a64bf8'),
(295, 72, 'instagram_intro', 'Tunjukin aspirasi kamu lewat Instagram'),
(296, 72, '_instagram_intro', 'field_54685a3564bfa'),
(297, 72, 'instagram_link_text', 'Gabung bareng kami di Instagram'),
(298, 72, '_instagram_link_text', 'field_54685a3e64bfb'),
(299, 72, 'instagram_url', 'http://instagram.com/ariniastari'),
(300, 72, '_instagram_url', 'field_54685a4964bfc'),
(301, 72, 'youtube_intro', 'Nonton bareng dan tulis pendapatmu di YouTube'),
(302, 72, '_youtube_intro', 'field_54685a5e64bfe'),
(303, 72, 'youtube_link_text', 'Gabung bareng kami di YouTube'),
(304, 72, '_youtube_link_text', 'field_54685a6864bff'),
(305, 72, 'youtube_url', 'http://youtube.com/ariniastari'),
(306, 72, '_youtube_url', 'field_54685a8a64c00'),
(307, 64, 'youtube_link_text', 'Gabung bareng kami di YouTube'),
(308, 64, '_youtube_link_text', 'field_54685a6864bff'),
(309, 64, 'youtube_url', 'http://youtube.com/ariniastari'),
(310, 64, '_youtube_url', 'field_54685a8a64c00'),
(311, 69, 'field_5468690004d7c', 'a:14:{s:3:"key";s:19:"field_5468690004d7c";s:5:"label";s:8:"username";s:4:"name";s:16:"youtube_username";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:17;}'),
(312, 69, 'field_5468691004d7d', 'a:14:{s:3:"key";s:19:"field_5468691004d7d";s:5:"label";s:8:"Username";s:4:"name";s:16:"twitter_username";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:6;}'),
(313, 69, 'field_5468691a04d7e', 'a:14:{s:3:"key";s:19:"field_5468691a04d7e";s:5:"label";s:8:"Username";s:4:"name";s:18:"instagram_username";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:11;}'),
(316, 73, 'intro_title', 'Bagikan'),
(317, 73, '_intro_title', 'field_5468599264bf3'),
(318, 73, 'intro_description', 'Berpartisipasi dalam gerakan sosial Someone Like Me sangat mudah, cukup dengan mengirimkan cerita lewat Twitter dan status update di Facebook'),
(319, 73, '_intro_description', 'field_546859a264bf4'),
(320, 73, 'twitter_intro', 'Ikutan ngobrol di Twitter yuk'),
(321, 73, '_twitter_intro', 'field_546859c064bf6'),
(322, 73, 'twitter_link_text', 'Gabung bareng kami di Twitter'),
(323, 73, '_twitter_link_text', 'field_546859fb64bf7'),
(324, 73, 'twitter_username', '@someonelikeme'),
(325, 73, '_twitter_username', 'field_5468691004d7d'),
(326, 73, 'twitter_url', 'http://twitter.com/ariniastari'),
(327, 73, '_twitter_url', 'field_54685a1a64bf8'),
(328, 73, 'instagram_intro', 'Tunjukin aspirasi kamu lewat Instagram'),
(329, 73, '_instagram_intro', 'field_54685a3564bfa'),
(330, 73, 'instagram_link_text', 'Gabung bareng kami di Instagram'),
(331, 73, '_instagram_link_text', 'field_54685a3e64bfb'),
(332, 73, 'instagram_username', '@someonelikeme'),
(333, 73, '_instagram_username', 'field_5468691a04d7e'),
(334, 73, 'instagram_url', 'http://instagram.com/ariniastari'),
(335, 73, '_instagram_url', 'field_54685a4964bfc'),
(336, 73, 'youtube_intro', 'Nonton bareng dan tulis pendapatmu di YouTube'),
(337, 73, '_youtube_intro', 'field_54685a5e64bfe'),
(338, 73, 'youtube_link_text', 'Gabung bareng kami di YouTube'),
(339, 73, '_youtube_link_text', 'field_54685a6864bff'),
(340, 73, 'youtube_url', 'http://youtube.com/ariniastari'),
(341, 73, '_youtube_url', 'field_54685a8a64c00'),
(342, 73, 'youtube_username', 'someonelikeme'),
(343, 73, '_youtube_username', 'field_5468690004d7c'),
(344, 64, 'twitter_username', '@someonelikeme'),
(345, 64, '_twitter_username', 'field_5468691004d7d'),
(346, 64, 'instagram_username', '@someonelikeme'),
(347, 64, '_instagram_username', 'field_5468691a04d7e'),
(348, 64, 'youtube_username', 'someonelikeme'),
(349, 64, '_youtube_username', 'field_5468690004d7c'),
(350, 74, '_edit_last', '1'),
(351, 74, 'field_54686b8abc6cd', 'a:8:{s:3:"key";s:19:"field_54686b8abc6cd";s:5:"label";s:6:"Blok 1";s:4:"name";s:0:"";s:4:"type";s:3:"tab";s:12:"instructions";s:0:"";s:8:"required";s:1:"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;}'),
(352, 74, 'field_54686ba4bc6ce', 'a:14:{s:3:"key";s:19:"field_54686ba4bc6ce";s:5:"label";s:6:"Header";s:4:"name";s:13:"blok_1_header";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:2;}'),
(353, 74, 'field_54686bbbbc6cf', 'a:11:{s:3:"key";s:19:"field_54686bbbbc6cf";s:5:"label";s:5:"Intro";s:4:"name";s:12:"blok_1_intro";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:3;}'),
(354, 74, 'field_54686bd2bc6d0', 'a:8:{s:3:"key";s:19:"field_54686bd2bc6d0";s:5:"label";s:6:"Blok 2";s:4:"name";s:0:"";s:4:"type";s:3:"tab";s:12:"instructions";s:0:"";s:8:"required";s:1:"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;}'),
(355, 74, 'field_54686bddbc6d1', 'a:14:{s:3:"key";s:19:"field_54686bddbc6d1";s:5:"label";s:6:"Header";s:4:"name";s:13:"blok_2_header";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:5;}'),
(356, 74, 'field_54686be7bc6d2', 'a:11:{s:3:"key";s:19:"field_54686be7bc6d2";s:5:"label";s:5:"Intro";s:4:"name";s:12:"blok_2_intro";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:6;}'),
(357, 74, 'field_54686bf5bc6d3', 'a:8:{s:3:"key";s:19:"field_54686bf5bc6d3";s:5:"label";s:6:"Blok 3";s:4:"name";s:0:"";s:4:"type";s:3:"tab";s:12:"instructions";s:0:"";s:8:"required";s:1:"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;}'),
(358, 74, 'field_54686bffbc6d4', 'a:14:{s:3:"key";s:19:"field_54686bffbc6d4";s:5:"label";s:6:"Header";s:4:"name";s:13:"blok_3_header";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:8;}'),
(359, 74, 'field_54686c08bc6d5', 'a:11:{s:3:"key";s:19:"field_54686c08bc6d5";s:5:"label";s:5:"Intro";s:4:"name";s:12:"blok_3_intro";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:9;}'),
(361, 74, 'position', 'normal'),
(362, 74, 'layout', 'no_box'),
(363, 74, 'hide_on_screen', ''),
(364, 74, '_edit_lock', '1416150970:1'),
(365, 76, '_edit_last', '1'),
(366, 76, '_edit_lock', '1416201681:1'),
(367, 76, '_oembed_64b4e9fe91db1cc3f41e26c91b6a8f64', '<iframe width="474" height="356" src="http://www.youtube.com/embed/J---aiyznGQ?feature=oembed" frameborder="0" allowfullscreen></iframe>'),
(368, 76, '_oembed_time_64b4e9fe91db1cc3f41e26c91b6a8f64', '1416130560'),
(369, 77, '_wp_attached_file', '2014/11/thumb-youtube.jpg'),
(370, 77, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:320;s:6:"height";i:273;s:4:"file";s:25:"2014/11/thumb-youtube.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"thumb-youtube-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"thumb-youtube-300x255.jpg";s:5:"width";i:300;s:6:"height";i:255;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;}}'),
(371, 76, '_thumbnail_id', '77'),
(373, 79, '_edit_last', '1'),
(374, 79, '_edit_lock', '1416201670:1'),
(375, 79, '_oembed_5bf4414793907d9df627375be30cf76b', '<iframe width="474" height="267" src="http://www.youtube.com/embed/56Sx2I1SRfA?feature=oembed" frameborder="0" allowfullscreen></iframe>'),
(376, 79, '_oembed_time_5bf4414793907d9df627375be30cf76b', '1416130946'),
(377, 79, '_thumbnail_id', '77'),
(380, 83, '_edit_last', '1'),
(381, 83, '_edit_lock', '1416201656:1'),
(382, 83, '_oembed_01103b811be849e1cccc0237a3b018c4', '<iframe width="474" height="356" src="http://www.youtube.com/embed/QH2-TGUlwu4?feature=oembed" frameborder="0" allowfullscreen></iframe>'),
(383, 83, '_oembed_time_01103b811be849e1cccc0237a3b018c4', '1416131341'),
(384, 83, '_thumbnail_id', '77'),
(386, 85, '_edit_last', '1'),
(387, 85, '_edit_lock', '1416131391:1'),
(389, 87, '_edit_last', '1'),
(390, 87, '_edit_lock', '1416156879:1'),
(392, 89, '_edit_last', '1'),
(393, 89, '_edit_lock', '1416156857:1'),
(395, 91, '_edit_last', '1'),
(396, 91, '_edit_lock', '1416132107:1'),
(397, 91, '_wp_page_template', 'menurut-kamu.php'),
(398, 69, 'field_5468bff69b558', 'a:14:{s:3:"key";s:19:"field_5468bff69b558";s:5:"label";s:13:"Youtube Video";s:4:"name";s:13:"youtube_video";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:2:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:18;}'),
(399, 69, 'field_5468c0089b559', 'a:14:{s:3:"key";s:19:"field_5468c0089b559";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:2:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:19;}'),
(400, 69, 'rule', 'a:5:{s:5:"param";s:13:"page_template";s:8:"operator";s:2:"==";s:5:"value";s:9:"share.php";s:8:"order_no";i:0;s:8:"group_no";i:0;}'),
(401, 74, 'field_5468c039a530b', 'a:14:{s:3:"key";s:19:"field_5468c039a530b";s:5:"label";s:13:"Youtube Video";s:4:"name";s:13:"youtube_video";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:2:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'),
(402, 74, 'rule', 'a:5:{s:5:"param";s:13:"page_template";s:8:"operator";s:2:"==";s:5:"value";s:8:"visi.php";s:8:"order_no";i:0;s:8:"group_no";i:0;}'),
(403, 93, '_edit_last', '1'),
(404, 93, '_edit_lock', '1416151074:1'),
(405, 93, '_wp_page_template', 'visi.php'),
(406, 94, 'youtube_video', 'http://www.youtube.com/embed/2y8APzvLFH4'),
(407, 94, '_youtube_video', 'field_5468c039a530b'),
(408, 94, 'blok_1_header', 'Pendidikan sex tidak harus membosankan'),
(409, 94, '_blok_1_header', 'field_54686ba4bc6ce'),
(410, 94, 'blok_1_intro', 'Semua yang ada di sini adalah aspirasai dari orang-orang seperti kamu. Mari bergabung, bercerita, dan belajar bersama. Kita dobrak mitos yang menganggap seks sebagai sesuatu yang tabu untuk dibicarakan. Dari sini kita bisa mengerti, dari sini kita bisa beraksi.'),
(411, 94, '_blok_1_intro', 'field_54686bbbbc6cf'),
(412, 94, 'blok_2_header', 'Terbuka, menginspirasi, jujur dan menyenangkan'),
(413, 94, '_blok_2_header', 'field_54686bddbc6d1'),
(414, 94, 'blok_2_intro', 'Jangan malu, jangan sungkan, jangan takut. Di sini kita satu, tidak ada yang lebih baik, tidak ada yang menghakimi. Lewat cerita kita belajar untuk melihat dunia dari perspektif yang berbeda, dan memahami pendidikan seks untuk menciptakan masa depan yang lebih sehat dan menyenangkan.'),
(415, 94, '_blok_2_intro', 'field_54686be7bc6d2'),
(416, 94, 'blok_3_header', 'Buat gebrakan baru. Mari menginspirasi sebuah aksi'),
(417, 94, '_blok_3_header', 'field_54686bffbc6d4'),
(418, 94, 'blok_3_intro', 'Perubahan dimulai dari keberanian dan keterbukaan untuk berbicara! Mari ciptakan budaya diskusi sehat yang memiliki kekuatan untuk menghancurkan dinding pembatas dan membangun pemahaman baru mengenai pendidikan seks. Mari menginspirasi lewat aksi untuk menciptakan dunia bebas HIV/AIDS.'),
(419, 94, '_blok_3_intro', 'field_54686c08bc6d5'),
(420, 93, 'youtube_video', 'http://www.youtube.com/embed/2y8APzvLFH4'),
(421, 93, '_youtube_video', 'field_5468c039a530b'),
(422, 93, 'blok_1_header', 'Pendidikan sex tidak harus membosankan'),
(423, 93, '_blok_1_header', 'field_54686ba4bc6ce'),
(424, 93, 'blok_1_intro', 'Semua yang ada di sini adalah aspirasai dari orang-orang seperti kamu. Mari bergabung, bercerita, dan belajar bersama. Kita dobrak mitos yang menganggap seks sebagai sesuatu yang tabu untuk dibicarakan. Dari sini kita bisa mengerti, dari sini kita bisa beraksi.'),
(425, 93, '_blok_1_intro', 'field_54686bbbbc6cf'),
(426, 93, 'blok_2_header', 'Terbuka, menginspirasi, jujur dan menyenangkan'),
(427, 93, '_blok_2_header', 'field_54686bddbc6d1'),
(428, 93, 'blok_2_intro', 'Jangan malu, jangan sungkan, jangan takut. Di sini kita satu, tidak ada yang lebih baik, tidak ada yang menghakimi. Lewat cerita kita belajar untuk melihat dunia dari perspektif yang berbeda, dan memahami pendidikan seks untuk menciptakan masa depan yang lebih sehat dan menyenangkan.'),
(429, 93, '_blok_2_intro', 'field_54686be7bc6d2'),
(430, 93, 'blok_3_header', 'Buat gebrakan baru. Mari menginspirasi sebuah aksi'),
(431, 93, '_blok_3_header', 'field_54686bffbc6d4'),
(432, 93, 'blok_3_intro', 'Perubahan dimulai dari keberanian dan keterbukaan untuk berbicara! Mari ciptakan budaya diskusi sehat yang memiliki kekuatan untuk menghancurkan dinding pembatas dan membangun pemahaman baru mengenai pendidikan seks. Mari menginspirasi lewat aksi untuk menciptakan dunia bebas HIV/AIDS.'),
(433, 93, '_blok_3_intro', 'field_54686c08bc6d5'),
(434, 95, '_edit_last', '1'),
(435, 95, '_edit_lock', '1416152726:1'),
(436, 95, '_wp_page_template', 'durex.php'),
(437, 97, '_edit_last', '1'),
(438, 97, 'field_5468c3313ff35', 'a:14:{s:3:"key";s:19:"field_5468c3313ff35";s:5:"label";s:22:"Intro for Ayo Terlibat";s:4:"name";s:22:"intro_for_ayo_terlibat";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:7:"prepend";s:0:"";s:6:"append";s:0:"";s:10:"formatting";s:4:"html";s:9:"maxlength";s:0:"";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'),
(439, 97, 'field_5468c35d3ff36', 'a:14:{s:3:"key";s:19:"field_5468c35d3ff36";s:5:"label";s:20:"Campaign Description";s:4:"name";s:20:"campaign_description";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;}'),
(441, 97, 'position', 'normal'),
(442, 97, 'layout', 'no_box'),
(443, 97, 'hide_on_screen', ''),
(444, 97, '_edit_lock', '1416154432:1'),
(445, 99, 'intro_for_ayo_terlibat', 'Yuk ikut berpartisipasi dengan jutaan anak muda di seluruh dunia untuk menciptakan masa depan tanpa HIV/Aids dengan cara berbagi cerita di akun sosial media kamu dengan menggunakan tagar #someonelikeme dan #HariAIDS'),
(446, 99, '_intro_for_ayo_terlibat', 'field_5468c3313ff35'),
(447, 99, 'campaign_description', 'Someone Like Me adalah wadah apirasi kaum muda untuk lebih terbuka berdiskusi tentang kesehatan seksual dalam rangka memerangi HIV/AIDS. Gerakan sosial ini diprakarsai oleh Durex dan bekerjasama dengan MTV Staying Alive Foundation.'),
(448, 99, '_campaign_description', 'field_5468c35d3ff36'),
(449, 95, 'intro_for_ayo_terlibat', 'Yuk ikut berpartisipasi dengan jutaan anak muda di seluruh dunia untuk menciptakan masa depan tanpa HIV/Aids dengan cara berbagi cerita di akun sosial media kamu dengan menggunakan tagar #someonelikeme dan #HariAIDS'),
(450, 95, '_intro_for_ayo_terlibat', 'field_5468c3313ff35'),
(451, 95, 'campaign_description', 'Someone Like Me adalah wadah apirasi kaum muda untuk lebih terbuka berdiskusi tentang kesehatan seksual dalam rangka memerangi HIV/AIDS. Gerakan sosial ini diprakarsai oleh Durex dan bekerjasama dengan MTV Staying Alive Foundation.'),
(452, 95, '_campaign_description', 'field_5468c35d3ff36'),
(453, 97, 'field_5468c6acc48c8', 'a:8:{s:3:"key";s:19:"field_5468c6acc48c8";s:5:"label";s:7:"Youtube";s:4:"name";s:0:"";s:4:"type";s:3:"tab";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:2:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:2;}'),
(454, 97, 'field_5468c6c8c48c9', 'a:14:{s:3:"key";s:19:"field_5468c6c8c48c9";s:5:"label";s:9:"Video URL";s:4:"name";s:14:"home_video_url";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:2:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:3;}'),
(455, 97, 'field_5468c6d9c48ca', 'a:11:{s:3:"key";s:19:"field_5468c6d9c48ca";s:5:"label";s:13:"Display Image";s:4:"name";s:13:"display_image";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:11:"save_format";s:3:"url";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:2:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:4;}'),
(456, 97, 'rule', 'a:5:{s:5:"param";s:13:"page_template";s:8:"operator";s:2:"==";s:5:"value";s:9:"durex.php";s:8:"order_no";i:0;s:8:"group_no";i:0;}'),
(457, 100, '_wp_attached_file', '2014/11/thumb-youtube.jpg'),
(458, 100, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:320;s:6:"height";i:273;s:4:"file";s:25:"2014/11/thumb-youtube.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"thumb-youtube-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"thumb-youtube-300x255.jpg";s:5:"width";i:300;s:6:"height";i:255;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;}}'),
(459, 101, 'intro_for_ayo_terlibat', 'Yuk ikut berpartisipasi dengan jutaan anak muda di seluruh dunia untuk menciptakan masa depan tanpa HIV/Aids dengan cara berbagi cerita di akun sosial media kamu dengan menggunakan tagar #someonelikeme dan #HariAIDS'),
(460, 101, '_intro_for_ayo_terlibat', 'field_5468c3313ff35'),
(461, 101, 'campaign_description', 'Someone Like Me adalah wadah apirasi kaum muda untuk lebih terbuka berdiskusi tentang kesehatan seksual dalam rangka memerangi HIV/AIDS. Gerakan sosial ini diprakarsai oleh Durex dan bekerjasama dengan MTV Staying Alive Foundation.'),
(462, 101, '_campaign_description', 'field_5468c35d3ff36'),
(463, 101, 'home_video_url', 'http://www.youtube.com/embed/2y8APzvLFH4?autoplay=1'),
(464, 101, '_home_video_url', 'field_5468c6c8c48c9'),
(465, 101, 'display_image', '100'),
(466, 101, '_display_image', 'field_5468c6d9c48ca'),
(467, 95, 'home_video_url', 'http://www.youtube.com/embed/2y8APzvLFH4?autoplay=1'),
(468, 95, '_home_video_url', 'field_5468c6c8c48c9'),
(469, 95, 'display_image', '100'),
(470, 95, '_display_image', 'field_5468c6d9c48ca'),
(473, 104, '_edit_last', '1'),
(474, 104, '_edit_lock', '1416191928:1'),
(475, 104, '_wp_page_template', 'menurut-kamu.php'),
(479, 109, '_menu_item_type', 'post_type'),
(480, 109, '_menu_item_menu_item_parent', '0'),
(481, 109, '_menu_item_object_id', '95'),
(482, 109, '_menu_item_object', 'page'),
(483, 109, '_menu_item_target', ''),
(484, 109, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(485, 109, '_menu_item_xfn', ''),
(486, 109, '_menu_item_url', ''),
(488, 110, '_menu_item_type', 'post_type'),
(489, 110, '_menu_item_menu_item_parent', '0'),
(490, 110, '_menu_item_object_id', '104'),
(491, 110, '_menu_item_object', 'page'),
(492, 110, '_menu_item_target', ''),
(493, 110, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(494, 110, '_menu_item_xfn', ''),
(495, 110, '_menu_item_url', ''),
(497, 111, '_menu_item_type', 'post_type'),
(498, 111, '_menu_item_menu_item_parent', '0'),
(499, 111, '_menu_item_object_id', '93'),
(500, 111, '_menu_item_object', 'page'),
(501, 111, '_menu_item_target', ''),
(502, 111, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(503, 111, '_menu_item_xfn', ''),
(504, 111, '_menu_item_url', ''),
(506, 112, '_menu_item_type', 'custom'),
(507, 112, '_menu_item_menu_item_parent', '0'),
(508, 112, '_menu_item_object_id', '112'),
(509, 112, '_menu_item_object', 'custom'),
(510, 112, '_menu_item_target', ''),
(511, 112, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(512, 112, '_menu_item_xfn', ''),
(513, 112, '_menu_item_url', 'http://google.com'),
(515, 113, '_menu_item_type', 'post_type'),
(516, 113, '_menu_item_menu_item_parent', '0'),
(517, 113, '_menu_item_object_id', '49'),
(518, 113, '_menu_item_object', 'page'),
(519, 113, '_menu_item_target', ''),
(520, 113, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(521, 113, '_menu_item_xfn', ''),
(522, 113, '_menu_item_url', ''),
(524, 114, '_menu_item_type', 'custom'),
(525, 114, '_menu_item_menu_item_parent', '0'),
(526, 114, '_menu_item_object_id', '114'),
(527, 114, '_menu_item_object', 'custom'),
(528, 114, '_menu_item_target', ''),
(529, 114, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(530, 114, '_menu_item_xfn', ''),
(531, 114, '_menu_item_url', 'http://google.com');
-- --------------------------------------------------------
--
-- Table structure for table `wp_posts`
--
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=115 ;
--
-- Dumping data for table `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2014-11-13 15:00:15', '2014-11-13 15:00:15', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2014-11-13 15:00:15', '2014-11-13 15:00:15', '', 0, 'http://localhost:8888/?p=1', 0, 'post', '', 1),
(2, 1, '2014-11-13 15:00:15', '2014-11-13 15:00:15', 'This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin'' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href="http://localhost:8888/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'publish', 'open', 'open', '', 'sample-page', '', '', '2014-11-13 15:00:15', '2014-11-13 15:00:15', '', 0, 'http://localhost:8888/?page_id=2', 0, 'page', '', 0),
(3, 1, '2014-11-13 15:00:53', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-11-13 15:00:53', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/?p=3', 0, 'post', '', 0),
(4, 1, '2014-11-13 15:18:05', '2014-11-13 15:18:05', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare to bare', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n', 'publish', 'open', 'open', '', 'dare-to-bare', '', '', '2014-11-16 06:02:21', '2014-11-16 06:02:21', '', 0, 'http://localhost:8888/?p=4', 0, 'post', '', 0),
(5, 1, '2014-11-13 15:17:45', '2014-11-13 15:17:45', 'Picture', 'Picture', 'Picture', 'inherit', 'open', 'open', '', 'inner', '', '', '2014-11-13 15:18:00', '2014-11-13 15:18:00', '', 4, 'http://localhost:8888/wp-content/uploads/2014/11/inner.jpg', 0, 'attachment', 'image/jpeg', 0),
(6, 1, '2014-11-13 15:18:05', '2014-11-13 15:18:05', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare to bare', '', 'inherit', 'open', 'open', '', '4-revision-v1', '', '', '2014-11-13 15:18:05', '2014-11-13 15:18:05', '', 4, 'http://localhost:8888/?p=6', 0, 'revision', '', 0),
(7, 1, '2014-11-13 15:22:10', '2014-11-13 15:22:10', 'Pengetahuan', '', '', 'publish', 'open', 'open', '', '7', '', '', '2014-11-17 05:39:35', '2014-11-17 05:39:35', '', 0, 'http://localhost:8888/?p=7', 3, 'nav_menu_item', '', 0),
(8, 1, '2014-11-13 15:23:52', '2014-11-13 15:23:52', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'HIV - What you need to know', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.', 'publish', 'open', 'open', '', 'hiv-what-you-need-to-know', '', '', '2014-11-16 06:00:29', '2014-11-16 06:00:29', '', 0, 'http://localhost:8888/?p=8', 0, 'post', '', 0),
(9, 1, '2014-11-13 15:23:52', '2014-11-13 15:23:52', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'HIV - What you need to know', '', 'inherit', 'open', 'open', '', '8-revision-v1', '', '', '2014-11-13 15:23:52', '2014-11-13 15:23:52', '', 8, 'http://localhost:8888/uncategorized/8-revision-v1', 0, 'revision', '', 0),
(10, 1, '2014-11-13 15:25:05', '2014-11-13 15:25:05', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor.', 'publish', 'open', 'open', '', 'the-fyi-on-stis', '', '', '2014-11-14 17:35:01', '2014-11-14 17:35:01', '', 0, 'http://localhost:8888/?p=10', 0, 'post', '', 0),
(11, 1, '2014-11-13 15:25:05', '2014-11-13 15:25:05', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs', '', 'inherit', 'open', 'open', '', '10-revision-v1', '', '', '2014-11-13 15:25:05', '2014-11-13 15:25:05', '', 10, 'http://localhost:8888/uncategorized/10-revision-v1', 0, 'revision', '', 0),
(12, 1, '2014-11-13 15:26:01', '2014-11-13 15:26:01', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs 1', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor.', 'publish', 'open', 'open', '', 'the-fyi-on-stis-1', '', '', '2014-11-16 06:32:46', '2014-11-16 06:32:46', '', 0, 'http://localhost:8888/?p=12', 0, 'post', '', 0),
(13, 1, '2014-11-13 15:26:01', '2014-11-13 15:26:01', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs 1', '', 'inherit', 'open', 'open', '', '12-revision-v1', '', '', '2014-11-13 15:26:01', '2014-11-13 15:26:01', '', 12, 'http://localhost:8888/uncategorized/12-revision-v1', 0, 'revision', '', 0),
(14, 1, '2014-11-13 15:32:11', '2014-11-13 15:32:11', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs 2', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor.', 'publish', 'open', 'open', '', 'the-fyi-on-stis-2', '', '', '2014-11-14 17:35:30', '2014-11-14 17:35:30', '', 0, 'http://localhost:8888/?p=14', 0, 'post', '', 0),
(15, 1, '2014-11-13 15:32:11', '2014-11-13 15:32:11', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs 2', '', 'inherit', 'open', 'open', '', '14-revision-v1', '', '', '2014-11-13 15:32:11', '2014-11-13 15:32:11', '', 14, 'http://localhost:8888/uncategorized/14-revision-v1', 0, 'revision', '', 0),
(16, 1, '2014-11-13 15:37:01', '2014-11-13 15:37:01', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare to bare 2', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.', 'publish', 'open', 'open', '', 'dare-to-bare-2', '', '', '2014-11-16 06:03:18', '2014-11-16 06:03:18', '', 0, 'http://localhost:8888/?p=16', 0, 'post', '', 0),
(17, 1, '2014-11-13 15:37:01', '2014-11-13 15:37:01', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare to bare 2', '', 'inherit', 'open', 'open', '', '16-revision-v1', '', '', '2014-11-13 15:37:01', '2014-11-13 15:37:01', '', 16, 'http://localhost:8888/uncategorized/16-revision-v1', 0, 'revision', '', 0),
(18, 1, '2014-11-13 15:37:23', '2014-11-13 15:37:23', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare To Bare 3', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n', 'publish', 'open', 'open', '', 'dare-to-bare-3', '', '', '2014-11-16 06:02:55', '2014-11-16 06:02:55', '', 0, 'http://localhost:8888/?p=18', 0, 'post', '', 0),
(19, 1, '2014-11-13 15:37:23', '2014-11-13 15:37:23', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare To Bare 3', '', 'inherit', 'open', 'open', '', '18-revision-v1', '', '', '2014-11-13 15:37:23', '2014-11-13 15:37:23', '', 18, 'http://localhost:8888/uncategorized/18-revision-v1', 0, 'revision', '', 0),
(20, 1, '2014-11-13 15:40:08', '2014-11-13 15:40:08', '<h4>Action begins with words and conversation has the power to break down boundaries and build understanding.</h4>\r\n<a href="http://localhost:8888/wp-content/uploads/2014/11/pengetahuan.jpg"><img class="alignleft size-full wp-image-57" src="http://localhost:8888/wp-content/uploads/2014/11/pengetahuan.jpg" alt="pengetahuan" width="646" height="645" /></a>\r\n\r\nSomeone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Blurred Boundaries', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.', 'publish', 'open', 'open', '', 'blurred-boundaries', '', '', '2014-11-16 05:36:17', '2014-11-16 05:36:17', '', 0, 'http://localhost:8888/?p=20', 0, 'post', '', 0),
(21, 1, '2014-11-13 15:39:55', '2014-11-13 15:39:55', 'knowledge', 'knowledge', 'knowledge', 'inherit', 'open', 'open', '', 'knowledge-1', '', '', '2014-11-13 15:40:04', '2014-11-13 15:40:04', '', 20, 'http://localhost:8888/wp-content/uploads/2014/11/knowledge-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(22, 1, '2014-11-13 15:40:08', '2014-11-13 15:40:08', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'BLURRED BOUNDARIES', '', 'inherit', 'open', 'open', '', '20-revision-v1', '', '', '2014-11-13 15:40:08', '2014-11-13 15:40:08', '', 20, 'http://localhost:8888/uncategorized/20-revision-v1', 0, 'revision', '', 0),
(23, 1, '2014-11-13 15:45:52', '2014-11-13 15:45:52', '', 'Teaser Appearance', '', 'publish', 'closed', 'closed', '', 'acf_teaser-appearance', '', '', '2014-11-14 16:22:16', '2014-11-14 16:22:16', '', 0, 'http://localhost:8888/?post_type=acf&p=23', 0, 'acf', '', 0),
(24, 1, '2014-11-13 15:46:58', '2014-11-13 15:46:58', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare To Bare 3', '', 'inherit', 'open', 'open', '', '18-revision-v1', '', '', '2014-11-13 15:46:58', '2014-11-13 15:46:58', '', 18, 'http://localhost:8888/uncategorized/18-revision-v1', 0, 'revision', '', 0),
(25, 1, '2014-11-13 15:47:35', '2014-11-13 15:47:35', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare to bare 2', '', 'inherit', 'open', 'open', '', '16-revision-v1', '', '', '2014-11-13 15:47:35', '2014-11-13 15:47:35', '', 16, 'http://localhost:8888/uncategorized/16-revision-v1', 0, 'revision', '', 0),
(26, 1, '2014-11-13 15:48:06', '2014-11-13 15:48:06', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs 2', '', 'inherit', 'open', 'open', '', '14-revision-v1', '', '', '2014-11-13 15:48:06', '2014-11-13 15:48:06', '', 14, 'http://localhost:8888/uncategorized/14-revision-v1', 0, 'revision', '', 0),
(27, 1, '2014-11-13 15:48:37', '2014-11-13 15:48:37', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs 1', '', 'inherit', 'open', 'open', '', '12-revision-v1', '', '', '2014-11-13 15:48:37', '2014-11-13 15:48:37', '', 12, 'http://localhost:8888/uncategorized/12-revision-v1', 0, 'revision', '', 0),
(28, 1, '2014-11-13 15:48:55', '2014-11-13 15:48:55', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs', '', 'inherit', 'open', 'open', '', '10-revision-v1', '', '', '2014-11-13 15:48:55', '2014-11-13 15:48:55', '', 10, 'http://localhost:8888/uncategorized/10-revision-v1', 0, 'revision', '', 0),
(29, 1, '2014-11-13 15:49:14', '2014-11-13 15:49:14', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'HIV - What you need to know', '', 'inherit', 'open', 'open', '', '8-revision-v1', '', '', '2014-11-13 15:49:14', '2014-11-13 15:49:14', '', 8, 'http://localhost:8888/uncategorized/8-revision-v1', 0, 'revision', '', 0),
(30, 1, '2014-11-13 15:49:29', '2014-11-13 15:49:29', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare to bare', '', 'inherit', 'open', 'open', '', '4-revision-v1', '', '', '2014-11-13 15:49:29', '2014-11-13 15:49:29', '', 4, 'http://localhost:8888/uncategorized/4-revision-v1', 0, 'revision', '', 0),
(31, 1, '2014-11-13 15:49:43', '2014-11-13 15:49:43', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare to bare 2', '', 'inherit', 'open', 'open', '', '16-revision-v1', '', '', '2014-11-13 15:49:43', '2014-11-13 15:49:43', '', 16, 'http://localhost:8888/uncategorized/16-revision-v1', 0, 'revision', '', 0),
(32, 1, '2014-11-13 15:50:09', '2014-11-13 15:50:09', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare To Bare 3', '', 'inherit', 'open', 'open', '', '18-revision-v1', '', '', '2014-11-13 15:50:09', '2014-11-13 15:50:09', '', 18, 'http://localhost:8888/uncategorized/18-revision-v1', 0, 'revision', '', 0),
(33, 1, '2014-11-14 16:22:53', '2014-11-14 16:22:53', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare To Bare 3', '', 'inherit', 'open', 'open', '', '18-revision-v1', '', '', '2014-11-14 16:22:53', '2014-11-14 16:22:53', '', 18, 'http://localhost:8888/uncategorized/18-revision-v1', 0, 'revision', '', 0),
(34, 1, '2014-11-14 16:23:07', '2014-11-14 16:23:07', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare to bare 2', '', 'inherit', 'open', 'open', '', '16-revision-v1', '', '', '2014-11-14 16:23:07', '2014-11-14 16:23:07', '', 16, 'http://localhost:8888/uncategorized/16-revision-v1', 0, 'revision', '', 0),
(35, 1, '2014-11-14 16:23:27', '2014-11-14 16:23:27', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs 2', '', 'inherit', 'open', 'open', '', '14-revision-v1', '', '', '2014-11-14 16:23:27', '2014-11-14 16:23:27', '', 14, 'http://localhost:8888/uncategorized/14-revision-v1', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(36, 1, '2014-11-14 16:23:42', '2014-11-14 16:23:42', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs 1', '', 'inherit', 'open', 'open', '', '12-revision-v1', '', '', '2014-11-14 16:23:42', '2014-11-14 16:23:42', '', 12, 'http://localhost:8888/uncategorized/12-revision-v1', 0, 'revision', '', 0),
(37, 1, '2014-11-14 16:24:01', '2014-11-14 16:24:01', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs', '', 'inherit', 'open', 'open', '', '10-revision-v1', '', '', '2014-11-14 16:24:01', '2014-11-14 16:24:01', '', 10, 'http://localhost:8888/uncategorized/10-revision-v1', 0, 'revision', '', 0),
(38, 1, '2014-11-14 16:24:20', '2014-11-14 16:24:20', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'HIV - What you need to know', '', 'inherit', 'open', 'open', '', '8-revision-v1', '', '', '2014-11-14 16:24:20', '2014-11-14 16:24:20', '', 8, 'http://localhost:8888/uncategorized/8-revision-v1', 0, 'revision', '', 0),
(39, 1, '2014-11-14 16:24:33', '2014-11-14 16:24:33', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare to bare', '', 'inherit', 'open', 'open', '', '4-revision-v1', '', '', '2014-11-14 16:24:33', '2014-11-14 16:24:33', '', 4, 'http://localhost:8888/uncategorized/4-revision-v1', 0, 'revision', '', 0),
(40, 1, '2014-11-14 16:44:03', '2014-11-14 16:44:03', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'BLURRED BOUNDARIES', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.', 'inherit', 'open', 'open', '', '20-revision-v1', '', '', '2014-11-14 16:44:03', '2014-11-14 16:44:03', '', 20, 'http://localhost:8888/uncategorized/20-revision-v1', 0, 'revision', '', 0),
(41, 1, '2014-11-14 17:34:38', '2014-11-14 17:34:38', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'HIV - What you need to know', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.', 'inherit', 'open', 'open', '', '8-revision-v1', '', '', '2014-11-14 17:34:38', '2014-11-14 17:34:38', '', 8, 'http://localhost:8888/uncategorized/8-revision-v1', 0, 'revision', '', 0),
(42, 1, '2014-11-14 17:35:01', '2014-11-14 17:35:01', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor.', 'inherit', 'open', 'open', '', '10-revision-v1', '', '', '2014-11-14 17:35:01', '2014-11-14 17:35:01', '', 10, 'http://localhost:8888/uncategorized/10-revision-v1', 0, 'revision', '', 0),
(43, 1, '2014-11-14 17:35:15', '2014-11-14 17:35:15', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs 1', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor.', 'inherit', 'open', 'open', '', '12-revision-v1', '', '', '2014-11-14 17:35:15', '2014-11-14 17:35:15', '', 12, 'http://localhost:8888/uncategorized/12-revision-v1', 0, 'revision', '', 0),
(44, 1, '2014-11-14 17:35:30', '2014-11-14 17:35:30', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor. Fusce eget eros semper, molestie nisl a, semper metus. Pellentesque maximus velit diam, in tincidunt nibh laoreet et. Donec eu bibendum ex. Quisque augue metus, luctus a tristique sit amet, mollis imperdiet justo. Donec ut neque porta, pulvinar sem non, varius sapien. Fusce cursus viverra imperdiet. Nulla blandit ligula sem, id ornare tellus scelerisque id. Etiam volutpat bibendum libero eget consectetur. Vestibulum nec dictum mi. Sed ut nisi tincidunt, porta erat quis, vehicula neque. Aliquam aliquam nulla et risus ultricies laoreet. Morbi ultricies libero sed eleifend aliquam. Aliquam erat volutpat. Pellentesque maximus, sem vitae mattis semper, elit dui elementum ligula, in tincidunt tellus est sit amet ex.\r\n\r\nAliquam sodales vitae eros sit amet pellentesque. Aenean sollicitudin lacinia risus, viverra maximus massa sodales a. Nulla dignissim enim sit amet ex imperdiet, vel dictum metus ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla quis leo malesuada, finibus erat a, efficitur ligula. Sed tellus metus, mollis ut faucibus quis, tincidunt eget diam. Vestibulum lacinia velit dui, ut malesuada elit viverra vel. Pellentesque euismod sapien augue, in molestie justo interdum sit amet. Sed lobortis diam at sollicitudin ullamcorper. In hac habitasse platea dictumst. Curabitur fermentum finibus eros sed interdum. Mauris ut neque enim. Fusce pulvinar nibh a lacus suscipit, sit amet accumsan nunc sollicitudin. Curabitur placerat molestie molestie. Praesent gravida mauris sit amet orci sollicitudin, non porta ante fringilla. Maecenas lobortis vehicula odio in laoreet.', 'The FYI on STIs 2', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean arcu turpis, posuere a neque sit amet, pellentesque convallis tortor.', 'inherit', 'open', 'open', '', '14-revision-v1', '', '', '2014-11-14 17:35:30', '2014-11-14 17:35:30', '', 14, 'http://localhost:8888/uncategorized/14-revision-v1', 0, 'revision', '', 0),
(45, 1, '2014-11-14 17:35:53', '2014-11-14 17:35:53', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare to bare 2', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.', 'inherit', 'open', 'open', '', '16-revision-v1', '', '', '2014-11-14 17:35:53', '2014-11-14 17:35:53', '', 16, 'http://localhost:8888/uncategorized/16-revision-v1', 0, 'revision', '', 0),
(46, 1, '2014-11-14 17:36:09', '2014-11-14 17:36:09', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare To Bare 3', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n', 'inherit', 'open', 'open', '', '18-revision-v1', '', '', '2014-11-14 17:36:09', '2014-11-14 17:36:09', '', 18, 'http://localhost:8888/uncategorized/18-revision-v1', 0, 'revision', '', 0),
(47, 1, '2014-11-14 17:52:14', '2014-11-14 17:52:14', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Dare to bare', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n', 'inherit', 'open', 'open', '', '4-revision-v1', '', '', '2014-11-14 17:52:14', '2014-11-14 17:52:14', '', 4, 'http://localhost:8888/uncategorized/4-revision-v1', 0, 'revision', '', 0),
(48, 1, '2014-11-15 00:08:35', '2014-11-15 00:08:35', '', 'Privacy', '', 'trash', 'open', 'open', '', 'privacy', '', '', '2014-11-15 00:21:51', '2014-11-15 00:21:51', '', 0, 'http://localhost:8888/?page_id=48', 0, 'page', '', 0),
(49, 1, '2014-11-15 00:11:39', '2014-11-15 00:11:39', '<h3>General</h3>\r\n<div class="line green"></div>\r\nRECKITT BENCKISER (BRANDS) LIMITED (us" "we" "our" or "Reckitt Benckiser") respects the privacy of every individual who visits our sites or responds to our interactive advertisements and other communications.\r\n\r\nThis privacy policy applies to your use of someonelikeme.com ("Site") by visiting the Site you are accepting and consenting to the practices described in this policy.\r\n\r\nThis policy outlines the information Reckitt Benckiser will collect and how we will use that information. This policy will also instruct you on what to do if you do not want your personal information collected or shared when you visit the Site or respond to our advertisements and other communications.\r\n\r\nWe may modify this policy from time to time and you should therefore periodically visit this page to be sure that you have read and agree with our most current privacy policy. If there is a material change to these terms we will communicate this to you via email if you have provided one to us.\r\n<h3>User Content</h3>\r\n<div class="line green"></div>\r\nSome features of the Site allow you to provide content, such as written comments. Content submitted by you to the Site or through this Site or on any social media site where you use "#someonelikeme" (or similar #tag or link to the Site) may be retained even after you terminate your account, but will not be kept for longer than we need it to fulfil the purpose for which it was collected.\r\n\r\nFor further terms governing content submitted to the Site please see our\r\n<a href="#">terms of use.</a>\r\n<h3>Applying to be a global crew member</h3>\r\n<div class="line green"></div>\r\nOn applying to be a global crew member and "logging in" via Facebook, you consent to us obtaining and processing your profile information from Facebook (including your date of birth, country of residence, email address, likes and interests, number and type of connections, friends and followers you have and posts and comments made). We will use this information to verify your identity and also to help assess your suitability for participating in the global crew.\r\n\r\nWe will not collect any more information from Facebook than what is ordinarily available in the public domain.\r\n\r\nWe will display the fact you have applied to become a global crew member and your Facebook profile photo to other people you are friends with on Facebook if they also apply to become a global crew member. We will not automatically post the fact you have applied to become a global crew member on your wall or publically display this in any other way on your Facebook page.\r\n\r\nWe ask you to consent to us collecting this information so we can assess your application. You are free to decline, but if you do then you will not be able to proceed with any application to be a global crew member.\r\n<h3>Global Crew Members</h3>\r\n<div class="line green"></div>\r\nIf you are successful with your application, and agree to become a global crew member, the information collected as part of your application will be retained and will be used for communicating with you and managing your role as a global crew member. Reckitt Benckiser may also use the responses to the application questions as part of the general Something Like Me content and may make these responses publically available on the Site (and / or associated Someone Like Me social media sites).\r\n\r\nAs part of your role as a global crew member you will be expected to share inherently personal information on attitudes towards sex in your country or your sex education. We will provide further explanation of what information we expect you to share within our further correspondence with you and / or any Global Crew Member Agreement or Programme Rules or similar documents.', 'Privacy Policy', '', 'publish', 'open', 'open', '', '49-2', '', '', '2014-11-15 00:20:07', '2014-11-15 00:20:07', '', 0, 'http://localhost:8888/?page_id=49', 0, 'page', '', 0),
(50, 1, '2014-11-15 00:11:39', '2014-11-15 00:11:39', '<h3>General</h3>\r\n<div class="line green"></div>\r\nRECKITT BENCKISER (BRANDS) LIMITED (us" "we" "our" or "Reckitt Benckiser") respects the privacy of every individual who visits our sites or responds to our interactive advertisements and other communications.\r\n\r\nThis privacy policy applies to your use of someonelikeme.com ("Site") by visiting the Site you are accepting and consenting to the practices described in this policy.\r\n\r\nThis policy outlines the information Reckitt Benckiser will collect and how we will use that information. This policy will also instruct you on what to do if you do not want your personal information collected or shared when you visit the Site or respond to our advertisements and other communications.\r\n\r\nWe may modify this policy from time to time and you should therefore periodically visit this page to be sure that you have read and agree with our most current privacy policy. If there is a material change to these terms we will communicate this to you via email if you have provided one to us.\r\n<h3>User Content</h3>\r\n<div class="line green"></div>\r\nSome features of the Site allow you to provide content, such as written comments. Content submitted by you to the Site or through this Site or on any social media site where you use "#someonelikeme" (or similar #tag or link to the Site) may be retained even after you terminate your account, but will not be kept for longer than we need it to fulfil the purpose for which it was collected.\r\n\r\nFor further terms governing content submitted to the Site please see our\r\n<a href="#">terms of use.</a>\r\n<h3>Applying to be a global crew member</h3>\r\n<div class="line green"></div>\r\nOn applying to be a global crew member and "logging in" via Facebook, you consent to us obtaining and processing your profile information from Facebook (including your date of birth, country of residence, email address, likes and interests, number and type of connections, friends and followers you have and posts and comments made). We will use this information to verify your identity and also to help assess your suitability for participating in the global crew.\r\n\r\nWe will not collect any more information from Facebook than what is ordinarily available in the public domain.\r\n\r\nWe will display the fact you have applied to become a global crew member and your Facebook profile photo to other people you are friends with on Facebook if they also apply to become a global crew member. We will not automatically post the fact you have applied to become a global crew member on your wall or publically display this in any other way on your Facebook page.\r\n\r\nWe ask you to consent to us collecting this information so we can assess your application. You are free to decline, but if you do then you will not be able to proceed with any application to be a global crew member.\r\n<h3>Global Crew Members</h3>\r\n<div class="line green"></div>\r\nIf you are successful with your application, and agree to become a global crew member, the information collected as part of your application will be retained and will be used for communicating with you and managing your role as a global crew member. Reckitt Benckiser may also use the responses to the application questions as part of the general Something Like Me content and may make these responses publically available on the Site (and / or associated Someone Like Me social media sites).\r\n\r\nAs part of your role as a global crew member you will be expected to share inherently personal information on attitudes towards sex in your country or your sex education. We will provide further explanation of what information we expect you to share within our further correspondence with you and / or any Global Crew Member Agreement or Programme Rules or similar documents.', '', '', 'inherit', 'open', 'open', '', '49-revision-v1', '', '', '2014-11-15 00:11:39', '2014-11-15 00:11:39', '', 49, 'http://localhost:8888/uncategorized/49-revision-v1', 0, 'revision', '', 0),
(51, 1, '2014-11-15 00:12:04', '2014-11-15 00:12:04', '<h3>General</h3>\r\n<div class="line green"></div>\r\nRECKITT BENCKISER (BRANDS) LIMITED (us" "we" "our" or "Reckitt Benckiser") respects the privacy of every individual who visits our sites or responds to our interactive advertisements and other communications.\r\n\r\nThis privacy policy applies to your use of someonelikeme.com ("Site") by visiting the Site you are accepting and consenting to the practices described in this policy.\r\n\r\nThis policy outlines the information Reckitt Benckiser will collect and how we will use that information. This policy will also instruct you on what to do if you do not want your personal information collected or shared when you visit the Site or respond to our advertisements and other communications.\r\n\r\nWe may modify this policy from time to time and you should therefore periodically visit this page to be sure that you have read and agree with our most current privacy policy. If there is a material change to these terms we will communicate this to you via email if you have provided one to us.\r\n<h3>User Content</h3>\r\n<div class="line green"></div>\r\nSome features of the Site allow you to provide content, such as written comments. Content submitted by you to the Site or through this Site or on any social media site where you use "#someonelikeme" (or similar #tag or link to the Site) may be retained even after you terminate your account, but will not be kept for longer than we need it to fulfil the purpose for which it was collected.\r\n\r\nFor further terms governing content submitted to the Site please see our\r\n<a href="#">terms of use.</a>\r\n<h3>Applying to be a global crew member</h3>\r\n<div class="line green"></div>\r\nOn applying to be a global crew member and "logging in" via Facebook, you consent to us obtaining and processing your profile information from Facebook (including your date of birth, country of residence, email address, likes and interests, number and type of connections, friends and followers you have and posts and comments made). We will use this information to verify your identity and also to help assess your suitability for participating in the global crew.\r\n\r\nWe will not collect any more information from Facebook than what is ordinarily available in the public domain.\r\n\r\nWe will display the fact you have applied to become a global crew member and your Facebook profile photo to other people you are friends with on Facebook if they also apply to become a global crew member. We will not automatically post the fact you have applied to become a global crew member on your wall or publically display this in any other way on your Facebook page.\r\n\r\nWe ask you to consent to us collecting this information so we can assess your application. You are free to decline, but if you do then you will not be able to proceed with any application to be a global crew member.\r\n<h3>Global Crew Members</h3>\r\n<div class="line green"></div>\r\nIf you are successful with your application, and agree to become a global crew member, the information collected as part of your application will be retained and will be used for communicating with you and managing your role as a global crew member. Reckitt Benckiser may also use the responses to the application questions as part of the general Something Like Me content and may make these responses publically available on the Site (and / or associated Someone Like Me social media sites).\r\n\r\nAs part of your role as a global crew member you will be expected to share inherently personal information on attitudes towards sex in your country or your sex education. We will provide further explanation of what information we expect you to share within our further correspondence with you and / or any Global Crew Member Agreement or Programme Rules or similar documents.', 'Privacy', '', 'inherit', 'open', 'open', '', '49-revision-v1', '', '', '2014-11-15 00:12:04', '2014-11-15 00:12:04', '', 49, 'http://localhost:8888/uncategorized/49-revision-v1', 0, 'revision', '', 0),
(52, 1, '2014-11-15 00:20:07', '2014-11-15 00:20:07', '<h3>General</h3>\r\n<div class="line green"></div>\r\nRECKITT BENCKISER (BRANDS) LIMITED (us" "we" "our" or "Reckitt Benckiser") respects the privacy of every individual who visits our sites or responds to our interactive advertisements and other communications.\r\n\r\nThis privacy policy applies to your use of someonelikeme.com ("Site") by visiting the Site you are accepting and consenting to the practices described in this policy.\r\n\r\nThis policy outlines the information Reckitt Benckiser will collect and how we will use that information. This policy will also instruct you on what to do if you do not want your personal information collected or shared when you visit the Site or respond to our advertisements and other communications.\r\n\r\nWe may modify this policy from time to time and you should therefore periodically visit this page to be sure that you have read and agree with our most current privacy policy. If there is a material change to these terms we will communicate this to you via email if you have provided one to us.\r\n<h3>User Content</h3>\r\n<div class="line green"></div>\r\nSome features of the Site allow you to provide content, such as written comments. Content submitted by you to the Site or through this Site or on any social media site where you use "#someonelikeme" (or similar #tag or link to the Site) may be retained even after you terminate your account, but will not be kept for longer than we need it to fulfil the purpose for which it was collected.\r\n\r\nFor further terms governing content submitted to the Site please see our\r\n<a href="#">terms of use.</a>\r\n<h3>Applying to be a global crew member</h3>\r\n<div class="line green"></div>\r\nOn applying to be a global crew member and "logging in" via Facebook, you consent to us obtaining and processing your profile information from Facebook (including your date of birth, country of residence, email address, likes and interests, number and type of connections, friends and followers you have and posts and comments made). We will use this information to verify your identity and also to help assess your suitability for participating in the global crew.\r\n\r\nWe will not collect any more information from Facebook than what is ordinarily available in the public domain.\r\n\r\nWe will display the fact you have applied to become a global crew member and your Facebook profile photo to other people you are friends with on Facebook if they also apply to become a global crew member. We will not automatically post the fact you have applied to become a global crew member on your wall or publically display this in any other way on your Facebook page.\r\n\r\nWe ask you to consent to us collecting this information so we can assess your application. You are free to decline, but if you do then you will not be able to proceed with any application to be a global crew member.\r\n<h3>Global Crew Members</h3>\r\n<div class="line green"></div>\r\nIf you are successful with your application, and agree to become a global crew member, the information collected as part of your application will be retained and will be used for communicating with you and managing your role as a global crew member. Reckitt Benckiser may also use the responses to the application questions as part of the general Something Like Me content and may make these responses publically available on the Site (and / or associated Someone Like Me social media sites).\r\n\r\nAs part of your role as a global crew member you will be expected to share inherently personal information on attitudes towards sex in your country or your sex education. We will provide further explanation of what information we expect you to share within our further correspondence with you and / or any Global Crew Member Agreement or Programme Rules or similar documents.', 'Privacy Policy', '', 'inherit', 'open', 'open', '', '49-revision-v1', '', '', '2014-11-15 00:20:07', '2014-11-15 00:20:07', '', 49, 'http://localhost:8888/uncategorized/49-revision-v1', 0, 'revision', '', 0),
(53, 1, '2014-11-15 00:21:51', '2014-11-15 00:21:51', '', 'Privacy', '', 'inherit', 'open', 'open', '', '48-revision-v1', '', '', '2014-11-15 00:21:51', '2014-11-15 00:21:51', '', 48, 'http://localhost:8888/uncategorized/48-revision-v1', 0, 'revision', '', 0),
(54, 1, '2014-11-15 01:58:58', '2014-11-15 01:58:58', '<h4>Action begins with words and conversation has the power to break down boundaries and build understanding.</h4>\r\n \r\n\r\n<a href="http://localhost:8888/wp-content/uploads/2014/11/inner.jpg"><img class="size-full wp-image-5" src="http://localhost:8888/wp-content/uploads/2014/11/inner.jpg" alt="Picture" width="640" height="374" /></a>\r\n\r\nSomeone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'BLURRED BOUNDARIES', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.', 'inherit', 'open', 'open', '', '20-revision-v1', '', '', '2014-11-15 01:58:58', '2014-11-15 01:58:58', '', 20, 'http://localhost:8888/uncategorized/20-revision-v1', 0, 'revision', '', 0),
(55, 1, '2014-11-15 02:01:07', '2014-11-15 02:01:07', '<h4>Action begins with words and conversation has the power to break down boundaries and build understanding.</h4>\r\n<img class="alignnone wp-image-5 size-full" src="http://localhost:8888/wp-content/uploads/2014/11/inner.jpg" alt="Picture" width="640" height="374" />\r\n\r\nSomeone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'BLURRED BOUNDARIES', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.', 'inherit', 'open', 'open', '', '20-revision-v1', '', '', '2014-11-15 02:01:07', '2014-11-15 02:01:07', '', 20, 'http://localhost:8888/uncategorized/20-revision-v1', 0, 'revision', '', 0),
(56, 1, '2014-11-16 03:39:28', '2014-11-16 03:39:28', '<h4>Action begins with words and conversation has the power to break down boundaries and build understanding.</h4>\r\n<img class="alignnone wp-image-5 size-full" src="http://localhost:8888/wp-content/uploads/2014/11/inner.jpg" alt="Picture" width="640" height="374" />\r\n\r\nSomeone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Blurred Boundaries', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.', 'inherit', 'open', 'open', '', '20-revision-v1', '', '', '2014-11-16 03:39:28', '2014-11-16 03:39:28', '', 20, 'http://localhost:8888/uncategorized/20-revision-v1', 0, 'revision', '', 0),
(57, 1, '2014-11-16 05:12:05', '2014-11-16 05:12:05', '', 'pengetahuan', '', 'inherit', 'open', 'open', '', 'pengetahuan', '', '', '2014-11-16 05:12:05', '2014-11-16 05:12:05', '', 20, 'http://localhost:8888/wp-content/uploads/2014/11/pengetahuan.jpg', 0, 'attachment', 'image/jpeg', 0),
(58, 1, '2014-11-16 05:36:01', '2014-11-16 05:36:01', '<h4>Action begins with words and conversation has the power to break down boundaries and build understanding.</h4>\r\n \r\n\r\n<a href="http://localhost:8888/wp-content/uploads/2014/11/pengetahuan.jpg"><img class="alignleft size-full wp-image-57" src="http://localhost:8888/wp-content/uploads/2014/11/pengetahuan.jpg" alt="pengetahuan" width="646" height="645" /></a>\r\n\r\nSomeone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Blurred Boundaries', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.', 'inherit', 'open', 'open', '', '20-revision-v1', '', '', '2014-11-16 05:36:01', '2014-11-16 05:36:01', '', 20, 'http://localhost:8888/uncategorized/20-revision-v1', 0, 'revision', '', 0),
(59, 1, '2014-11-16 05:36:17', '2014-11-16 05:36:17', '<h4>Action begins with words and conversation has the power to break down boundaries and build understanding.</h4>\r\n<a href="http://localhost:8888/wp-content/uploads/2014/11/pengetahuan.jpg"><img class="alignleft size-full wp-image-57" src="http://localhost:8888/wp-content/uploads/2014/11/pengetahuan.jpg" alt="pengetahuan" width="646" height="645" /></a>\r\n\r\nSomeone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.\r\n\r\nWe wanted to start conversations with young people, all around the world, discussing key issues and important topics, so they could share their thoughts and views with the world. We spoke to people about what they think about sex and how open they think their country is when it comes to talking about sex and the real issues that affect them.\r\n\r\nWe wanted to find out how similarly people across the world think about sex - whether people in different countries worry about the same things, or if people worry about different things in different places. By hearing what others think about sex you''ll realise that somewhere, someone else is just like you! No matter what your thoughts and opinions are, the chances are you''re not the only one who thinks like that. We want people to take confidence from this and to be able to speak up and join the conversation.', 'Blurred Boundaries', 'Someone Like Me aims to get more people around the world talking openly and honestly about sex. To help make this happen, we set off on a global tour to eight different cities across the world.', 'inherit', 'open', 'open', '', '20-revision-v1', '', '', '2014-11-16 05:36:17', '2014-11-16 05:36:17', '', 20, 'http://localhost:8888/uncategorized/20-revision-v1', 0, 'revision', '', 0),
(60, 1, '2014-11-16 05:55:00', '2014-11-16 05:55:00', '', 'pengetahuan-2', '', 'inherit', 'open', 'open', '', 'pengetahuan-2', '', '', '2014-11-16 05:55:00', '2014-11-16 05:55:00', '', 8, 'http://localhost:8888/wp-content/uploads/2014/11/pengetahuan-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(61, 1, '2014-11-16 06:02:07', '2014-11-16 06:02:07', '', 'knowledge-2', '', 'inherit', 'open', 'open', '', 'knowledge-2', '', '', '2014-11-16 06:02:07', '2014-11-16 06:02:07', '', 4, 'http://localhost:8888/wp-content/uploads/2014/11/knowledge-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(62, 1, '2014-11-16 06:02:08', '2014-11-16 06:02:08', '', 'knowledge-3', '', 'inherit', 'open', 'open', '', 'knowledge-3', '', '', '2014-11-16 06:02:08', '2014-11-16 06:02:08', '', 4, 'http://localhost:8888/wp-content/uploads/2014/11/knowledge-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(63, 1, '2014-11-16 06:02:08', '2014-11-16 06:02:08', '', 'knowledge-4', '', 'inherit', 'open', 'open', '', 'knowledge-4', '', '', '2014-11-16 06:02:08', '2014-11-16 06:02:08', '', 4, 'http://localhost:8888/wp-content/uploads/2014/11/knowledge-4.jpg', 0, 'attachment', 'image/jpeg', 0),
(64, 1, '2014-11-16 06:37:27', '2014-11-16 06:37:27', '<h4 class="p1">Untuk menjadi bagian dalam gerakan Someone Like Me sangatlah mudah. Kamu cukup memilih salah satu dari opsi di bawah ini!</h4>', 'Ayo Terlibat', '', 'publish', 'open', 'open', '', 'ayo-terlibat', '', '', '2014-11-16 09:07:38', '2014-11-16 09:07:38', '', 0, 'http://localhost:8888/?page_id=64', 0, 'page', '', 0),
(65, 1, '2014-11-16 06:37:27', '2014-11-16 06:37:27', 'It''s easy to get involved with Someone Like Me and there''s loads of ways to do it. Check out the options below!', 'Ayo Terlibat', '', 'inherit', 'open', 'open', '', '64-revision-v1', '', '', '2014-11-16 06:37:27', '2014-11-16 06:37:27', '', 64, 'http://localhost:8888/uncategorized/64-revision-v1', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(66, 1, '2014-11-16 07:17:31', '2014-11-16 07:17:31', '<h4>It''s easy to get involved with Someone Like Me and there''s loads of ways to do it. Check out the options below!</h4>', 'Ayo Terlibat', '', 'inherit', 'open', 'open', '', '64-revision-v1', '', '', '2014-11-16 07:17:31', '2014-11-16 07:17:31', '', 64, 'http://localhost:8888/uncategorized/64-revision-v1', 0, 'revision', '', 0),
(67, 1, '2014-11-16 07:20:36', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-11-16 07:20:36', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/?post_type=acf&p=67', 0, 'acf', '', 0),
(68, 1, '2014-11-16 07:57:38', '2014-11-16 07:57:38', '<h4 class="p1">Untuk menjadi bagian dalam gerakan Someone Like Me sangatlah mudah. Kamu cukup memilih salah satu dari opsi di bawah ini!</h4>', 'Ayo Terlibat', '', 'inherit', 'open', 'open', '', '64-revision-v1', '', '', '2014-11-16 07:57:38', '2014-11-16 07:57:38', '', 64, 'http://localhost:8888/uncategorized/64-revision-v1', 0, 'revision', '', 0),
(69, 1, '2014-11-16 08:04:36', '2014-11-16 08:04:36', '', 'Share Template', '', 'publish', 'closed', 'closed', '', 'acf_share-template', '', '', '2014-11-16 15:17:31', '2014-11-16 15:17:31', '', 0, 'http://localhost:8888/?post_type=acf&p=69', 0, 'acf', '', 0),
(70, 1, '2014-11-16 08:06:48', '2014-11-16 08:06:48', '<h4 class="p1">Untuk menjadi bagian dalam gerakan Someone Like Me sangatlah mudah. Kamu cukup memilih salah satu dari opsi di bawah ini!</h4>', 'Ayo Terlibat', '', 'inherit', 'open', 'open', '', '64-revision-v1', '', '', '2014-11-16 08:06:48', '2014-11-16 08:06:48', '', 64, 'http://localhost:8888/uncategorized/64-revision-v1', 0, 'revision', '', 0),
(71, 1, '2014-11-16 08:10:22', '2014-11-16 08:10:22', '<h4 class="p1">Untuk menjadi bagian dalam gerakan Someone Like Me sangatlah mudah. Kamu cukup memilih salah satu dari opsi di bawah ini!</h4>', 'Ayo Terlibat', '', 'inherit', 'open', 'open', '', '64-revision-v1', '', '', '2014-11-16 08:10:22', '2014-11-16 08:10:22', '', 64, 'http://localhost:8888/uncategorized/64-revision-v1', 0, 'revision', '', 0),
(72, 1, '2014-11-16 09:04:47', '2014-11-16 09:04:47', '<h4 class="p1">Untuk menjadi bagian dalam gerakan Someone Like Me sangatlah mudah. Kamu cukup memilih salah satu dari opsi di bawah ini!</h4>', 'Ayo Terlibat', '', 'inherit', 'open', 'open', '', '64-revision-v1', '', '', '2014-11-16 09:04:47', '2014-11-16 09:04:47', '', 64, 'http://localhost:8888/uncategorized/64-revision-v1', 0, 'revision', '', 0),
(73, 1, '2014-11-16 09:07:38', '2014-11-16 09:07:38', '<h4 class="p1">Untuk menjadi bagian dalam gerakan Someone Like Me sangatlah mudah. Kamu cukup memilih salah satu dari opsi di bawah ini!</h4>', 'Ayo Terlibat', '', 'inherit', 'open', 'open', '', '64-revision-v1', '', '', '2014-11-16 09:07:38', '2014-11-16 09:07:38', '', 64, 'http://localhost:8888/uncategorized/64-revision-v1', 0, 'revision', '', 0),
(74, 1, '2014-11-16 09:19:16', '2014-11-16 09:19:16', '', 'Visi Template', '', 'publish', 'closed', 'closed', '', 'acf_visi-template', '', '', '2014-11-16 15:18:32', '2014-11-16 15:18:32', '', 0, 'http://localhost:8888/?post_type=acf&p=74', 0, 'acf', '', 0),
(75, 1, '2014-11-16 09:19:22', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-11-16 09:19:22', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/?page_id=75', 0, 'page', '', 0),
(76, 1, '2014-11-16 09:36:20', '2014-11-16 09:36:20', 'www.youtube.com/embed/J---aiyznGQ', 'Kucing Main Piano', '', 'publish', 'open', 'open', '', 'kucing-main-piano', '', '', '2014-11-17 05:23:43', '2014-11-17 05:23:43', '', 0, 'http://localhost:8888/?p=76', 0, 'post', '', 0),
(77, 1, '2014-11-16 09:36:14', '2014-11-16 09:36:14', '', 'thumb-youtube', '', 'inherit', 'open', 'open', '', 'thumb-youtube', '', '', '2014-11-16 09:36:14', '2014-11-16 09:36:14', '', 76, 'http://localhost:8888/wp-content/uploads/2014/11/thumb-youtube.jpg', 0, 'attachment', 'image/jpeg', 0),
(78, 1, '2014-11-16 09:36:20', '2014-11-16 09:36:20', 'http://www.youtube.com/watch?v=J---aiyznGQ', 'Kucing Main Piano', '', 'inherit', 'open', 'open', '', '76-revision-v1', '', '', '2014-11-16 09:36:20', '2014-11-16 09:36:20', '', 76, 'http://localhost:8888/uncategorized/76-revision-v1', 0, 'revision', '', 0),
(79, 1, '2014-11-16 09:42:23', '2014-11-16 09:42:23', 'www.youtube.com/embed/J---aiyznGQ', 'Ada Apa dengan Cinta', '', 'publish', 'open', 'open', '', 'ada-apa-dengan-cinta', '', '', '2014-11-17 05:23:32', '2014-11-17 05:23:32', '', 0, 'http://localhost:8888/?p=79', 0, 'post', '', 0),
(80, 1, '2014-11-16 09:45:21', '2014-11-16 09:45:21', '', 'Ada Apa dengan Cinta', '', 'inherit', 'open', 'open', '', '79-revision-v1', '', '', '2014-11-16 09:45:21', '2014-11-16 09:45:21', '', 79, 'http://localhost:8888/uncategorized/79-revision-v1', 0, 'revision', '', 0),
(81, 1, '2014-11-16 09:45:37', '2014-11-16 09:45:37', 'http://www.youtube.com/watch?v=56Sx2I1SRfA', 'Ada Apa dengan Cinta', '', 'inherit', 'open', 'open', '', '79-revision-v1', '', '', '2014-11-16 09:45:37', '2014-11-16 09:45:37', '', 79, 'http://localhost:8888/uncategorized/79-revision-v1', 0, 'revision', '', 0),
(82, 1, '2014-11-16 09:45:58', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-11-16 09:45:58', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/?p=82', 0, 'post', '', 0),
(83, 1, '2014-11-16 09:49:29', '2014-11-16 09:49:29', 'www.youtube.com/embed/J---aiyznGQ', 'Nyan Cat', '', 'publish', 'open', 'open', '', 'nyan-cat', '', '', '2014-11-17 05:23:17', '2014-11-17 05:23:17', '', 0, 'http://localhost:8888/?p=83', 0, 'post', '', 0),
(84, 1, '2014-11-16 09:49:29', '2014-11-16 09:49:29', 'http://www.youtube.com/watch?v=QH2-TGUlwu4', 'Nyan Cat', '', 'inherit', 'open', 'open', '', '83-revision-v1', '', '', '2014-11-16 09:49:29', '2014-11-16 09:49:29', '', 83, 'http://localhost:8888/uncategorized/83-revision-v1', 0, 'revision', '', 0),
(85, 1, '2014-11-16 09:51:55', '2014-11-16 09:51:55', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. Etiam libero leo, euismod sed ipsum mollis, volutpat semper justo. Suspendisse malesuada quis nisl a pulvinar. Vivamus rhoncus felis sed enim finibus, sit amet tempor nisi tristique. Curabitur leo est, tempus a dignissim nec, imperdiet nec nulla. Sed hendrerit augue libero, sed fringilla felis mollis ac. Pellentesque lobortis, justo ut consectetur pellentesque, mi justo scelerisque dui, vel lacinia justo urna ac magna. In scelerisque arcu tempor tortor sagittis auctor.\r\n\r\nVivamus commodo felis nisi, vitae tempor mauris dignissim in. Pellentesque congue nec libero in mollis. Maecenas lectus sapien, tempus nec neque quis, feugiat tristique elit. Nullam varius quam quis cursus semper. Fusce placerat nisl eu felis iaculis congue. Donec sit amet ullamcorper turpis. Sed condimentum sollicitudin egestas. Nullam efficitur pretium molestie. Quisque in metus at orci elementum dapibus sed in urna. Maecenas sit amet leo ac nulla eleifend ullamcorper. Vestibulum congue eleifend risus a consectetur. Morbi volutpat, diam vitae volutpat vestibulum, nunc turpis dignissim mi, ut ornare leo nisl ut lorem.', 'Blogs Story', '', 'publish', 'open', 'open', '', 'blogs-story', '', '', '2014-11-16 09:51:55', '2014-11-16 09:51:55', '', 0, 'http://localhost:8888/?p=85', 0, 'post', '', 0),
(86, 1, '2014-11-16 09:51:55', '2014-11-16 09:51:55', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. Etiam libero leo, euismod sed ipsum mollis, volutpat semper justo. Suspendisse malesuada quis nisl a pulvinar. Vivamus rhoncus felis sed enim finibus, sit amet tempor nisi tristique. Curabitur leo est, tempus a dignissim nec, imperdiet nec nulla. Sed hendrerit augue libero, sed fringilla felis mollis ac. Pellentesque lobortis, justo ut consectetur pellentesque, mi justo scelerisque dui, vel lacinia justo urna ac magna. In scelerisque arcu tempor tortor sagittis auctor.\r\n\r\nVivamus commodo felis nisi, vitae tempor mauris dignissim in. Pellentesque congue nec libero in mollis. Maecenas lectus sapien, tempus nec neque quis, feugiat tristique elit. Nullam varius quam quis cursus semper. Fusce placerat nisl eu felis iaculis congue. Donec sit amet ullamcorper turpis. Sed condimentum sollicitudin egestas. Nullam efficitur pretium molestie. Quisque in metus at orci elementum dapibus sed in urna. Maecenas sit amet leo ac nulla eleifend ullamcorper. Vestibulum congue eleifend risus a consectetur. Morbi volutpat, diam vitae volutpat vestibulum, nunc turpis dignissim mi, ut ornare leo nisl ut lorem.', 'Blogs Story', '', 'inherit', 'open', 'open', '', '85-revision-v1', '', '', '2014-11-16 09:51:55', '2014-11-16 09:51:55', '', 85, 'http://localhost:8888/uncategorized/85-revision-v1', 0, 'revision', '', 0),
(87, 1, '2014-11-16 09:53:11', '2014-11-16 09:53:11', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. Etiam libero leo, euismod sed ipsum mollis, volutpat semper justo. Suspendisse malesuada quis nisl a pulvinar. Vivamus rhoncus felis sed enim finibus, sit amet tempor nisi tristique. Curabitur leo est, tempus a dignissim nec, imperdiet nec nulla. Sed hendrerit augue libero, sed fringilla felis mollis ac. Pellentesque lobortis, justo ut consectetur pellentesque, mi justo scelerisque dui, vel lacinia justo urna ac magna. In scelerisque arcu tempor tortor sagittis auctor.\r\n\r\nVivamus commodo felis nisi, vitae tempor mauris dignissim in. Pellentesque congue nec libero in mollis. Maecenas lectus sapien, tempus nec neque quis, feugiat tristique elit. Nullam varius quam quis cursus semper. Fusce placerat nisl eu felis iaculis congue. Donec sit amet ullamcorper turpis. Sed condimentum sollicitudin egestas. Nullam efficitur pretium molestie. Quisque in metus at orci elementum dapibus sed in urna. Maecenas sit amet leo ac nulla eleifend ullamcorper. Vestibulum congue eleifend risus a consectetur. Morbi volutpat, diam vitae volutpat vestibulum, nunc turpis dignissim mi, ut ornare leo nisl ut lorem.', 'Another Blog Post', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. ', 'publish', 'open', 'open', '', 'another-blog-post', '', '', '2014-11-16 16:57:02', '2014-11-16 16:57:02', '', 0, 'http://localhost:8888/?p=87', 0, 'post', '', 0),
(88, 1, '2014-11-16 09:53:11', '2014-11-16 09:53:11', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. Etiam libero leo, euismod sed ipsum mollis, volutpat semper justo. Suspendisse malesuada quis nisl a pulvinar. Vivamus rhoncus felis sed enim finibus, sit amet tempor nisi tristique. Curabitur leo est, tempus a dignissim nec, imperdiet nec nulla. Sed hendrerit augue libero, sed fringilla felis mollis ac. Pellentesque lobortis, justo ut consectetur pellentesque, mi justo scelerisque dui, vel lacinia justo urna ac magna. In scelerisque arcu tempor tortor sagittis auctor.\r\n\r\nVivamus commodo felis nisi, vitae tempor mauris dignissim in. Pellentesque congue nec libero in mollis. Maecenas lectus sapien, tempus nec neque quis, feugiat tristique elit. Nullam varius quam quis cursus semper. Fusce placerat nisl eu felis iaculis congue. Donec sit amet ullamcorper turpis. Sed condimentum sollicitudin egestas. Nullam efficitur pretium molestie. Quisque in metus at orci elementum dapibus sed in urna. Maecenas sit amet leo ac nulla eleifend ullamcorper. Vestibulum congue eleifend risus a consectetur. Morbi volutpat, diam vitae volutpat vestibulum, nunc turpis dignissim mi, ut ornare leo nisl ut lorem.', 'Another Blog Post', '', 'inherit', 'open', 'open', '', '87-revision-v1', '', '', '2014-11-16 09:53:11', '2014-11-16 09:53:11', '', 87, 'http://localhost:8888/uncategorized/87-revision-v1', 0, 'revision', '', 0),
(89, 1, '2014-11-16 09:53:38', '2014-11-16 09:53:38', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. Etiam libero leo, euismod sed ipsum mollis, volutpat semper justo. Suspendisse malesuada quis nisl a pulvinar. Vivamus rhoncus felis sed enim finibus, sit amet tempor nisi tristique. Curabitur leo est, tempus a dignissim nec, imperdiet nec nulla. Sed hendrerit augue libero, sed fringilla felis mollis ac. Pellentesque lobortis, justo ut consectetur pellentesque, mi justo scelerisque dui, vel lacinia justo urna ac magna. In scelerisque arcu tempor tortor sagittis auctor.\r\n\r\nVivamus commodo felis nisi, vitae tempor mauris dignissim in. Pellentesque congue nec libero in mollis. Maecenas lectus sapien, tempus nec neque quis, feugiat tristique elit. Nullam varius quam quis cursus semper. Fusce placerat nisl eu felis iaculis congue. Donec sit amet ullamcorper turpis. Sed condimentum sollicitudin egestas. Nullam efficitur pretium molestie. Quisque in metus at orci elementum dapibus sed in urna. Maecenas sit amet leo ac nulla eleifend ullamcorper. Vestibulum congue eleifend risus a consectetur. Morbi volutpat, diam vitae volutpat vestibulum, nunc turpis dignissim mi, ut ornare leo nisl ut lorem.', 'Just Another Blog Post', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. ', 'publish', 'open', 'open', '', 'just-another-blog-post', '', '', '2014-11-16 16:56:38', '2014-11-16 16:56:38', '', 0, 'http://localhost:8888/?p=89', 0, 'post', '', 0),
(90, 1, '2014-11-16 09:53:38', '2014-11-16 09:53:38', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. Etiam libero leo, euismod sed ipsum mollis, volutpat semper justo. Suspendisse malesuada quis nisl a pulvinar. Vivamus rhoncus felis sed enim finibus, sit amet tempor nisi tristique. Curabitur leo est, tempus a dignissim nec, imperdiet nec nulla. Sed hendrerit augue libero, sed fringilla felis mollis ac. Pellentesque lobortis, justo ut consectetur pellentesque, mi justo scelerisque dui, vel lacinia justo urna ac magna. In scelerisque arcu tempor tortor sagittis auctor.\r\n\r\nVivamus commodo felis nisi, vitae tempor mauris dignissim in. Pellentesque congue nec libero in mollis. Maecenas lectus sapien, tempus nec neque quis, feugiat tristique elit. Nullam varius quam quis cursus semper. Fusce placerat nisl eu felis iaculis congue. Donec sit amet ullamcorper turpis. Sed condimentum sollicitudin egestas. Nullam efficitur pretium molestie. Quisque in metus at orci elementum dapibus sed in urna. Maecenas sit amet leo ac nulla eleifend ullamcorper. Vestibulum congue eleifend risus a consectetur. Morbi volutpat, diam vitae volutpat vestibulum, nunc turpis dignissim mi, ut ornare leo nisl ut lorem.', 'Just Another Blog Post', '', 'inherit', 'open', 'open', '', '89-revision-v1', '', '', '2014-11-16 09:53:38', '2014-11-16 09:53:38', '', 89, 'http://localhost:8888/uncategorized/89-revision-v1', 0, 'revision', '', 0),
(91, 1, '2014-11-16 10:00:12', '2014-11-16 10:00:12', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. Etiam libero leo, euismod sed ipsum mollis, volutpat semper justo. Suspendisse malesuada quis nisl a pulvinar. Vivamus rhoncus felis sed enim finibus, sit amet tempor nisi tristique. Curabitur leo est, tempus a dignissim nec, imperdiet nec nulla. Sed hendrerit augue libero, sed fringilla felis mollis ac. Pellentesque lobortis, justo ut consectetur pellentesque, mi justo scelerisque dui, vel lacinia justo urna ac magna. In scelerisque arcu tempor tortor sagittis auctor.', 'Menurut Kamu', '', 'publish', 'open', 'open', '', 'menurut-kamu', '', '', '2014-11-16 10:04:10', '2014-11-16 10:04:10', '', 0, 'http://localhost:8888/?page_id=91', 0, 'page', '', 0),
(92, 1, '2014-11-16 10:00:12', '2014-11-16 10:00:12', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. Etiam libero leo, euismod sed ipsum mollis, volutpat semper justo. Suspendisse malesuada quis nisl a pulvinar. Vivamus rhoncus felis sed enim finibus, sit amet tempor nisi tristique. Curabitur leo est, tempus a dignissim nec, imperdiet nec nulla. Sed hendrerit augue libero, sed fringilla felis mollis ac. Pellentesque lobortis, justo ut consectetur pellentesque, mi justo scelerisque dui, vel lacinia justo urna ac magna. In scelerisque arcu tempor tortor sagittis auctor.', 'Menurut Kamu', '', 'inherit', 'open', 'open', '', '91-revision-v1', '', '', '2014-11-16 10:00:12', '2014-11-16 10:00:12', '', 91, 'http://localhost:8888/uncategorized/91-revision-v1', 0, 'revision', '', 0),
(93, 1, '2014-11-16 15:20:15', '2014-11-16 15:20:15', '<h4>Sebuah percakapan memiliki kekuatan untuk menginspirasi banyak orang akan kehidupan yang lebih sehat dan bahagia. Ayo bergabung dengan generasi yang tidak hanya berani bicara, tapi juga memperjuangkan kebebasan berbicara untuk perubahan yang lebih baik. Mari mulai berani bicara dan berbagi secara sehat!</h4>', 'Visi', '', 'publish', 'open', 'open', '', 'visi', '', '', '2014-11-16 15:20:15', '2014-11-16 15:20:15', '', 0, 'http://localhost:8888/?page_id=93', 0, 'page', '', 0),
(94, 1, '2014-11-16 15:20:15', '2014-11-16 15:20:15', '<h4>Sebuah percakapan memiliki kekuatan untuk menginspirasi banyak orang akan kehidupan yang lebih sehat dan bahagia. Ayo bergabung dengan generasi yang tidak hanya berani bicara, tapi juga memperjuangkan kebebasan berbicara untuk perubahan yang lebih baik. Mari mulai berani bicara dan berbagi secara sehat!</h4>', 'Visi', '', 'inherit', 'open', 'open', '', '93-revision-v1', '', '', '2014-11-16 15:20:15', '2014-11-16 15:20:15', '', 93, 'http://localhost:8888/uncategorized/93-revision-v1', 0, 'revision', '', 0),
(95, 1, '2014-11-16 15:28:46', '2014-11-16 15:28:46', '<h1>Ayo Bicara!</h1>', 'Home', '', 'publish', 'open', 'open', '', 'home', '', '', '2014-11-16 15:47:47', '2014-11-16 15:47:47', '', 0, 'http://localhost:8888/?page_id=95', 0, 'page', '', 0),
(96, 1, '2014-11-16 15:28:46', '2014-11-16 15:28:46', '', 'Home', '', 'inherit', 'open', 'open', '', '95-revision-v1', '', '', '2014-11-16 15:28:46', '2014-11-16 15:28:46', '', 95, 'http://localhost:8888/uncategorized/95-revision-v1', 0, 'revision', '', 0),
(97, 1, '2014-11-16 15:32:03', '2014-11-16 15:32:03', '', 'Home', '', 'publish', 'closed', 'closed', '', 'acf_home', '', '', '2014-11-16 15:46:51', '2014-11-16 15:46:51', '', 0, 'http://localhost:8888/?post_type=acf&p=97', 0, 'acf', '', 0),
(98, 1, '2014-11-16 15:33:11', '2014-11-16 15:33:11', '<h1>Dare to speak up</h1>\n<h1>Dare to understand</h1>\n<h1>Dare to take action</h1>', 'Home', '', 'inherit', 'open', 'open', '', '95-autosave-v1', '', '', '2014-11-16 15:33:11', '2014-11-16 15:33:11', '', 95, 'http://localhost:8888/uncategorized/95-autosave-v1', 0, 'revision', '', 0),
(99, 1, '2014-11-16 15:33:59', '2014-11-16 15:33:59', '<h1>Ayo Bicara!</h1>', 'Home', '', 'inherit', 'open', 'open', '', '95-revision-v1', '', '', '2014-11-16 15:33:59', '2014-11-16 15:33:59', '', 95, 'http://localhost:8888/uncategorized/95-revision-v1', 0, 'revision', '', 0),
(100, 1, '2014-11-16 15:47:41', '2014-11-16 15:47:41', '', 'thumb-youtube', '', 'inherit', 'open', 'open', '', 'thumb-youtube-2', '', '', '2014-11-16 15:47:41', '2014-11-16 15:47:41', '', 95, 'http://localhost:8888/wp-content/uploads/2014/11/thumb-youtube.jpg', 0, 'attachment', 'image/jpeg', 0),
(101, 1, '2014-11-16 15:47:47', '2014-11-16 15:47:47', '<h1>Ayo Bicara!</h1>', 'Home', '', 'inherit', 'open', 'open', '', '95-revision-v1', '', '', '2014-11-16 15:47:47', '2014-11-16 15:47:47', '', 95, 'http://localhost:8888/uncategorized/95-revision-v1', 0, 'revision', '', 0),
(102, 1, '2014-11-16 16:56:38', '2014-11-16 16:56:38', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. Etiam libero leo, euismod sed ipsum mollis, volutpat semper justo. Suspendisse malesuada quis nisl a pulvinar. Vivamus rhoncus felis sed enim finibus, sit amet tempor nisi tristique. Curabitur leo est, tempus a dignissim nec, imperdiet nec nulla. Sed hendrerit augue libero, sed fringilla felis mollis ac. Pellentesque lobortis, justo ut consectetur pellentesque, mi justo scelerisque dui, vel lacinia justo urna ac magna. In scelerisque arcu tempor tortor sagittis auctor.\r\n\r\nVivamus commodo felis nisi, vitae tempor mauris dignissim in. Pellentesque congue nec libero in mollis. Maecenas lectus sapien, tempus nec neque quis, feugiat tristique elit. Nullam varius quam quis cursus semper. Fusce placerat nisl eu felis iaculis congue. Donec sit amet ullamcorper turpis. Sed condimentum sollicitudin egestas. Nullam efficitur pretium molestie. Quisque in metus at orci elementum dapibus sed in urna. Maecenas sit amet leo ac nulla eleifend ullamcorper. Vestibulum congue eleifend risus a consectetur. Morbi volutpat, diam vitae volutpat vestibulum, nunc turpis dignissim mi, ut ornare leo nisl ut lorem.', 'Just Another Blog Post', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. ', 'inherit', 'open', 'open', '', '89-revision-v1', '', '', '2014-11-16 16:56:38', '2014-11-16 16:56:38', '', 89, 'http://localhost:8888/uncategorized/89-revision-v1', 0, 'revision', '', 0),
(103, 1, '2014-11-16 16:57:02', '2014-11-16 16:57:02', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. Etiam libero leo, euismod sed ipsum mollis, volutpat semper justo. Suspendisse malesuada quis nisl a pulvinar. Vivamus rhoncus felis sed enim finibus, sit amet tempor nisi tristique. Curabitur leo est, tempus a dignissim nec, imperdiet nec nulla. Sed hendrerit augue libero, sed fringilla felis mollis ac. Pellentesque lobortis, justo ut consectetur pellentesque, mi justo scelerisque dui, vel lacinia justo urna ac magna. In scelerisque arcu tempor tortor sagittis auctor.\r\n\r\nVivamus commodo felis nisi, vitae tempor mauris dignissim in. Pellentesque congue nec libero in mollis. Maecenas lectus sapien, tempus nec neque quis, feugiat tristique elit. Nullam varius quam quis cursus semper. Fusce placerat nisl eu felis iaculis congue. Donec sit amet ullamcorper turpis. Sed condimentum sollicitudin egestas. Nullam efficitur pretium molestie. Quisque in metus at orci elementum dapibus sed in urna. Maecenas sit amet leo ac nulla eleifend ullamcorper. Vestibulum congue eleifend risus a consectetur. Morbi volutpat, diam vitae volutpat vestibulum, nunc turpis dignissim mi, ut ornare leo nisl ut lorem.', 'Another Blog Post', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel eleifend leo. Pellentesque eget felis urna. Proin sagittis est sit amet dolor fermentum rutrum. ', 'inherit', 'open', 'open', '', '87-revision-v1', '', '', '2014-11-16 16:57:02', '2014-11-16 16:57:02', '', 87, 'http://localhost:8888/uncategorized/87-revision-v1', 0, 'revision', '', 0),
(104, 1, '2014-11-17 02:40:50', '2014-11-17 02:40:50', '<h4>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent enim leo, pharetra nec orci eu, lobortis tincidunt mi. Sed malesuada, est in interdum ornare, est justo sodales sapien, a dictum lorem odio vitae nulla</h4>', 'Menurut Kamu ?', '', 'publish', 'open', 'open', '', 'menurut-kamu-2', '', '', '2014-11-17 02:40:50', '2014-11-17 02:40:50', '', 0, 'http://localhost:8888/?page_id=104', 0, 'page', '', 0),
(105, 1, '2014-11-17 02:40:40', '2014-11-17 02:40:40', '<h4>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent enim leo, pharetra nec orci eu, lobortis tincidunt mi. Sed malesuada, est in interdum ornare, est justo sodales sapien, a dictum lorem odio vitae nulla</h4>', 'Menurut Kamu ?', '', 'inherit', 'open', 'open', '', '104-revision-v1', '', '', '2014-11-17 02:40:40', '2014-11-17 02:40:40', '', 104, 'http://localhost:8888/uncategorized/104-revision-v1', 0, 'revision', '', 0),
(106, 1, '2014-11-17 05:23:17', '2014-11-17 05:23:17', 'www.youtube.com/embed/J---aiyznGQ', 'Nyan Cat', '', 'inherit', 'open', 'open', '', '83-revision-v1', '', '', '2014-11-17 05:23:17', '2014-11-17 05:23:17', '', 83, 'http://localhost:8888/uncategorized/83-revision-v1', 0, 'revision', '', 0),
(107, 1, '2014-11-17 05:23:32', '2014-11-17 05:23:32', 'www.youtube.com/embed/J---aiyznGQ', 'Ada Apa dengan Cinta', '', 'inherit', 'open', 'open', '', '79-revision-v1', '', '', '2014-11-17 05:23:32', '2014-11-17 05:23:32', '', 79, 'http://localhost:8888/uncategorized/79-revision-v1', 0, 'revision', '', 0),
(108, 1, '2014-11-17 05:23:43', '2014-11-17 05:23:43', 'www.youtube.com/embed/J---aiyznGQ', 'Kucing Main Piano', '', 'inherit', 'open', 'open', '', '76-revision-v1', '', '', '2014-11-17 05:23:43', '2014-11-17 05:23:43', '', 76, 'http://localhost:8888/uncategorized/76-revision-v1', 0, 'revision', '', 0),
(109, 1, '2014-11-17 05:39:35', '2014-11-17 05:39:35', ' ', '', '', 'publish', 'open', 'open', '', '109', '', '', '2014-11-17 05:39:35', '2014-11-17 05:39:35', '', 0, 'http://localhost:8888/?p=109', 1, 'nav_menu_item', '', 0),
(110, 1, '2014-11-17 05:39:35', '2014-11-17 05:39:35', ' ', '', '', 'publish', 'open', 'open', '', '110', '', '', '2014-11-17 05:39:35', '2014-11-17 05:39:35', '', 0, 'http://localhost:8888/?p=110', 2, 'nav_menu_item', '', 0),
(111, 1, '2014-11-17 05:39:35', '2014-11-17 05:39:35', ' ', '', '', 'publish', 'open', 'open', '', '111', '', '', '2014-11-17 05:39:35', '2014-11-17 05:39:35', '', 0, 'http://localhost:8888/?p=111', 4, 'nav_menu_item', '', 0),
(112, 1, '2014-11-17 05:42:19', '2014-11-17 05:42:19', '', 'Terms and Conditions', '', 'publish', 'open', 'open', '', 'terms-and-conditions', '', '', '2014-11-17 06:57:49', '2014-11-17 06:57:49', '', 0, 'http://localhost:8888/?p=112', 1, 'nav_menu_item', '', 0),
(113, 1, '2014-11-17 05:42:19', '2014-11-17 05:42:19', ' ', '', '', 'publish', 'open', 'open', '', '113', '', '', '2014-11-17 06:57:49', '2014-11-17 06:57:49', '', 0, 'http://localhost:8888/?p=113', 2, 'nav_menu_item', '', 0),
(114, 1, '2014-11-17 05:42:19', '2014-11-17 05:42:19', '', 'Cookies', '', 'publish', 'open', 'open', '', 'cookies', '', '', '2014-11-17 06:57:49', '2014-11-17 06:57:49', '', 0, 'http://localhost:8888/?p=114', 3, 'nav_menu_item', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
UNIQUE KEY `slug` (`slug`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Pengetahuan', 'pengetahuan', 0),
(3, 'Main Menu', 'main-menu', 0),
(4, 'post-format-video', 'post-format-video', 0),
(5, 'Video', 'video', 0),
(6, 'Blogs', 'blogs', 0),
(7, 'Footer Menu', 'footer-menu', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_relationships`
--
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(4, 2, 0),
(7, 3, 0),
(8, 2, 0),
(10, 2, 0),
(12, 2, 0),
(14, 2, 0),
(16, 2, 0),
(18, 2, 0),
(20, 2, 0),
(76, 4, 0),
(76, 5, 0),
(79, 4, 0),
(79, 5, 0),
(83, 4, 0),
(83, 5, 0),
(85, 6, 0),
(87, 6, 0),
(89, 6, 0),
(109, 3, 0),
(110, 3, 0),
(111, 3, 0),
(112, 7, 0),
(113, 7, 0),
(114, 7, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_taxonomy`
--
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
--
-- Dumping data for table `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'category', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent enim leo, pharetra nec orci eu, lobortis tincidunt mi. Sed malesuada, est in interdum ornare, est justo sodales sapien, a dictum lorem odio vitae nulla', 0, 8),
(3, 3, 'nav_menu', '', 0, 4),
(4, 4, 'post_format', '', 0, 3),
(5, 5, 'category', 'Video Type of Content', 0, 3),
(6, 6, 'category', '', 0, 3),