-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleahbate_taf.sql
More file actions
799 lines (764 loc) · 408 KB
/
leahbate_taf.sql
File metadata and controls
799 lines (764 loc) · 408 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 5.6.14 - MySQL Community Server (GPL)
-- Server OS: Win32
-- HeidiSQL Version: 8.3.0.4694
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping database structure for leahbate_taf
DROP DATABASE IF EXISTS `leahbate_taf`;
CREATE DATABASE IF NOT EXISTS `leahbate_taf` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci */;
USE `leahbate_taf`;
-- Dumping structure for table leahbate_taf.wp_commentmeta
DROP TABLE IF EXISTS `wp_commentmeta`;
CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Dumping data for table leahbate_taf.wp_commentmeta: ~0 rows (approximately)
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
-- Dumping structure for table leahbate_taf.wp_comments
DROP TABLE IF EXISTS `wp_comments`;
CREATE TABLE IF NOT EXISTS `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- Dumping data for table leahbate_taf.wp_comments: ~0 rows (approximately)
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Mr WordPress', '', 'http://wordpress.org/', '', '2014-04-05 23:43:31', '2014-04-05 23:43:31', '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, 'post-trashed', '', '', 0, 0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
-- Dumping structure for table leahbate_taf.wp_links
DROP TABLE IF EXISTS `wp_links`;
CREATE TABLE IF NOT EXISTS `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Dumping data for table leahbate_taf.wp_links: ~0 rows (approximately)
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
-- Dumping structure for table leahbate_taf.wp_options
DROP TABLE IF EXISTS `wp_options`;
CREATE TABLE IF NOT EXISTS `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=249 DEFAULT CHARSET=utf8;
-- Dumping data for table leahbate_taf.wp_options: ~1,035 rows (approximately)
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost/leah_finalproject_wp', 'yes'),
(2, 'blogname', 'Theatre@First', 'yes'),
(3, 'blogdescription', 'Just another WordPress site', 'yes'),
(4, 'users_can_register', '0', 'yes'),
(5, 'admin_email', 'leahbateman@gmail.com', 'yes'),
(6, 'start_of_week', '1', 'yes'),
(7, 'use_balanceTags', '0', 'yes'),
(8, 'use_smilies', '1', 'yes'),
(9, 'require_name_email', '1', 'yes'),
(10, 'comments_notify', '1', 'yes'),
(11, 'posts_per_rss', '10', 'yes'),
(12, 'rss_use_excerpt', '0', 'yes'),
(13, 'mailserver_url', 'mail.example.com', 'yes'),
(14, 'mailserver_login', 'login@example.com', 'yes'),
(15, 'mailserver_pass', 'password', 'yes'),
(16, 'mailserver_port', '110', 'yes'),
(17, 'default_category', '1', 'yes'),
(18, 'default_comment_status', 'open', 'yes'),
(19, 'default_ping_status', 'open', 'yes'),
(20, 'default_pingback_flag', '1', 'yes'),
(21, 'posts_per_page', '10', 'yes'),
(22, 'date_format', 'F j, Y', 'yes'),
(23, 'time_format', 'g:i a', 'yes'),
(24, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(25, 'links_recently_updated_prepend', '<em>', 'yes'),
(26, 'links_recently_updated_append', '</em>', 'yes'),
(27, 'links_recently_updated_time', '120', 'yes'),
(28, 'comment_moderation', '0', 'yes'),
(29, 'moderation_notify', '1', 'yes'),
(30, 'permalink_structure', '/%postname%/', 'yes'),
(31, 'gzipcompression', '0', 'yes'),
(32, 'hack_file', '0', 'yes'),
(33, 'blog_charset', 'UTF-8', 'yes'),
(34, 'moderation_keys', '', 'no'),
(35, 'active_plugins', 'a:3:{i:0;s:27:"acf-gallery/acf-gallery.php";i:1;s:29:"acf-repeater/acf-repeater.php";i:2;s:30:"advanced-custom-fields/acf.php";}', 'yes'),
(36, 'home', 'http://localhost/leah_finalproject_wp', 'yes'),
(37, 'category_base', '', 'yes'),
(38, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(39, 'advanced_edit', '0', 'yes'),
(40, 'comment_max_links', '2', 'yes'),
(41, 'gmt_offset', '0', 'yes'),
(42, 'default_email_category', '1', 'yes'),
(43, 'recently_edited', '', 'no'),
(44, 'template', 'taf', 'yes'),
(45, 'stylesheet', 'taf', 'yes'),
(46, 'comment_whitelist', '1', 'yes'),
(47, 'blacklist_keys', '', 'no'),
(48, 'comment_registration', '0', 'yes'),
(49, 'html_type', 'text/html', 'yes'),
(50, 'use_trackback', '0', 'yes'),
(51, 'default_role', 'subscriber', 'yes'),
(52, 'db_version', '26691', 'yes'),
(53, 'uploads_use_yearmonth_folders', '1', 'yes'),
(54, 'upload_path', '', 'yes'),
(55, 'blog_public', '1', 'yes'),
(56, 'default_link_category', '2', 'yes'),
(57, 'show_on_front', 'posts', 'yes'),
(58, 'tag_base', '', 'yes'),
(59, 'show_avatars', '1', 'yes'),
(60, 'avatar_rating', 'G', 'yes'),
(61, 'upload_url_path', '', 'yes'),
(62, 'thumbnail_size_w', '150', 'yes'),
(63, 'thumbnail_size_h', '150', 'yes'),
(64, 'thumbnail_crop', '1', 'yes'),
(65, 'medium_size_w', '300', 'yes'),
(66, 'medium_size_h', '300', 'yes'),
(67, 'avatar_default', 'mystery', 'yes'),
(68, 'large_size_w', '1024', 'yes'),
(69, 'large_size_h', '1024', 'yes'),
(70, 'image_default_link_type', 'file', 'yes'),
(71, 'image_default_size', '', 'yes'),
(72, 'image_default_align', '', 'yes'),
(73, 'close_comments_for_old_posts', '0', 'yes'),
(74, 'close_comments_days_old', '14', 'yes'),
(75, 'thread_comments', '1', 'yes'),
(76, 'thread_comments_depth', '5', 'yes'),
(77, 'page_comments', '0', 'yes'),
(78, 'comments_per_page', '50', 'yes'),
(79, 'default_comments_page', 'newest', 'yes'),
(80, 'comment_order', 'asc', 'yes'),
(81, 'sticky_posts', 'a:0:{}', 'yes'),
(82, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(83, 'widget_text', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(84, 'widget_rss', 'a:0:{}', 'yes'),
(85, 'uninstall_plugins', 'a:0:{}', 'no'),
(86, 'timezone_string', '', 'yes'),
(87, 'page_for_posts', '0', 'yes'),
(88, 'page_on_front', '0', 'yes'),
(89, 'default_post_format', '0', 'yes'),
(90, 'link_manager_enabled', '0', 'yes'),
(91, 'initial_db_version', '26691', 'yes'),
(92, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a: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'),
(93, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(94, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(96, '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'),
(97, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(98, 'sidebars_widgets', 'a:3:{s:19:"wp_inactive_widgets";a:5:{i:0;s:14:"recent-posts-2";i:1;s:17:"recent-comments-2";i:2;s:10:"archives-2";i:3;s:12:"categories-2";i:4;s:6:"meta-2";}s:9:"sidebar-1";a:1:{i:0;s:8:"search-2";}s:13:"array_version";i:3;}', 'yes'),
(99, 'cron', 'a:5:{i:1397375880;a:1:{s:20:"wp_maybe_auto_update";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1397389422;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:1397432634;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:1397436960;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(105, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1397353005;s:7:"checked";a:4:{s:3:"taf";s:3:"1.0";s:14:"twentyfourteen";s:3:"1.0";s:14:"twentythirteen";s:3:"1.1";s:12:"twentytwelve";s:3:"1.3";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'),
(106, '_site_transient_timeout_browser_e854bb4a9e5be4f844d2d4a25f49694c', '1397346234', 'yes'),
(107, '_site_transient_browser_e854bb4a9e5be4f844d2d4a25f49694c', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"33.0.1750.154";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(109, 'can_compress_scripts', '1', 'yes'),
(127, '_transient_twentyfourteen_category_count', '1', 'yes'),
(130, 'theme_mods_twentyfourteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1396744301;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'),
(131, 'current_theme', 'taf', 'yes'),
(132, 'theme_mods_taf', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:7:"primary";i:2;}}', 'yes'),
(133, 'theme_switched', '', 'yes'),
(134, 'recently_activated', 'a:0:{}', 'yes'),
(137, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1396756130', 'yes'),
(138, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:40:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"3898";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"2456";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"2344";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"1930";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"1856";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1583";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1329";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"1325";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1310";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1260";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1225";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1121";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1000";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:3:"982";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:3:"974";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:3:"950";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:3:"844";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:3:"821";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:3:"780";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"722";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"686";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"681";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"678";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"623";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"615";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"595";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"572";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"570";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"541";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"539";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"530";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"522";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"506";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"505";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"471";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"458";}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";s:3:"453";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"452";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"436";}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";s:3:"432";}}', 'yes'),
(143, 'rewrite_rules', 'a:81:{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:33:"shows/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:43:"shows/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:63:"shows/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:58:"shows/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:58:"shows/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:26:"shows/([^/]+)/trackback/?$";s:36:"index.php?show_post=$matches[1]&tb=1";s:34:"shows/([^/]+)/page/?([0-9]{1,})/?$";s:49:"index.php?show_post=$matches[1]&paged=$matches[2]";s:41:"shows/([^/]+)/comment-page-([0-9]{1,})/?$";s:49:"index.php?show_post=$matches[1]&cpage=$matches[2]";s:26:"shows/([^/]+)(/[0-9]+)?/?$";s:48:"index.php?show_post=$matches[1]&page=$matches[2]";s:22:"shows/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:32:"shows/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:52:"shows/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:47:"shows/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:47:"shows/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s: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: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:31:"index.php?name=$matches[1]&tb=1";s:40:"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:35:"([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:28:"([^/]+)/page/?([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&paged=$matches[2]";s:35:"([^/]+)/comment-page-([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&cpage=$matches[2]";s:20:"([^/]+)(/[0-9]+)?/?$";s:43:"index.php?name=$matches[1]&page=$matches[2]";s:16:"[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:26:"[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:46:"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";}', 'yes'),
(148, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(155, 'category_children', 'a:0:{}', 'yes'),
(156, 'acf_version', '4.3.5', 'yes'),
(182, '_site_transient_timeout_browser_a5ddb732854509d48d25f61b977665a0', '1397427376', 'yes'),
(183, '_site_transient_browser_a5ddb732854509d48d25f61b977665a0', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:11:"36.0.1928.2";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'),
(217, 'auto_core_update_notified', 'a:4:{s:4:"type";s:6:"manual";s:5:"email";s:21:"leahbateman@gmail.com";s:7:"version";s:5:"3.8.2";s:9:"timestamp";i:1397344426;}', 'yes'),
(218, '_site_transient_update_plugins', 'O:8:"stdClass":4:{s:12:"last_checked";i:1397353012;s:7:"checked";a:5:{s:30:"advanced-custom-fields/acf.php";s:5:"4.3.5";s:27:"acf-gallery/acf-gallery.php";s:5:"1.1.1";s:29:"acf-repeater/acf-repeater.php";s:5:"1.1.1";s:19:"akismet/akismet.php";s:5:"2.5.9";s:9:"hello.php";s:3:"1.6";}s:8:"response";a:1:{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:"2.6.0";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.2.6.0.zip";}}s:12:"translations";a:0:{}}', 'yes'),
(222, '_site_transient_timeout_browser_d954cbb5470422ed7219c9fa8cb73d16', '1397951184', 'yes'),
(223, '_site_transient_browser_d954cbb5470422ed7219c9fa8cb73d16', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:11:"36.0.1938.0";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'),
(224, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1397389598', 'no'),
(225, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:51:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:25:"http://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 08 Apr 2014 21:08: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: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:31:"http://wordpress.org/?v=3.9-RC1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"WordPress 3.9 Release Candidate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wordpress.org/news/2014/04/wordpress-3-9-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:"Tue, 08 Apr 2014 21:05: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: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=3129";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:338:"As teased earlier, the first release candidate for WordPress 3.9 is now available for testing! We hope to ship WordPress 3.9 next week, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.) To test WordPress 3.9 […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:3022:"<p><a href="http://wordpress.org/news/2014/04/wordpress-3-8-2/">As teased earlier</a>, the first release candidate for WordPress 3.9 is now available for testing!</p>\n<p>We hope to ship WordPress 3.9 <em>next week</em>, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p>To test WordPress 3.9 RC1, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.9-RC1.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the work-in-progress About screen in your dashboard (<strong><img src="http://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692" alt="" width="16" height="16" /> → About</strong> in the toolbar) and check out <a title="WordPress 3.9 Beta 1" href="http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/">the Beta 1 post</a>.</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href="http://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href="http://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p><strong>If you’re a plugin author</strong>, there are two important changes in particular to be aware of:</p>\n<ul>\n<li>TinyMCE received a major update, to version 4.0. Any editor plugins written for TinyMCE 3.x might require some updates. (If things broke, we’d like to hear about them so we can make adjustments.) For more, see TinyMCE’s <a href="http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x">migration guide</a> and <a href="http://www.tinymce.com/wiki.php/api4:index">API documentation</a>, and the notes on the <a href="http://make.wordpress.org/core/2014/01/18/tinymce-4-0-is-in-core/">core development blog</a>.</li>\n<li>WordPress 3.9 now uses the MySQLi Improved extension for sites running PHP 5.5. Any plugins that made direct calls to <code>mysql_*</code> functions will experience some problems on these sites. For more information, see the notes on the <a href="http://make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/">core development blog</a>.</li>\n</ul>\n<p>Be sure to follow along the core development blog, where we will be continuing to post <a href="http://make.wordpress.org/core/tag/3-9-dev-notes/">notes for developers for 3.9</a>. (For example, read <a href="http://make.wordpress.org/core/2014/03/27/masonry-in-wordpress-3-9/">this</a> if you are using Masonry in your theme.) And please, please update your plugin’s <em>Tested up to</em> version in the readme to 3.9 before April 16.</p>\n<p><em>Release candidate<br />\nThis haiku’s the easy one<br />\n3.9 is near</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:71:"http://wordpress.org/news/2014/04/wordpress-3-9-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: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:32:"WordPress 3.8.2 Security Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2014/04/wordpress-3-8-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/news/2014/04/wordpress-3-8-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 08 Apr 2014 19:04: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: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=3124";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:355:"WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately. This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by Jon Cave 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:2272:"<p>WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by <a href="http://joncave.co.uk/">Jon Cave</a> of the WordPress security team.</p>\n<p>It also contains a fix to prevent a user with the Contributor role from improperly publishing posts. Reported by <a href="http://edik.ch/">edik</a>.</p>\n<p>This release also fixes nine bugs and contains three other security hardening changes:</p>\n<ul>\n<li>Pass along additional information when processing pingbacks to help hosts identify potentially abusive requests.</li>\n<li>Fix a low-impact SQL injection by trusted users. Reported by <a href="http://www.dxw.com/">Tom Adams</a> of dxw.</li>\n<li>Prevent possible cross-domain scripting through Plupload, the third-party library WordPress uses for uploading files. Reported by <a href="http://szgru.website.pl/">Szymon Gruszecki</a>.</li>\n</ul>\n<p>We appreciated <a href="http://codex.wordpress.org/FAQ_Security">responsible disclosure</a> of these security issues directly to our security team. For more information on all of the changes, see the <a href="http://codex.wordpress.org/Version_3.8.2">release notes</a> or consult <a href="https://core.trac.wordpress.org/log/branches/3.8?rev=28057&stop_rev=27024">the list of changes</a>.</p>\n<p><a href="http://wordpress.org/download/">Download WordPress 3.8.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.8.2 within 12 hours. If you are still on WordPress 3.7.1, you will be updated to 3.7.2, which contains the same security fixes as 3.8.2. We don’t support older versions, so please update to 3.8.2 for the latest and greatest.</p>\n<p>Already testing WordPress 3.9? The first release candidate is <a href="https://wordpress.org/wordpress-3.9-RC1.zip">now available</a> (zip) and it contains these security fixes. Look for a full announcement later today; we expect to release 3.9 next week.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/04/wordpress-3-8-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:2;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 3.9 Beta 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-3/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 29 Mar 2014 13:15:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s: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=3106";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:373:"The third (and maybe last) beta of WordPress 3.9 is now available for download. Beta 3 includes more than 200 changes, including: New features like live widget previews and the new theme installer are now more ready for prime time, so check ‘em out. UI refinements when editing images and when working with media in the editor. We’ve also brought […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:2668:"<p>The third (and maybe last) beta of WordPress 3.9 is now available for download.</p>\n<p>Beta 3 includes more than 200 <a href="https://core.trac.wordpress.org/log?rev=27850&stop_rev=27639&limit=300">changes</a>, including:</p>\n<ul>\n<li>New features like live widget previews and the new theme installer are now more ready for prime time, so check ‘em out.</li>\n<li>UI refinements when editing images and when working with media in the editor. We’ve also brought back some of the advanced display settings for images.</li>\n<li>If you want to test out audio and video playlists, the links will appear in the media manager once you’ve uploaded an audio or video file.</li>\n<li>For theme developers, we’ve added HTML5 caption support (<a class="reopened ticket" title="task (blessed): HTML5 captions (reopened)" href="https://core.trac.wordpress.org/ticket/26642">#26642</a>) to match the new gallery support (<a class="closed ticket" title="enhancement: HTML5 Galleries (closed: fixed)" href="https://core.trac.wordpress.org/ticket/26697">#26697</a>).</li>\n<li>The formatting function that turns straight quotes into smart quotes (among other things) underwent some changes to drastically speed it up, so let us know if you see anything weird.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for an April release, 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/03/wordpress-3-9-beta-1/">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 3.9 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 3.9.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.9-beta3.zip">download the beta here</a> (zip).</p>\n<p><em>WordPress 3.9<br />\nLet’s make the date official<br />\nIt’s April 16</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-3/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 3.9 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Mar 2014 05:01:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3101";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:309:"WordPress 3.9 Beta 2 is now available for testing! We’ve made more than a hundred changes since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to the Beta 1 announcement post. Some of the changes in […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1901:"<p>WordPress 3.9 Beta 2 is now available for testing!</p>\n<p>We’ve made more than a hundred <a href="https://core.trac.wordpress.org/log?rev=27639&stop_rev=27500&limit=200">changes</a> since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to <a href="https://wordpress.org/news/2014/03/wordpress-3-9-beta-1/">the Beta 1 announcement post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Rendering of embedded audio and video players directly in the visual editor.</li>\n<li>Visual and functional improvements to the editor, the media manager, and theme installer.</li>\n<li>Various bug fixes to TinyMCE, the software behind the visual editor.</li>\n<li>Lots of fixes to widget management in the theme customizer.</li>\n</ul>\n<p>As always,<strong> if you think you’ve found a bug</strong>, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9">everything we’ve fixed</a> so far.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.9-beta2.zip">download the beta here</a> (zip).</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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 3.9 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 11 Mar 2014 13:42:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3083";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"I’m excited to announce that the first beta of WordPress 3.9 is now available for testing. WordPress 3.9 is due out next month — but in order to hit that goal, we need your help testing all of the goodies we’ve added: We updated TinyMCE, the software powering the visual editor, to the latest version. […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:6065:"<p>I’m excited to announce that the <strong>first beta of WordPress 3.9</strong> is now available for testing.</p>\n<p>WordPress 3.9 is due out next month — but in order to hit that goal, <strong>we need your help</strong> testing all of the goodies we’ve added:</p>\n<ul>\n<li>We updated TinyMCE, the software powering the visual editor, to the latest version. Be on the lookout for cleaner markup. Also try the new paste handling — if you paste in a block of text from Microsoft Word, for example, it will no longer come out terrible. (The “Paste from Word” button you probably never noticed has been removed.) It’s possible some plugins that added stuff to the visual editor (like a new toolbar button) no longer work, so we’d like to hear about them (<a href="https://core.trac.wordpress.org/ticket/24067">#24067</a>). (And be sure to <a href="http://wordpress.org/support/">open a support thread</a> for the plugin author.)</li>\n<li>We’ve added <strong>widget management to live previews</strong> (the customizer). Please test editing, adding, and rearranging widgets! (<a href="https://core.trac.wordpress.org/ticket/27112">#27112</a>) We’ve also added the ability to upload, crop, and manage header images, without needing to leave the preview. (<a href="https://core.trac.wordpress.org/ticket/21785">#21785</a>)</li>\n<li>We brought 3.8′s beautiful new theme browsing experience to the <strong>theme installer</strong>. Check it out! (<a title="View ticket" href="https://core.trac.wordpress.org/ticket/27055">#27055</a>)</li>\n<li><strong>Galleries</strong> now receive a live preview in the editor. Upload some photos and insert a gallery to see this in action. (<a href="https://core.trac.wordpress.org/ticket/26959">#26959</a>)</li>\n<li>You can now <strong>drag-and-drop</strong> images directly onto the editor to upload them. It can be a bit finicky, so try it and help us work out the kinks. (<a href="https://core.trac.wordpress.org/ticket/19845">#19845</a>)</li>\n<li>Some things got improved around <strong>editing images</strong>. It’s a lot easier to make changes to an image after you insert it into a post (<a class="closed" title="View ticket" href="https://core.trac.wordpress.org/ticket/24409">#24409</a>) and you no longer get kicked to a new window when you need to crop or rotate an image (<a href="https://core.trac.wordpress.org/ticket/21811">#21811</a>).</li>\n<li>New <strong>audio/video playlists</strong>. Upload a few audio or video files to test these. (<a href="https://core.trac.wordpress.org/ticket/26631">#26631</a>)</li>\n</ul>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9">everything we’ve fixed</a> so far.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.9-beta1.zip">download the beta here</a> (zip).</p>\n<hr />\n<p><strong>DEVELOPERS!</strong> Hello! There’s lots for you, too.</p>\n<p><strong>Please test your plugins and themes!</strong> There’s a lot of great stuff under the hood in 3.9 and we hope to blog a bit about them in the coming days. If you haven’t been reading the awesome <a href="http://make.wordpress.org/core/tag/week-in-core/">weekly summaries</a> on the <a href="http://make.wordpress.org/core/">main core development blog</a>, that’s a great place to start. (You should definitely follow that blog.) For now, here are some things to watch out for when testing:</p>\n<ul>\n<li>The <strong>load process in multisite</strong> got rewritten. If you notice any issues with your network, see <a href="https://core.trac.wordpress.org/ticket/27003">#27003</a>.</li>\n<li>We now use the <strong>MySQL Improved (mysqli) database extension</strong> if you’re running a recent version of PHP (<a href="https://core.trac.wordpress.org/ticket/21663">#21663</a>). Please test your plugins and see that everything works well, and please make sure you’re not calling <code>mysql_*</code> functions directly.</li>\n<li><strong>Autosave</strong> was refactored, so if you see any issues related to autosaving, heartbeat, etc., let us know (<a href="https://core.trac.wordpress.org/ticket/25272">#25272</a>).</li>\n<li>Library updates, in particular Backbone 1.1 and Underscore 1.6 (<a href="https://core.trac.wordpress.org/ticket/26799">#26799</a>). Also Masonry 3 (<a href="https://core.trac.wordpress.org/ticket/25351">#25351</a>), PHPMailer (<a href="https://core.trac.wordpress.org/ticket/25560">#25560</a>), Plupload (<a href="https://core.trac.wordpress.org/ticket/25663">#25663</a>), and TinyMCE (<a href="https://core.trac.wordpress.org/ticket/24067">#24067</a>).</li>\n<li>TinyMCE 4.0 is a <em>major</em> update. Please see TinyMCE’s <a href="http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x">upgrade guide</a> and our <a href="https://core.trac.wordpress.org/ticket/24067">implementation ticket</a> for more. If you have any questions or problems, please <a href="http://wordpress.org/support/forum/alphabeta">open a thread in the support forums</a>.</li>\n</ul>\n<p>Happy testing!</p>\n<p><em><em>Lots of improvements<br />\nLittle things go a long way</em><br />\nPlease test beta one<br />\n</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"WordPress 3.8.1 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2014/01/wordpress-3-8-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/news/2014/01/wordpress-3-8-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 23 Jan 2014 20:37:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3063";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:358:"After six weeks and more than 9.3 million downloads of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available. Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3809:"<p>After six weeks and more than <a href="http://wordpress.org/download/counter/">9.3 million downloads</a> of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available.</p>\n<p>Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query was resolved. And if you’ve been frustrated by submit buttons that won’t do anything when you click on them (or thought you were going crazy, like some of us), we’ve found and fixed this “dead zone” on submit buttons.</p>\n<p>It also contains a fix for <strong>embedding tweets</strong> (by placing the URL to the tweet on its own line), which was broken due to a recent Twitter API change. (For more on Embeds, see <a href="http://codex.wordpress.org/Embeds">the Codex</a>.)</p>\n<p>For a full list of changes, consult the <a href="http://core.trac.wordpress.org/query?milestone=3.8.1">list of tickets</a> and <a href="https://core.trac.wordpress.org/log/branches/3.8?rev=27018&stop_rev=26862">the changelog</a>. There’s also a <a href="http://make.wordpress.org/core/2014/01/22/wordpress-3-8-1-release-candidate/">detailed summary</a> for developers on the development blog.</p>\n<p>If you are one of the millions already running WordPress 3.8, we will start rolling out automatic background updates for WordPress 3.8.1 in the next few hours. For sites <a href="http://wordpress.org/plugins/background-update-tester/">that support them</a>, of course.</p>\n<p><a href="http://wordpress.org/download/">Download WordPress 3.8.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Thanks to all of these fine individuals for contributing to 3.8.1:</p>\n<p><a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="http://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="http://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="http://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>, <a href="http://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="http://profiles.wordpress.org/cojennin">Connor Jennings</a>, <a href="http://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="http://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="http://profiles.wordpress.org/fboender">fboender</a>, <a href="http://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="http://profiles.wordpress.org/janrenn">janrenn</a>, <a href="http://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="#">José Pino</a>, <a href="http://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="http://profiles.wordpress.org/matveb">Matias Ventura</a>, <a href="http://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="http://profiles.wordpress.org/iammattthomas">Matt Thomas</a>, <a href="http://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="http://profiles.wordpress.org/batmoo">Mohammad Jangda</a>, <a href="http://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="http://profiles.wordpress.org/nivijah">nivijah</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="http://profiles.wordpress.org/undergroundnetwork">undergroundnetwork</a>, and <a href="http://profiles.wordpress.org/yurivictor">Yuri Victor</a>.</p>\n<p><em>WordPress three eight one<br />\nWe heard you didn’t like bugs<br />\nSo we took them out</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/01/wordpress-3-8-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"WordPress 3.8 “Parker”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://wordpress.org/news/2013/12/parker/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2013/12/parker/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Dec 2013 17:00:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2765";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:354:"Version 3.8 of WordPress, named “Parker” in honor of Charlie Parker, bebop innovator, is available for download or update in your WordPress dashboard. We hope you’ll think this is the most beautiful update yet. Introducing a modern new design WordPress has gotten a facelift. 3.8 brings a fresh new look to the entire admin dashboard. […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:18754:"<p>Version 3.8 of WordPress, named “Parker” in honor of <a href="http://en.wikipedia.org/wiki/Charlie_Parker">Charlie Parker</a>, bebop innovator, is available <a href="http://wordpress.org/download/">for download</a> or update in your WordPress dashboard. We hope you’ll think this is the most beautiful update yet.</p>\n<div id="v-6wORgoGb-1" class="video-player"><embed id="v-6wORgoGb-1-video" src="http://s0.videopress.com/player.swf?v=1.03&guid=6wORgoGb&isDynamicSeeking=true" type="application/x-shockwave-flash" width="692" height="388" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div>\n<h2 class="aligncenter">Introducing a modern new design</h2>\n<p><img class="wp-image-2951 aligncenter" alt="overview" src="http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/overview.jpg?resize=623%2C193" data-recalc-dims="1" /></p>\n<p>WordPress has gotten a facelift. 3.8 brings a fresh new look to the entire admin dashboard. Gone are overbearing gradients and dozens of shades of grey — bring on a bigger, bolder, more colorful design!</p>\n<p><img class="aligncenter wp-image-2856" style="margin-left: 0;margin-right: 0" alt="about-modern-wordpress" src="http://i2.wp.com/wpdotorg.files.wordpress.com/2013/12/design.png?resize=623%2C151" data-recalc-dims="1" /></p>\n<h3>Modern aesthetic</h3>\n<p>The new WordPress dashboard has a fresh, uncluttered design that embraces clarity and simplicity.</p>\n<h3>Clean typography</h3>\n<p>The Open Sans typeface provides simple, friendly text that is optimized for both desktop and mobile viewing. It’s even open source, just like WordPress.</p>\n<h3>Refined contrast</h3>\n<p>We think beautiful design should never sacrifice legibility. With superior contrast and large, comfortable type, the new design is easy to read and a pleasure to navigate.</p>\n<hr />\n<h2 class="aligncenter">WordPress on every device</h2>\n<p><img class="alignright wp-image-2984" alt="responsive" src="http://i2.wp.com/wpdotorg.files.wordpress.com/2013/12/responsive.jpg?resize=255%2C255" data-recalc-dims="1" />We all access the internet in different ways. Smartphone, tablet, notebook, desktop — no matter what you use, WordPress will adapt and you’ll feel right at home.</p>\n<h3>High definition at high speed</h3>\n<p>WordPress is sharper than ever with new vector-based icons that scale to your screen. By ditching pixels, pages load significantly faster, too.</p>\n<hr />\n<h2 class="aligncenter">Admin color schemes to match your personality</h2>\n<p><img class="aligncenter wp-image-2954" alt="colors" src="http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/colors.jpg?resize=623%2C339" data-recalc-dims="1" /></p>\n<p>WordPress just got a colorful new update. We’ve included eight new admin color schemes so you can pick the one that suits you best.</p>\n<p>Color schemes can be previewed and changed from your Profile page.</p>\n<hr />\n<h2 class="aligncenter">Refined theme management</h2>\n<p><img class="alignright wp-image-2967" alt="themes" src="http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/themes.jpg?resize=360%2C344" data-recalc-dims="1" />The new themes screen lets you survey your themes at a glance. Or want more information? Click to discover more. Then sit back and use your keyboard’s navigation arrows to flip through every theme you’ve got.</p>\n<h3>Smoother widget experience</h3>\n<p>Drag-drag-drag. Scroll-scroll-scroll. Widget management can be complicated. With the new design, we’ve worked to streamline the widgets screen.</p>\n<p>Have a large monitor? Multiple widget areas stack side-by-side to use the available space. Using a tablet? Just tap a widget to add it.</p>\n<hr />\n<h2 class="aligncenter">Twenty Fourteen, a sleek new magazine theme</h2>\n<p><img class="aligncenter size-large wp-image-2789" alt="The new Twenty Fourteen theme displayed on a laptop. tablet and phone" src="http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/twentyfourteen.jpg?resize=692%2C275" data-recalc-dims="1" /></p>\n<h3>Turn your blog into a magazine</h3>\n<p>Create a beautiful magazine-style site with WordPress and Twenty Fourteen. Choose a grid or a slider to display featured content on your homepage. Customize your site with three widget areas or change your layout with two page templates.</p>\n<p>With a striking design that does not compromise our trademark simplicity, Twenty Fourteen is our most intrepid default theme yet.</p>\n<hr />\n<h2>Beginning of a new era</h2>\n<p>This release was led by Matt Mullenweg. This is our second release using the new plugin-first development process, with a much shorter timeframe than in the past. We think it’s been going great. You can check out the features currently in production on the <a title="Make WordPress Core" href="http://make.wordpress.org/core/" target="_blank">make/core blog</a>.</p>\n<p>There are 188 contributors with props in this release:</p>\n<p><a href="http://profiles.wordpress.org/aaronholbrook">Aaron Holbrook</a>, <a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/adamsilverstein">adamsilverstein</a>, <a href="http://profiles.wordpress.org/admiralthrawn">admiralthrawn</a>, <a href="http://profiles.wordpress.org/ahoereth">Alexander Hoereth</a>, <a href="http://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="http://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="http://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="http://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="http://profiles.wordpress.org/aralbald">Andrey Kabakchiev</a>, <a href="http://profiles.wordpress.org/apeatling">Andy Peatling</a>, <a href="http://profiles.wordpress.org/ankitgadertcampcom">Ankit Gade</a>, <a href="http://profiles.wordpress.org/atimmer">Anton Timmermans</a>, <a href="http://profiles.wordpress.org/fliespl">Arkadiusz Rzadkowolski</a>, <a href="http://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>, <a href="http://profiles.wordpress.org/bassgang">bassgang</a>, <a href="http://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="http://profiles.wordpress.org/bananastalktome">Billy (bananastalktome)</a>, <a href="http://profiles.wordpress.org/binarymoon">binarymoon</a>, <a href="http://profiles.wordpress.org/bradyvercher">Brady Vercher</a>, <a href="http://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="http://profiles.wordpress.org/rzen">Brian Richards</a>, <a href="http://profiles.wordpress.org/bpetty">Bryan Petty</a>, <a href="http://profiles.wordpress.org/calin">Calin Don</a>, <a href="http://profiles.wordpress.org/carldanley">Carl Danley</a>, <a href="http://profiles.wordpress.org/sixhours">Caroline Moore</a>, <a href="http://profiles.wordpress.org/caspie">Caspie</a>, <a href="http://profiles.wordpress.org/chrisbliss18">Chris Jean</a>, <a href="http://profiles.wordpress.org/iblamefish">Clinton Montague</a>, <a href="http://profiles.wordpress.org/cojennin">cojennin</a>, <a href="http://profiles.wordpress.org/corphi">Corphi</a>, <a href="http://profiles.wordpress.org/dbernar1">Dan Bernardic</a>, <a href="http://profiles.wordpress.org/danieldudzic">Daniel Dudzic</a>, <a href="http://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="http://profiles.wordpress.org/datafeedrcom">datafeedr</a>, <a href="http://profiles.wordpress.org/lessbloat">Dave Martin</a>, <a href="http://profiles.wordpress.org/drw158">Dave Whitley</a>, <a href="http://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="http://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="http://profiles.wordpress.org/dougwollison">Doug Wollison</a>, <a href="http://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="http://profiles.wordpress.org/dziudek">dziudek</a>, <a href="http://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="http://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="http://profiles.wordpress.org/ethitter">Erick Hitter</a>, <a href="http://profiles.wordpress.org/evansolomon">Evan Solomon</a>, <a href="http://profiles.wordpress.org/faison">Faison</a>, <a href="http://profiles.wordpress.org/fboender">fboender</a>, <a href="http://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="http://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="http://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="http://profiles.wordpress.org/soulseekah">Gennady Kovshenin</a>, <a href="http://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="http://profiles.wordpress.org/gnarf37">gnarf37</a>, <a href="http://profiles.wordpress.org/tivnet">Gregory Karpinsky</a>, <a href="http://profiles.wordpress.org/hanni">hanni</a>, <a href="http://profiles.wordpress.org/helen">Helen Hou-Sandi</a>, <a href="http://profiles.wordpress.org/iandunn">Ian Dunn</a>, <a href="http://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="http://profiles.wordpress.org/isaackeyet">Isaac Keyet</a>, <a href="http://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="http://profiles.wordpress.org/jacklenox">Jack Lenox</a>, <a href="http://profiles.wordpress.org/janhenckens">janhenckens</a>, <a href="http://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="http://profiles.wordpress.org/janrenn">janrenn</a>, <a href="http://profiles.wordpress.org/jblz">Jeff Bowen</a>, <a href="http://profiles.wordpress.org/jeffr0">Jeff Chandler</a>, <a href="http://profiles.wordpress.org/jenmylo">Jen Mylo</a>, <a href="http://profiles.wordpress.org/buffler">Jeremy Buller</a>, <a href="http://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="http://profiles.wordpress.org/jeherve">Jeremy Herve</a>, <a href="http://profiles.wordpress.org/jpry">Jeremy Pry</a>, <a href="http://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="http://profiles.wordpress.org/jhned">jhned</a>, <a href="http://profiles.wordpress.org/jim912">jim912</a>, <a href="http://profiles.wordpress.org/jartes">Joan Artes</a>, <a href="http://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="http://profiles.wordpress.org/joen">Joen Asmussen</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="http://profiles.wordpress.org/johnafish">John Fish</a>, <a href="http://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="http://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="http://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="http://profiles.wordpress.org/joshuaabenazer">Joshua Abenazer</a>, <a href="http://profiles.wordpress.org/nukaga">Junko Nukaga</a>, <a href="http://profiles.wordpress.org/devesine">Justin de Vesine</a>, <a href="http://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="http://profiles.wordpress.org/kadamwhite">K. Adam White</a>, <a href="http://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="http://profiles.wordpress.org/codebykat">Kat Hagan</a>, <a href="http://profiles.wordpress.org/littlethingsstudio">Kate Whitley</a>, <a href="http://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="http://profiles.wordpress.org/kpdesign">Kim Parsell</a>, <a href="http://profiles.wordpress.org/kwight">Kirk Wight</a>, <a href="http://profiles.wordpress.org/koki4a">Konstantin Dankov</a>, <a href="http://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="http://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="http://profiles.wordpress.org/drozdz">Krzysiek Drozdz</a>, <a href="http://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="http://profiles.wordpress.org/leewillis77">Lee Willis</a>, <a href="http://profiles.wordpress.org/lite3">lite3</a>, <a href="http://profiles.wordpress.org/lucp">Luc Princen</a>, <a href="http://profiles.wordpress.org/latz">Lutz Schroer</a>, <a href="http://profiles.wordpress.org/mako09">Mako</a>, <a href="http://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="http://profiles.wordpress.org/markmcwilliams">Mark McWilliams</a>, <a href="http://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="http://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="http://profiles.wordpress.org/iammattthomas">Matt Thomas</a>, <a href="http://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>, <a href="http://profiles.wordpress.org/mdbitz">Matthew Denton</a>, <a href="http://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="http://profiles.wordpress.org/matveb">Matías Ventura</a>, <a href="http://profiles.wordpress.org/megane9988">megane9988</a>, <a href="http://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="http://profiles.wordpress.org/micahwave">micahwave</a>, <a href="http://profiles.wordpress.org/cainm">Michael Cain</a>, <a href="http://profiles.wordpress.org/mitchoyoshitaka">Michael Erlewine</a>, <a href="http://profiles.wordpress.org/michelwppi">Michel - xiligroup dev</a>, <a href="http://profiles.wordpress.org/chellycat">Michelle Langston</a>, <a href="http://profiles.wordpress.org/gradyetc">Mike Burns</a>, <a href="http://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="http://profiles.wordpress.org/mikelittle">Mike Little</a>, <a href="http://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="http://profiles.wordpress.org/dimadin">Milan Dinic</a>, <a href="http://profiles.wordpress.org/batmoo">Mohammad Jangda</a>, <a href="http://profiles.wordpress.org/morganestes">Morgan Estes (morganestes)</a>, <a href="http://profiles.wordpress.org/mt8biz">moto hachi</a>, <a href="http://profiles.wordpress.org/Nao">Naoko Takano</a>, <a href="http://profiles.wordpress.org/neil_pie">Neil Pie</a>, <a href="http://profiles.wordpress.org/nickdaugherty">Nick Daugherty</a>, <a href="http://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="http://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>, <a href="http://profiles.wordpress.org/ninio">ninio</a>, <a href="http://profiles.wordpress.org/ninnypants">ninnypants</a>, <a href="http://profiles.wordpress.org/nivijah">nivijah</a>, <a href="http://profiles.wordpress.org/nofearinc">nofearinc</a>, <a href="http://profiles.wordpress.org/nvwd">Nowell VanHoesen</a>, <a href="http://profiles.wordpress.org/odysseygate">odyssey</a>, <a href="http://profiles.wordpress.org/originalexe">OriginalEXE</a>, <a href="http://profiles.wordpress.org/swissspidy">Pascal Birchler</a>, <a href="http://profiles.wordpress.org/pauldewouters">Paul de Wouters</a>, <a href="http://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="http://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="http://profiles.wordpress.org/senlin">Piet</a>, <a href="http://profiles.wordpress.org/ptahdunbar">Ptah Dunbar</a>, <a href="http://profiles.wordpress.org/raamdev">Raam Dev</a>, <a href="http://profiles.wordpress.org/bamadesigner">Rachel Carden</a>, <a href="http://profiles.wordpress.org/rachelbaker">rachelbaker</a>, <a href="http://profiles.wordpress.org/radices">Radices</a>, <a href="http://profiles.wordpress.org/mauryaratan">Ram Ratan Maurya</a>, <a href="http://profiles.wordpress.org/defries">Remkus de Vries</a>, <a href="http://profiles.wordpress.org/ounziw">Rescuework Support</a>, <a href="http://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>, <a href="http://profiles.wordpress.org/rdall">Robert Dall</a>, <a href="http://profiles.wordpress.org/wet">Robert Wetzlmayr, PHP-Programmierer</a>, <a href="http://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="http://profiles.wordpress.org/ryan">Ryan Boren</a>, <a href="http://profiles.wordpress.org/otto42">Samuel Wood</a>, <a href="http://profiles.wordpress.org/sanchothefat">sanchothefat</a>, <a href="http://profiles.wordpress.org/sboisvert">sboisvert</a>, <a href="http://profiles.wordpress.org/scottbasgaard">Scott Basgaard</a>, <a href="http://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/scribu">scribu</a>, <a href="http://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="http://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="http://profiles.wordpress.org/shaunandrews">Shaun Andrews</a>, <a href="http://profiles.wordpress.org/designsimply">Sheri Bigelow (designsimply)</a>, <a href="http://profiles.wordpress.org/shinichin">ShinichiN</a>, <a href="http://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="http://profiles.wordpress.org/siobhan">Siobhan</a>, <a href="http://profiles.wordpress.org/siobhyb">Siobhan Bamber (siobhyb)</a>, <a href="http://profiles.wordpress.org/sirbrillig">sirbrillig</a>, <a href="http://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="http://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="http://profiles.wordpress.org/stephenharris">Stephen Harris</a>, <a href="http://profiles.wordpress.org/stevenkword">Steven Word</a>, <a href="http://profiles.wordpress.org/iamtakashi">Takashi Irie</a>, <a href="http://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>, <a href="http://profiles.wordpress.org/tmtoy">Takuma Morikawa</a>, <a href="http://profiles.wordpress.org/thomasguillot">Thomas Guillot</a>, <a href="http://profiles.wordpress.org/tierra">tierra</a>, <a href="http://profiles.wordpress.org/tillkruess">Till Krüss</a>, <a href="http://profiles.wordpress.org/tlamedia">TLA Media</a>, <a href="http://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="http://profiles.wordpress.org/tommcfarlin">tommcfarlin</a>, <a href="http://profiles.wordpress.org/zodiac1978">Torsten Landsiedel</a>, <a href="http://profiles.wordpress.org/taupecat">Tracy Rotton</a>, <a href="http://profiles.wordpress.org/trishasalas">trishasalas</a>, <a href="http://profiles.wordpress.org/mbmufffin">Tyler Smith</a>, <a href="http://profiles.wordpress.org/grapplerulrich">Ulrich</a>, <a href="http://profiles.wordpress.org/undergroundnetwork">undergroundnetwork</a>, <a href="http://profiles.wordpress.org/l10n">Vladimir</a>, <a href="http://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="http://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="http://profiles.wordpress.org/yonasy">yonasy</a>, <a href="http://profiles.wordpress.org/yurivictor">Yuri Victor</a>, and <a href="http://profiles.wordpress.org/tollmanz">Zack Tollman</a>. Also thanks to <a href="http://benmorrison.org/">Ben Morrison</a> and <a href="http://christineswebb.com/">Christine Webb</a> for help with the video.</p>\n<p>Thanks for choosing WordPress. See you soon for version 3.9!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:46:"http://wordpress.org/news/2013/12/parker/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:7:"3.8 RC2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:42:"http://wordpress.org/news/2013/12/3-8-rc2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:51:"http://wordpress.org/news/2013/12/3-8-rc2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Dec 2013 01:08:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2805";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:343:"Release candidate 2 of WordPress 3.8 is now available for download. This is the last pre-release, and we expect it to be effectively identical to what’s officially released to the public on Thursday. This means if you are a plugin or theme developer, start your engines! (If they’re not going already.) Lots of admin code […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1180:"<p>Release candidate 2 of WordPress 3.8 is <a href="http://wordpress.org/wordpress-3.8-RC2.zip">now available for download</a>. This is the last pre-release, and we expect it to be effectively identical to what’s officially released to the public on Thursday.</p>\n<p>This means if you are a plugin or theme developer, start your engines! (If they’re not going already.) Lots of admin code has changed so it’s especially important to see if your plugin works well within the new admin design and layout, and update <a href="http://wordpress.org/plugins/about/readme.txt">the “Tested up to:” part of your plugin readme.txt</a>.</p>\n<p>If there is something in your plugin that you’re unable to fix, or if you think you’ve found a bug, join us <a href="http://codex.wordpress.org/IRC">in #wordpress-dev in IRC</a>, especially if you’re able to join during the dev chat on Wednesday, or post in the <a href="http://wordpress.org/support/forum/alphabeta">alpha/beta forum</a>. The developers and designers who worked on this release are happy to help anyone update their code before the 3.8 release.</p>\n<p>Happy hacking, everybody!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:47:"http://wordpress.org/news/2013/12/3-8-rc2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:17:"WordPress 3.8 RC1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"http://wordpress.org/news/2013/12/3-8-almost/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/news/2013/12/3-8-almost/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 04 Dec 2013 09:54:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2760";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:345:"We’re entering the quiet but busy part of a release, whittling down issues to bring you all of the new features you’re excited about with the stability you expect from WordPress. There are just a few days from the “code freeze” for our 3.8 release, which includes a number of exciting enhancements, so the focus […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1873:"<p>We’re entering the quiet but busy part of a release, whittling down issues to bring you all of the new features you’re excited about with the stability you expect from WordPress. There are just a few days from the “code freeze” for our 3.8 release, <a href="http://wordpress.org/news/2013/11/wordpress-3-8-beta-1/">which includes a number of exciting enhancements</a>, so the focus is on identifying any major issues and resolving them as soon as possible.</p>\n<p>If you’ve ever wondered about how to contribute to WordPress, here’s a time you can: download this release candidate and use it in as many ways as you can imagine. Try to break it, and if you do, let us know how you did it so we can make sure it never happens again. If you work for a web host, this is the release you should test as much as possible and start getting your automatic upgrade systems and 1-click installers ready.</p>\n<p><a href="http://wordpress.org/wordpress-3.8-RC1.zip">Download WordPress 3.8 RC1</a> (zip) or use the <a href="http://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”).</p>\n<p>If you think you’ve found a bug, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href="http://core.trac.wordpress.org/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/report/5">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.8">everything we’ve fixed</a> so far.</p>\n<p><em>We’re so close to the</em><br />\n<em>finish line, jump in and help</em><br />\n<em>good karma is yours.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2013/12/3-8-almost/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 3.8 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2013/11/wordpress-3-8-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2013/11/wordpress-3-8-beta-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 21 Nov 2013 05:21:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2754";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:307:"The first beta of the 3.8 is now available, and the next dates to watch out for are code freeze on December 5th and a final release on December 12th. 3.8 brings together several of the features as plugins projects and while this isn’t our first rodeo, expect this to be more beta than usual. […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2236:"<p>The first beta of the 3.8 is now available, and the next dates to watch out for are code freeze on December 5th and a final release on December 12th.</p>\n<p>3.8 brings together <a href="http://make.wordpress.org/core/features-as-plugins/">several of the features as plugins projects</a> and while this isn’t our first rodeo, expect this to be more beta than usual. The headline things to test out in this release are:</p>\n<ul>\n<li>The new admin design, especially the responsive aspect of it. Try it out on different devices and browsers, see how it goes, especially the more complex pages like widgets or seldom-looked-at-places like Press This. Color schemes, which you can change on your profile, have also been spruced up.</li>\n<li>The dashboard homepage has been refreshed, poke and prod it.</li>\n<li>Choosing themes under Appearance is completely different, try to break it however possible.</li>\n<li>There’s a new default theme, Twenty Fourteen.</li>\n<li>Over 250 issues closed already.</li>\n</ul>\n<p>Given how many things in the admin have changed it’s extra super duper important to test as many plugins and themes with admin pages against the new stuff. Also if you’re a developer consider how you can make your admin interface fit the MP6 aesthetic better.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href="http://core.trac.wordpress.org/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/report/5">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.8">everything we’ve fixed</a> so far.</p>\n<p><a href="http://wordpress.org/wordpress-3.8-beta-1.zip">Download WordPress 3.8 Beta 1</a> (zip) or use the <a href="http://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”).</p>\n<p><em>Alphabet soup of</em><br />\n<em>Plugins as features galore</em><br />\n<em>The future is here</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2013/11/wordpress-3-8-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:31:"http://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 12 Apr 2014 23:45:48 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:10:"x-pingback";s:36:"http://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Tue, 08 Apr 2014 21:08:11 GMT";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20140405233850";}', 'no'),
(226, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1397389598', 'no'),
(227, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1397346398', 'no'),
(228, '_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c', '1397389600', 'no'),
(229, '_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:62:"WordPress.tv: Sarah Wefald: Twitter Integration With WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=34148";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://wordpress.tv/2014/04/12/sarah-wefald-twitter-integration-with-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:679:"<div id="v-s22WSUNH-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34148&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/04/12/sarah-wefald-twitter-integration-with-wordpress/"><img alt="Sarah Wefald: Twitter Integration With WordPress" src="http://videos.videopress.com/s22WSUNH/video-05a42d3046_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 12 Apr 2014 12:06: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:60:"WPTavern: WPWeekly Episode 145 – An OMGBBQWTF Kind Of Week";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20940&preview_id=20940";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:156:"http://wptavern.com/wpweekly-episode-145-an-omgbbqwtf-kind-of-week?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-145-an-omgbbqwtf-kind-of-week";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4879:"<p><a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I were joined by <a title="http://eamann.com/" href="http://eamann.com/">Eric Mann</a> to discuss the news of the week. After the news, we discussed in-depth a few of the core proposals Mann has published on his blog. We covered the following three WordPress core proposals:</p>\n<ul>\n<li><a title="http://eamann.com/tech/data-service/" href="http://eamann.com/tech/data-service/">Data Service</a></li>\n<li><a title="http://eamann.com/tech/wordpress-portability/" href="http://eamann.com/tech/wordpress-portability/">Portability</a></li>\n<li><a title="http://eamann.com/tech/offline-editor/" href="http://eamann.com/tech/offline-editor/">Offline Editor</a></li>\n</ul>\n<p>After speaking with Mann, it’s clear he puts a lot of thought into each proposal. I hope you enjoy the show and don’t forget to give us your feedback in the comments.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/breaking-jetpack-releases-critical-security-update-immediate-action-required" href="http://wptavern.com/breaking-jetpack-releases-critical-security-update-immediate-action-required">Breaking: Jetpack Releases Critical Security Update, Immediate Action Required</a><br />\n<a title="http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update" href="http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update">WordPress 3.8.2: First Security Release Shipped as a Background Update</a><br />\n<a title="http://wptavern.com/recent-update-to-wordfence-security-breaks-wordpress-mobile-apps" href="http://wptavern.com/recent-update-to-wordfence-security-breaks-wordpress-mobile-apps">Recent Update To Wordfence Security Breaks WordPress Mobile Apps</a><br />\n<a title="http://wptavern.com/devpress-sold-to-unknown-buyer-for-14k" href="http://wptavern.com/devpress-sold-to-unknown-buyer-for-14k">DevPress Sold To Unknown Buyer For $14k</a><br />\n<a title="http://www.poststat.us/devin-price-new-owner-devpress/" href="http://www.poststat.us/devin-price-new-owner-devpress/">Devin Price is the new owner of DevPress</a><br />\n<a title="http://wptavern.com/wordpress-org-profile-redesign-is-live" href="http://wptavern.com/wordpress-org-profile-redesign-is-live">WordPress.org Profile Redesign is Live</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="http://wordpress.org/plugins/webkite/" href="http://wordpress.org/plugins/webkite/">Webkite for WordPress</a> – WebKite is a service for getting your data online quickly and easily. Backed by the WebKite API, the WebKite for WordPress plugin delivers the filtering and sorting capabilities of sites like Kayak, Amazon, and Yelp. Users can interact with your content to easily find items that are relevant to their needs, a great way to build rapport and trust with your user base.</p>\n<p><a title="http://wordpress.org/plugins/alti-watermark/" href="http://wordpress.org/plugins/alti-watermark/">Watermark</a> – This plugin allows you to add a watermark on images uploaded to the media library. It applies a watermark on new images as well as images already uploaded.</p>\n<p><a href="http://wordpress.org/plugins/forget-about-shortcode-buttons/" title="http://wordpress.org/plugins/forget-about-shortcode-buttons/">Forget About Shortcode Buttons</a> – Forget About Shortcode (FASC) Buttons are a visual way to add CSS buttons in the post editor screen and to your themes.</p>\n<p><a title="http://wordpress.org/plugins/twentytwenty/" href="http://wordpress.org/plugins/twentytwenty/">TwentyTwenty</a> – Show before and after pictures in your blog, with an interactive slider that allows users to compare them.</p>\n<p><a title="http://wordpress.org/plugins/bp-group-documents/" href="http://wordpress.org/plugins/bp-group-documents/">BP Group Documents</a> – BP Group Documents creates a page within each BuddyPress group to upload and any type of file or document. This allows members of BuddyPress groups to upload and store files and documents that are relevant to the group.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Friday, April 18th 3 P.M. Eastern – Special Guest: <a href="http://nacin.com/" title="http://nacin.com/">Andrew Nacin</a></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 #145:</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:"Sat, 12 Apr 2014 04:22:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:62:"WPTavern: WordPress Plugin CoSchedule Secures $500K In Funding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=20935";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:166:"http://wptavern.com/wordpress-plugin-coschedule-secures-500k-in-funding?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-plugin-coschedule-secures-500k-in-funding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2278:"<p><a title="http://wordpress.org/plugins/coschedule-by-todaymade/" href="http://wordpress.org/plugins/coschedule-by-todaymade/">CoSchedule</a>, the editorial workflow and activity scheduling plugin, has <a title="http://coschedule.com/blog/coschedule-series-a-funding/" href="http://coschedule.com/blog/coschedule-series-a-funding/">secured $500K</a> in a Series A round of funding. The angel investment was led by Sandin Holdings and Bullinger Enterprises of Fargo, North Dakota. Matching funds were provided by the North Dakota Development Fund. Joe Sandin of Sandin Holdings will join CoSchedule’s Board of Directors, providing strategic guidance and business advice.</p>\n<p>When I <a title="http://wptavern.com/coschedule-a-viable-alternative-to-the-edit-flow-wordpress-plugin" href="http://wptavern.com/coschedule-a-viable-alternative-to-the-edit-flow-wordpress-plugin">reviewed the plugin</a> last year, I considered it to be a viable alternative to <a title="http://wordpress.org/plugins/edit-flow/" href="http://wordpress.org/plugins/edit-flow/">Edit Flow</a>. CoSchedule will use the money to hire more employees, increase their marketing budget, and increase the speed of development so new features reach users faster.</p>\n<p><span class="embed-youtube"></span></p>\n<p>Moon says the company has experienced rapid growth since launching in September of 2013. Since the launch, the plugin has over 6,000 downloads with users in more than 100 countries and paying customers in 35 countries. I asked Moon, what advice does he have for those looking to obtain a round of funding to take their business or service to the next level? He replied:</p>\n<blockquote><p>I think a lot of developers hesitate to look for funding for their work because the process is overwhelming and unfamiliar to them. I will definitely admit that it is a ton of work, but it can be hugely valuable. Not only can you get the financing you need to move to the next level, but it really forces you to look at your product in a new way and challenge every assumption that you’ve made. Investors ask hard questions, and that can be a really good thing.</p></blockquote>\n<p>Do you use CoSchedule? If so, what do you think of its editorial workflow and how it handles multiple authors?</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, 11 Apr 2014 21:27:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:74:"WPTavern: Major Milestone For BuddyPress: 2 Million Downloads and Counting";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20944";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:190:"http://wptavern.com/major-milestone-for-buddypress-2-million-downloads-and-counting?utm_source=rss&utm_medium=rss&utm_campaign=major-milestone-for-buddypress-2-million-downloads-and-counting";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1599:"<p><a href="http://wptavern.com/wp-content/uploads/2014/04/balloons.jpg" rel="prettyphoto[20944]"><img src="http://wptavern.com/wp-content/uploads/2014/04/balloons.jpg" alt="balloons" width="1016" height="466" class="aligncenter size-full wp-image-20946" /></a></p>\n<p><a href="http://buddypress.org/">BuddyPress</a> reached a major milestone today, crossing the two million download mark just a week ahead of the official 2.0 release. The plugin, known as “a social network in a box,” now has more than 500 related <a href="http://buddypress.org/extend/plugins/" target="_blank">community extensions</a>.</p>\n<p>Over the past 7 years, BuddyPress has developed a strong international community of users and contributors. Roughly <a href="http://wptavern.com/7-surprising-results-from-the-2013-buddypress-codex-survey">50% of BuddyPress sites are in English</a>, with the other half comprised of social networks in Spanish, Italian, French, German, Dutch, Swedish, Portugese, Chinese, and many other languages.</p>\n<p>The upcoming version 2.0 of the plugin adds a host of new features that help administrators manage their communities more efficiently in the dashboard. It also introduces some remarkable performance improvements that <a href="http://wptavern.com/buddypress-2-0-ramps-up-performance-reduces-footprint-by-up-to-75" target="_blank">reduce the plugin’s footprint by up to 75%</a> in many places. Help celebrate BuddyPress crossing the two million download mark by testing <a href="http://buddypress.org/2014/04/buddypress-2-0-beta2/" target="_blank">2.0-beta2</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, 11 Apr 2014 20:10: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:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:71:"WPTavern: Next Version Of WordPress To Fix Quick Draft Dashboard 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=20773";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:166:"http://wptavern.com/wordpress-3-8-3-to-fix-quick-draft-dashboard-widget?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-3-8-3-to-fix-quick-draft-dashboard-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:2316:"<p>If you’ve noticed after <a title="http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update" href="http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update">upgrading to WordPress 3.8.2</a> that the <a title="http://codex.wordpress.org/Dashboard_Screen#QuickDraft" href="http://codex.wordpress.org/Dashboard_Screen#QuickDraft">Quick Draft</a> dashboard widget no longer functions correctly, <a title="https://wordpress.org/support/topic/quick-draft-doesnt-save-the-posts-all-lost?replies=11" href="https://wordpress.org/support/topic/quick-draft-doesnt-save-the-posts-all-lost?replies=11">you’re not the only one</a>. Unfortunately, one of the security fixes in 3.8.2 caused the widget to break. Auto-drafts created through the widget are not being promoted to draft status. When a title and content is added to the widget, clicking the save draft button gives the appearance that its discarded. It doesn’t show up within the drafts list even though it exist within the database.</p>\n<p>The <a title="https://core.trac.wordpress.org/ticket/27734" href="https://core.trac.wordpress.org/ticket/27734">patch attempts</a> to do two things.</p>\n<ul>\n<li>Find all lost Quick Draft auto-drafts and promote them to proper drafts.</li>\n<li>Bring them back in place, with no date changes or other processing.</li>\n</ul>\n<p>Andrew Nacin, lead developer for WordPress, explains why every auto-draft created won’t be able to be retrieved.</p>\n<blockquote><p>Unfortunately, each save of Quick Draft by the same user would update the existing auto-draft they previously lost. If they used Quick Draft in succession, or tried again when they couldn’t find their post — both of which are not unlikely — we can only rescue their last edit.</p></blockquote>\n<p>Quick drafts only hold onto a single auto-draft post ID per user and will re-use it as long as it remains an auto-draft. This is due to performance reasons so new auto-drafts are not created each time the dashboard is visited. Once upgraded, you should see the latest draft created through Quick Draft with the date and time of creation kept in tact.</p>\n<p>If WordPress 3.8.3 is released, it may be available as soon as this weekend but nothing has been set in stone.</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, 11 Apr 2014 18:31:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:59:"WPTavern: Help Test Akismet 3.0, Win Exclusive Akismet Swag";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20888";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:160:"http://wptavern.com/help-test-akismet-3-0-win-exclusive-akismet-swag?utm_source=rss&utm_medium=rss&utm_campaign=help-test-akismet-3-0-win-exclusive-akismet-swag";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2438:"<p>Akismet 3.0 is currently in development and the official release will likely coincide with WordPress 3.9 on April 16th. The <a href="http://blog.akismet.com/2014/04/11/help-test-the-next-akismet-plugin/" target="_blank">upcoming 3.0 release</a> represents a major rewrite of the plugin and the Akismet team is inviting everyone to help test the release candidate. This version will introduce a few new features and will remove much of the legacy code that was included for backwards compatibility with older versions of WordPress.</p>\n<p>Akismet 3.0 has a more straightforward configuration page that funnels users to the correct action:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/new-akismet.png" rel="prettyphoto[20888]"><img src="http://wptavern.com/wp-content/uploads/2014/04/new-akismet.png" alt="new-akismet" width="1414" height="1110" class="aligncenter size-full wp-image-20912" /></a></p>\n<p>One critical item that seems to be missing here is direction on where to find your API key if you already have one. Though it may be obvious to some that you need to log into Akismet, go to Account Overview, and click “reveal key,” this process is not as intuitive as it might seem. Hopefully something can be added to help make this clear. The team has confirmed that this is on their list.</p>\n<p>Akismet 3.0 inclues a new feature that allows you to define how strict it is in discarding spam. It also adds the ability to easily disconnect your account.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/aksismet-settings.png" rel="prettyphoto[20888]"><img src="http://wptavern.com/wp-content/uploads/2014/04/aksismet-settings.png" alt="aksismet-settings" width="1394" height="880" class="aligncenter size-full wp-image-20918" /></a></p>\n<p>The service has zapped more than 130 billion spam comments and track backs to date. Millions of WordPress users depend on Akismet every day to help keep their blogs clear of spam. If you can spare a few minutes to help test the 3.0 release candidate, the Akismet team promises some exclusive swag for those who submit the most helpful bug reports and feedback. Even better than that is the opportunity to help improve Akismet for WordPress users across the globe. Check out the <a href="http://blog.akismet.com/2014/04/11/help-test-the-next-akismet-plugin/" target="_blank">announcement post</a> for more details and the latest download link.</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, 11 Apr 2014 07:37: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:6;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:77:"WPTavern: New Plugin Adds BuddyPress Activity as a Wire/Wall to User Profiles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=20879";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:196:"http://wptavern.com/new-plugin-adds-buddypress-activity-as-a-wirewall-to-user-profiles?utm_source=rss&utm_medium=rss&utm_campaign=new-plugin-adds-buddypress-activity-as-a-wirewall-to-user-profiles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3121:"<p><a href="http://wptavern.com/wp-content/uploads/2014/04/buddypress-wall.jpg" rel="prettyphoto[20879]"><img src="http://wptavern.com/wp-content/uploads/2014/04/buddypress-wall.jpg" alt="buddypress-wall" width="1018" height="458" class="aligncenter size-full wp-image-20901" /></a></p>\n<p>For the past four years, BuddyPress developer Brajesh Singh has maintained a <a href="http://buddydev.com/buddypress/using-activity-as-wire-in-buddypress-1-2-themes/" target="_blank">popular tutorial</a> for allowing BuddyPress activity as a wire. This was the default behavior for activity during the early 1.x era of BuddyPress, which allowed users to “write on each other’s walls” without having to use @mentions.</p>\n<p>Singh’s <a href="http://buddydev.com/buddypress/buddypress-activity-wire-updated-buddypress-1-8-buddypress-1-9/" target="_blank">updated tutorial</a> shows you how to set up wire/wall functionality without having to edit any theme code, as was required in previous tutorials. He’s packaged it up and put it into a convenient <a href="http://buddydev.com/plugins/bp-activity-as-wire/" target="_blank">plugin</a> that emulates a user wall/wire by performing the following:</p>\n<ul>\n<li>Shows the activity post form on other user’s profile</li>\n<li>Filters the text that says “What’s new {username}” to say “Write something to {displayed_user_name}”</li>\n<li>Removes the BuddyPress function that handles the post update action and hooks a custom function that allows saving the activity posted from user profiles as a mention.</li>\n</ul>\n<p>The result is very similar to the wall/wire feature originally included in BuddyPress:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/buddypress-wire-wall.png" rel="prettyphoto[20879]"><img src="http://wptavern.com/wp-content/uploads/2014/04/buddypress-wire-wall.png" alt="buddypress-wire-wall" width="1300" height="627" class="aligncenter size-full wp-image-20884" /></a></p>\n<p>Posts on user wires/walls will show up in the activity stream as having originated on a user’s wall, differentiating it from regular activity @mentions.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/wallpost.png" rel="prettyphoto[20879]"><img src="http://wptavern.com/wp-content/uploads/2014/04/wallpost.png" alt="wallpost" width="1168" height="358" class="aligncenter size-full wp-image-20894" /></a></p>\n<p>Inevitably, BuddyPress developers will have clients asking them to make their social networks more like Facebook. Some users are more comfortable using the wire/wall style of interaction, as it is the default behavior on Facebook and mirrors the way activity worked in the early days of BuddyPress. This plugin will restore that feature to BuddyPress so that users don’t have to bother with @mentions.</p>\n<p>BuddyPress Activity as a Wire is compatible with BuddyPress 1.9.2+ but will require a minor update to take advantage of the activity performance improvements in 2.0. <a href="http://buddydev.com/plugins/bp-activity-as-wire/" target="_blank">Download it</a> for free from BuddyDEV.</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, 11 Apr 2014 06:40:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:42:"Akismet: Help test the next Akismet plugin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://blog.akismet.com/?p=1288";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"http://blog.akismet.com/2014/04/11/help-test-the-next-akismet-plugin/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1964:"<p>We’ve been hard at work on version 3.0 of the Akismet plugin for WordPress. It’s a major rewrite of the plugin code that includes a new configuration page, improved signup and activation, and some new features. We’ve shed most of the legacy code that was maintained for backwards compatibility with ancient versions of WordPress, and redesigned the code so we can bring you new features in coming months.</p>\n<p>Since it’s a major change from previous versions, we could use your help testing the new plugin before its final release. If you’re comfortable manually installing a plugin in WordPress, you can download <a href="http://downloads.wordpress.org/plugin/akismet.3.0.0-RC1.zip">akismet.3.0.0-RC1.zip</a> or use the <a href="http://plugins.svn.wordpress.org/akismet/tags/3.0.0-RC1">3.0.0-RC1 tag</a> in the Subversion repository.</p>\n<p>Try it out and tell us what you think – we have some <strong>exclusive Akismet swag</strong> for those who send bug reports and the most helpful feedback. Bug reports and detailed feedback is best sent via <a href="http://akismet.com/contact/">our contact form</a>. You can leave general public feedback in comments below or <a href="https://twitter.com/akismet/">on Twitter</a>.</p>\n<p>If you’re not sure how to install the plugin manually, or you’re not willing to run pre-release code on your site, we recommend waiting for the final release, which we expect to coincide with next week’s launch of <a href="http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/">WordPress 3.9</a>.</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1288/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.akismet.com&blog=116920&post=1288&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:"Fri, 11 Apr 2014 04: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:4:"Alex";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:33:"WPTavern: Embed 2048 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=20706";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/embed-2048-in-wordpress-2?utm_source=rss&utm_medium=rss&utm_campaign=embed-2048-in-wordpress-2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2010:"<p><a href="http://wptavern.com/wp-content/uploads/2014/04/embed-2048.png" rel="prettyphoto[20706]"><img src="http://wptavern.com/wp-content/uploads/2014/04/embed-2048-357x500.png" alt="embed-2048" width="357" height="500" class="alignright size-large wp-image-20859" /></a>In the aftermath of the <a href="http://heartbleed.com/" target="_blank">Heartbleed</a> bug and a week filled with <a href="http://wptavern.com/breaking-jetpack-releases-critical-security-update-immediate-action-required" target="_blank">critical security updates</a>, it’s time for some good news. The wildly popular and hopelessly addictive 2048 game can now be embedded in WordPress.</p>\n<p>The <a href="http://wordpress.org/plugins/2048-number-game/" target="_blank">2048 WordPress plugin</a> is based on the open source game created by <a href="http://gabrielecirulli.github.io/2048/" target="_blank">Gabriele Cirulli</a>. The game has been cloned many times into mobile apps as well as <a href="http://allthe2048.com/" target="_blank">bewildering variations</a> that feature the likes of <a href="http://doge2048.com/" target="_blank">Doge</a> and <a href="http://hczhcz.github.io/Flappy-2048/" target="_blank">Flappy</a> <a href="http://chenglou.github.io/flappy-2048-side-by-side/" target="_blank">Bird</a>.</p>\n<p>Embedding 2048 in WordPress is as easy as adding the <strong>[2048]</strong> shortcode to any page or post. The objective of the game is to achieve the 2048 tile by using your arrow keys to merge tiles of the same number.</p>\n<p>If you want to help your website visitors waste hours of their lives, install the <a href="http://wordpress.org/plugins/2048-number-game/" target="_blank">2048 plugin</a> from the WordPress Plugin Directory and embed it on your site. By now many of your friends and colleagues have already beaten the game and will undoubtedly provide you with strategic tips. However, the desire to win is likely to consume your every waking moment. Don’t say I didn’t warn you.</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, 10 Apr 2014 22:34:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:88:"WPTavern: Breaking: Jetpack Releases Critical Security Update, Immediate Action Required";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20827";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:216:"http://wptavern.com/breaking-jetpack-releases-critical-security-update-immediate-action-required?utm_source=rss&utm_medium=rss&utm_campaign=breaking-jetpack-releases-critical-security-update-immediate-action-required";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2649:"<p><a href="http://wptavern.com/wp-content/uploads/2014/04/warning.jpg" rel="prettyphoto[20827]"><img src="http://wptavern.com/wp-content/uploads/2014/04/warning.jpg" alt="warning" width="919" height="327" class="aligncenter size-full wp-image-20842" /></a></p>\n<p>Jetpack released version 2.9.3 today. This is a critical security update that fixes a potentially serious threat that has been present in Jetpack since version 1.9, released in October 2012. George Stephanis explained the vulnerability in the release <a href="http://jetpack.me/2014/04/10/jetpack-security-update/" target="_blank">announcement</a>:</p>\n<blockquote><p>During an internal security audit, we found a bug that allows an attacker to bypass a site’s access controls and publish posts. This vulnerability could be combined with other attacks to escalate access.</p></blockquote>\n<p>At this time, the Jetpack team has no evidence that the vulnerability has been exploited on any sites running the plugin. However, now that it has been disclosed publicly, every WordPress site administrator that is using Jetpack is strongly encouraged to prioritize this update and take immediate action for all sites that you manage.</p>\n<p>To give you an idea of the severity of this bug, Stephanis said sites that continue running old versions of the plugin may soon be disconnected from the Jetpack service for their own security. Here’s what they’re doing to mitigate the threat:</p>\n<blockquote><p>This is a bad bug, and Jetpack is one of the most widely used plugins in the WordPress world. We have been working closely with the WordPress security team, which has pushed updates to every version of the plugin since 1.9 through core’s auto-update system. We have also coordinated with a number of hosts and network providers to install network-wide blocks to mitigate the impact of this vulnerability, but the only sure fix is updating the plugin.</p></blockquote>\n<p>Sites that can receive automatic background updates may already have the updated version of Jetpack. All others will be prompted to update manually.</p>\n<p>The Jetpack team has prepared point releases for all 11 previous versions that are vulnerable to this threat. They will be reaching out to admins of sites that are still running the old versions to make them aware of the critical update. Sites that do not update will not be allowed to reconnect to the Jetpack service.</p>\n<p>If you operate a WordPress site running Jetpack or have client sites using the plugin, you will need to take action immediately, especially if your site’s functionality depends heavily on the Jetpack service.</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, 10 Apr 2014 19:48: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:"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:89:"WPTavern: Rendez Vous Plugin Allows BuddyPress Community Members to Schedule Appointments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20615";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:222:"http://wptavern.com/rendez-vous-plugin-allows-buddypress-community-members-to-schedule-appointments?utm_source=rss&utm_medium=rss&utm_campaign=rendez-vous-plugin-allows-buddypress-community-members-to-schedule-appointments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5726:"<div id="attachment_20829" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/meeting.jpg" rel="prettyphoto[20615]"><img src="http://wptavern.com/wp-content/uploads/2014/04/meeting.jpg" alt="photo credit: onkel_wart (thomas lieser) - cc" width="1279" height="587" class="size-full wp-image-20829" /></a><p class="wp-caption-text">photo credit: <a href="http://www.flickr.com/photos/onkel_wart/4114414947/">onkel_wart (thomas lieser)</a> – <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a></p></div>\n<p>One of the best things about BuddyPress is that it gives you the ability to bring together people who share a common goal or interest. Sometimes this requires getting people together at the same time for a meeting or <em>rendezvous</em>. With just the bare basics you could try to mention specific members in the activity stream or send private messages to schedule a meeting, but now there’s a more efficient way to do this with built-in privacy controls.</p>\n<p><a href="http://wordpress.org/plugins/rendez-vous/" target="_blank">Rendez Vous</a> is a new plugin that makes it possible for community members to schedule appointments with one another. Developed by <a href="https://profiles.wordpress.org/imath/" target="_blank">@imath</a>, a prolific plugin author and BuddyPress core contributor, Rendez Vous provides a simple table for each user to mark his availability for a proposed rendezvous.</p>\n<h3>A Quick Tour of the Rendez Vous Plugin</h3>\n<p>The plugin fits naturally into the user menu and utilizes BuddyPress notifications for updates.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/redez-vous-menu.jpg" rel="prettyphoto[20615]"><img src="http://wptavern.com/wp-content/uploads/2014/04/redez-vous-menu.jpg" alt="redez-vous-menu" width="487" height="298" class="aligncenter size-full wp-image-20787" /></a></p>\n<p>Any member of the site can create a new rendezvous, set possible times for meeting and select members to add to the meeting. The panel for creating a new event launches in a modal window and allows you to set three possible times to choose from:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/calendar.png" rel="prettyphoto[20615]"><img src="http://wptavern.com/wp-content/uploads/2014/04/calendar.png" alt="calendar" width="500" height="301" class="aligncenter size-full wp-image-20808" /></a></p>\n<p>The “Who” tab lets you search for members, if you have a large network, and click on those you want to invite.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/rendez-vous-who.jpg" rel="prettyphoto[20615]"><img src="http://wptavern.com/wp-content/uploads/2014/04/rendez-vous-who.jpg" alt="rendez-vous-who" width="685" height="422" class="aligncenter size-full wp-image-20789" /></a></p>\n<p>The user profile menu displays all published rendezvous to which a user has been invited:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/rendez-vous-list.jpg" rel="prettyphoto[20615]"><img src="http://wptavern.com/wp-content/uploads/2014/04/rendez-vous-list.jpg" alt="rendez-vous-list" width="789" height="592" class="aligncenter size-full wp-image-20806" /></a></p>\n<p>The person who schedules a rendezvous will receive notifications related to member responses:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/notifications.jpg" rel="prettyphoto[20615]"><img src="http://wptavern.com/wp-content/uploads/2014/04/notifications.jpg" alt="notifications" width="789" height="479" class="aligncenter size-full wp-image-20812" /></a></p>\n<p>As member replies roll in, the table will fill up with availability from those who have responded. Here’s an example of a public rendezvous:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/attendees-rendezvous.jpg" rel="prettyphoto[20615]"><img src="http://wptavern.com/wp-content/uploads/2014/04/attendees-rendezvous.jpg" alt="attendees-rendezvous" width="956" height="500" class="aligncenter size-full wp-image-20818" /></a></p>\n<p>The way the table appears will depend on your theme. The plugin simply adapts to the active theme, so you may find that you need to do a little CSS work to make it look exactly how you want. In the next update @imath plans to include a filter to allow a theme to easily override the plugin’s CSS files with its own.</p>\n<p>The Rendez-Vous plugin is a simple, flexible tool that can help to facilitate both online and offline meetings and events. Because the plugin uses fairly generic wording, you can schedule any kind of meeting. It would be suitable for any of the following examples:</p>\n<ul>\n<li>A group Skype chat</li>\n<li>A meeting for site moderators</li>\n<li>A family reunion</li>\n<li>A doggy play date</li>\n<li>A documentation sprint</li>\n<li>A teacher/student conference</li>\n<li>A tutoring session</li>\n</ul>\n<p>You might event use it to determine the best time for maintenance on a small community site. The possibilities are endless for bringing people together efficiently. The scheduling panel allows you to select from public or private for more control over who can view and join the rendezvous.</p>\n<p><a href="https://wordpress.org/plugins/rendez-vous/" target="_blank">Rendez Vous</a> is available for free from the WordPress Plugin Directory. You can also find and contribute to the project on <a href="https://github.com/imath/rendez-vous" target="_blank">Github</a>. The plugin is compatible with WordPress 3.9-RC1 and BuddyPress 2.0-beta2. It should also work on installations that are running WordPress 3.8.3 and BuddyPress 1.9.2.</p>\n<p>For a live tour of the the plugin in action, check out @imath’s video:</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:"Thu, 10 Apr 2014 19:22:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:74:"WPTavern: Recent Update To Wordfence Security Breaks WordPress Mobile Apps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=20775";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:192:"http://wptavern.com/recent-update-to-wordfence-security-breaks-wordpress-mobile-apps?utm_source=rss&utm_medium=rss&utm_campaign=recent-update-to-wordfence-security-breaks-wordpress-mobile-apps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4027:"<p>With the release of WordPress 3.8.2, <a title="https://wordpress.org/support/topic/xml-rpc-services-disabled?replies=13" href="https://wordpress.org/support/topic/xml-rpc-services-disabled?replies=13">some users are reporting</a> on the WordPress.org support forum that the update disabled XML-RPC causing mobile apps to break. Many of those who are reporting the issue have one thing in common: they’re using the <a title="http://wordpress.org/plugins/wordfence/" href="http://wordpress.org/plugins/wordfence/">Wordfence Security</a> plugin. With over 1.5 million downloads, Wordfence Security is a popular plugin used to secure WordPress sites.</p>\n<a href="http://wptavern.com/wp-content/uploads/2014/04/WordfenceFeaturedImage.png" rel="prettyphoto[20775]"><img src="http://wptavern.com/wp-content/uploads/2014/04/WordfenceFeaturedImage.png" alt="Wordfence Security Plugin Header" width="772" height="250" class="size-full wp-image-20794" /></a>\n<p>A <a title="http://wordpress.org/plugins/wordfence/changelog/" href="http://wordpress.org/plugins/wordfence/changelog/">recent update to Wordfence</a> disables XML-RPC in WordPress to prevent sites from being used as drones in a pingback Denial of Service attack. Due to the timing of WordPress 3.8.2 as well as the update to Wordfence, users think 3.8.2 is the culprit. Andrew Nacin, lead developer for WordPress, <a title="http://wordpress.org/support/topic/wordfence-and-xml-rpc?replies=7#post-5439316" href="http://wordpress.org/support/topic/wordfence-and-xml-rpc?replies=7#post-5439316">replied to</a> the support thread explaining why the fix is improper and has no tangible benefit to users:</p>\n<blockquote><p>The changelog says “Disable XML-RPC in WordPress to prevent your site from being used as a drone in a DDoS attack.” The problem is this “attack” affects pingbacks. But the fix actually disables everything in XML-RPC <strong>except</strong> pingbacks, thus breaking mobile apps and anything else relying on XML-RPC, but allowing pingbacks through.</p>\n<p>If you want to disable pingbacks, then disable pingbacks. Don’t do this. Or don’t do anything, as these attacks are not particularly effective and more recent versions of WordPress and Akismet both pass along better information when verifying pingbacks; and Akismet additionally detects abuse.</p></blockquote>\n<p>Wordfence responded, saying they’ve filed a bug and will be investigating a fix. Until then, if you’re using Wordfence, browse to the plugin’s options page and look for <strong>Other Options</strong>. Uncheck the box to <em>Disable XML-RPC for DDoS protection</em>.</p>\n<h3>Upgrade WordPress and Akismet To The Latest Versions</h3>\n<p>Network Solutions recently <a title="http://www.reddit.com/r/Wordpress/comments/22n80j/my_site_host_network_solutions_just_sent_out_an/" href="http://www.reddit.com/r/Wordpress/comments/22n80j/my_site_host_network_solutions_just_sent_out_an/">sent out a security bulletin</a> to customers using WordPress informing them about the Denial of Service attacks that can result from pingbacks. Network Solutions advised customers to install the <a title="https://wordpress.org/plugins/disable-xml-rpc/" href="https://wordpress.org/plugins/disable-xml-rpc/">Disable XML-RPC plugin</a>. While it disables the XML-RPC API, it <strong>does not</strong> disable trackbacks and pingbacks.</p>\n<p>The best course of action is to update to <a title="http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update" href="http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update">WordPress 3.8.2</a> if you haven’t already done so. Also <a title="http://blog.akismet.com/2014/03/18/akismet-plugin-2-6/" href="http://blog.akismet.com/2014/03/18/akismet-plugin-2-6/">upgrade Akismet</a> to the latest version. Both software updates address the Denial of Service attack associated with pingbacks without having to disable XML-RPC entirely.</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, 10 Apr 2014 17:07: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:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"Matt: Hiring By Audition Expanded";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=43741";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"http://ma.tt/2014/04/hiring-by-audition-expanded/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:589:"<p>The guest blog on Automattic’s hiring process for the Harvard Business Review ended up being pretty popular and thanks to <a href="http://kingofstates.com/">Michelle Weber</a> and <a href="https://twitter.com/danmcginn">Dan McGinn</a> it’s <a href="http://hbr.org/2014/04/the-ceo-of-automattic-on-holding-auditions-to-build-a-strong-team/ar/1">been expanded into a longer version</a> that’s now on shelves in the actual magazine! Very excited about this. If you are in an airport and see it on the stands (as above) definitely pick it up, it’s a great issue.</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, 10 Apr 2014 14:49:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:61:"WPTavern: If WordPress Had A Voice, What Would It Sound Like?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20669";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:162:"http://wptavern.com/if-wordpress-had-a-voice-what-would-it-sound-like?utm_source=rss&utm_medium=rss&utm_campaign=if-wordpress-had-a-voice-what-would-it-sound-like";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3646:"<p>Back in March, Fred Meyer, shared<a title="http://wpshout.com/wordpress-core-needs-writing-style-guide/" href="http://wpshout.com/wordpress-core-needs-writing-style-guide/"> his thoughts</a> on why the core of WordPress needs a writing style guide. The post generated a healthy conversation, including <a title="http://wpshout.com/wordpress-core-needs-writing-style-guide/#comment-264374" href="http://wpshout.com/wordpress-core-needs-writing-style-guide/#comment-264374">this comment</a> by Matt Mullenweg:</p>\n<blockquote><p>WP has always been optionated software with a lot of personality. Every year or two people try to neuter it, remove a bt of its soul, and sometimes it gets through. There are always convincing reasons, like this post, but it’s sad nonetheless. If anyone is going to stop using the software over these we probably didn’t create something very compelling in the first place. You could also create a “dry” localization of the software and see if it gets much traction.</p></blockquote>\n<p>After the conversation subsided, Meyer created a survey to determine the thoughts and opinions of users. The results are <a title="http://wpshout.com/wordpress-voice-tone-survey-results/" href="http://wpshout.com/wordpress-voice-tone-survey-results/">now available</a> with a total of 69 respondents completing the survey. While the small sample size makes it hard to conclude anything, there are two things that came to light based on the results.</p>\n<p>The first is that WordPress could improve the text so it’s spoken with a clear, well-defined voice. Second, irreverent and goofy humor is rarely a user’s preferred way to receive WordPress messages. Instead, users appear to prefer content that is as clear as possible in its technical details.</p>\n<h3>Meyer’s Next Course Of Action</h3>\n<p>I asked Meyer what his next course of action is now that he’s had a chance to analyze the results. He said he “plans to move forward with advocating for a tone review, with the intent of seeing if it can be added to the to-do list for WordPress 4.0″. I asked if anything about the results surprised him:</p>\n<blockquote><p>One thing that surprised me about the survey was how dry people’s favored content was–e.g., “Powered by WordPress” instead of even “Proudly Powered by WordPress.” I really think there’s a danger (again, as Matt said) that a content review, particularly one done by committee, could squeeze the color out of WordPress, in favor of writing that is really safe and technical and that no one can possibly take issue with.</p></blockquote>\n<p>The survey seems to reinforce Mullenweg’s opinion that this issue isn’t something that will make or break people’s decision to use WordPress. At the same time, the survey showed users would appreciate textual content that is better suited to them, content that is more helpful and contains a more consistent tone.</p>\n<h3>Time To Decide Which Voice We Want WordPress To Have</h3>\n<p>Meyer said that the community will need to decide the tone of the language used in WordPress. Focusing on colorful language that is consistent, helpful and inviting to English speakers outside of North America.</p>\n<p>If you’d like to follow along with the project and contribute to the cause, follow Meyer on <a title="http://wpshout.com/" href="http://wpshout.com/">WPShout.com</a>. He’ll be using the site to inform those interested of the progress. You can also get in touch with him directly via email, <a href="mailto:fred@pressupinc.com">fred@pressupinc.com</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, 10 Apr 2014 03:19:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:79:"WPTavern: Automattic Acquires Longreads, Invests in Digital Longform Publishing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20725";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:200:"http://wptavern.com/automattic-acquires-longreads-invests-in-digital-longform-publishing?utm_source=rss&utm_medium=rss&utm_campaign=automattic-acquires-longreads-invests-in-digital-longform-publishing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3848:"<p><a href="http://wptavern.com/wp-content/uploads/2014/04/longreads.jpg" rel="prettyphoto[20725]"><img src="http://wptavern.com/wp-content/uploads/2014/04/longreads.jpg" alt="longreads" width="662" height="210" class="aligncenter size-full wp-image-20743" /></a><br />\nAutomattic <a href="http://en.blog.wordpress.com/2014/04/09/longreads-joins-automattic/" target="_blank">announced</a> its acquisition of <a href="http://longreads.com/" target="_blank">Longreads</a> today. Since 2009, the Longreads service has helped people find and share the best fiction and nonfiction longform content on the web, curated by its team of editors and the #longreads hashtag.</p>\n<p>Longreads defines longform content as anything over 1,500 words, the type of articles that are most often read by people who are away from the distractions of their desks. Though individual attention spans seem to be dwindling in the digital age, the proliferation of mobile devices and apps dedicated to reading has sparked a renaissance of the written word. Longreads became a key player in the resurgence of longform reading by helping people to discover the best content.</p>\n<p>The editorial team at Longreads joins online publishing titan WordPress.com under the Automattic umbrella. Historically, WordPress.com has been a strong supporter of longform writing and offers several <a href="http://en.blog.wordpress.com/2013/03/20/longform-writing/" target="_blank">themes dedicated to longform posts</a>. WordPress.com has also often <a href="http://en.blog.wordpress.com/2013/07/12/wplongform-picks-3/" target="_blank">featured longform reads</a> among its recommendations.</p>\n<p>Mark Armstrong, founder of Longreads, <a href="http://blog.longreads.com/post/longreads-is-joining-the-automattic-family/" target="_blank">describes</a> how he sees Automattic as the right partner to help them go deeper in their mission to promote longform storytelling:</p>\n<blockquote><p>We also quickly realized that Longreads’ goals and Automattic’s goals were complementary: For us it is to serve readers the best storytelling in the world, and for Automattic it’s to power a world where publishers and writers have the freedom and independence to own and control their own space on the Internet, and to then produce their best work using those tools.</p></blockquote>\n<p>Armstrong said that they will continue to run the service in the same way they always have and will keep the <a href="http://longreads.com/drive/" target="_blank">Longreads Membership</a> active.</p>\n<h3>The Rebirth of Longform Storytelling</h3>\n<p>If the success of the New York Time’s <a href="http://www.nytimes.com/projects/2012/snow-fall/" target="_blank">Snowfall</a> is any indication, “immersive storytelling” is on the upswing and longform content is well-positioned to be reinvented in the digital age. There’s no reason why WordPress publishers shouldn’t be at the helm.</p>\n<p>The popularity of longform content is growing. Automattic’s Raanan Bar-Cohen, in his announcement of the acquisition, said that “<span class="pullquote alignleft">Use of the #longreads hashtag on Twitter has grown more than 130% over the last two years</span>, and more publishers than ever are committing resources to in-depth storytelling as part of their daily mix of stories.”</p>\n<p>Complex topics and ideas often require longform articles in order to fully convey their depth. Longreads has found a successful way to tap into a segment of the public that values longform reading enough to pay for daily recommendations. Automattic’s acqusition of Longreads is a signal that longform content is not dead but rather has the chance to be reborn in the digital era. That’s good news for WordPress publishers and even better news for readers.</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, 09 Apr 2014 22:48: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: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:26:"Matt: Automattic Longreads";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=43738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/04/automattic-longreads/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:412:"<p>Brad Stone at BusinessWeek reports <a href="http://www.businessweek.com/articles/2014-04-09/automattic-steward-of-wordpress-snaps-up-longreads">Automattic has acquired the great service Longreads</a>, which you can <a href="http://en.blog.wordpress.com/2014/04/09/longreads-joins-automattic/">also read about on our blog</a>. See also: <a href="http://www.techmeme.com/140409/p33#a140409p33">Techmeme</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, 09 Apr 2014 22:01:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:70:"WPTavern: Monitor WordPress Download and Version Stats With WP Central";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20662";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:184:"http://wptavern.com/monitor-wordpress-download-and-version-stats-with-wp-central?utm_source=rss&utm_medium=rss&utm_campaign=monitor-wordpress-download-and-version-stats-with-wp-central";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2616:"<p>If you’re interested in WordPress project stats, <a href="http://wpcentral.io/" target="_blank">WP Central</a> has a collection of interactive visualizations for everything from download stats to version usage to internationalization. The site, created by WordPress contributor <a href="http://markoheijnen.com/" target="_blank">Marko Heijnen</a>, has been in development for several months and is gradually adding more data.</p>\n<p>The homepage of the site features stats for the latest release, with data for the total downloads, last seven days, downloads per day and per hour.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/wpcentral-downloads.jpg" rel="prettyphoto[20662]"><img src="http://wptavern.com/wp-content/uploads/2014/04/wpcentral-downloads.jpg" alt="wpcentral-downloads" width="983" height="398" class="aligncenter size-full wp-image-20708" /></a></p>\n<p>Version usage is particularly interesting, with clickable segments that display the percentage of WordPress installations operating on various versions of WP, PHP and MySQL.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/version-usage.jpg" rel="prettyphoto[20662]"><img src="http://wptavern.com/wp-content/uploads/2014/04/version-usage.jpg" alt="version-usage" width="1149" height="582" class="aligncenter size-full wp-image-20710" /></a></p>\n<p>The site uses Bootstrap for the theme and Heijnen said that all of the data is pulled from the <a href="http://codex.wordpress.org/WordPress.org_API" target="_blank">WordPress.org API</a>, with the download history stored locally. He’s looking into the possibility of collecting and displaying old data, along with the new stats.</p>\n<p>Heijnen created the site with the hope of providing a historical reference that is easy to visualize. “I would love for it to become a place that shows the history of WordPress, i.e. how many downloads we had per release and the progress,” he said. “I hope that people will be able to get more insight about how WordPress has grown over the years.”</p>\n<p><a href="http://wpcentral.io/" target="_blank">WP Central</a>‘s graphs make it easy to visualize trends in WordPress downloads and version usage. Given that WordPress is a major part of millions of people’s lives on the web, it’s important to have helpful sites like WP Central that will track WordPress’ growth over time and make this data available to everyone. To find out about new data and visualizations added, follow <a href="https://twitter.com/WPCentralIO" target="_blank">WP Central</a> on Twitter.</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, 09 Apr 2014 18:50:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:73:"WPTavern: Summer in the City: WordCamp NYC Dates Set For August 2-3, 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=20601";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:186:"http://wptavern.com/summer-in-the-city-wordcamp-nyc-dates-set-for-august-2-3-2014?utm_source=rss&utm_medium=rss&utm_campaign=summer-in-the-city-wordcamp-nyc-dates-set-for-august-2-3-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:1924:"<p><a href="http://wptavern.com/wp-content/uploads/2014/04/wordcamp-nyc.png" rel="prettyphoto[20601]"><img src="http://wptavern.com/wp-content/uploads/2014/04/wordcamp-nyc.png" alt="wordcamp-nyc" width="1600" height="696" class="aligncenter size-full wp-image-20675" /></a><br />\nThe dates for <a href="http://2014.nyc.wordcamp.org/" target="_blank">WordCamp NYC</a> were announced today. The event will be held August 2-3, 2014 at the <a href="http://2014.nyc.wordcamp.org/location/" target="_blank">New York Marriott at the Brooklyn Bridge</a> in downtown Brooklyn.</p>\n<p>Tickets will go on sale within the next few weeks. Traditionally, WordCamp NYC has sold out every year. In 2009, 2010, and 2012 the event brought together roughly 800 WordPress fans. However, maximum capacity for the Brooklyn venue is 650.</p>\n<p>I spoke with Steve Bruner, one of <a href="http://2014.nyc.wordcamp.org/about/organizers/" target="_blank">10 organizers</a> for the event, who said that finding a suitable venue has been a challenge. “We’ve been searching for a venue that would hold 800+ people AND be affordable in one of the most expensive cities in the world,” he said. “When we finally decided that 800 wasn’t going to happen, we were able to finalize on the Brooklyn Marriott, which is a really awesome venue.”</p>\n<p>Bruner said the unique aspects of WordCamp NYC are not unlike the city itself. A large number of attendees, a world-class speaker lineup and a high percentage of international attendees makes this WordCamp an exciting and diverse event. Also, if you haven’t visited New York in the summertime, you’re in for a sizzling hot treat. Follow <a href="https://twitter.com/WordCampNYC" target="_blank">@WordCampNYC</a> on Twitter for all the latest updates. Given the reduced number of tickets this year, you’ll want to be notified as soon as they go on sale.</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, 09 Apr 2014 03:08:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:80:"WPTavern: WordPress 3.8.2: First Security Release Shipped as a Background Update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=20619";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:202:"http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-3-8-2-first-security-release-shipped-as-a-background-update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4762:"<div id="attachment_20655" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/security-release.jpg" rel="prettyphoto[20619]"><img src="http://wptavern.com/wp-content/uploads/2014/04/security-release.jpg" alt="photo credit: Will Montague - cc" width="1024" height="505" class="size-full wp-image-20655" /></a><p class="wp-caption-text">photo credit: <a href="http://www.flickr.com/photos/willmontague/3813295674/">Will Montague</a> – <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a></p></div>\n<p>WordPress 3.8.2 was <a href="http://wordpress.org/news/2014/04/wordpress-3-8-2/" target="_blank">released</a> today with several important security fixes that warrant an immediate update. If you have <a href="http://codex.wordpress.org/Configuring_Automatic_Background_Updates" target="_blank">background updates</a> turned on, you should get the 3.8.2 security release within 12 hours. Of course, you can always update immediately via <strong>Dashboard > Update</strong> in the admin.</p>\n<p>Andrew Nacin outlined the important security fixes in this release. In summary, they are:</p>\n<ul>\n<li>Fixes a weakness that could let an attacker force their way into your site by forging authentication cookies</li>\n<li>A fix to prevent a user with the Contributor role from improperly publishing posts.</li>\n<li>Update to pass along additional information when processing pingbacks to help hosts identify potentially abusive requests.</li>\n<li>Fixes a low-impact SQL injection by trusted users</li>\n<li>Prevents possible cross-domain scripting through Plupload, the third-party library WordPress uses for uploading files.</li>\n</ul>\n<p>These <a href="http://codex.wordpress.org/FAQ_Security" target="_blank">security concerns</a> were discreetly disclosed to the WordPress security team, but now that they are public knowledge, it’s very important to get your sites updated to the latest version.</p>\n<h3>First WordPress Security Release Shipped as a Background Update</h3>\n<p>In the course of providing the 3.8.2 security update, a 3.7.2 release was also pushed out, which includes the same fixes for sites still running on 3.7.1.</p>\n<p>We’ve now entered a new era of WordPress security updates wherein sites that are on older versions may have automatic updates enabled. Passing on those same security updates, wherever possible, only makes sense.</p>\n<p>I asked Nacin how far back the team plans to provide security releases for sites running older versions of WordPress. “We don’t want sites to remain on older versions,” he said. “But it’s obviously tough to pass up the opportunity to keep them secure.”</p>\n<p>There is no hard and fast rule set for how far back security updates will go, but Nacin says that they will continue to do what they can. “This was the first security release shipped as a background update, so it’s new to us, too,” he said. “But I would expect we’ll do whatever we can to keep sites secure.”</p>\n<p>So far the automatic updates seem to be going quite well:</p>\n<blockquote class="twitter-tweet" width="550"><p>In the 15 minutes after WordPress 3.8.2 dropped, 230,000 WordPress installs were automatically updated. <a href="https://t.co/8pCvBD2Tl8">https://t.co/8pCvBD2Tl8</a></p>\n<p>— Andrew Nacin (@nacin) <a href="https://twitter.com/nacin/statuses/453613800542195712">April 8, 2014</a></p></blockquote>\n<p></p>\n<blockquote class="twitter-tweet" width="550"><p>We’ve served about 800,000 updates over the last hour. All sites have been receiving instructions to update; they check every 12 hours.</p>\n<p>— Andrew Nacin (@nacin) <a href="https://twitter.com/nacin/statuses/453625079859908608">April 8, 2014</a></p></blockquote>\n<p></p>\n<blockquote class="twitter-tweet" width="550"><p>More numbers: 1.2 million WordPress sites have automatically updated over the last 97 minutes. <a href="https://t.co/Cc76GKcTID">https://t.co/Cc76GKcTID</a></p>\n<p>— Andrew Nacin (@nacin) <a href="https://twitter.com/nacin/statuses/453632203671355392">April 8, 2014</a></p></blockquote>\n<p></p>\n<blockquote class="twitter-tweet" width="550"><p>T plus two hours: 1,446,176 updates. At this point I’ve moved beyond “nervous wreck” to “shipping champagne.” Eventually this won’t be news.</p>\n<p>— Andrew Nacin (@nacin) <a href="https://twitter.com/nacin/statuses/453638438982402048">April 8, 2014</a></p></blockquote>\n<p></p>\n<p>The first <a href="https://wordpress.org/wordpress-3.9-RC1.zip" target="_blank">release candidate for 3.9</a> was also sent out on the heels of the 3.8.2 security update. You can expect to see the official 3.9 release next week on April 16th.</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, 08 Apr 2014 21:34:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:32:"BuddyPress: BuddyPress 2.0-beta2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://buddypress.org/?p=180990";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://buddypress.org/2014/04/buddypress-2-0-beta2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1508:"<p>The second (and hopefully final) beta for BuddyPress 2.0 is now available (<a href="http://downloads.wordpress.org/plugin/buddypress.2.0-beta2.zip">zip</a>). Since Beta 1, we’ve made a few dozen fixes and improvements. Notable changes from the first beta:</p>\n<ul>\n<li>Fixed a potential out-of-memory fatal error in certain activity stream views. <a href="https://buddypress.trac.wordpress.org/ticket/2768#comment:13">#2768</a></li>\n<li>Fixed broken SQL query format on certain activity stream views. <a href="https://buddypress.trac.wordpress.org/ticket/5503">#5503</a></li>\n<li>Improvements to profile visibility settings appearance <a href="https://buddypress.trac.wordpress.org/ticket/5352">#5352</a></li>\n<li>Fixed a bug where blog comments were not synced to the activity stream when the comment author != blog author <a href="https://buddypress.trac.wordpress.org/ticket/5507">#5507</a></li>\n<li>Better logic to avoid duplicates and invalid results during the activity heartbeat ping <a href="https://buddypress.trac.wordpress.org/ticket/5505">#5505</a></li>\n<li>Miscellaneous localization improvements</li>\n</ul>\n<p>Plugin authors, theme authors, and site administrators with access to dev environments: please get out there and test! We need your continued feedback to make our scheduled release of April 16.</p>\n<p>Questions? Comments? Visit <a href="https://buddypress.org/support">our support forums</a> or <a href="https://buddypress.trac.wordpress.org">our development tracker</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, 08 Apr 2014 21:07: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:12:"Boone Gorges";s: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:41:"Dev Blog: WordPress 3.9 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3129";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.org/news/2014/04/wordpress-3-9-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3021:"<p><a href="http://wordpress.org/news/2014/04/wordpress-3-8-2/">As teased earlier</a>, the first release candidate for WordPress 3.9 is now available for testing!</p>\n<p>We hope to ship WordPress 3.9 <em>next week</em>, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p>To test WordPress 3.9 RC1, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.9-RC1.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the work-in-progress About screen in your dashboard (<strong><img src="http://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692" alt="" width="16" height="16" /> → About</strong> in the toolbar) and check out <a title="WordPress 3.9 Beta 1" href="http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/">the Beta 1 post</a>.</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href="http://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href="http://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p><strong>If you’re a plugin author</strong>, there are two important changes in particular to be aware of:</p>\n<ul>\n<li>TinyMCE received a major update, to version 4.0. Any editor plugins written for TinyMCE 3.x might require some updates. (If things broke, we’d like to hear about them so we can make adjustments.) For more, see TinyMCE’s <a href="http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x">migration guide</a> and <a href="http://www.tinymce.com/wiki.php/api4:index">API documentation</a>, and the notes on the <a href="http://make.wordpress.org/core/2014/01/18/tinymce-4-0-is-in-core/">core development blog</a>.</li>\n<li>WordPress 3.9 now uses the MySQLi Improved extension for sites running PHP 5.5. Any plugins that made direct calls to <code>mysql_*</code> functions will experience some problems on these sites. For more information, see the notes on the <a href="http://make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/">core development blog</a>.</li>\n</ul>\n<p>Be sure to follow along the core development blog, where we will be continuing to post <a href="http://make.wordpress.org/core/tag/3-9-dev-notes/">notes for developers for 3.9</a>. (For example, read <a href="http://make.wordpress.org/core/2014/03/27/masonry-in-wordpress-3-9/">this</a> if you are using Masonry in your theme.) And please, please update your plugin’s <em>Tested up to</em> version in the readme to 3.9 before April 16.</p>\n<p><em>Release candidate<br />\nThis haiku’s the easy one<br />\n3.9 is near</em></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, 08 Apr 2014 21:05: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:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:82:"WPTavern: Soil: Roots Framework Features That Can Be Used With Any 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=20595";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:206:"http://wptavern.com/soil-roots-framework-features-that-can-be-used-with-any-wordpress-theme?utm_source=rss&utm_medium=rss&utm_campaign=soil-roots-framework-features-that-can-be-used-with-any-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:3000:"<p><a href="http://wptavern.com/wp-content/uploads/2014/04/roots.png" rel="prettyphoto[20595]"><img src="http://wptavern.com/wp-content/uploads/2014/04/roots.png" alt="roots" width="120" height="120" class="alignright size-full wp-image-20597" /></a><a href="http://roots.io/" target="_blank">Roots</a> is a WordPress starter theme that incorporates the HTML5 Boilerplate, Bootstrap, and Grunt. It’s also known for creating cleaner HTML, cleaner script output, and its unique <a href="http://roots.io/an-introduction-to-the-roots-theme-wrapper/" target="_blank">theme wrapper</a> method for handling template markup.</p>\n<p>Up until now, you’d have to use the Roots theme in order to take advantage of any of its features. Ben Word, Roots’ creator, has now made some of the theme’s features available for use within any WordPress theme via a new plugin called <a href="https://github.com/roots/soil" target="_blank">Soil</a>.</p>\n<p>Soil offers you the benefits of three distinctive Roots features:</p>\n<ul>\n<li>WordPress Markup Cleanup</li>\n<li>Relative URLs</li>\n<li>Nice Search – (/search/query/)</li>\n</ul>\n<p>The “Clean-Up” feature enables the following:</p>\n<ul>\n<li>wp_head() clean up</li>\n<li>Remove WP version from RSS feeds</li>\n<li>Clean up attributes</li>\n<li>Clean up\n tags</li>\n<li>Clean up body_class()</li>\n<li>Wrap embedded media as suggested by Readability</li>\n<li>Use figure and figcaption tags for WP captions</li>\n<li>Remove unnecessary dashboard widgets</li>\n<li>Remove unnecessary self-closing tags</li>\n</ul>\n<h3>How to Use Soil with Your WordPress Theme:</h3>\n<div id="attachment_20635" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/soil.jpg" rel="prettyphoto[20595]"><img src="http://wptavern.com/wp-content/uploads/2014/04/soil.jpg" alt="photo credit: JerseyRed - cc" width="1024" height="459" class="size-full wp-image-20635" /></a><p class="wp-caption-text">photo credit: <a href="http://www.flickr.com/photos/jerseyred/5390999270/">JerseyRed</a> – <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a></p></div>\n<p><strong>Step 1. Install and activate the Soil plugin.</strong><br />\nDownload <a href="https://github.com/roots/soil" target="_blank">Soil</a> from Github and unpack/rename folders as necessary. Add to your plugins folder.</p>\n<p><strong>Step 2: Add Soil theme support to your theme’s functions.php file.</strong></p>\n<pre class="brush: php; title: ; notranslate">add_theme_support(\'soil-clean-up\');\nadd_theme_support(\'soil-relative-urls\');\nadd_theme_support(\'soil-nice-search\');</pre>\n<p>If the full Roots theme is not for you but you appreciate some of its features for cleaner markup and URLs, then the Soil plugin is an easy way to port those over to your theme. For more in-depth information on root relative URLs and the clean up changes it makes, check out the <a href="http://roots.io/roots-101/" target="_blank">Roots 101 guide</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, 08 Apr 2014 20: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:22;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:71:"WPTavern: Introducing Hookr.io: A New Resource For WordPress Developers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=20501";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:184:"http://wptavern.com/introducing-hookr-io-a-new-resource-for-wordpress-developers?utm_source=rss&utm_medium=rss&utm_campaign=introducing-hookr-io-a-new-resource-for-wordpress-developers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5600:"<p><a title="http://hookr.io/" href="http://hookr.io/">Hookr.io</a> is a brand new project created by Christopher Sanford in the <strong>alpha stage</strong> of development. It’s an index of all the available WordPress Hooks and API calls stretching back to WordPress 1.5. The site is a result of a pet project he’s been working on for about a year. It started out as a plugin he installed to index his local WordPress projects. Sanford explains why he created the site:</p>\n<blockquote><p>Most reference sites contain only subsets of hooks (if any), and unless the plugin/theme is premium, they usually contain little to no documentation regarding their API. I was tired of the ineffective “<em>find in project</em>” searches within my IDE. So, one day after questioning my productivity and lack of resources for what I needed to do, I started writing the initial parser/indexer as just a locally installed plugin.</p></blockquote>\n<p>The front page features a slider allowing you to switch between versions of WordPress. When one is selected, the site displays how many of the following are in that version.</p>\n<ul>\n<li>Hooks (Action/Filter)</li>\n<li>Actions</li>\n<li>Filters</li>\n<li>Classes</li>\n<li>Constants</li>\n<li>Functions</li>\n<li>Shortcodes</li>\n</ul>\n<p>While the total amount of each are correctly displayed, Sandford has limited the results to 250 until it can be determined the site will perform well under load. If the benchmarks are successful, he’ll make the entire index available.</p>\n<div id="attachment_20605" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/hookrfrontpage.png" rel="prettyphoto[20501]"><img class="size-large wp-image-20605" alt="WordPress Hook and API Index" src="http://wptavern.com/wp-content/uploads/2014/04/hookrfrontpage-500x292.png" width="500" height="292" /></a><p class="wp-caption-text">WordPress Hook and API Index</p></div>\n<p><a title="http://wpseek.com/" href="http://wpseek.com/">WPSeek</a> performs a similar role as a WordPress search engine for developers. Sanford says the metadata he has indexed sets it apart from other search engines:</p>\n<blockquote><p>I’m storing all the information related to each “object.” For instance, what file and line(s) the function is defined in/on, what are the function parameters, what other objects exist within its source code (hooks, classes, constants etc), the original source, or snippet, both with/without syntax highlighting, documentation blocks, etc. All of this has been generated directly from the source code, not screen-scraped. By having this metadata at my disposal, it makes adding features, or overhauling the layouts extremely simple.</p></blockquote>\n<div id="attachment_20608" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/hookrmetadata.png" rel="prettyphoto[20501]"><img src="http://wptavern.com/wp-content/uploads/2014/04/hookrmetadata.png" alt="Indexed Metadata" width="1140" height="792" class="size-full wp-image-20608" /></a><p class="wp-caption-text">Indexed Metadata</p></div>\n<p>He wants users to see the holistic view of a given topic. For example, showing all classes existing in the admin area related to FTP as shown in the following screenshot. This view helps developers to see the interconnected parts that make up WordPress.</p>\n<div id="attachment_20609" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/hookrclasses.png" rel="prettyphoto[20501]"><img src="http://wptavern.com/wp-content/uploads/2014/04/hookrclasses.png" alt="Holistic View Of Classes" width="1525" height="817" class="size-full wp-image-20609" /></a><p class="wp-caption-text">Holistic View Of Classes</p></div>\n<p>While Hookr.io isn’t easy to use on a mobile device, Sanford says he has, “Already provisioned bootstrap. It’s just a matter of time and necessity to fully implement.” The interface uses a combination of colors and numbers to display relationships between data. The UI is what works for Sanford but he realizes it may not be optimal. The goal was to have a simple and clean layout but he’s looking for UI/UX advice.</p>\n<p>If developers are going to use Hookr.io, the content has to be accurate. According to Sanford, “90% of the development time was consumed with ensuring the accuracy of the parser.” He admits it’s not perfect but is accurate enough to develop against. Since WordPress is updated far less frequently than plugins and themes, the content is updated in an ad-hoc fashion. If the site becomes a useful tool for developers, he plans on automating the manual processes for near real-time updates.</p>\n<h3>Your Feedback and Ideas Are Needed</h3>\n<p>Based on the feedback and whether or not developers find the site useful will determine whether Sanford devotes more time to the project. He already has a lot of ideas in mind to make it a true resource for WordPress developers, regardless of skill level. One of the features Hookr.io supports but is not available to the public is the inclusion of plugin and theme data. The content has been indexed but it’s about three million records. A lot of benchmarking and fine-tuning will take place before the data is added to the search engine.</p>\n<p>Sanford is looking for feedback on all facets of the site. Whether it’s design, implementation, or accuracy of data, please share it in the comments. He’ll be watching the conversation closely and will answer any questions you have.</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, 08 Apr 2014 19:42:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:42:"Dev Blog: WordPress 3.8.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:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3124";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2014/04/wordpress-3-8-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2267:"<p>WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by <a href="http://joncave.co.uk/">Jon Cave</a> of the WordPress security team.</p>\n<p>It also contains a fix to prevent a user with the Contributor role from improperly publishing posts. Reported by <a href="http://edik.ch/">edik</a>.</p>\n<p>This release also fixes nine bugs and contains three other security hardening changes:</p>\n<ul>\n<li>Pass along additional information when processing pingbacks to help hosts identify potentially abusive requests.</li>\n<li>Fix a low-impact SQL injection by trusted users. Reported by <a href="http://www.dxw.com/">Tom Adams</a> of dxw.</li>\n<li>Prevent possible cross-domain scripting through Plupload, the third-party library WordPress uses for uploading files. Reported by <a href="http://szgru.website.pl/">Szymon Gruszecki</a>.</li>\n</ul>\n<p>We appreciated <a href="http://codex.wordpress.org/FAQ_Security">responsible disclosure</a> of these security issues directly to our security team. For more information on all of the changes, see the <a href="http://codex.wordpress.org/Version_3.8.2">release notes</a> or consult <a href="https://core.trac.wordpress.org/log/branches/3.8?rev=28057&stop_rev=27024">the list of changes</a>.</p>\n<p><a href="http://wordpress.org/download/">Download WordPress 3.8.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.8.2 within 12 hours. If you are still on WordPress 3.7.1, you will be updated to 3.7.2, which contains the same security fixes as 3.8.2. We don’t support older versions, so please update to 3.8.2 for the latest and greatest.</p>\n<p>Already testing WordPress 3.9? The first release candidate is <a href="https://wordpress.org/wordpress-3.9-RC1.zip">now available</a> (zip) and it contains these security fixes. Look for a full announcement later today; we expect to release 3.9 next week.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 08 Apr 2014 19:04:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:43:"Matt: Why the Web Still Matters for Writing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=43731";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/04/the-web-matters/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6032:"<p><em>I wanted to share unique perspective for why the web matters in an app world with a guest post <a href="http://stratechery.com/">from Stratechery writer Ben Thompson</a>:</em></p>\n<p>This week Twitter was abuzz with the <a href="http://blog.flurry.com/bid/109749/Apps-Solidify-Leadership-Six-Years-into-the-Mobile-Revolution">most recent report</a> from Flurry that showed people spending most of their time on mobile using apps, not the browser:</p>\n<p><a href="http://blog.flurry.com/bid/109749/Apps-Solidify-Leadership-Six-Years-into-the-Mobile-Revolution"><img class="aligncenter size-full wp-image-43732" src="http://i0.wp.com/s.ma.tt/files/2014/04/app-time-spent.png?resize=600%2C556" alt="Time Spent in APps" /></a></p>\n<p>Many were quick to once again declare “The Web is Dead,” but I’m not sure that conclusion makes sense, at least for writing.</p>\n<p>First off, Flurry’s numbers don’t account for webviews within mobile apps. On my site, <a href="http://stratechery">Stratechery</a>, 37% of my iOS traffic comes from webviews (Android doesn’t break out the difference), which on Flurry’s chart would fall mostly in the Twitter slice. More mass market sites likely take up some percentage of Facebook time, as well.</p>\n<p>That said, it’s striking how little written content appears on Flurry’s chart; the only category that is primarily about written content is news, and even that includes video. And yet, pageviews on WordPress.com and Jetpack are <em>up</em> 27% year-over-year, new sites ranging from small blogs like Stratechery to huge sites like <a href="http://fivethirtyeight.com/">FiveThirtyEight</a> continue to launch and grow, and multiple startups (and competitors!) continue to find writing something worth investing in.</p>\n<p>So is the web dead or not?</p>\n<p>I don’t think so, for a few reasons:</p>\n<ul>\n<li>The total amount of time spent on a computing device (especially mobile), has and continues to grow significantly. This means that many of the activities on our phones, app or not, are <em>additive</em> to what we previously used a computer for. This makes sense: what makes mobile such a big deal is that instead of a computer being a destination device, it’s now a companion that goes with us everywhere. This is how you square the fact that apps seem to dominate usage even as writing on the web continues to grow. When the entire pie is huge and getting bigger, the total size of any particular slice grows as well, even if it becomes relatively thinner.</li>\n<li>Although apps take up a huge percentage of total time, a significant percentage of app time is dominated by just two categories: games (32%) and social networks and messaging (28%). In fact, the more interesting juxtaposition raised by Flurry’s numbers is not apps versus web, but games and social versus everything else.YouTube and other entertainment apps form a solid percentage of what is left (8%), but the remainder is a mishmash of utilities, productivity, the aforementioned news, and, of course the web, which could be anything and everything.</li>\n<li>The single most exciting development when it comes to writing on the web is the democratization of publishing. It it now trivial to start a blog, whether on WordPress.com or another provider, and that has led to an explosion of content. As I wrote on Stratechery in <a href="http://stratechery.com/2014/fivethirtyeight-end-average/">FiveThirtyEight and the End of Average</a>:<br />\n<blockquote><p>Most of what I read is the best there is to read on any given subject. The trash is few and far between, and the average equally rare. This, of course, is made possible by the Internet. No longer are my reading choices constrained by time and especially place.</p>\n<p>Why should I pick up the Wisconsin State Journal – or the Taipei Times – when I can read Nate Silver, Ezra Klein, Bill Simmons, and the myriad other links served up by Twitter? I, and everyone else interested in news, politics, or sports, can read the best with less effort – and cost – than it ever took to read the merely average just a few short years ago.</p></blockquote>\n<p>While there is still a lot of work to be done on discovery (I mostly use Twitter, but admit the learning curve is steep), I already find the idea of being constrained to any one channel for reading to be laughably old-fashioned. And yet, that’s exactly what an app is: a single channel for one publisher’s content. Contrast this to the web, where any given piece is available instantly by simply clicking a link.</li>\n</ul>\n<p>There is no question that apps are here to stay, and are a superior interaction model for some uses. But the web is like water: it fills in all the gaps between things like gaming and social with exactly what any one particular user wants. And while we all might have a use for Facebook – simply because everyone is there – we all have different things that interest us when it comes to reading.</p>\n<p>That’s why very few of us devote all of our reading time to a single general interest newspaper these days, and that’s why we at WordPress.com have no intention of pushing anyone to any one particular platform or app. Instead our focus is on enabling and empowering individuals to create new content that is at home in the mobile browser, the WordPress.com app, Facebook or Twitter webviews, or any other channel that makes sense for the reader. Let the water flow to exactly where it’s needed! That’s the power of the web, and now that a computer is with us in so many more places, we need that flexibility more than ever.</p>\n<p><em>You can read more of Ben Thompson’s writing on his excellent <a href="http://stratechery.com/">WordPress-powered blog Stratechery</a>, one of my favorite sources for the “why” behind the news.</em></p>\n<p>See also: <a href="http://daringfireball.net/2014/04/rethinking_what_we_mean_by_mobile_web">John Gruber on Rethinking What We Mean by ‘Mobile Web.’</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, 08 Apr 2014 16:34: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: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: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:78:"WPTavern: WordPress Theme Review VVV: A Quick Vagrant Setup for Testing Themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=20551";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:226:"http://wptavern.com/wordpress-theme-review-vvv-a-quick-vagrant-setup-for-testing-and-reviewing-themes?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-theme-review-vvv-a-quick-vagrant-setup-for-testing-and-reviewing-themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3472:"<p><a href="https://github.com/Varying-Vagrant-Vagrants/VVV" target="_blank">Varying Vagrant Vagrants</a> is likely the most popular Vagrant configuration for setting up a WordPress development environment. VVV makes it easy to create new WordPress installations for developing themes and plugins as well as contributing to core.</p>\n<p>One of the most time-consuming aspects of testing and reviewing WordPress themes is setting up a test site with all the necessary development tools. <a href="https://github.com/aubreypwd/wordpress-themereview-vvv" target="_blank">WordPress Theme Review VVV</a> is a vagrant setup created by <a href="http://aubreypwd.com/" target="_blank">Aubrey Portwood</a>. It completely automates the process of setting up your development site and tools for theme review.</p>\n<h3>How to Set Up WordPress Theme Review VVV</h3>\n<p>This tutorial makes use of an existing VVV setup. If you haven’t yet installed it, check out the <a href="https://github.com/Varying-Vagrant-Vagrants/VVV" target="_blank">VVV project page on github</a> and follow those instructions to get up and running.</p>\n<p><strong>Step 1:</strong> Switch to your VVV installation’s www directory.</p>\n<p><code>cd www</code></p>\n<p><strong>Step 2:</strong> Clone the <a href="https://github.com/aubreypwd/wordpress-themereview-vvv" target="_blank">WordPress Theme Review VVV project</a> to a wordpress-themereview folder.</p>\n<p><code>git clone git://github.com/aubreypwd/wordpress-themereview-vvv.git wordpress-themereview</code></p>\n<p><strong>Step 3:</strong> Re-provision your VVV.</p>\n<p><code>vagrant provision</code></p>\n<p><strong>Step 4:</strong> Visit your new theme review development site.</p>\n<p><a href="http://themereview.wordpress.dev">http://themereview.wordpress.dev</a></p>\n<p><strong>Login Credentials:</strong><br />\n<strong>user:</strong> admin<br />\n<strong>password:</strong> password</p>\n<p>Here’s what the WordPress Theme Review VVV script does:</p>\n<ul>\n<li>Creates a /vagrant-local/www/wordpress-themereview/htdocs folder with a fresh WordPress install</li>\n<li>Creates a data base wordpress_themereview database.</li>\n<li>Installs and activates the <a href="http://wordpress.org/plugins/developer/" target="_blank">Developer</a> and <a href="http://wordpress.org/plugins/theme-check/" target="_blank">Theme-Check</a> plugins</li>\n<li>Imports the <a href="http://codex.wordpress.org/Theme_Unit_Test" target="_blank">Theme Unit Test</a> data</li>\n</ul>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/themereview-vvv.png" rel="prettyphoto[20551]"><img src="http://wptavern.com/wp-content/uploads/2014/04/themereview-vvv.png" alt="themereview-vvv" width="1400" height="837" class="aligncenter size-full wp-image-20588" /></a></p>\n<p>You are now ready to start testing WordPress themes. When you want to start over, simply delete the htdocs folder in the wordpress-themereview directory.</p>\n<p>The ability to create test environments in a flash makes theme testing less of a chore. Using this VVV setup takes a fraction of the amount of time it would normally require to get a theme development environment set up with all the plugins and test data required. If you’re a WordPress theme developer or part of the Theme Review Team, give the <a href="https://github.com/aubreypwd/wordpress-themereview-vvv" target="_blank">WordPress Theme Review VVV</a> setup a try to see if it can make your workflow more efficient.</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, 08 Apr 2014 02:11: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: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:52:"WPTavern: The Idea Of Sponsored Comments Disqusts Me";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=20556";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:148:"http://wptavern.com/the-idea-of-sponsored-comments-disqusts-me?utm_source=rss&utm_medium=rss&utm_campaign=the-idea-of-sponsored-comments-disqusts-me";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5768:"<p><a title="http://blog.disqus.com/post/82003625662/heads-up-were-testing-a-new-form-of-advertising" href="http://blog.disqus.com/post/82003625662/heads-up-were-testing-a-new-form-of-advertising">Disqus announced</a> it is testing out a new advertising technique in the form of sponsored comments. According to the post, the experiment has been going on for at least a month and based on the results, is expanding it across the service. The sponsored comments are clearly marked as such and can contain any type of media to get the point across. Here is what the comments look like minimized and expanded.</p>\n<div id="attachment_20558" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/DisqusSponsoredComments.png" rel="prettyphoto[20556]"><img class="size-full wp-image-20558" alt="Disqus Sponsored Comments" src="http://wptavern.com/wp-content/uploads/2014/04/DisqusSponsoredComments.png" width="500" height="576" /></a><p class="wp-caption-text">Disqus Sponsored Comments</p></div>\n<p>Disqus says the sponsored comments are based on a feature launched earlier this year called <a title="http://blog.disqus.com/post/78689902559/introducing-featured-comments" href="http://blog.disqus.com/post/78689902559/introducing-featured-comments">Featured Comments</a> which gives publishers a chance to highlight the best comments within a conversation. This is a great feature for publishers as long as the featured content is not an ad. Sponsored ads are not set in stone and the service is still working on the overall experience concentrating on the <strong>quality</strong>, <strong>positioning</strong>, and <strong>feedback</strong> of the ads. Disqus says sites that have ads disabled will not see the sponsored comments.</p>\n<h3>Using A Third-Party Service Takes You Out Of The Drivers Seat</h3>\n<p>Back in March, we discussed <a title="http://wptavern.com/what-is-the-future-of-comments-in-wordpress" href="http://wptavern.com/what-is-the-future-of-comments-in-wordpress">what the future looks like</a> for comments within WordPress. More and more sites are opting to use a third-party service to power their comments instead of using the native solution built into WordPress. It’s easy to see why when you consider the large amount of plugins it would take to duplicate the functionality third-party services offer such as featured comments and comment voting. But the downside to using a third-party as a publisher is that you’re attached to their leash.</p>\n<div id="attachment_20562" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/ThirdPartyLeash.png" rel="prettyphoto[20556]"><img class="size-full wp-image-20562" alt="Third Party Leash" src="http://wptavern.com/wp-content/uploads/2014/04/ThirdPartyLeash.png" width="640" height="200" /></a><p class="wp-caption-text">photo credit: <a href="http://www.flickr.com/photos/-konayuki-/5337854899/">Suki♥!</a> – <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a></p></div>\n<p>In 2012, <a title="http://blog.disqus.com/post/24630634643/discovery-in-disqus" href="http://blog.disqus.com/post/24630634643/discovery-in-disqus">Disqus turned on</a> a new feature called Discovery. Many viewed the feature as a form of advertising but the point is that it was enabled automatically for each site it rolled out on. By using a service to power your comments, you could wake up one day to see an entirely new commenting form or a host of new features that ruin the experience on your site.</p>\n<h3>I Declare Comments An Ad-Free Zone!</h3>\n<p>The reaction to the new feature within the <a title="http://blog.disqus.com/post/82003625662/heads-up-were-testing-a-new-form-of-advertising#disqus_thread" href="http://blog.disqus.com/post/82003625662/heads-up-were-testing-a-new-form-of-advertising#disqus_thread">comments of the announcement</a> is lukewarm at best with more questions than answers. I commend Disqus for at least being upfront with their users and explaining that it’s an experiment. By communicating the experiment upfront, it should prevent a flurry of angry users demanding to know why advertising is showing up on their site without their explicit approval.</p>\n<p>The comment section of a website is where the magic of community happens. It’s where the reader gets a chance to voice their thoughts and opinions and interact with the author. In the case of WPTavern, it’s been a rewarding experience over the years with a lot of interaction in the comments.</p>\n<p>There are many areas on a site to place advertising and the comments shouldn’t be one those. Unless they are brought up by a commenter within the conversation, advertising cheapens the interactive experience. They also make the site look amateurish just like most other forms of advertising do.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/spam.jpg" rel="prettyphoto[20556]"><img class="aligncenter size-large wp-image-19912" alt="spam" src="http://wptavern.com/wp-content/uploads/2014/03/spam-500x237.jpg" width="500" height="237" /></a></p>\n<p>I don’t care how relevant the ad is, I wouldn’t want any part of it showing up in the discussion. If not executed correctly, one sponsored comment gives the appearance that a spam comment got through the filter. Comments are an important part of the experience on many WordPress sites and they’re generally filled with more information about the topic being discussed. I doubt a sponsored comment would be able to add anything meaningful to a conversation.</p>\n<p><strong>Do you use Disqus? If so, what do you think about this new feature? Is it something you support or will you have no part of it on your site?</strong></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 08 Apr 2014 00:45:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:116:"WordPress.tv: Interview de Caspar Hübinger, orateur de “Le dilemme du site multilingue et comment le résoudre”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=34246";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:125:"http://wordpress.tv/2014/04/07/interview-de-caspar-hubinger-orateur-de-le-dilemme-du-site-multilingue-et-comment-le-resoudre/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:717:"<div id="v-bva8lpZt-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34246/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34246&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/04/07/interview-de-caspar-hubinger-orateur-de-le-dilemme-du-site-multilingue-et-comment-le-resoudre/"><img alt="10 – Caspar Hubinger-Itw-WCParis2014.mp4" src="http://videos.videopress.com/bva8lpZt/video-4ef86881cb_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 07 Apr 2014 21:08:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:100:"WordPress.tv: Caspar Hübinger : Le dilemme du site multilingue et comment le résoudre (en anglais)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=34244";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:112:"http://wordpress.tv/2014/04/07/caspar-hubinger-le-dilemme-du-site-multilingue-et-comment-le-resoudre-en-anglais/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:705:"<div id="v-yA5BJT0l-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34244/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34244&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/04/07/caspar-hubinger-le-dilemme-du-site-multilingue-et-comment-le-resoudre-en-anglais/"><img alt="10 – Caspar Hubinger-Conf-WCParis2014.mp4" src="http://videos.videopress.com/yA5BJT0l/video-e7af159902_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 07 Apr 2014 21:05:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:49:"WPTavern: DevPress Sold To Unknown Buyer For $14k";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20495";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:140:"http://wptavern.com/devpress-sold-to-unknown-buyer-for-14k?utm_source=rss&utm_medium=rss&utm_campaign=devpress-sold-to-unknown-buyer-for-14k";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4255:"<p>The WordPress theme club known as <a title="http://devpress.com/" href="http://devpress.com/">DevPress</a> has <a title="https://flippa.com/3053438-pr-5-wordpress-themes-subscription-club-with-13-410-uniques-mo-making-413-mo" href="https://flippa.com/3053438-pr-5-wordpress-themes-subscription-club-with-13-410-uniques-mo-making-413-mo">been sold</a> to an unknown buyer for $14k. <a title="http://justintadlock.com/archives/2010/09/21/announcing-devpress" href="http://justintadlock.com/archives/2010/09/21/announcing-devpress">Launched in 2010</a>, DevPress began as a WordPress collaboration project between <strong>Ptah Dunbar, Tung Do (aka Small Potato), Patrick Daly, and Justin Tadlock</strong>. Over the past four years, the company has experienced ups and downs. For example, in 2011, the company launched a <a title="http://web.archive.org/web/20111205195951/http://devpress.com/blog/launching-a-theme-and-plugin-review-service" href="http://web.archive.org/web/20111205195951/http://devpress.com/blog/launching-a-theme-and-plugin-review-service">theme and plugin review service</a> that didn’t last long and was eventually phased out. In late 2011, Tung Do <a title="http://justintadlock.com/archives/2011/12/13/whats-going-on-with-devpress" href="http://justintadlock.com/archives/2011/12/13/whats-going-on-with-devpress">became the sole owner</a> of DevPress.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/DevPressFrontPage.png" rel="prettyphoto[20495]"><img src="http://wptavern.com/wp-content/uploads/2014/04/DevPressFrontPage-500x304.png" alt="The Front Page Of DevPress.com" width="500" height="304" class="aligncenter size-large wp-image-20546" /></a></p>\n<p>Do cites financial and health issues as the primary reasons for selling the site.</p>\n<blockquote><p>For the past four years, through thick and thin, I did not want to sell this site. WordPress theme development is one of the few things I love, but I’ve not have had time to run this site properly and my wife has been sick for the past few months. I’ve already taken a loan 2 months ago, but her medical bills are stacking up. Obviously, I love my wife more so I’ve decided to sell.</p></blockquote>\n<h3>This Isn’t The First WordPress Site Do Has Sold</h3>\n<p>Selling websites is not unfamiliar territory for Do. In 2008, he sold his popular site <a title="http://wpcandy.com/reports/wpdesignercom-sold" href="http://wpcandy.com/reports/wpdesignercom-sold">WPDesigner.com for $65k.</a> Unfortunately, the result of that sale was a front page filled with webhosting affiliate links.</p>\n<p>While the new owner of DevPress has yet to be named, <a title="http://www.poststat.us/devpress-sold-14000-flippa/#comment-116498" href="http://www.poststat.us/devpress-sold-14000-flippa/#comment-116498">Do says</a> the new owner is someone he would trust to take over the site, “He <strong>is</strong> someone I would trust because he is competent in WordPress, is involved in giving back to the community, and has a more consistent track record than I do.” Do also said it will make sense when we find out who the new owner is. “When the deal is finished and you know who it is, it’ll make sense.”</p>\n<h3>Lessons Learned From Four Years Of Experience</h3>\n<p>I asked Do what lessons did he learn and what advice can he share from his four years working for DevPress. He said:</p>\n<blockquote><p>Innovation/bold-ideas doesn’t pay if you don’t succeed and patent it so focus on progress, consistency, and improving things most people find useful. Let others innovate and learn from their mistakes without having to pay the price yourself.</p></blockquote>\n<p>It’s unclear whether this is his last attempt to have a successful, sustainable, commercial theme business. After exchanging a few emails, I get the sense that he is changing his career path to go outside of WordPress. It’s unfortunate because I think he is one of the most talented designers within the WordPress community. I hope that he finds happiness and stability wherever his path leads him.</p>\n<p><strong>Who do you think the new owner of DevPress is? Let us know by leaving your best guess in the comments.</strong></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 07 Apr 2014 19:00:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:67:"WPTavern: P2 Jams WordPress Plugin: Share Your Music with Your Team";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20490";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:176:"http://wptavern.com/p2-jams-wordpress-plugin-share-your-music-with-your-team?utm_source=rss&utm_medium=rss&utm_campaign=p2-jams-wordpress-plugin-share-your-music-with-your-team";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4194:"<div id="attachment_20543" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/music.jpg" rel="prettyphoto[20490]"><img src="http://wptavern.com/wp-content/uploads/2014/04/music.jpg" alt="photo credit: Your petite tune - cc license" width="1024" height="502" class="size-full wp-image-20543" /></a><p class="wp-caption-text">photo credit: <a href="https://www.flickr.com/photos/sophielovescute/4660366629">Your petite tune</a> – <a href="https://creativecommons.org/licenses/by-nc-nd/2.0/">cc</a> license</p></div>\n<p><a href="http://www.last.fm" target="_blank">Last.fm</a> never really caught on as a music service, but its scrobbling capabilities are still widely used. Its subscription streaming radio service will be retired at the end of this month in favor of <a href="http://blog.last.fm/2014/01/29/did-someone-say-on-demand" target="_blank">on demand integration with Spotify</a> and a new YouTube-powered radio player. Last.fm’s scrobbling service will also continue to live on.</p>\n<p><a href="https://github.com/scottbasgaard/p2-jams" target="_blank">P2 Jams</a> is a new WordPress plugin that makes use of Last.fm scrobbling to allow project and team members to share the music they are listening to simply by linking up a Last.fm username.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/p2jamswidget.jpg" rel="prettyphoto[20490]"><img src="http://wptavern.com/wp-content/uploads/2014/04/p2jamswidget.jpg" alt="p2jamswidget" width="999" height="310" class="aligncenter size-full wp-image-20509" /></a></p>\n<p>From my tests with the plugin, it seems that it only displays music that a user is currently listening to and does not keep a backlog of tracks. The widget aggregates the “now playing” tunes from all users on a P2 blog who have entered a Last.fm username into their profiles.</p>\n<p>Users can get more information about each tune by clicking on the link for the track. This takes you to Last.fm’s entry for that particular song, which provides album and historical information as well as a link to Spotify.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/lastfm-link.jpg" rel="prettyphoto[20490]"><img src="http://wptavern.com/wp-content/uploads/2014/04/lastfm-link.jpg" alt="lastfm-link" width="646" height="440" class="aligncenter size-full wp-image-20507" /></a></p>\n<p>As the plugin didn’t have many instructions, here’s a quick walkthrough of how to use it. <a href="https://github.com/scottbasgaard/p2-jams" target="_blank">P2 Jams is available on github</a> from WordPress developer Scott Basgaard. When installing a plugin from github, I usually download it, unpack it and then rename the plugin’s folder to remove “master” from the name.</p>\n<p>Once installed, there are no settings to configure. Each member of the site will now have the option to enter a Last.fm username on the profile edit screen located at <strong>wp-admin/profile.php</strong>. Drop the P2 Jams “Who’s Jammin’?” widget in to the sidebar of the theme to display the tracks that team members are currently enjoying.</p>\n<p>P2 Jams is entirely dependent on having a Last.fm username. If you don’t have one, you’ll need to sign up for a free account. In the unlikely event that you still listen to music on the Last.fm website, your username will automatically send your current tracks to the widget on the site.</p>\n<p>If you’re using Spotify as your music service, you’ll need to enable scrobbling to Last.fm. This is done via Spotify’s <strong>Edit >> Preferences</strong> menu.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/spotify-edit-preferences.jpg" rel="prettyphoto[20490]"><img src="http://wptavern.com/wp-content/uploads/2014/04/spotify-edit-preferences.jpg" alt="spotify-edit-preferences" width="780" height="299" class="aligncenter size-full wp-image-20508" /></a></p>\n<p>P2 Jams is a creative way for team members to connect and discover new artists. If your team loves music, this unique plugin can help foster a sense of community and add a little fun to your P2 collaboration.</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, 07 Apr 2014 18:28:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:33:"Matt: Bitcoin: The Fifth Protocol";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=43729";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/04/bitcoin-the-fifth-protocol/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:191:"<p>Naval Ravikant writes on Bitcoin (and more) as <a href="http://startupboy.com/2014/04/01/the-fifth-protocol/">The Fifth Protocol</a>. Fantastic read, and reminds me to read Snow Crash.</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, 07 Apr 2014 01:41: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:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:32;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"Lorelle on WP: Clark College Students Want to Interview 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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:37:"http://lorelle.wordpress.com/?p=11653";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:85:"http://lorelle.wordpress.com/2014/04/05/clark-college-students-want-to-interview-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:510:"Students in my Clark College WordPress class are required to interview a WordPress professional and member of the WordPress Community as part of their assignments for our student managed site, ClarkWP Magazine. Would you like to be an interview subject? Here are the qualifications. You must use WordPress actively as part of your business. The […]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=11653&subd=lorelle&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 06 Apr 2014 01:08: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: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: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:48:"WPTavern: WordPress.org Profile Redesign is Live";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=20461";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:140:"http://wptavern.com/wordpress-org-profile-redesign-is-live?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-org-profile-redesign-is-live";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2077:"<p>If you haven’t visited WordPress.org lately, the brand new design for profiles is a happy discovery. Last month, Jen Mylo let us know that the profiles were getting <a href="http://wptavern.com/wordpress-org-profiles-on-track-to-be-totally-revamped" target="_blank">redesigned and relaunched</a> with more data related to a user’s involvement with the WordPress project. The profile updates are now live with a fresh design that recognizes various types of contributions.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/wordpress-profile.png" rel="prettyphoto[20461]"><img src="http://wptavern.com/wp-content/uploads/2014/04/wordpress-profile.png" alt="wordpress-profile" width="1400" height="628" class="aligncenter size-full wp-image-20468" /></a></p>\n<p>Eventually, the WordPress.org team plans to merge the new profiles with the forum profiles, creating a unified dashboard.</p>\n<p>You can visit <strong>http://profiles.wordpress.org/[username]</strong> to view and update your profile, or sign up on WordPress.org to create one. Log into WordPress.org and click the “edit” link on your profile to update your info.</p>\n<h3>Write Your WordPress Origin Story</h3>\n<p>A new field on the profiles gives you a place to write your WordPress <a href="http://en.wikipedia.org/wiki/Origin_story" target="_blank">origin story</a>. At the very bottom of the <strong>/profile/edit/group/1/</strong> page you can describe how you got involved with WordPress.</p>\n<p>The new profiles are now a better representation of a person’s interactions on WordPress.org and general involvement with the project. If you haven’t bothered to update your profile for a few years, now is a good time to take another look. Plugin and theme author info and WordCamp speaker data is still in the process of being imported. This is only the first iteration, but it’s already easier to keep track of all your activity, plugins, themes and favorites. Will you be more likely to link to your profile now that it includes more relevant information?</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, 05 Apr 2014 17: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:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:34;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:64:"WPTavern: WPWeekly Episode 144 – WordPress Security Roundtable";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20456&preview_id=20456";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:164:"http://wptavern.com/wpweekly-episode-144-wordpress-security-roundtable?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-144-wordpress-security-roundtable";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2545:"<p>This episode of WordPress Weekly featured a panel of four individuals helping to make the web a safer place.</p>\n<ul>\n<li>Chris Wiegman – Lead Developer of <a title="https://wordpress.org/plugins/better-wp-security/" href="https://wordpress.org/plugins/better-wp-security/">iThemes Security</a></li>\n<li>Regina Smola – Founder of <a title="http://wpsecuritylock.com/" href="http://wpsecuritylock.com/">WPSecurityLock</a></li>\n<li>Brennen Byrne – Founder and CEO of <a title="https://getclef.com/" href="https://getclef.com/">Clef</a></li>\n<li>Sam Hotchkiss – Founder of <a title="https://bruteprotect.com/" href="https://bruteprotect.com/">BruteProtect</a></li>\n</ul>\n<p>We discussed a number of topics such as two-factor authentication, security best practices, and whether or not strong passwords should be a requirement when creating a user account in WordPress. We also debated whether or not two-factor authentication will become a core feature. Last but not least, we went over some of the trends they’re noticing when it comes to protecting user’s WordPress sites.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/wordpress-3-9-release-date-officially-set-for-april-16th" href="http://wptavern.com/wordpress-3-9-release-date-officially-set-for-april-16th">WordPress 3.9 Release Date Officially Set for April 16th</a><br />\n<a title="http://wptavern.com/wordpress-3-9-to-add-oembed-support-for-meetup-com-and-imgur" href="http://wptavern.com/wordpress-3-9-to-add-oembed-support-for-meetup-com-and-imgur">WordPress 3.9 to Add oEmbed Support for Meetup.com and Imgur</a><br />\n<a title="http://wptavern.com/distraction-free-writing-mode-will-be-responsive-in-wordpress-3-9" href="http://wptavern.com/distraction-free-writing-mode-will-be-responsive-in-wordpress-3-9">Distraction Free Writing Mode Will Be Responsive in WordPress 3.9</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Friday, April 11th 3 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #144:</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:"Sat, 05 Apr 2014 01:24:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:35;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:90:"WPTavern: The Combination Of Jetpack and Dreamhost Security Settings Lead To Lost 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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=20436";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:224:"http://wptavern.com/the-combination-of-jetpack-and-dreamhost-security-settings-lead-to-lost-comments?utm_source=rss&utm_medium=rss&utm_campaign=the-combination-of-jetpack-and-dreamhost-security-settings-lead-to-lost-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3504:"<p>If you’re experiencing issues with Jetpack comments, you’re not the only one. First reported by WPTavern commenter, Mike McAlister, Jetpack Comments has been producing a <strong>Service Not Available error</strong> since the afternoon of April 3rd.</p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/wptavern">@wptavern</a> Seems the Tavern comment forms are getting "Service Temporarily Unavailable" errors. Maybe just Jetpack, but thought I\'d mention!</p>\n<p>— Mike McAlister (@mikemcalister) <a href="https://twitter.com/mikemcalister/statuses/451798115511578624">April 3, 2014</a></p></blockquote>\n<p></p>\n<p>Not only does the error show up after submitting a comment, but the comment is then lost. There is at least <a title="http://wordpress.org/support/topic/comments-are-temporarily-unavailable?replies=1" href="http://wordpress.org/support/topic/comments-are-temporarily-unavailable?replies=1">one support request</a> on the WordPress.org forums reporting the same problem.</p>\n<div id="attachment_20439" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/JetpackCommentsOutOfFuel.png" rel="prettyphoto[20436]"><img class="size-full wp-image-20439" alt="Jetpack Comments Temporarily Offline" src="http://wptavern.com/wp-content/uploads/2014/04/JetpackCommentsOutOfFuel.png" width="646" height="201" /></a><p class="wp-caption-text">Jetpack Comments Error Due To Dreamhost Security Configuration</p></div>\n<p>As it turns out, Dreamhost tweaked security settings dealing with <a title="http://www.modsecurity.org/" href="http://www.modsecurity.org/">mod_security</a>. Due to the changes, Jetpack is failing to communicate with WordPress.com causing modules like Jetpack Comments to malfunction.</p>\n<p><strong>Dreamhost has since reverted those changes allowing Jetpack Comments to function normally again.</strong></p>\n<h3>Why Comments Were Lost and The Need For A Graceful Fallback</h3>\n<p>Through this experience, I’ve learned a number of things related to how the <a title="http://jetpack.me/support/comments/" href="http://jetpack.me/support/comments/">Jetpack Comments module</a> works. For starters, the module does not hold comments for a specific amount of time. Instead, it pushes comments to the local install of WordPress immediately. This negates the need to have database synchronization which is common with other third-party commenting services.</p>\n<p>Since the iFrame continued to load normally, the comments section appeared to be working correctly. Only after trying to submit a comment were they presented with an error and the comment was lost. There is now an <a title="https://github.com/Automattic/jetpack/issues/446" href="https://github.com/Automattic/jetpack/issues/446">ongoing discussion on GitHub</a> exploring ideas to have better error messages and prevent comments in the future from being lost.</p>\n<p>I like the idea that if an error is encountered when trying to submit a comment, the visitor is presented an option to submit it through the native WordPress comment form. At the very least, this would give them a chance to copy the comment instead of losing it.</p>\n<p>Comments are very important to me and I apologize if you’ve tried to submit one to the site within the past 48 hours and lost it. I’m confident that through this experience, the Jetpack Comments module will receive the necessary updates to prevent future comments from being lost.</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, 04 Apr 2014 18:16:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:53:"WordPress.tv: Grégoire Noyelle : Enseigner WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=34196";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.tv/2014/04/04/gregoire-noyelle-enseigner-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:663:"<div id="v-n2VVd4p2-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34196/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34196&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/04/04/gregoire-noyelle-enseigner-wordpress/"><img alt="11 – Grégoire Noyelle-Conf-WCParis2014.mp4" src="http://videos.videopress.com/n2VVd4p2/video-4ecd4d0c0f_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 04 Apr 2014 12:26:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:75:"WPTavern: Distraction Free Writing Mode Will Be Responsive in WordPress 3.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20377";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:194:"http://wptavern.com/distraction-free-writing-mode-will-be-responsive-in-wordpress-3-9?utm_source=rss&utm_medium=rss&utm_campaign=distraction-free-writing-mode-will-be-responsive-in-wordpress-3-9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2153:"<p>If you use WordPress’ <a href="https://make.wordpress.org/support/user-manual/content/editors/distraction-free-writing/" target="_blank">Distraction Free Writing Mode</a> every day, then you may have noticed a small bug where the editor gets chopped off at smaller screen sizes. Chances are that most people don’t use the DFW mode on mobile devices very often, so the bug seems to have gone unnoticed for a little while.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/unresponsive.png" rel="prettyphoto[20377]"><img src="http://wptavern.com/wp-content/uploads/2014/04/unresponsive.png" alt="unresponsive" width="1200" height="576" class="aligncenter size-full wp-image-20421" /></a></p>\n<p>The good news is that this will be fixed in WordPress 3.9. Janneke Van Dorpe <a href="https://core.trac.wordpress.org/ticket/27569" target="_blank">submitted a patch</a> for the issue with a simple CSS fix that makes the zen writing mode responsive.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/responsive-dfw.jpg" rel="prettyphoto[20377]"><img src="http://wptavern.com/wp-content/uploads/2014/04/responsive-dfw.jpg" alt="responsive-dfw" width="568" height="370" class="aligncenter size-full wp-image-20424" /></a></p>\n<p>It’s also worth mentioning that the “fullscreen” button has been removed in favor of a fullscreen icon for launching Distraction Free Writing mode:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/dfw-39.jpg" rel="prettyphoto[20377]"><img src="http://wptavern.com/wp-content/uploads/2014/04/dfw-39.jpg" alt="dfw-39" width="800" height="291" class="aligncenter size-full wp-image-20423" /></a></p>\n<p>There are several compelling reasons why using the <a href="http://wptavern.com/wordpress-zen-mode-5-compelling-reasons-to-turn-on-distraction-free-writing" target="_blank">Distraction Free Writing mode can improve the quality of your writing</a> and help you to write more efficiently. The CSS housekeeping fixes in 3.9 will make the zen mode writing experience even better if you happen to be using a tiny browser window or blogging from a mobile device.</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, 04 Apr 2014 05: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: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:79:"WPTavern: How WordPress Plugin Authors Can Better Explain What Their Plugins Do";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20408";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:204:"http://wptavern.com/how-wordpress-plugin-authors-can-better-explain-what-their-plugin-does?utm_source=rss&utm_medium=rss&utm_campaign=how-wordpress-plugin-authors-can-better-explain-what-their-plugin-does";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6069:"<p>Back in February, we <a title="http://wptavern.com/tips-for-promoting-newly-released-wordpress-plugins" href="http://wptavern.com/tips-for-promoting-newly-released-wordpress-plugins">published a guide</a> containing tips for promoting newly released plugins. Since the article was published, we’ve received a lot of plugin review submissions through <a title="http://wptavern.com/contact-me" href="http://wptavern.com/contact-me">our contact form</a>. Some of the submissions have left me frustrated as I can’t figure out what the plugin does or how it works. Here are a few suggestions to help users understand what your plugin does.</p>\n<div id="attachment_20417" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/PluginExplanationFeaturedImage.png" rel="prettyphoto[20408]"><img class="size-full wp-image-20417" alt="Plugin Explanation Featured Image" src="http://wptavern.com/wp-content/uploads/2014/04/PluginExplanationFeaturedImage.png" width="638" height="235" /></a><p class="wp-caption-text">photo credit: <a href="http://www.flickr.com/photos/jarbo/9379813470/">Jared Cherup</a> – <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/">cc</a></p></div>\n<h3>Use Video To Explain How It Works</h3>\n<p>The plugin’s description should be as descriptive as possible. Not every plugin needs three paragraphs of explanation but it doesn’t help if it’s only a few words. Explain what the plugin does, what problem it solves, and how I’d get the most use out of it.</p>\n<p>In 2010, the <a title="http://make.wordpress.org/core/2010/02/20/plugins-can-now-include-videos-in-their-readme-txt-files/" href="http://make.wordpress.org/core/2010/02/20/plugins-can-now-include-videos-in-their-readme-txt-files/">ability to include videos</a> within a plugin’s readme file was added. In my opinion, this has been one of the best improvements to the plugin repository in recent years. Videos hosted on <a title="https://www.youtube.com/" href="https://www.youtube.com/">YouTube</a>, <a title="https://vimeo.com/" href="https://vimeo.com/">Vimeo</a>, and <a title="http://videopress.com/" href="http://videopress.com/">VideoPress</a> are supported. Plugin authors, please use this invaluable tool to walk new users through your plugin and explain what it does. One example of using video in an effective way is the <a title="http://wordpress.org/plugins/ml-slider/" href="http://wordpress.org/plugins/ml-slider/">Meta Slider</a> plugin. The video is clear, to the point, and I’m able to determine how to use it.</p>\n<p><span class="embed-youtube"></span></p>\n<p>Videos are not limited to just the description page. The <a title="http://wordpress.org/plugins/ml-slider/faq/" href="http://wordpress.org/plugins/ml-slider/faq/">FAQ section</a> also supports videos.</p>\n<h3>Use Screenshots As Visual Explanations</h3>\n<div id="attachment_20409" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/MetaSliderScreenshot.png" rel="prettyphoto[20408]"><img class="size-full wp-image-20409" alt="Screenshot Of Meta Slider On The Plugin Repository " src="http://wptavern.com/wp-content/uploads/2014/04/MetaSliderScreenshot.png" width="634" height="367" /></a><p class="wp-caption-text">Screenshot Of Meta Slider On The Plugin Repository</p></div>\n<p>While screenshots on the plugin repository are limited in size, sharp images give a good representation of what the plugin is capable of. I suggest showing screenshots of the options page, examples of the plugin in action, and any administration panel related to the plugin. I recommend using both screenshots and video to cover all of your bases.</p>\n<h3>What Does The WPTavern Community Think?</h3>\n<p>I asked the WP Tavern community on Twitter what tip would they give to a plugin author hosting a plugin on the WordPress plugin repository in order for users to immediately understand what it does. The most popular response was to create a video. Here are a few of the replies I received:</p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/jeffr0">@jeffr0</a> a) explain outcomes, b) use visuals, and c) demonstrate by example</p>\n<p>— Gregg Banse (@greggbanse) <a href="https://twitter.com/greggbanse/statuses/451906222980345857">April 4, 2014</a></p></blockquote>\n<p></p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/jeffr0">@jeffr0</a> don’t embellish. Be honest and spell it out plainly (preferably with pictures)</p>\n<p>— Chris Wiegman (@ChrisWiegman) <a href="https://twitter.com/ChrisWiegman/statuses/451907056971161600">April 4, 2014</a></p></blockquote>\n<p></p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/jeffr0">@jeffr0</a> Screenshots really help in many cases.</p>\n<p>— Sarah Gooding (@pollyplummer) <a href="https://twitter.com/pollyplummer/statuses/451908202846638080">April 4, 2014</a></p></blockquote>\n<p></p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/jeffr0">@jeffr0</a> a quick read me file? Directions on the page where you download it from?</p>\n<p>— Jonathan Atkinson (@twsjonathan) <a href="https://twitter.com/twsjonathan/statuses/451905576734183424">April 4, 2014</a></p></blockquote>\n<p></p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/jeffr0">@jeffr0</a> Simplicity and focus. Don\'t throw in the kitchen sink. And have screenshots.</p>\n<p>— Samuel Wood (Otto) (@Otto42) <a href="https://twitter.com/Otto42/statuses/451918717258330112">April 4, 2014</a></p></blockquote>\n<p></p>\n<p>By providing a clear explanation using text, images, and video, users are less likely to skip over the plugin due to not understanding what it does. I’m also more likely to review it because I understand how it solves a problem.</p>\n<p><strong>What other tips and suggestions can you give to plugin developers so users immediately understand what it does and how it works?</strong></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 04 Apr 2014 03:48: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:39;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:70:"WPTavern: WordPress 3.9 to Add oEmbed Support for Meetup.com and Imgur";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20374";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:184:"http://wptavern.com/wordpress-3-9-to-add-oembed-support-for-meetup-com-and-imgur?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-3-9-to-add-oembed-support-for-meetup-com-and-imgur";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4991:"<p>Last week, <a title="http://wptavern.com/qik-is-shutting-down-how-to-save-your-videos" href="http://wptavern.com/qik-is-shutting-down-how-to-save-your-videos">we wrote about</a> the demise of Qik and how oEmbed support for the service will be removed in WordPress 3.9. However, two more services will be added. <a title="http://www.meetup.com/" href="http://www.meetup.com/">Meetup.com</a> and <a title="https://imgur.com" href="https://imgur.com">Imgur</a> will have oEmbed support in 3.9.</p>\n<p>When you copy and paste a Meetup.com URL into the post editor, WordPress will automatically embed the content of that URL into the post. In the example images below, the first image shows what the embedded URL to my meetup’s homepage looks like.</p>\n<div id="attachment_20406" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/oembeddedurlformeetuphomepage2.png" rel="prettyphoto[20374]"><img src="http://wptavern.com/wp-content/uploads/2014/04/oembeddedurlformeetuphomepage2.png" alt="Meetup Group Homepage Embedded In A Post" width="645" height="283" class="size-full wp-image-20406" /></a><p class="wp-caption-text">Meetup Group Homepage Embedded In A Post</p></div>\n<p>The second image shows the embedded URL to a specific meetup event.</p>\n<div id="attachment_20405" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/oembeddedurlformeetupevent2.png" rel="prettyphoto[20374]"><img src="http://wptavern.com/wp-content/uploads/2014/04/oembeddedurlformeetupevent2.png" alt="Meetup Group Event Embedded Into A Post" width="545" height="255" class="size-full wp-image-20405" /></a><p class="wp-caption-text">Meetup Group Event Embedded Into A Post</p></div>\n<p>Thanks to oEmbed support, users are able to conveniently show the necessary details either for the meetup group itself or for specific events.</p>\n<h3>Sharing Images From Imgur Is As Easy As Copy and Paste</h3>\n<p><a title="https://imgur.com/" href="https://imgur.com/">Imgur</a> is a social site filled with images that have gone viral. During my tests, I saw no differences between the images that used the oEmbed support versus the block of embed code provided by Imgur. I found it easier to copy and paste the URL of an image into WordPress than to locate the block of embed code.</p>\n<div id="attachment_20382" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/oembeddedimgurimage.png" rel="prettyphoto[20374]"><img class="size-large wp-image-20382" alt="An Imgur Image oEmbedded To A Post" src="http://wptavern.com/wp-content/uploads/2014/04/oembeddedimgurimage-423x500.png" width="423" height="500" /></a><p class="wp-caption-text">An Imgur Image oEmbedded To A Post</p></div>\n<h3>The Benefits Of Using oEmbed Supported URLs In WordPress</h3>\n<p>The <strong>first</strong> benefit is that it’s easier to copy and paste a URL into the post editor versus a block of code.</p>\n<p><strong>Second</strong>, the visual editor usually strips certain elements within a block of embeddable code causing it to break. This doesn’t happen when using a simple URL.</p>\n<p><strong>Third</strong>, certain user roles in WordPress can’t use the HTML provided by services to embed content. Instead of giving users more capabilities, it’s a lot safer for them to use the URL of an oEmbed supported service.</p>\n<p><strong>Last</strong> but not least, the text editor version of a post is easier to read since only the URL is needed to embed content.</p>\n<h3>If oEmbed Supported Sites Disappear, So Does The Embedded Content</h3>\n<p>Meetup.com and Imgur join a <a title="https://codex.wordpress.org/Embeds#Okay.2C_So_What_Sites_Can_I_Embed_From.3F" href="https://codex.wordpress.org/Embeds#Okay.2C_So_What_Sites_Can_I_Embed_From.3F">sizable list of white-listed services</a> with oEmbed support in WordPress. Considering Imgur recently <a title="http://www.forbes.com/sites/alexkonrad/2014/04/03/imgur-raises-40-million-from-andreessen/" href="http://www.forbes.com/sites/alexkonrad/2014/04/03/imgur-raises-40-million-from-andreessen/">raised $40 million dollars</a> in venture capital, I doubt the site will be disappearing any time soon. Similarly, Meetup.com is in no danger of disappearing, since it is the go-to site for organizing local meetups.</p>\n<p>If both sites disappear, their content will go along with them. It’s important to note oEmbeds do not save content to your site, they’re only an easier means of displaying that content.</p>\n<h3>Which Method Do You Use To Embed Content Into Posts?</h3>\n<p>Out of habit, I occasionally use blocks of embed code from services even if they have oEmbed support in WordPress. However, I’ve recently begun to use oEmbed supported URLs and I have to admit, it’s so much quicker and easier to embed content this way.</p>\nNote: There is a poll embedded within this post, please visit the site to participate in this post\'s poll.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 04 Apr 2014 01:47:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:40;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:84:"WPTavern: WordPress Multisite Global Terms Plugin: Share Taxonomies Across a Network";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20348";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:210:"http://wptavern.com/wordpress-multisite-global-terms-plugin-share-taxonomies-across-a-network?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-multisite-global-terms-plugin-share-taxonomies-across-a-network";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2802:"<div id="attachment_20398" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/taxonomies.jpg" rel="prettyphoto[20348]"><img src="http://wptavern.com/wp-content/uploads/2014/04/taxonomies.jpg" alt="photo credit: the Generic Asian - cc" width="1024" height="453" class="size-full wp-image-20398" /></a><p class="wp-caption-text">photo credit: <a href="http://www.flickr.com/photos/thegenericasian/7005875427/">remind me</a> – <a href="http://creativecommons.org/licenses/by/2.0/">cc</a></p></div>\n<p>On a WordPress multisite network each blog has its own categories, tags and custom taxonomies. Keeping <a href="http://codex.wordpress.org/Taxonomies" target="_blank">taxonomies</a> separate is the default setup, but it is possible to have all networked blogs share the same terms.</p>\n<p>The new <a href="http://wordpress.org/plugins/mu-global-terms/" target="_blank">Multisite Global Terms</a> plugin allows sites to share global categories, tags and custom taxonomies across a multisite network. Created by Brajesh Singh of <a href="http://buddydev.com/" target="_blank">BuddyDev</a>, this plugin makes it possible for the main site to share its terms_taxonomy table with the rest of the sites on the network.</p>\n<p>If a new taxonomy term is added on any site, the Multisite Global Terms plugin makes it available to the rest of the networked sites. There are no visible changes in the admin except that each site will be able to see all available terms. It even works for custom taxonomies as long as the taxonomy is registered on the site where you’re trying to use it.</p>\n<p><em>One point of caution:</em> When you activate this plugin to allow global terms across all blogs, any existing terms on sub-sites that aren’t already available on the main site, will not be automatically incorporated. They will be lost. This is important to understand before activating, as it makes a major change. Multisite Global Terms is probably better to use if you’re setting up your multisite network to share global terms from the outset, as opposed to implementing it after many terms have already been created on sub-sites.</p>\n<p>Sharing taxonomies across a multisite network can be useful if the sites are dedicated to a similar topic, ie. a network of real estate bloggers or any kind of niche blogging network. Content within a shared category is then better connected to related posts on the network. It’s also easier to theme a site to display recent posts from any blog across the network within a specific category, tag or custom taxonomy. The <a href="http://wordpress.org/plugins/mu-global-terms/" target="_blank">Multisite Global Terms</a> plugin is available on WordPress.org. It must be network-activated after installation.</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, 04 Apr 2014 00:30:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:63:"WordPress.tv: Dave Jesch: Optimizing PHP Code and MySQL Queries";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=34132";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:80:"http://wordpress.tv/2014/04/03/dave-jesch-optimizing-php-code-and-mysql-queries/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:681:"<div id="v-OqoNktwp-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34132&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/04/03/dave-jesch-optimizing-php-code-and-mysql-queries/"><img alt="Dave Jesch: Optimizing PHP Code and MySQL Queries" src="http://videos.videopress.com/OqoNktwp/video-e4c7d8b846_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 03 Apr 2014 23:21:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:42;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:61:"WPTavern: New Plugin Adds CodePen oEmbed Support to 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=20350";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:166:"http://wptavern.com/new-plugin-adds-codepen-oembed-support-to-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=new-plugin-adds-codepen-oembed-support-to-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:3140:"<p><a href="http://wptavern.com/wp-content/uploads/2014/04/codepen-feature.jpg" rel="prettyphoto[20350]"><img src="http://wptavern.com/wp-content/uploads/2014/04/codepen-feature.jpg" alt="codepen-feature" width="800" height="265" class="aligncenter size-full wp-image-20362" /></a></p>\n<p>Today CodePen <a href="http://blog.codepen.io/2014/04/03/oembed/" target="_blank">announced oEmbed support</a> and just as quickly a free plugin is already available to add it to WordPress. <a href="http://wordpress.org/plugins/codepen-oembed/" target="_blank">CodePen oEmbed</a> allows you to drop a Pen URL into your content area on its own line and have the pen automatically embedded.</p>\n<p>Currently, you cannot customize the output, so the embed will use the default theme and 300px height.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/codepen.png" rel="prettyphoto[20350]"><img src="http://wptavern.com/wp-content/uploads/2014/04/codepen.png" alt="codepen" width="1271" height="1046" class="aligncenter size-full wp-image-20360" /></a></p>\n<p>The plugin only works for post/page content but if you want to add it to your comments, you’ll need to install the <a href="http://wordpress.org/plugins/oembed-in-comments/" target="_blank">oEmbed for Comments</a> plugin as well.</p>\n<p>Pippin Williamson and Andrew Norcross created the plugin to make it easier for WordPress users to embed Pens and also to gauge interest in adding CodePen oEmbed support to the WordPress core. A trac <a href="https://core.trac.wordpress.org/ticket/27658" target="_blank">ticket</a> submitted today proposes to add CodePen to the <a href="https://codex.wordpress.org/Embeds#Okay.2C_So_What_Sites_Can_I_Embed_From.3F" target="_blank">official whitelist</a> of WordPress oEmbed providers, but the decision seems to be tabled for the time being until more data is available for how many people are actually using the plugin. One of the <a href="http://make.wordpress.org/core/handbook/design-decisions/#whitelisting-oembed-providers" target="_blank">qualifications</a> for making this list is that the service is well-established, popular, and mainstream.</p>\n<p>In January, CodePen released <a href="http://wptavern.com/codepen-releases-official-wordpress-plugin" target="_blank">an official WordPress plugin for embedding Pens</a>. This plugin offers more robust customization options beyond what’s offered in the oEmbed plugin, although it’s not as easy to use. Chris Coyier confirmed that the CodePen team will continue to support the official CodePen plugin in addition to seeking adoption as an official oEmbed provider.</p>\n<p>For now, if you want to embed Pens to inspire your readers with creative front-end development snippets, you can do so via a plugin. Download the <a href="http://wordpress.org/plugins/codepen-oembed/" target="_blank">CodePen oEmbed</a> plugin from WordPress.org if you like the default embed theme for Pens. If you need further customization options, <a href="http://wordpress.org/plugins/codepen-embedded-pen-shortcode/" target="_blank">CodePen Embedded Pens Shortcode</a> is a better 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:"Thu, 03 Apr 2014 20:51:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:77:"WPTavern: BuddyPress 2.0 Ramps Up Performance, Reduces Footprint by Up to 75%";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20326";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:194:"http://wptavern.com/buddypress-2-0-ramps-up-performance-reduces-footprint-by-up-to-75?utm_source=rss&utm_medium=rss&utm_campaign=buddypress-2-0-ramps-up-performance-reduces-footprint-by-up-to-75";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4266:"<p>For the past couple months, BuddyPress core developer Boone Gorges has been hinting at some <a href="http://wptavern.com/big-performance-improvements-coming-to-buddypress-2-0" target="_blank">big performance improvements coming to BuddyPress 2.0</a>. He’s been working tirelessly to make the plugin faster and has <a href="http://bpdevel.wordpress.com/2014/04/02/one-of-the-primary-focuses/" target="_blank">published</a> some benchmarks to demonstrate the improvements in 2.0.</p>\n<p>He posted statistics that compare the number of MySQL queries and the total query time. For example, the BuddyPress activity directory has received a number of changes that result in some fairly significant performance gains. With <a href="http://wordpress.org/plugins/apc/" target="_blank">APC</a> off, the number of queries has been reduced from <strong>80</strong> in BP 1.9.2 to <strong>59</strong> in BP 2.0. With APC on, the number of queries is reduced from 10 to 5. This results in a significant drop in the query time as well.</p>\n<p>Here’s a visualization of the reduced query time on the activity directory page with default filters, viewed as a logged-out visitor, with APC on.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/bp-activity-query-time.jpg" rel="prettyphoto[20326]"><img src="http://wptavern.com/wp-content/uploads/2014/04/bp-activity-query-time.jpg" alt="bp-activity-query-time" width="542" height="341" class="aligncenter size-full wp-image-20340" /></a></p>\n<p>When it comes to the Members directory, you’ll see some drastic improvements as well. Gorges published data based on the 234th page of the Members directory, sorted by Last Active (/members/?upage=234), as seen by a logged-out visitor. Here’s what the drop in query time looks like with APC on:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/bp-members-directory.jpg" rel="prettyphoto[20326]"><img src="http://wptavern.com/wp-content/uploads/2014/04/bp-members-directory.jpg" alt="bp-members-directory" width="545" height="336" class="aligncenter size-full wp-image-20342" /></a></p>\n<p>As you can see, the query times have been reduced by approximately 50% in both cases, which is going to make BuddyPress 2.0 much more zippy and enjoyable to use. Check out Boone Gorges’ <a href="http://bpdevel.wordpress.com/2014/04/02/one-of-the-primary-focuses/" target="_blank">post</a> for more data, as this is just a small sampling.</p>\n<h3>BuddyPress Footprint Reduced by Up to 75% in Many Places</h3>\n<p>Gorges generated 30,000 members and 60,000 activity items for the tests used to report these benchmarks and found that the BuddyPress footprint for 2.0 has been reduced by up to 75% in many places.</p>\n<blockquote><p>The number of queries per page load in each case has been cut by up to 50%, and query time, on average, has been cut by more than 50%. And remember that these numbers are total values – it’s BP on top of WP’s standard queries. That is to say that the query footprint attributable to BP itself has been reduced by up to 75% in many places.</p></blockquote>\n<p>Additionally, Gorges said that his tests revealed corresponding improvements in script execution time and memory footprint, but since those numbers are dependent on the hosting environment, he decided not to include them in his report. Nonetheless, it should be exciting to see how BuddyPress performance improves across the board.</p>\n<p>The drastic increase in performance is one major reason why you’re going to want to be ready to upgrade to BuddyPress 2.0 when it is released. Test your site with the <a href="http://wptavern.com/buddypress-2-0-beta-1-ready-for-testing" target="_blank">2.0 Beta 1</a> now in order to get your ducks in a row and help report any bugs. BuddyPress theme and plugin developers will want to have all of their products compatible with 2.0 as soon as it’s out the door, since BP site admins will likely be anxious to update their sites immediately.</p>\n<p>For anyone who hosts a BuddyPress community or participates in one as a member, your experience with this software is about to be drastically improved. Look for the official BuddyPress 2.0 release to drop the same week as WordPress 3.9.</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, 03 Apr 2014 17:46:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:59:"WP Android: Pull-to-Refresh and More Added in Latest Update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://android.wordpress.org/?p=990";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://android.wordpress.org/2014/04/03/pull-to-refresh-update/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2229:"<p>The latest update of WordPress for Android is now available. Version 2.7 brings some great new features along with it. Read on to find out more!</p>\n<h2>Pull-to-Refresh</h2>\n<p><img class="alignnone size-full wp-image-991" src="http://wpandroid.files.wordpress.com/2014/03/pull-to-refresh.gif?w=840" alt="Pull to Refresh" /><br />\nYou can now refresh content in the app by using the familiar pull-to-refresh gesture. Just swipe down on any screen in the app and you’ll get the freshest content available for that screen.</p>\n<h2>Performance Improvements</h2>\n<p>We also worked hard on making the app perform faster and more efficiently behind the scenes:</p>\n<ul>\n<li>Your stats have been optimized to load and scroll faster than ever before.</li>\n<li>Posts and Pages now support infinite scroll so you can easily load more content.</li>\n<li>Media upgrades let you see content faster and scroll more smoothly.</li>\n<li>We improved the post editor — it now uses less of your device’s memory when adding media to a post.</li>\n</ul>\n<h2>Much More</h2>\n<p>This release includes many more small enhancements and fixes. Curious what they are? Check out the <a href="https://github.com/wordpress-mobile/WordPress-Android/issues?milestone=9&page=1&state=closed">GitHub milestone</a> for more info.</p>\n<p>Excited for the update? <a href="https://play.google.com/store/apps/details?id=org.wordpress.android">Download it now from Google Play</a>.</p>\n<h2>Contributor Thanks & What’s Next</h2>\n<p>We owe a big thanks to the contributors who helped make this release happen: <a href="http://github.com/nbradbury">@nbradbury</a>, <a href="http://github.com/maxme">@maxme</a>, <a href="http://github.com/roundhill">@roundhill</a>, <a href="http://github.com/daniloercoli">@daniloercoli</a> and <a href="http://github.com/aagam-shah">@aagam-shah</a></p>\n<p>Up next, we want to focus on post drafts and even better media management.</p>\n<p>Be sure to follow <a href="http://twitter.com/wpandroid">WPAndroid</a> for all of the latest updates.</p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=android.wordpress.org&blog=9426921&post=990&subd=wpandroid&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, 03 Apr 2014 12:33: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:3:"Dan";s: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:89:"WPTavern: Introduction To Underscores: A WordPress Starter Theme With Konstantin Obenland";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20252";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:220:"http://wptavern.com/introduction-to-underscores-a-wordpress-starter-theme-with-konstantin-obenland?utm_source=rss&utm_medium=rss&utm_campaign=introduction-to-underscores-a-wordpress-starter-theme-with-konstantin-obenland";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:10689:"<p>Without much in the way of advertising, Underscores has become a popular choice for WordPress theme developers. To learn more about it, I asked Automattic employee, <a title="http://konstantin.obenland.it" href="http://konstantin.obenland.it/">Konstantin Obenland</a>, <a href="https://twitter.com/obenland" title="https://twitter.com/obenland">@obenland</a> on Twitter, to explain what the theme is, how it got its name, and how people can contribute to the project.</p>\n<div id="attachment_19360" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/UnderscoresHeader.png" rel="prettyphoto[20252]"><img class="size-full wp-image-19360" alt="A Starter Theme Created by Automattic" src="http://wptavern.com/wp-content/uploads/2014/03/UnderscoresHeader.png" width="650" height="200" /></a><p class="wp-caption-text">A Starter Theme Created by Automattic</p></div>\n<p><strong>Why was Underscores created and how did it get its name?</strong></p>\n<p>Ian Stewart tells the tale in detail in the <a title="http://themeshaper.com/2012/02/13/introducing-the-underscores-theme/" href="http://themeshaper.com/2012/02/13/introducing-the-underscores-theme/">announcement post</a> for Underscores, but the gist of it is that <a title="http://theme.wordpress.com/retired/toolbox/" href="http://theme.wordpress.com/retired/toolbox/">Toolbox</a>, the theme we used as a starter theme at the time, could not be updated without backwards compatibility concerns, and needed more drastic improvements. Since the fork <em>underscores</em> the new themes we build, we called it the <a title="http://underscores.me/" href="http://underscores.me/">Underscores Theme</a>, or <strong>_s</strong> for short.</p>\n<p><strong>Without a lot of advertising, Underscores seems to be a starting point for many developers. Why do you think that is?</strong></p>\n<p>That is true, we haven’t done a lot of marketing for it yet. I think what developers really like is its simplicity and adherence to <a title="http://codex.wordpress.org/Theme_Review" href="http://codex.wordpress.org/Theme_Review">WordPress standards</a>.</p>\n<p>Underscores comes from the combined experience of building themes for millions of users on <a href="http://WordPress.com">WordPress.com</a>, and creating default themes that ship with WordPress and have to work in all environments. This is paired with excellence in theming best practices and just enough functionality, markup, and styles to get started.</p>\n<div id="attachment_20299" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/UnderscoresWhenActivated.png" rel="prettyphoto[20252]"><img class="size-large wp-image-20299" alt="This Is Underscores Looks Like Activated Without Modifications" src="http://wptavern.com/wp-content/uploads/2014/04/UnderscoresWhenActivated-500x312.png" width="500" height="312" /></a><p class="wp-caption-text">This Is What Underscores Looks Like Activated Without Modifications</p></div>\n<p>When you download Underscores, there is very little to tear down or take away. You can almost immediately dive into building your theme. We put a lot of thought into keeping it as lean as possible and still do when making decisions on new features and enhancements.</p>\n<p><strong>Would you consider Underscores a starter theme, theme framework, or something else?</strong></p>\n<p>Underscores is a starter theme. It is meant to be worked with, tweaked, and styled. It is not a framework or a parent theme to be extended. It is supposed to <strong>become</strong> a theme of its own, when finished.</p>\n<p><strong>What is the ratio of Automattic developers contributing patches to Underscores versus contributions from the wider community?</strong></p>\n<div id="attachment_20298" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/UnderscoresContributions.png" rel="prettyphoto[20252]"><img class="size-large wp-image-20298" alt="A Sampling Of Contributors To Underscores" src="http://wptavern.com/wp-content/uploads/2014/04/UnderscoresContributions-500x170.png" width="500" height="170" /></a><p class="wp-caption-text">A Sampling Of Contributors To Underscores</p></div>\n<p>There have been <strong>64</strong> contributors on <a title="https://github.com/automattic/_s" href="https://github.com/automattic/_s">GitHub</a> so far although GitHub only counts contributors who contributed through a <a title="https://help.github.com/articles/using-pull-requests" href="https://help.github.com/articles/using-pull-requests">Pull Request</a>. Out of those <strong>64</strong>, less than <strong>20</strong> are current or former Automatticians. I don’t have stats on the amount of Issues or Pull Requests opened, but the <strong>2:1 ratio</strong> feels true for that too, maybe even <strong>3:1</strong>.</p>\n<p><strong>What projects does Automattic use Underscores for?</strong></p>\n<div id="attachment_20307" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/O2SiteHeader.png" rel="prettyphoto[20252]"><img class="size-large wp-image-20307" alt="O2 Is The Successor To The P2 Theme" src="http://wptavern.com/wp-content/uploads/2014/04/O2SiteHeader-500x110.png" width="500" height="110" /></a><p class="wp-caption-text">O2 Is The Successor To The P2 Theme</p></div>\n<p>We use it for pretty much all projects where it makes sense to use a theme. Be it a new theme for the WordPress.com Theme Repository, a vertical like <a title="http://wordpress.com/portfolios/" href="http://wordpress.com/portfolios/">Portfolios</a>, or a landing page for users of a certain mobile device. We even use it internally for the <a title="http://geto2.com/" href="http://geto2.com/">O2 theme</a>, the successor of P2.</p>\n<p><strong>Are themes more likely to be approved in a WordPress.com theme review if Underscores is used to build the theme?<br />\n</strong></p>\n<p>Possibly. But not for the sake of using Underscores. Rather because the code quality of those themes is more likely to meet <a title="http://developer.wordpress.com/themes/" href="http://developer.wordpress.com/themes/">our expectations</a>. Themes can be based on any kind of framework or starter theme as long as the code quality is right. We certainly don’t disqualify themes for not using it.</p>\n<p><strong>What examples do you have of beautiful sites designed with Underscores?</strong></p>\n<div id="attachment_20309" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/HaveBabyNeedStuffOnUnderscores.png" rel="prettyphoto[20252]"><img class="size-large wp-image-20309" alt="Have Baby. Need Stuff! Built Using Underscores" src="http://wptavern.com/wp-content/uploads/2014/04/HaveBabyNeedStuffOnUnderscores-500x222.png" width="500" height="222" /></a><p class="wp-caption-text">Have Baby. Need Stuff! Built Using Underscores</p></div>\n<p>There are plenty! Let’s start with <a title="http://twentyfourteendemo.wordpress.com/" href="http://twentyfourteendemo.wordpress.com/">Twenty Fourteen</a>, the latest default theme. It was converted from <a title="http://furtherdemo.wordpress.com/" href="http://furtherdemo.wordpress.com/">Further</a>, a premium theme based on _s. Every <a title="http://theme.wordpress.com/themes/sort/free/" href="http://theme.wordpress.com/themes/sort/free/">free theme </a>and <a title="http://theme.wordpress.com/themes/by/automattic/" href="http://theme.wordpress.com/themes/by/automattic/">every premium theme by Automattic</a> launched on WordPress.com in the last two years, are based on _s too. The official homepage of the <a title="http://www.mavs.com/" href="http://www.mavs.com/">Dallas Mavericks</a>, Mark Jaquith’s <a title="http://havebabyneedstuff.com/" href="http://havebabyneedstuff.com/">Have Baby. Need Stuff!</a>, this <a title="http://deals.ebay.com/blog/" href="http://deals.ebay.com/blog/">ebay landing page</a>, and the <a title="http://prospective.westernu.edu/" href="http://prospective.westernu.edu/">Western University site</a> are all made from _s. Not a lot of commonalities between them, even though they have the same foundation.</p>\n<p><strong>If you had to convince a developer to use Underscores, what would you tell them?</strong></p>\n<p>Take advantage of the <a title="http://themeshaper.com/2012/02/13/introducing-the-underscores-theme/" href="http://themeshaper.com/2012/02/13/introducing-the-underscores-theme/">1000 hour head start</a> tutorial to building your theme. Underscores is a proven, reliable foundation to start from, built with the knowledge and experience from running themes on millions of sites, and creating default themes for WordPress Core. If you feel _s is too bare bones for you or find yourself adding the same libraries every time you start a new project, fork _s on GitHub, add the desired libraries and use your fork as the starting point!</p>\n<p><strong>How can people get involved to help improve the theme?</strong></p>\n<p>We maintain _s on GitHub to make it as easy as possible for people to contribute. Involvement can range from sharing opinions about existing proposals, to creating a new issue with improvement suggestions, to opening pull requests with code changes.</p>\n<p><strong>What one thing do you want people to know about Underscores?</strong></p>\n<p>You really don’t need to know any PHP or be a <em>programmer</em> to be able to use Underscores. As long as you’re somewhat comfortable with CSS and some HTML, Underscores can help you build the next great WordPress theme!</p>\n<h3>Stats Related To Underscores</h3>\n<p>It’s worth noting that the following statistics are for a theme aimed at developers with little to no marketing efforts behind it.</p>\n<ul>\n<li>185,000 recorded downloads from Underscores.me since September 5, 2012 although it’s likely 250,000 to 300,000 in total.</li>\n<li>A total of 15,500 downloads for all of March</li>\n<li>Downloaded every 3.3 minutes. This excludes zip downloads from GitHub, forks, and theme updates.</li>\n<li>It’s the <a title="https://github.com/search?l=php&p=2&q=stars:%3E1&s=stars&type=Repositories" href="https://github.com/search?l=php&p=2&q=stars:%3E1&s=stars&type=Repositories">17th most starred</a> PHP project on GitHub:</li>\n<li>It is 19th in the list of <a title="https://github.com/trending?l=php&since=monthly#pa-_s" href="https://github.com/trending?l=php&since=monthly#pa-_s">trending PHP repositories on GitHub this month</a>.</li>\n</ul>\n<p><strong>If you’ve used <a href="http://underscores.me/" title="http://underscores.me/">Underscores</a> for a project or client website, send us a link in the comments.</strong></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 02 Apr 2014 20:22:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:78:"WPTavern: Status Update On The WordPress Front-end Editor and How You Can Help";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=20165";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:200:"http://wptavern.com/status-update-on-the-wordpress-front-end-editor-and-how-you-can-help?utm_source=rss&utm_medium=rss&utm_campaign=status-update-on-the-wordpress-front-end-editor-and-how-you-can-help";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6397:"<p>We’ve written about a number of alternate editors to WordPress for both editing and writing content. <a title="http://wptavern.com/sir-trevor-wp-an-alternative-post-editor-for-wordpress" href="http://wptavern.com/sir-trevor-wp-an-alternative-post-editor-for-wordpress">Sir Trevor WP</a>, <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>, <a title="http://wptavern.com/splitdown-a-free-ghost-style-markdown-editor-for-wordpress" href="http://wptavern.com/splitdown-a-free-ghost-style-markdown-editor-for-wordpress">Splitdown</a>, and <a title="http://wptavern.com/barley-for-wordpress-a-revolutionary-inline-content-editor" href="http://wptavern.com/barley-for-wordpress-a-revolutionary-inline-content-editor">Barley</a> to name a few. However, WordPress may soon have its own frontend editor built into core. <a title="http://wordpress.org/plugins/wp-front-end-editor/" href="http://wordpress.org/plugins/wp-front-end-editor/">WordPress Front-end Editor</a> was proposed by Janneke Van Dorpe <a title="https://make.wordpress.org/ui/2013/09/14/front-end-editor/" href="https://make.wordpress.org/ui/2013/09/14/front-end-editor/">in late 2013</a>, with the goal of merging the backend and frontend editors into one. After six months of development, I tested the plugin using a local server running WordPress 3.9 beta 3.</p>\n<h3>Rough Around The Edges</h3>\n<p>After installing WordPress Front-end Editor, it was hard to determine how to use it since the plugin doesn’t contain directions within the readme file. By trial and error, I was able to figure it out. When clicking the <strong>Edit Post</strong> link on the front end of the site, the admin bar displays a number of editing buttons such as bold, italicize, etc. In my tests, it wasn’t immediately clear what text or content became editable.</p>\n<div id="attachment_20240" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/WPFrontEndEditor1.png" rel="prettyphoto[20165]"><img class="size-large wp-image-20240" alt="WordPress Front End Editor In Action" src="http://wptavern.com/wp-content/uploads/2014/04/WPFrontEndEditor1-500x302.png" width="500" height="302" /></a><p class="wp-caption-text">Editor In Action</p></div>\n<p>Just about everything you can do in the visual editor can be accomplished with the inline editor. For example, you can use keyboard shortcuts to bold or italicize highlighted text. While you can change tags, categories, or access other options, there is a <a title="https://github.com/avryl/wp-front-end-editor/issues/65" href="https://github.com/avryl/wp-front-end-editor/issues/65">bug preventing them from displaying correctly.</a> When previewing unpublished posts, both the active tab and the preview tab will load the front end of the site. This is a bug and has <a title="https://github.com/avryl/wp-front-end-editor/issues/64" href="https://github.com/avryl/wp-front-end-editor/issues/64">already been reported</a>.</p>\n<p>One question I had concerning the editor is when would it be appropriate to use? It’s a great way to quickly edit typos or fix URLs without having to navigate to the backend of WordPress but that’s for content already published. I’m so used to creating content from the backend, it’s tough to imagine doing it any other way.</p>\n<h3>When A Content Editor Crosses The Line</h3>\n<p>I’m pleased to report that the editor is strictly tied to editing content. You can’t move widgets around, change the text within them, or change the site’s colors. Those tasks have been left to the theme customizer. I’m happy the team has made this decision since I believe enabling users to manipulate their theme with a content editor is crossing the line.</p>\n<h3>How You Can Help The Project</h3>\n<p>When I asked Dorpe what she needed help with the most, she responded, “We really need some people to help out with the development, because right now, I’m the <strong>only one working on it</strong>. We also really need a lot of people to <strong>test it and give feedback.</strong>” If during testing you run into a bug, please <a title="https://github.com/avryl/wp-front-end-editor" href="https://github.com/avryl/wp-front-end-editor">create a new issue</a> on the plugin’s Github page.</p>\n<div id="attachment_20245" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/04/WPFrontEndEditor2.png" rel="prettyphoto[20165]"><img class="size-large wp-image-20245" alt="WordPress Front-end Editor" src="http://wptavern.com/wp-content/uploads/2014/04/WPFrontEndEditor2-500x322.png" width="500" height="322" /></a><p class="wp-caption-text">WordPress Front-end Editor</p></div>\n<p>The team meets every <a href="http://www.timeanddate.com/worldclock/fixedtime.html?iso=20140401T1700"><abbr title="2014-04-01T17:00:00+00:00">Tuesday, at 13:00 UTC-4</abbr></a> in the #wordpress-ui IRC channel. You can keep tabs on the project by subscribing to the <a title="http://make.wordpress.org/ui/tag/front-end-editor/" href="http://make.wordpress.org/ui/tag/front-end-editor/">front-end-editor tag</a> used on the Make WordPress UI blog.</p>\n<h3>The WordPress Backend May Become A Thing Of The Past</h3>\n<p>If the <a title="http://wordpress.org/plugins/wp-front-end-editor/" href="http://wordpress.org/plugins/wp-front-end-editor/">WordPress Front-end Editor</a> succeeds in its mission of bridging the gap between the backend and frontend of WordPress, it will revamp the way users create content in WordPress. The backend will become a thing of the past for some authors as they create and edit all of their content using the inline editor. Having the editor built into core would also give WordPress a feature other modern publishing platforms like <a title="https://ghost.org/features/" href="https://ghost.org/features/">Ghost</a>, already have.</p>\n<p>There is no guarantee that the plugin will ever be merged into core but it’s an excellent example of one way to implement the feature into WordPress. Do you think having a frontend editor in WordPress would make content creation and editing easier? Can you see yourself using it as the primary method of creating content?</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, 02 Apr 2014 20:00:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:51:"WPTavern: 10 Free Ultra Minimalist WordPress Themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=20257";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:146:"http://wptavern.com/10-free-ultra-minimalist-wordpress-themes?utm_source=rss&utm_medium=rss&utm_campaign=10-free-ultra-minimalist-wordpress-themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:8802:"<p>If you love to blog but don’t want a theme with clunky sliders and overloaded widget areas cluttering up your site, then chances are you’re on the hunt for the perfect minimalist WordPress theme. Finding a theme that provides a beautiful reading experience with an unobtrusive, high quality design is no simple task. You’ll end up wading through hundreds of themes.</p>\n<p>That’s why I’ve collected a few of the best minimalist WordPress themes from around the web. All of the themes featured here make liberal use of white space and display very little, if any, post meta.</p>\n<p>Remember that any of these themes can be even further stripped down to better reflect your spartan sensibilities. Create a <a href="https://codex.wordpress.org/Child_Themes" target="_blank">child theme</a> to preserve your ability to get updates, and then proceed to cut out post meta or anything that you feel is distracting to the reader.</p>\n<h2>Tonal</h2>\n<p><a href="http://wordpress.org/themes/tonal"><img src="http://wptavern.com/wp-content/uploads/2014/04/tonal.png" alt="tonal" width="600" height="450" class="aligncenter size-full wp-image-20261" /></a></p>\n<p><a href="http://wordpress.org/themes/tonal" target="_blank">Tonal</a> is a content-focused theme from Automattic that sports a minimal design with large featured images. The theme supports post formats and can display images and videos at full width. The menu and widgets are hidden from sight in a pull-down panel.</p>\n<p>One particularly unique aspect of Tonal is its background adaptation feature. Select any solid background color and the theme will automatically modify your typography and other elements to preserve readability with the new background color.</p>\n<p><strong><a href="http://tonaldemo.wordpress.com/" target="_blank">Demo</a> | <a href="http://wordpress.org/themes/tonal" target="_blank">Download</a></strong></p>\n<h2>Casper</h2>\n<p><a href="http://lacymorrow.com/projects/casper/"><img src="http://wptavern.com/wp-content/uploads/2014/04/casper.jpg" alt="casper" width="1073" height="815" class="aligncenter size-full wp-image-20268" /></a></p>\n<p><a href="http://lacymorrow.com/projects/casper/" target="_blank">Casper</a> is a free Ghost-style theme based on Underscores. It is essentially a port of Ghost’s default theme with WordPress-specific features added into the customizer for uploading your own logo, customizing the background and header images, text and social links.</p>\n<p><strong><a href="http://lacymorrow.com/projects/casper/" target="_blank">Demo</a> | <a href="http://lacymorrow.com/projects/casper/" target="_blank">Download</a></strong></p>\n<h2>Lingonberry</h2>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/lingonberry.png" rel="prettyphoto[20257]"><img src="http://wptavern.com/wp-content/uploads/2014/04/lingonberry.png" alt="lingonberry" width="880" height="660" class="aligncenter size-full wp-image-20279" /></a></p>\n<p>Lingonberry is a beautifully-designed minimalist theme by Anders Noren. Check out our recent interview with him on <a href="http://wptavern.com/anders-noren-on-achieving-simplicity-in-wordpress-theme-design" target="_blank">achieving simplicity in WordPress theme design</a>. The Lingonberry theme offers support for post formats. The hidden top menu pulls down navigation and a search bar.</p>\n<p><strong><a href="http://andersnoren.se/themes/lingonberry/" target="_blank">Demo</a> | <a href="http://wordpress.org/themes/lingonberry" target="_blank">Download</a></strong></p>\n<h2>TinyPress</h2>\n<p><a href="http://caslay.com/tiny/"><img src="http://wptavern.com/wp-content/uploads/2014/04/tinypress.jpg" alt="tinypress" width="1212" height="794" class="aligncenter size-full wp-image-20272" /></a></p>\n<p><a href="http://caslay.com/tiny/" target="_blank">TinyPress</a> is a mobile-friendly WordPress theme with bold headlines and a focus on readability. It includes matching social sharing buttons, styles for galleries and quotes, and a hidden menu that pops open a full page widget area when clicked.</p>\n<p><strong><a href="http://caslay.com/tiny_theme/" target="_blank">Demo</a> | <a href="http://caslay.com/tiny/" target="_blank">Download</a></strong></p>\n<h2>Gravit</h2>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/gravit.png" rel="prettyphoto[20257]"><img src="http://wptavern.com/wp-content/uploads/2014/04/gravit.png" alt="gravit" width="880" height="660" class="aligncenter size-full wp-image-20276" /></a></p>\n<p>Gravit is a bright, clean WordPress theme with support for post formats and large featured images. The theme has many options built into the customizer, including color controls for the post format icons, site title, text and background. Gravit also includes a unique “About Me” page design and template.</p>\n<p><strong><a href="http://gravit.tryand.net/" target="_blank">Demo</a> | <a href="http://wordpress.org/themes/gravit" target="_blank">Download</a></strong></p>\n<h2>Readly</h2>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/readly.jpg" rel="prettyphoto[20257]"><img src="http://wptavern.com/wp-content/uploads/2014/04/readly.jpg" alt="readly" width="1067" height="599" class="aligncenter size-full wp-image-20282" /></a></p>\n<p>Readly is a free theme from <a href="http://wpshower.com/" target="_blank">WP Shower</a> that utilizes large fonts and supports post formats. It was designed for readability on all devices. The theme has several options built into the customizer, including the ability to change the theme color and add social links. You can also easily select between three pagination options: regular, load more, and infinite scroll.</p>\n<p><strong><a href="http://wpshower.com/demo/?preview_theme=readly" target="_blank">Demo</a> | <a href="http://wpshower.com/themes/readly/" target="_blank">Download</a></strong></p>\n<h2>Aquarius</h2>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/aquarius.png" rel="prettyphoto[20257]"><img src="http://wptavern.com/wp-content/uploads/2014/04/aquarius.png" alt="aquarius" width="880" height="660" class="aligncenter size-full wp-image-20285" /></a></p>\n<p>Aquarius is a retina-ready responsive theme that supports all standard post formats. Sidebar widgets are hidden from view with a slideout panel. Navigation is fixed and available at the top of the page as you scroll.</p>\n<p><strong><a href="http://wplovin.com/themes/aquarius/" target="_blank">Demo</a> | <a href="http://wordpress.org/themes/aquarius" target="_blank">Download</a></strong></p>\n<h2>Padhang</h2>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/padhang.png" rel="prettyphoto[20257]"><img src="http://wptavern.com/wp-content/uploads/2014/04/padhang.png" alt="padhang" width="880" height="660" class="aligncenter size-full wp-image-20295" /></a></p>\n<p>Padhang is a Javanesse word that means “bright.” This theme features a large header image and a single centered column for content. The custom header, background and colors can be changed via the theme customizer.</p>\n<p><strong><a href="http://blog.hirizh.name/padhang/" target="_blank">Demo</a> | <a href="http://wordpress.org/themes/padhang" target="_blank">Download</a></strong></p>\n<h2>wp-svbtle</h2>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/wp-svbtle.png" rel="prettyphoto[20257]"><img src="http://wptavern.com/wp-content/uploads/2014/04/wp-svbtle.png" alt="wp-svbtle" width="1120" height="792" class="aligncenter size-full wp-image-20288" /></a></p>\n<p>WP-Svbtle is a theme inspired by the <a href="https://svbtle.com/" target="_blank">svbtle.com</a> design. The theme options let you upload a custom image for the header logo or select from one of the included icons. The unique thing about WP-Svbtle is that the admin area and the theme are independent of each other. The theme includes a directory that provides a new writing dashboard with a zen style interface for composing new content.</p>\n<p><strong><a href="http://wp-svbtle.themeskult.com/" target="_blank">Demo</a> | <a href="https://github.com/themeskult/wp-svbtle" target="_blank">Download</a></strong></p>\n<h2>Hellish Simplicity</h2>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/04/hellish.png" rel="prettyphoto[20257]"><img src="http://wptavern.com/wp-content/uploads/2014/04/hellish.png" alt="hellish" width="880" height="660" class="aligncenter size-full wp-image-20297" /></a></p>\n<p>Hellish Simplicity is a theme created by Ryan Hellyer. It’s a clean, responsive theme that looks great on mobile devices. You can easily update the header text via the customizer.</p>\n<p><strong><a href="http://ryanhellyer.net/" target="_blank">Demo</a> | <a href="http://wordpress.org/themes/hellish-simplicity" target="_blank">Download</a></strong></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 02 Apr 2014 19:26:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:73:"WordPress.tv: Chris Lema: Integrating Gravity Forms and Mail Chimp Groups";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=34150";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/2014/04/02/chris-lema-integrating-gravity-forms-and-mail-chimp-groups/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:695:"<div id="v-J5hLinEC-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34150&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/04/02/chris-lema-integrating-gravity-forms-and-mail-chimp-groups/"><img alt="Chris Lema: Integrating Gravity Forms and Mail Chimp Groups" src="http://videos.videopress.com/J5hLinEC/video-4619e57f55_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 02 Apr 2014 18:59: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:48:"WordPress.tv: Suzette Franck: Flickr Integration";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=34152";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.tv/2014/04/02/suzette-franck-flickr-integration/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:645:"<div id="v-6tqULDNn-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34152&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/04/02/suzette-franck-flickr-integration/"><img alt="Suzette Franck: Flickr Integration" src="http://videos.videopress.com/6tqULDNn/video-2d889a45c0_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 02 Apr 2014 18:39:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 12 Apr 2014 23:45:50 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"205190";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Sat, 12 Apr 2014 23:30:15 GMT";s:4:"x-nc";s:11:"HIT lax 249";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20140405233850";}', 'no'),
(230, '_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1397389600', 'no'),
(231, '_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1397346400', 'no'),
(232, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1397389601', 'no'),
(233, '_transient_feed_b9388c83948825c1edaef0d856b7b109', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wordpress.org/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 12 Apr 2014 23:29:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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:45:"http://wordpress.org/plugins/akismet/#post-15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:11:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:32:"15@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:98:"Akismet checks your comments against the Akismet web service to see if they look like spam or not.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:48:"http://wordpress.org/plugins/jetpack/#post-23862";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Jan 2011 02:21:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"23862@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:104:"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Tim Moore";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"WordPress SEO by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"http://wordpress.org/plugins/wordpress-seo/#post-8321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jan 2009 20:34:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"8321@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"Google XML Sitemaps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/plugins/google-sitemap-generator/#post-132";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:31:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"132@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"Arnee";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"Contact Form 7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2141@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:54:"Just another contact form plugin. Simple but flexible.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:46:"iThemes Security (formerly Better WP Security)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/plugins/better-wp-security/#post-21738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 22 Oct 2010 22:06:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"21738@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:63:"The easiest, most effective way to secure WordPress in seconds.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Chris Wiegman";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:15:"NextGEN Gallery";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/plugins/nextgen-gallery/#post-1169";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 23 Apr 2007 20:08:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"1169@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:120:"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 9 million downloads.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Alex Rabe";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WooCommerce - excelling eCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"http://wordpress.org/plugins/woocommerce/#post-29860";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Sep 2011 08:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"29860@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"WooThemes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"W3 Total Cache";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/plugins/w3-total-cache/#post-12073";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Jul 2009 18:46:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"12073@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:132:"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Frederick Townes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:20:"MailPoet Newsletters";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/plugins/wysija-newsletters/#post-32629";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 02 Dec 2011 17:09:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"32629@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:94:"Send newsletters, post notifications or autoresponders from WordPress easily, and beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"MailPoet Staff";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"WordPress Importer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/plugins/wordpress-importer/#post-18101";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 May 2010 17:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"18101@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brian Colinger";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:58:"http://wordpress.org/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"753@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:126:"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"Wordfence Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/plugins/wordfence/#post-29832";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 04 Sep 2011 03:13:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"29832@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:121:"Wordfence Security is a free enterprise class security 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: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:21:"Really Simple CAPTCHA";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wordpress.org/plugins/really-simple-captcha/#post-9542";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Mar 2009 02:17:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"9542@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:138:"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"Google Analytics Dashboard for WP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"http://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 10 Mar 2013 17:07:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"50539@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:148:"Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Alin Marcu";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:45:"http://wordpress.org/plugins/rss/view/popular";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 12 Apr 2014 23:45:52 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:7:"expires";s:29:"Sun, 13 Apr 2014 00:04:12 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Sat, 12 Apr 2014 23:29:12 +0000";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20140405233850";}', 'no'),
(234, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1397389601', 'no'),
(235, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1397346401', 'no'),
(236, '_transient_timeout_plugin_slugs', '1397439414', 'no'),
(237, '_transient_plugin_slugs', 'a:5:{i:0;s:30:"advanced-custom-fields/acf.php";i:1;s:27:"acf-gallery/acf-gallery.php";i:2;s:29:"acf-repeater/acf-repeater.php";i:3;s:19:"akismet/akismet.php";i:4;s:9:"hello.php";}', 'no'),
(238, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1397389601', 'no'),
(239, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/\' title=\'As teased earlier, the first release candidate for WordPress 3.9 is now available for testing! We hope to ship WordPress 3.9 next week, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.) To test WordPress 3.9 […]\'>WordPress 3.9 Release Candidate</a> <span class="rss-date">April 8, 2014</span><div class=\'rssSummary\'>As teased earlier, the first release candidate for WordPress 3.9 is now available for testing! We hope to ship WordPress 3.9 next week, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.) To test WordPress 3.9 […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2014/04/12/sarah-wefald-twitter-integration-with-wordpress/\' title=\' \'>WordPress.tv: Sarah Wefald: Twitter Integration With WordPress</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/wpweekly-episode-145-an-omgbbqwtf-kind-of-week?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-145-an-omgbbqwtf-kind-of-week\' title=\'Marcus Couch and I were joined by Eric Mann to discuss the news of the week. After the news, we discussed in-depth a few of the core proposals Mann has published on his blog. We covered the following three WordPress core proposals: Data Service Portability Offline Editor After speaking with Mann, it’s clear he puts a lot of thought into each proposal. I hope you enjoy the show and don’t forget to give us your feedback in the comments. Stories Discussed: Breaking: Jetpack Releases Critical Security Update, Immediate Action Required WordPress 3.8.2: First Security Release Shipped as a Background Update Recent Update To Wordfence Security Breaks WordPress Mobile Apps DevPress Sold To Unknown Buyer For $14k Devin Price is the new owner of DevPress WordPress.org Profile Redesign is Live Plugins Picked By Marcus: Webkite for WordPress – WebKite is a service for getting your data online quickly and easily. Backed by the WebKite API, the WebKite for WordPress plugin delivers the filtering and sorting capabilities of sites like Kayak, Amazon, and Yelp. Users can interact with your content to easily find items that are relevant to their needs, a great way to build rapport and trust with your user base. Watermark – This plugin allows you to add a watermark on images uploaded to the media library. It applies a watermark on new images as well as images already uploaded. Forget About Shortcode Buttons – Forget About Shortcode (FASC) Buttons are a visual way to add CSS buttons in the post editor screen and to your themes. TwentyTwenty – Show before and after pictures in your blog, with an interactive slider that allows users to compare them. BP Group Documents – BP Group Documents creates a page within each BuddyPress group to upload and any type of file or document. This allows members of BuddyPress groups to upload and store files and documents that are relevant to the group. WPWeekly Meta: Next Episode: Friday, April 18th 3 P.M. Eastern – Special Guest: Andrew Nacin Subscribe To WPWeekly Via Itunes: Click here to subscribe Subscribe To WPWeekly Via RSS: Click here to subscribe Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe Listen To Episode #145: \'>WPTavern: WPWeekly Episode 145 – An OMGBBQWTF Kind Of Week</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/wordpress-plugin-coschedule-secures-500k-in-funding?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-plugin-coschedule-secures-500k-in-funding\' title=\'CoSchedule, the editorial workflow and activity scheduling plugin, has secured $500K in a Series A round of funding. The angel investment was led by Sandin Holdings and Bullinger Enterprises of Fargo, North Dakota. Matching funds were provided by the North Dakota Development Fund. Joe Sandin of Sandin Holdings will join CoSchedule’s Board of Directors, providing strategic guidance and business advice. When I reviewed the plugin last year, I considered it to be a viable alternative to Edit Flow. CoSchedule will use the money to hire more employees, increase their marketing budget, and increase the speed of development so new features reach users faster. Moon says the company has experienced rapid growth since launching in September of 2013. Since the launch, the plugin has over 6,000 downloads with users in more than 100 countries and paying customers in 35 countries. I asked Moon, what advice does he have for those looking to obtain a round of funding to take their business or service to the next level? He replied: I think a lot of developers hesitate to look for funding for their work because the process is overwhelming and unfamiliar to them. I will definitely admit that it is a ton of work, but it can be hugely valuable. Not only can you get the financing you need to move to the next level, but it really forces you to look at your product in a new way and challenge every assumption that you’ve made. Investors ask hard questions, and that can be a really good thing. Do you use CoSchedule? If so, what do you think of its editorial workflow and how it handles multiple authors?\'>WPTavern: WordPress Plugin CoSchedule Secures $500K In Funding</a></li></ul></div><div class="rss-widget"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'http://wordpress.org/plugins/google-analytics-dashboard-for-wp/\' class=\'dashboard-news-plugin-link\'>Google Analytics Dashboard for WP</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=google-analytics-dashboard-for-wp&_wpnonce=e2aa5e3f37&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Google Analytics Dashboard for WP\'>Install</a>)</span></li></ul></div>', 'no'),
(244, '_site_transient_timeout_theme_roots', '1397353109', 'yes'),
(245, '_site_transient_theme_roots', 'a:4:{s:3:"taf";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";s:14:"twentythirteen";s:7:"/themes";s:12:"twentytwelve";s:7:"/themes";}', 'yes'),
(247, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-3.8.2.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-3.8.2.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-3.8.2-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-3.8.2-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"3.8.2";s:7:"version";s:5:"3.8.2";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:1397353006;s:15:"version_checked";s:5:"3.8.2";s:12:"translations";a:0:{}}', 'yes'),
(248, '_transient_is_multi_author', '0', 'yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
-- Dumping structure for table leahbate_taf.wp_postmeta
DROP TABLE IF EXISTS `wp_postmeta`;
CREATE TABLE IF NOT EXISTS `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=421 DEFAULT CHARSET=utf8;
-- Dumping data for table leahbate_taf.wp_postmeta: ~326 rows (approximately)
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(6, 7, '_edit_last', '1'),
(7, 7, '_edit_lock', '1397353005:1'),
(8, 8, '_wp_attached_file', '2014/04/rosen_guild_logo.jpg'),
(9, 8, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:274;s:6:"height";i:97;s:4:"file";s:28:"2014/04/rosen_guild_logo.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"rosen_guild_logo-150x97.jpg";s:5:"width";i:150;s:6:"height";i:97;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(10, 7, '_thumbnail_id', '8'),
(38, 12, '_menu_item_type', 'post_type'),
(39, 12, '_menu_item_menu_item_parent', '0'),
(40, 12, '_menu_item_object_id', '2'),
(41, 12, '_menu_item_object', 'page'),
(42, 12, '_menu_item_target', ''),
(43, 12, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(44, 12, '_menu_item_xfn', ''),
(45, 12, '_menu_item_url', ''),
(46, 12, '_menu_item_orphaned', '1396748443'),
(83, 17, '_menu_item_type', 'custom'),
(84, 17, '_menu_item_menu_item_parent', '35'),
(85, 17, '_menu_item_object_id', '17'),
(86, 17, '_menu_item_object', 'custom'),
(87, 17, '_menu_item_target', ''),
(88, 17, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(89, 17, '_menu_item_xfn', ''),
(90, 17, '_menu_item_url', 'http://localhost/leah_finalproject_wp/shows/randg-are-dead/'),
(92, 18, '_edit_last', '1'),
(93, 18, 'field_5340b4990c941', 'a:14:{s:3:"key";s:19:"field_5340b4990c941";s:5:"label";s:9:"Author(s)";s:4:"name";s:7:"authors";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:13:"default_value";s:2:"by";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;}'),
(94, 18, 'field_5340b4cc0c942', 'a:14:{s:3:"key";s:19:"field_5340b4cc0c942";s:5:"label";s:11:"Director(s)";s:4:"name";s:9:"directors";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:13:"default_value";s:11:"directed by";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;}'),
(95, 18, 'field_5340b4f70c943', 'a:14:{s:3:"key";s:19:"field_5340b4f70c943";s:5:"label";s:26:"Text for Licensing Company";s:4:"name";s:26:"text_for_licensing_company";s:4:"type";s:4:"text";s:12:"instructions";s:65:"Enter any text that the licensing company requires us to include.";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:7:"prepend";s:0:"";s:6:"append";s:0:"";s:10:"formatting";s:4:"html";s:9:"maxlength";s:0:"";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:3;}'),
(96, 18, 'field_5340b51f0c944', 'a:11:{s:3:"key";s:19:"field_5340b51f0c944";s:5:"label";s:19:"Description of Show";s:4:"name";s:19:"description_of_show";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:4;}'),
(97, 18, 'field_5340b5420c945', 'a:13:{s:3:"key";s:19:"field_5340b5420c945";s:5:"label";s:20:"Performance Schedule";s:4:"name";s:20:"performance_schedule";s:4:"type";s:8:"repeater";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:10:"sub_fields";a:3:{i:0;a:15:{s:3:"key";s:19:"field_5340b5580c946";s:5:"label";s:11:"Day of Week";s:4:"name";s:11:"day_of_week";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:12:"column_width";s: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;}i:1;a:12:{s:3:"key";s:19:"field_5340b56f0c947";s:5:"label";s:4:"Date";s:4:"name";s:4:"date";s:4:"type";s:11:"date_picker";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:12:"column_width";s:0:"";s:11:"date_format";s:7:"MM-d-yy";s:14:"display_format";s:8:"MM d, yy";s:9:"first_day";s:1:"1";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;}i:2;a:15:{s:3:"key";s:19:"field_5340b5f50c948";s:5:"label";s:4:"Time";s:4:"name";s:4:"time";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:12:"column_width";s: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;}}s:7:"row_min";s:0:"";s:9:"row_limit";s:0:"";s:6:"layout";s:5:"table";s:12:"button_label";s:7:"Add Row";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;}'),
(98, 18, 'field_5340b62a0c949', 'a:11:{s:3:"key";s:19:"field_5340b62a0c949";s:5:"label";s:10:"Venue Name";s:4:"name";s:10:"venue_name";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";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;}'),
(99, 18, 'field_5340b6840c94c', 'a:13:{s:3:"key";s:19:"field_5340b6840c94c";s:5:"label";s:18:"Ticket Information";s:4:"name";s:18:"ticket_information";s:4:"type";s:8:"repeater";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:10:"sub_fields";a:2:{i:0;a:12:{s:3:"key";s:19:"field_5340b6c10c94e";s:5:"label";s:19:"Ticket Service Logo";s:4:"name";s:19:"ticket_service_logo";s:4:"type";s:5:"image";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:12:"column_width";s:0:"";s:11:"save_format";s:3:"url";s:12:"preview_size";s:4:"full";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}i:1;a:12:{s:3:"key";s:19:"field_5340b7680c950";s:5:"label";s:26:"Ticket Service Description";s:4:"name";s:26:"ticket_service_description";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:12:"column_width";s:0:"";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:1;}}s:7:"row_min";s:0:"";s:9:"row_limit";s:0:"";s:6:"layout";s:5:"table";s:12:"button_label";s:7:"Add Row";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;}'),
(100, 18, 'field_5340b7a30c951', 'a:11:{s:3:"key";s:19:"field_5340b7a30c951";s:5:"label";s:23:"Description of Director";s:4:"name";s:23:"description_of_director";s:4:"type";s:7:"wysiwyg";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:7:"toolbar";s:4:"full";s:12:"media_upload";s:3:"yes";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:10;}'),
(101, 18, 'field_5340b8310c952', 'a:13:{s:3:"key";s:19:"field_5340b8310c952";s:5:"label";s:9:"Cast List";s:4:"name";s:9:"cast_list";s:4:"type";s:8:"repeater";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:10:"sub_fields";a:2:{i:0;a:15:{s:3:"key";s:19:"field_5340b84a0c953";s:5:"label";s:16:"Character\'s Name";s:4:"name";s:15:"characters_name";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:12:"column_width";s: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;}i:1;a:15:{s:3:"key";s:19:"field_5340b8670c954";s:5:"label";s:12:"Actor\'s Name";s:4:"name";s:11:"actors_name";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:12:"column_width";s: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;}}s:7:"row_min";s:0:"";s:9:"row_limit";s:0:"";s:6:"layout";s:5:"table";s:12:"button_label";s:7:"Add Row";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;}'),
(102, 18, 'field_5340b8880c956', 'a:13:{s:3:"key";s:19:"field_5340b8880c956";s:5:"label";s:15:"Production Team";s:4:"name";s:15:"production_team";s:4:"type";s:8:"repeater";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:10:"sub_fields";a:2:{i:0;a:15:{s:3:"key";s:19:"field_5340b8970c957";s:5:"label";s:15:"Production Role";s:4:"name";s:15:"production_role";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:12:"column_width";s: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;}i:1;a:15:{s:3:"key";s:19:"field_5340b8a60c958";s:5:"label";s:4:"Name";s:4:"name";s:4:"name";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:12:"column_width";s: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;}}s:7:"row_min";s:0:"";s:9:"row_limit";s:0:"";s:6:"layout";s:5:"table";s:12:"button_label";s:7:"Add Row";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;}'),
(103, 18, 'field_5340b8cc0c959', 'a:10:{s:3:"key";s:19:"field_5340b8cc0c959";s:5:"label";s:11:"Cast Photos";s:4:"name";s:11:"cast_photos";s:4:"type";s:7:"gallery";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:12:"preview_size";s:9:"thumbnail";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:13;}'),
(105, 18, 'position', 'normal'),
(106, 18, 'layout', 'no_box'),
(107, 18, 'hide_on_screen', 'a:2:{i:0;s:11:"the_content";i:1;s:7:"excerpt";}'),
(108, 18, '_edit_lock', '1396831023:1'),
(109, 18, 'field_5340ba906237b', 'a:14:{s:3:"key";s:19:"field_5340ba906237b";s:5:"label";s:21:"Venue Address or Area";s:4:"name";s:13:"venue_address";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"1";s:13:"default_value";s:28:"Davis Square, Somerville, MA";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;}'),
(110, 18, 'field_5340babe6237c', 'a:12:{s:3:"key";s:19:"field_5340babe6237c";s:5:"label";s:3:"Map";s:4:"name";s:3:"map";s:4:"type";s:10:"google_map";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:10:"center_lat";s:0:"";s:10:"center_lng";s:0:"";s:4:"zoom";s:0:"";s:6:"height";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;}'),
(112, 19, '_wp_attached_file', '2014/04/BPT_buy_tickets_large.png'),
(113, 19, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:182;s:6:"height";i:92;s:4:"file";s:33:"2014/04/BPT_buy_tickets_large.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"BPT_buy_tickets_large-150x92.png";s:5:"width";i:150;s:6:"height";i:92;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(114, 19, '_wp_attachment_image_alt', 'Brown Paper Tickets logo'),
(115, 20, '_wp_attached_file', '2014/04/rosen_guild_2014_cast.jpg'),
(116, 20, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2100;s:6:"height";i:855;s:4:"file";s:33:"2014/04/rosen_guild_2014_cast.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"rosen_guild_2014_cast-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:33:"rosen_guild_2014_cast-300x122.jpg";s:5:"width";i:300;s:6:"height";i:122;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"rosen_guild_2014_cast-1024x416.jpg";s:5:"width";i:1024;s:6:"height";i:416;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:3.100000000000000088817841970012523233890533447265625;s:6:"credit";s:0:"";s:6:"camera";s:12:"COOLPIX L120";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1390858136;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"4.5";s:3:"iso";s:3:"180";s:13:"shutter_speed";s:17:"0.033333333333333";s:5:"title";s:0:"";}}'),
(117, 20, '_wp_attachment_image_alt', ''),
(118, 7, 'authors', 'by Tom Stoppard'),
(119, 7, '_authors', 'field_5340b4990c941'),
(120, 7, 'directors', 'directed by Elizabeth Hunter'),
(121, 7, '_directors', 'field_5340b4cc0c942'),
(122, 7, 'text_for_licensing_company', 'presented by special arrangement with Samuel French, Inc.'),
(123, 7, '_text_for_licensing_company', 'field_5340b4f70c943'),
(124, 7, 'description_of_show', 'What would you do if you suddenly found yourself living in the world of Hamlet? When Rosencrantz & Guildenstern find themselves rushing toward Elsinore with the rules of probability playing funny tricks, they don\'t know which way is up! Celebrate T@F\'s 10th Anniversary with Tom Stoppard\'s wise and witty masterwork.'),
(125, 7, '_description_of_show', 'field_5340b51f0c944'),
(126, 7, 'performance_schedule_0_day_of_week', 'Friday'),
(127, 7, '_performance_schedule_0_day_of_week', 'field_5340b5580c946'),
(128, 7, 'performance_schedule_0_date', 'April-4-2014'),
(129, 7, '_performance_schedule_0_date', 'field_5340b56f0c947'),
(130, 7, 'performance_schedule_0_time', '7 pm'),
(131, 7, '_performance_schedule_0_time', 'field_5340b5f50c948'),
(132, 7, 'performance_schedule', '7'),
(133, 7, '_performance_schedule', 'field_5340b5420c945'),
(134, 7, 'venue_name', '<a href="http://www.davissquaretheatre.com/" target="new">The Davis Square Theatre</a>'),
(135, 7, '_venue_name', 'field_5340b62a0c949'),
(136, 7, 'venue_address', 'Davis Square, Somerville, MA'),
(137, 7, '_venue_address', 'field_5340ba906237b'),
(138, 7, 'map', 'a:3:{s:7:"address";s:92:"Davis Square Theatre, Elm Street, Davis Square, Somerville, MA, United States, North America";s:3:"lat";s:9:"42.395523";s:3:"lng";s:18:"-71.12188500000002";}'),
(139, 7, '_map', 'field_5340babe6237c'),
(140, 7, 'ticket_information_0_ticket_service_logo', '19'),
(141, 7, '_ticket_information_0_ticket_service_logo', 'field_5340b6c10c94e'),
(142, 7, 'ticket_information_0_ticket_service_description', 'To purchase your tickets before the show, visit our online ticketing system at <a href="http://www.brownpapertickets.com/event/557209" target="_blank">Brown Paper Tickets</a>. Please note that this option has a $1.99 service fee per ticket, and that tickets may <b>not</b> be purchased online the <b>day of</b> a performance.'),
(143, 7, '_ticket_information_0_ticket_service_description', 'field_5340b7680c950'),
(144, 7, 'ticket_information', '1'),
(145, 7, '_ticket_information', 'field_5340b6840c94c'),
(146, 7, 'description_of_director', 'Elizabeth Hunter is the founding Artistic Director of Theatre@First. Ten years ago, she directed <em>Rosencrantz and Guildenstern Are Dead</em> for the first time, followed by <em>Murder in the Cathedral</em>, <em>Talley\'s Folly</em>, <em>The Merry Wives of Windsor</em>, <em>The Margaret Ghost</em>, <em>Much Ado About Nothing</em>, <em>Never After</em>, <em>Pride & Prejudice</em>, and <em>The Vagina Monologues</em>. She also founded<em>Bare Bones: Staged Readings</em> at T@F and directed <em>Clubfoot, or Tales from the Back of an Ambulance</em> as part of that ongoing series. As an actor, she has appeared with T@F for<em>Festival@First 2: Summer Splash: My Boyfriend\'s Wife</em> (Raina), <em>You Can\'t Take It With You</em> (Penny), <em>Equus</em> (Dysart), and <em>Bare Bones: Mrs. Hawking</em> (Mrs. Hawking). Elizabeth is excited to celebrate Theatre@First\'s 10th Anniversary by returning to the beginning and seeing how far we\'ve come.'),
(147, 7, '_description_of_director', 'field_5340b7a30c951'),
(148, 7, 'cast_list_0_characters_name', 'Rosencrantz'),
(149, 7, '_cast_list_0_characters_name', 'field_5340b84a0c953'),
(150, 7, 'cast_list_0_actors_name', 'Jason Merrill'),
(151, 7, '_cast_list_0_actors_name', 'field_5340b8670c954'),
(152, 7, 'cast_list', '16'),
(153, 7, '_cast_list', 'field_5340b8310c952'),
(154, 7, 'production_team_0_production_role', 'Director'),
(155, 7, '_production_team_0_production_role', 'field_5340b8970c957'),
(156, 7, 'production_team_0_name', 'Elizabeth Hunter'),
(157, 7, '_production_team_0_name', 'field_5340b8a60c958'),
(158, 7, 'production_team', '15'),
(159, 7, '_production_team', 'field_5340b8880c956'),
(160, 7, 'cast_photos', 'a:3:{i:0;s:2:"20";i:1;s:1:"8";i:2;s:2:"19";}'),
(161, 7, '_cast_photos', 'field_5340b8cc0c959'),
(164, 2, '_edit_lock', '1396753323:1'),
(171, 7, 'cast_list_1_characters_name', 'Guildenstern'),
(172, 7, '_cast_list_1_characters_name', 'field_5340b84a0c953'),
(173, 7, 'cast_list_1_actors_name', 'Mike Haddad'),
(174, 7, '_cast_list_1_actors_name', 'field_5340b8670c954'),
(175, 7, 'cast_list_2_characters_name', 'Lead Player'),
(176, 7, '_cast_list_2_characters_name', 'field_5340b84a0c953'),
(177, 7, 'cast_list_2_actors_name', 'Johnbarry Green'),
(178, 7, '_cast_list_2_actors_name', 'field_5340b8670c954'),
(179, 7, 'cast_list_3_characters_name', 'Hamlet'),
(180, 7, '_cast_list_3_characters_name', 'field_5340b84a0c953'),
(181, 7, 'cast_list_3_actors_name', 'Michael Tomasulo'),
(182, 7, '_cast_list_3_actors_name', 'field_5340b8670c954'),
(183, 7, 'cast_list_4_characters_name', 'Gertrude'),
(184, 7, '_cast_list_4_characters_name', 'field_5340b84a0c953'),
(185, 7, 'cast_list_4_actors_name', 'Lori-Anne Cohen'),
(186, 7, '_cast_list_4_actors_name', 'field_5340b8670c954'),
(187, 7, 'cast_list_5_characters_name', 'Claudius'),
(188, 7, '_cast_list_5_characters_name', 'field_5340b84a0c953'),
(189, 7, 'cast_list_5_actors_name', 'Geoffrey Pingree'),
(190, 7, '_cast_list_5_actors_name', 'field_5340b8670c954'),
(191, 7, 'cast_list_6_characters_name', 'Polonius'),
(192, 7, '_cast_list_6_characters_name', 'field_5340b84a0c953'),
(193, 7, 'cast_list_6_actors_name', 'Dave Policar'),
(194, 7, '_cast_list_6_actors_name', 'field_5340b8670c954'),
(195, 7, 'cast_list_7_characters_name', 'Ophelia'),
(196, 7, '_cast_list_7_characters_name', 'field_5340b84a0c953'),
(197, 7, 'cast_list_7_actors_name', 'Melody Martin'),
(198, 7, '_cast_list_7_actors_name', 'field_5340b8670c954'),
(199, 7, 'cast_list_8_characters_name', 'Attendant/Pirate'),
(200, 7, '_cast_list_8_characters_name', 'field_5340b84a0c953'),
(201, 7, 'cast_list_8_actors_name', 'Santiago Rivas'),
(202, 7, '_cast_list_8_actors_name', 'field_5340b8670c954'),
(203, 7, 'cast_list_9_characters_name', 'Attendant/Pirate'),
(204, 7, '_cast_list_9_characters_name', 'field_5340b84a0c953'),
(205, 7, 'cast_list_9_actors_name', 'Chris Soule'),
(206, 7, '_cast_list_9_actors_name', 'field_5340b8670c954'),
(207, 7, 'cast_list_10_characters_name', 'Ambassador'),
(208, 7, '_cast_list_10_characters_name', 'field_5340b84a0c953'),
(209, 7, 'cast_list_10_actors_name', 'Jack Dietz'),
(210, 7, '_cast_list_10_actors_name', 'field_5340b8670c954'),
(211, 7, 'cast_list_11_characters_name', 'Tragedians'),
(212, 7, '_cast_list_11_characters_name', 'field_5340b84a0c953'),
(213, 7, 'cast_list_11_actors_name', 'Mare Freed'),
(214, 7, '_cast_list_11_actors_name', 'field_5340b8670c954'),
(215, 7, 'cast_list_12_characters_name', ''),
(216, 7, '_cast_list_12_characters_name', 'field_5340b84a0c953'),
(217, 7, 'cast_list_12_actors_name', 'Jared Hite'),
(218, 7, '_cast_list_12_actors_name', 'field_5340b8670c954'),
(219, 7, 'cast_list_13_characters_name', ''),
(220, 7, '_cast_list_13_characters_name', 'field_5340b84a0c953'),
(221, 7, 'cast_list_13_actors_name', 'Eric Villhauer'),
(222, 7, '_cast_list_13_actors_name', 'field_5340b8670c954'),
(223, 7, 'cast_list_14_characters_name', ''),
(224, 7, '_cast_list_14_characters_name', 'field_5340b84a0c953'),
(225, 7, 'cast_list_14_actors_name', 'Chris Deter'),
(226, 7, '_cast_list_14_actors_name', 'field_5340b8670c954'),
(227, 7, 'cast_list_15_characters_name', ''),
(228, 7, '_cast_list_15_characters_name', 'field_5340b84a0c953'),
(229, 7, 'cast_list_15_actors_name', 'Micha Goolsby'),
(230, 7, '_cast_list_15_actors_name', 'field_5340b8670c954'),
(231, 7, 'production_team_1_production_role', 'Producer'),
(232, 7, '_production_team_1_production_role', 'field_5340b8970c957'),
(233, 7, 'production_team_1_name', 'Beckie Hunter'),
(234, 7, '_production_team_1_name', 'field_5340b8a60c958'),
(235, 7, 'production_team_2_production_role', 'Assistant Director'),
(236, 7, '_production_team_2_production_role', 'field_5340b8970c957'),
(237, 7, 'production_team_2_name', 'Brigid Battell'),
(238, 7, '_production_team_2_name', 'field_5340b8a60c958'),
(239, 7, 'production_team_3_production_role', 'Technical Director'),
(240, 7, '_production_team_3_production_role', 'field_5340b8970c957'),
(241, 7, 'production_team_3_name', 'Jo Guthrie'),
(242, 7, '_production_team_3_name', 'field_5340b8a60c958'),
(243, 7, 'production_team_4_production_role', 'Set Designer'),
(244, 7, '_production_team_4_production_role', 'field_5340b8970c957'),
(245, 7, 'production_team_4_name', 'Brie Frame'),
(246, 7, '_production_team_4_name', 'field_5340b8a60c958'),
(247, 7, 'production_team_5_production_role', 'Sound Designer'),
(248, 7, '_production_team_5_production_role', 'field_5340b8970c957'),
(249, 7, 'production_team_5_name', 'Neil Marsh'),
(250, 7, '_production_team_5_name', 'field_5340b8a60c958'),
(251, 7, 'production_team_6_production_role', 'Fight Choreographer'),
(252, 7, '_production_team_6_production_role', 'field_5340b8970c957'),
(253, 7, 'production_team_6_name', 'James Hester'),
(254, 7, '_production_team_6_name', 'field_5340b8a60c958'),
(255, 7, 'production_team_7_production_role', 'Stage Manager'),
(256, 7, '_production_team_7_production_role', 'field_5340b8970c957'),
(257, 7, 'production_team_7_name', 'Katie Aasland'),
(258, 7, '_production_team_7_name', 'field_5340b8a60c958'),
(259, 7, 'production_team_8_production_role', 'Rehearsal Assistant'),
(260, 7, '_production_team_8_production_role', 'field_5340b8970c957'),
(261, 7, 'production_team_8_name', 'Theresa Haas'),
(262, 7, '_production_team_8_name', 'field_5340b8a60c958'),
(263, 7, 'production_team_9_production_role', 'House Manager'),
(264, 7, '_production_team_9_production_role', 'field_5340b8970c957'),
(265, 7, 'production_team_9_name', 'Chris DeKalb'),
(266, 7, '_production_team_9_name', 'field_5340b8a60c958'),
(267, 7, 'production_team_10_production_role', 'Props Design'),
(268, 7, '_production_team_10_production_role', 'field_5340b8970c957'),
(269, 7, 'production_team_10_name', 'Shazza Gilbert'),
(270, 7, '_production_team_10_name', 'field_5340b8a60c958'),
(271, 7, 'production_team_11_production_role', 'Costume Design'),
(272, 7, '_production_team_11_production_role', 'field_5340b8970c957'),
(273, 7, 'production_team_11_name', 'Amanda Dausman'),
(274, 7, '_production_team_11_name', 'field_5340b8a60c958'),
(275, 7, 'production_team_12_production_role', 'Costume Design'),
(276, 7, '_production_team_12_production_role', 'field_5340b8970c957'),
(277, 7, 'production_team_12_name', 'Vickie Wu'),
(278, 7, '_production_team_12_name', 'field_5340b8a60c958'),
(279, 7, 'production_team_13_production_role', 'Make-Up/Hair Designer'),
(280, 7, '_production_team_13_production_role', 'field_5340b8970c957'),
(281, 7, 'production_team_13_name', 'Zeph Stewart'),
(282, 7, '_production_team_13_name', 'field_5340b8a60c958'),
(283, 7, 'production_team_14_production_role', 'Graphic Designer'),
(284, 7, '_production_team_14_production_role', 'field_5340b8970c957'),
(285, 7, 'production_team_14_name', 'Gilly Rosenthol'),
(286, 7, '_production_team_14_name', 'field_5340b8a60c958'),
(291, 23, '_wp_attached_file', '2014/04/header_text.png'),
(292, 23, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:404;s:6:"height";i:128;s:4:"file";s:23:"2014/04/header_text.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"header_text-150x128.png";s:5:"width";i:150;s:6:"height";i:128;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:22:"header_text-300x95.png";s:5:"width";i:300;s:6:"height";i:95;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(293, 24, '_wp_attached_file', '2014/04/01_twitter.png'),
(294, 24, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:64;s:6:"height";i:64;s:4:"file";s:22:"2014/04/01_twitter.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(295, 25, '_wp_attached_file', '2014/04/02_facebook.png'),
(296, 25, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:64;s:6:"height";i:64;s:4:"file";s:23:"2014/04/02_facebook.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(297, 26, '_wp_attached_file', '2014/04/03_youtube.png'),
(298, 26, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:64;s:6:"height";i:64;s:4:"file";s:22:"2014/04/03_youtube.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(299, 27, '_wp_attached_file', '2014/04/14_google+.png'),
(300, 27, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:64;s:6:"height";i:64;s:4:"file";s:22:"2014/04/14_google+.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(301, 28, '_wp_attached_file', '2014/04/header_logo.png'),
(302, 28, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:169;s:6:"height";i:193;s:4:"file";s:23:"2014/04/header_logo.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"header_logo-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(303, 29, '_wp_attached_file', '2014/04/phoenix-best2010-ribbon.png'),
(304, 29, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:91;s:6:"height";i:121;s:4:"file";s:35:"2014/04/phoenix-best2010-ribbon.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(305, 7, 'performance_schedule_1_day_of_week', 'Saturday'),
(306, 7, '_performance_schedule_1_day_of_week', 'field_5340b5580c946'),
(307, 7, 'performance_schedule_1_date', 'April-5-2014'),
(308, 7, '_performance_schedule_1_date', 'field_5340b56f0c947'),
(309, 7, 'performance_schedule_1_time', '4 pm (matinee)'),
(310, 7, '_performance_schedule_1_time', 'field_5340b5f50c948'),
(311, 7, 'performance_schedule_2_day_of_week', 'Sunday'),
(312, 7, '_performance_schedule_2_day_of_week', 'field_5340b5580c946'),
(313, 7, 'performance_schedule_2_date', 'April-6-2014'),
(314, 7, '_performance_schedule_2_date', 'field_5340b56f0c947'),
(315, 7, 'performance_schedule_2_time', '7 pm'),
(316, 7, '_performance_schedule_2_time', 'field_5340b5f50c948'),
(317, 7, 'performance_schedule_3_day_of_week', 'Wednesday'),
(318, 7, '_performance_schedule_3_day_of_week', 'field_5340b5580c946'),
(319, 7, 'performance_schedule_3_date', 'April-9-2014'),
(320, 7, '_performance_schedule_3_date', 'field_5340b56f0c947'),
(321, 7, 'performance_schedule_3_time', '7 pm'),
(322, 7, '_performance_schedule_3_time', 'field_5340b5f50c948'),
(323, 7, 'performance_schedule_4_day_of_week', 'Thursday'),
(324, 7, '_performance_schedule_4_day_of_week', 'field_5340b5580c946'),
(325, 7, 'performance_schedule_4_date', 'April-10-2014'),
(326, 7, '_performance_schedule_4_date', 'field_5340b56f0c947'),
(327, 7, 'performance_schedule_4_time', '7 pm'),
(328, 7, '_performance_schedule_4_time', 'field_5340b5f50c948'),
(329, 7, 'performance_schedule_5_day_of_week', 'Friday'),
(330, 7, '_performance_schedule_5_day_of_week', 'field_5340b5580c946'),
(331, 7, 'performance_schedule_5_date', 'April-11-2014'),
(332, 7, '_performance_schedule_5_date', 'field_5340b56f0c947'),
(333, 7, 'performance_schedule_5_time', '7 pm'),
(334, 7, '_performance_schedule_5_time', 'field_5340b5f50c948'),
(335, 7, 'performance_schedule_6_day_of_week', 'Saturday'),
(336, 7, '_performance_schedule_6_day_of_week', 'field_5340b5580c946'),
(337, 7, 'performance_schedule_6_date', 'April-12-2014'),
(338, 7, '_performance_schedule_6_date', 'field_5340b56f0c947'),
(339, 7, 'performance_schedule_6_time', '4 pm (matinee)'),
(340, 7, '_performance_schedule_6_time', 'field_5340b5f50c948'),
(343, 18, 'field_5341f254fe979', 'a:14:{s:3:"key";s:19:"field_5341f254fe979";s:5:"label";s:11:"Show Status";s:4:"name";s:11:"show_status";s:4:"type";s:4:"text";s:12:"instructions";s:61:"Indicate whether the show is the Current Show or a past show.";s:8:"required";s:1:"1";s:13:"default_value";s:12:"Current Show";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;}'),
(346, 7, 'show_status', 'Current Show'),
(347, 7, '_show_status', 'field_5341f254fe979'),
(348, 18, 'rule', 'a:5:{s:5:"param";s:9:"post_type";s:8:"operator";s:2:"==";s:5:"value";s:9:"show_post";s:8:"order_no";i:0;s:8:"group_no";i:0;}'),
(349, 1, '_edit_lock', '1397346409:1'),
(350, 1, '_wp_trash_meta_status', 'publish'),
(351, 1, '_wp_trash_meta_time', '1397346527'),
(352, 1, '_wp_trash_meta_comments_status', 'a:1:{i:1;s:1:"1";}'),
(353, 2, '_wp_trash_meta_status', 'publish'),
(354, 2, '_wp_trash_meta_time', '1397346538'),
(355, 32, '_edit_last', '1'),
(356, 32, '_edit_lock', '1397351028:1'),
(357, 34, '_menu_item_type', 'post_type'),
(358, 34, '_menu_item_menu_item_parent', '0'),
(359, 34, '_menu_item_object_id', '32'),
(360, 34, '_menu_item_object', 'page'),
(361, 34, '_menu_item_target', ''),
(362, 34, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(363, 34, '_menu_item_xfn', ''),
(364, 34, '_menu_item_url', ''),
(366, 35, '_menu_item_type', 'post_type'),
(367, 35, '_menu_item_menu_item_parent', '0'),
(368, 35, '_menu_item_object_id', '32'),
(369, 35, '_menu_item_object', 'page'),
(370, 35, '_menu_item_target', ''),
(371, 35, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(372, 35, '_menu_item_xfn', ''),
(373, 35, '_menu_item_url', ''),
(375, 36, '_menu_item_type', 'post_type'),
(376, 36, '_menu_item_menu_item_parent', '0'),
(377, 36, '_menu_item_object_id', '32'),
(378, 36, '_menu_item_object', 'page'),
(379, 36, '_menu_item_target', ''),
(380, 36, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(381, 36, '_menu_item_xfn', ''),
(382, 36, '_menu_item_url', ''),
(384, 37, '_menu_item_type', 'post_type'),
(385, 37, '_menu_item_menu_item_parent', '0'),
(386, 37, '_menu_item_object_id', '32'),
(387, 37, '_menu_item_object', 'page'),
(388, 37, '_menu_item_target', ''),
(389, 37, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(390, 37, '_menu_item_xfn', ''),
(391, 37, '_menu_item_url', ''),
(393, 38, '_menu_item_type', 'post_type'),
(394, 38, '_menu_item_menu_item_parent', '0'),
(395, 38, '_menu_item_object_id', '32'),
(396, 38, '_menu_item_object', 'page'),
(397, 38, '_menu_item_target', ''),
(398, 38, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(399, 38, '_menu_item_xfn', ''),
(400, 38, '_menu_item_url', ''),
(402, 39, '_menu_item_type', 'post_type'),
(403, 39, '_menu_item_menu_item_parent', '0'),
(404, 39, '_menu_item_object_id', '32'),
(405, 39, '_menu_item_object', 'page'),
(406, 39, '_menu_item_target', ''),
(407, 39, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(408, 39, '_menu_item_xfn', ''),
(409, 39, '_menu_item_url', ''),
(411, 40, '_menu_item_type', 'post_type'),
(412, 40, '_menu_item_menu_item_parent', '0'),
(413, 40, '_menu_item_object_id', '32'),
(414, 40, '_menu_item_object', 'page'),
(415, 40, '_menu_item_target', ''),
(416, 40, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(417, 40, '_menu_item_xfn', ''),
(418, 40, '_menu_item_url', ''),
(420, 32, '_wp_page_template', 'homepage.php');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
-- Dumping structure for table leahbate_taf.wp_posts
DROP TABLE IF EXISTS `wp_posts`;
CREATE TABLE IF NOT EXISTS `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8;
-- Dumping data for table leahbate_taf.wp_posts: ~32 rows (approximately)
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
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-04-05 23:43:31', '2014-04-05 23:43:31', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'trash', 'open', 'open', '', 'hello-world', '', '', '2014-04-12 23:48:47', '2014-04-12 23:48:47', '', 0, 'http://localhost/leah_finalproject_wp/?p=1', 0, 'post', '', 1),
(2, 1, '2014-04-05 23:43:31', '2014-04-05 23:43:31', '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/leah_finalproject_wp/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'trash', 'open', 'open', '', 'sample-page', '', '', '2014-04-12 23:48:58', '2014-04-12 23:48:58', '', 0, 'http://localhost/leah_finalproject_wp/?page_id=2', 0, 'page', '', 0),
(3, 1, '2014-04-05 23:43:54', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-05 23:43:54', '0000-00-00 00:00:00', '', 0, 'http://localhost/leah_finalproject_wp/?p=3', 0, 'post', '', 0),
(6, 1, '2014-04-06 00:56:00', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-06 00:56:00', '0000-00-00 00:00:00', '', 0, 'http://localhost/leah_finalproject_wp/?p=6', 0, 'post', '', 0),
(7, 1, '2014-04-06 01:07:05', '2014-04-06 01:07:05', '', 'Rosencrantz and Guildenstern Are Dead', '', 'publish', 'closed', 'closed', '', 'randg-are-dead', '', '', '2014-04-07 01:46:20', '2014-04-07 01:46:20', '', 0, 'http://localhost/leah_finalproject_wp/?post_type=show_post&p=7', 0, 'show_post', '', 0),
(8, 1, '2014-04-06 01:23:42', '2014-04-06 01:23:42', '', 'rosen_guild_logo', '', 'inherit', 'open', 'open', '', 'rosen_guild_logo', '', '', '2014-04-06 01:23:42', '2014-04-06 01:23:42', '', 7, 'http://localhost/leah_finalproject_wp/wp-content/uploads/2014/04/rosen_guild_logo.jpg', 0, 'attachment', 'image/jpeg', 0),
(12, 1, '2014-04-06 01:40:43', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-04-06 01:40:43', '0000-00-00 00:00:00', '', 0, 'http://localhost/leah_finalproject_wp/?p=12', 1, 'nav_menu_item', '', 0),
(17, 1, '2014-04-06 01:46:05', '2014-04-06 01:46:05', '', 'Rosencrantz and Guildenstern Are Dead', '', 'publish', 'open', 'open', '', 'rosencrantz-and-guildenstern-are-dead', '', '', '2014-04-12 23:55:26', '2014-04-12 23:55:26', '', 0, 'http://localhost/leah_finalproject_wp/?p=17', 3, 'nav_menu_item', '', 0),
(18, 1, '2014-04-06 02:17:37', '2014-04-06 02:17:37', '', 'Show Pages', '', 'publish', 'closed', 'closed', '', 'acf_show-pages', '', '', '2014-04-07 00:37:03', '2014-04-07 00:37:03', '', 0, 'http://localhost/leah_finalproject_wp/?post_type=acf&p=18', 0, 'acf', '', 0),
(19, 1, '2014-04-06 02:44:34', '2014-04-06 02:44:34', '', 'BPT_buy_tickets_large', '', 'inherit', 'open', 'open', '', 'bpt_buy_tickets_large', '', '', '2014-04-06 02:44:34', '2014-04-06 02:44:34', '', 7, 'http://localhost/leah_finalproject_wp/wp-content/uploads/2014/04/BPT_buy_tickets_large.png', 0, 'attachment', 'image/png', 0),
(20, 1, '2014-04-06 02:46:00', '2014-04-06 02:46:00', '', 'rosen_guild_2014_cast', '', 'inherit', 'open', 'open', '', 'rosen_guild_2014_cast', '', '', '2014-04-06 02:46:00', '2014-04-06 02:46:00', '', 7, 'http://localhost/leah_finalproject_wp/wp-content/uploads/2014/04/rosen_guild_2014_cast.jpg', 0, 'attachment', 'image/jpeg', 0),
(22, 1, '2014-04-06 03:02:34', '2014-04-06 03:02:34', '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<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...or something like this:\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>\nAs a new WordPress user, you should go to <a href="http://localhost/leah_finalproject_wp/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'inherit', 'open', 'open', '', '2-autosave-v1', '', '', '2014-04-06 03:02:34', '2014-04-06 03:02:34', '', 2, 'http://localhost/leah_finalproject_wp/2-autosave-v1/', 0, 'revision', '', 0),
(23, 1, '2014-04-06 22:23:54', '2014-04-06 22:23:54', '', 'header_text', '', 'inherit', 'open', 'open', '', 'header_text', '', '', '2014-04-06 22:23:54', '2014-04-06 22:23:54', '', 0, 'http://localhost/leah_finalproject_wp/wp-content/uploads/2014/04/header_text.png', 0, 'attachment', 'image/png', 0),
(24, 1, '2014-04-06 22:23:55', '2014-04-06 22:23:55', '', '01_twitter', '', 'inherit', 'open', 'open', '', '01_twitter', '', '', '2014-04-06 22:23:55', '2014-04-06 22:23:55', '', 0, 'http://localhost/leah_finalproject_wp/wp-content/uploads/2014/04/01_twitter.png', 0, 'attachment', 'image/png', 0),
(25, 1, '2014-04-06 22:23:55', '2014-04-06 22:23:55', '', '02_facebook', '', 'inherit', 'open', 'open', '', '02_facebook', '', '', '2014-04-06 22:23:55', '2014-04-06 22:23:55', '', 0, 'http://localhost/leah_finalproject_wp/wp-content/uploads/2014/04/02_facebook.png', 0, 'attachment', 'image/png', 0),
(26, 1, '2014-04-06 22:23:55', '2014-04-06 22:23:55', '', '03_youtube', '', 'inherit', 'open', 'open', '', '03_youtube', '', '', '2014-04-06 22:23:55', '2014-04-06 22:23:55', '', 0, 'http://localhost/leah_finalproject_wp/wp-content/uploads/2014/04/03_youtube.png', 0, 'attachment', 'image/png', 0),
(27, 1, '2014-04-06 22:23:56', '2014-04-06 22:23:56', '', '14_google+', '', 'inherit', 'open', 'open', '', '14_google', '', '', '2014-04-06 22:23:56', '2014-04-06 22:23:56', '', 0, 'http://localhost/leah_finalproject_wp/wp-content/uploads/2014/04/14_google+.png', 0, 'attachment', 'image/png', 0),
(28, 1, '2014-04-06 22:23:56', '2014-04-06 22:23:56', '', 'header_logo', '', 'inherit', 'open', 'open', '', 'header_logo', '', '', '2014-04-06 22:23:56', '2014-04-06 22:23:56', '', 0, 'http://localhost/leah_finalproject_wp/wp-content/uploads/2014/04/header_logo.png', 0, 'attachment', 'image/png', 0),
(29, 1, '2014-04-06 22:29:30', '2014-04-06 22:29:30', '', 'phoenix-best2010-ribbon', '', 'inherit', 'open', 'open', '', 'phoenix-best2010-ribbon', '', '', '2014-04-06 22:29:30', '2014-04-06 22:29:30', '', 0, 'http://localhost/leah_finalproject_wp/wp-content/uploads/2014/04/phoenix-best2010-ribbon.png', 0, 'attachment', 'image/png', 0),
(30, 1, '2014-04-12 23:48:47', '2014-04-12 23:48:47', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'inherit', 'open', 'open', '', '1-revision-v1', '', '', '2014-04-12 23:48:47', '2014-04-12 23:48:47', '', 1, 'http://localhost/leah_finalproject_wp/1-revision-v1/', 0, 'revision', '', 0),
(31, 1, '2014-04-12 23:48:58', '2014-04-12 23:48:58', '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/leah_finalproject_wp/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'inherit', 'open', 'open', '', '2-revision-v1', '', '', '2014-04-12 23:48:58', '2014-04-12 23:48:58', '', 2, 'http://localhost/leah_finalproject_wp/2-revision-v1/', 0, 'revision', '', 0),
(32, 1, '2014-04-12 23:49:17', '2014-04-12 23:49:17', '', 'Theatre@First', '', 'publish', 'open', 'open', '', 'theatrefirst', '', '', '2014-04-13 00:59:25', '2014-04-13 00:59:25', '', 0, 'http://localhost/leah_finalproject_wp/?page_id=32', 0, 'page', '', 0),
(33, 1, '2014-04-12 23:49:17', '2014-04-12 23:49:17', '', 'Theatre@First', '', 'inherit', 'open', 'open', '', '32-revision-v1', '', '', '2014-04-12 23:49:17', '2014-04-12 23:49:17', '', 32, 'http://localhost/leah_finalproject_wp/32-revision-v1/', 0, 'revision', '', 0),
(34, 1, '2014-04-12 23:52:55', '2014-04-12 23:52:55', '', 'Home', '', 'publish', 'open', 'open', '', 'home-5', '', '', '2014-04-12 23:55:26', '2014-04-12 23:55:26', '', 0, 'http://localhost/leah_finalproject_wp/?p=34', 1, 'nav_menu_item', '', 0),
(35, 1, '2014-04-12 23:52:55', '2014-04-12 23:52:55', '', 'Upcoming', '', 'publish', 'open', 'open', '', 'upcoming-2', '', '', '2014-04-12 23:55:26', '2014-04-12 23:55:26', '', 0, 'http://localhost/leah_finalproject_wp/?p=35', 2, 'nav_menu_item', '', 0),
(36, 1, '2014-04-12 23:52:55', '2014-04-12 23:52:55', '', 'Past Shows', '', 'publish', 'open', 'open', '', '36', '', '', '2014-04-12 23:55:26', '2014-04-12 23:55:26', '', 0, 'http://localhost/leah_finalproject_wp/?p=36', 4, 'nav_menu_item', '', 0),
(37, 1, '2014-04-12 23:54:25', '2014-04-12 23:54:25', '', 'About T@F', '', 'publish', 'open', 'open', '', 'about-tf', '', '', '2014-04-12 23:55:26', '2014-04-12 23:55:26', '', 0, 'http://localhost/leah_finalproject_wp/?p=37', 5, 'nav_menu_item', '', 0),
(38, 1, '2014-04-12 23:55:07', '2014-04-12 23:55:07', '', 'Get Involved', '', 'publish', 'open', 'open', '', 'get-involved', '', '', '2014-04-12 23:55:26', '2014-04-12 23:55:26', '', 0, 'http://localhost/leah_finalproject_wp/?p=38', 6, 'nav_menu_item', '', 0),
(39, 1, '2014-04-12 23:55:08', '2014-04-12 23:55:08', '', 'Support T@F', '', 'publish', 'open', 'open', '', 'support-tf', '', '', '2014-04-12 23:55:27', '2014-04-12 23:55:27', '', 0, 'http://localhost/leah_finalproject_wp/?p=39', 7, 'nav_menu_item', '', 0),
(40, 1, '2014-04-12 23:55:08', '2014-04-12 23:55:08', '', 'Press', '', 'publish', 'open', 'open', '', 'press', '', '', '2014-04-12 23:55:27', '2014-04-12 23:55:27', '', 0, 'http://localhost/leah_finalproject_wp/?p=40', 8, 'nav_menu_item', '', 0),
(41, 1, '2014-04-13 00:50:38', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-13 00:50:38', '0000-00-00 00:00:00', '', 0, 'http://localhost/leah_finalproject_wp/?p=41', 0, 'post', '', 0),
(42, 1, '2014-04-13 00:50:57', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-13 00:50:57', '0000-00-00 00:00:00', '', 0, 'http://localhost/leah_finalproject_wp/?p=42', 0, 'post', '', 0),
(43, 1, '2014-04-13 01:38:27', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-13 01:38:27', '0000-00-00 00:00:00', '', 0, 'http://localhost/leah_finalproject_wp/?p=43', 0, 'post', '', 0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
-- Dumping structure for table leahbate_taf.wp_terms
DROP TABLE IF EXISTS `wp_terms`;
CREATE TABLE IF NOT EXISTS `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
UNIQUE KEY `slug` (`slug`),
KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- Dumping data for table leahbate_taf.wp_terms: ~2 rows (approximately)
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Main Nav', 'main-nav', 0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
-- Dumping structure for table leahbate_taf.wp_term_relationships
DROP TABLE IF EXISTS `wp_term_relationships`;
CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Dumping data for table leahbate_taf.wp_term_relationships: ~9 rows (approximately)
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(17, 2, 0),
(34, 2, 0),
(35, 2, 0),
(36, 2, 0),
(37, 2, 0),
(38, 2, 0),
(39, 2, 0),
(40, 2, 0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
-- Dumping structure for table leahbate_taf.wp_term_taxonomy
DROP TABLE IF EXISTS `wp_term_taxonomy`;
CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- Dumping data for table leahbate_taf.wp_term_taxonomy: ~2 rows (approximately)
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 0),
(2, 2, 'nav_menu', '', 0, 8);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
-- Dumping structure for table leahbate_taf.wp_usermeta
DROP TABLE IF EXISTS `wp_usermeta`;
CREATE TABLE IF NOT EXISTS `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;
-- Dumping data for table leahbate_taf.wp_usermeta: ~18 rows (approximately)
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'first_name', ''),
(2, 1, 'last_name', ''),
(3, 1, 'nickname', 'lbateman'),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(11, 1, 'wp_user_level', '10'),
(12, 1, 'dismissed_wp_pointers', 'wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks'),
(13, 1, 'show_welcome_panel', '1'),
(14, 1, 'wp_dashboard_quick_press_last_post_id', '3'),
(15, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'),
(16, 1, 'metaboxhidden_nav-menus', 'a:4:{i:0;s:8:"add-post";i:1;s:13:"add-show_post";i:2;s:12:"add-post_tag";i:3;s:15:"add-post_format";}'),
(17, 1, 'wp_user-settings', 'libraryContent=browse&hidetb=1'),
(18, 1, 'wp_user-settings-time', '1396835070'),
(19, 1, 'nav_menu_recently_edited', '2'),
(20, 1, 'closedpostboxes_show_post', 'a:0:{}'),
(21, 1, 'metaboxhidden_show_post', 'a:2:{i:0;s:11:"postexcerpt";i:1;s:7:"slugdiv";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
-- Dumping structure for table leahbate_taf.wp_users
DROP TABLE IF EXISTS `wp_users`;
CREATE TABLE IF NOT EXISTS `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(64) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- Dumping data for table leahbate_taf.wp_users: ~0 rows (approximately)
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'lbateman', '$P$B/MmHkKOvxAdTTUcoLHqxmwqGd7mge/', 'lbateman', 'leahbateman@gmail.com', '', '2014-04-05 23:43:31', '', 0, 'lbateman');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;