-
Notifications
You must be signed in to change notification settings - Fork 1
/
opengov_wordpress_2015-07-10.sql
700 lines (621 loc) · 523 KB
/
opengov_wordpress_2015-07-10.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
# ************************************************************
# Sequel Pro SQL dump
# Version 4096
#
# http://www.sequelpro.com/
# http://code.google.com/p/sequel-pro/
#
# Host: localhost (MySQL 5.5.42)
# Database: opengov_wordpress
# Generation Time: 2015-07-10 20:49:15 +0000
# ************************************************************
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!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' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
# Dump of table wp_commentmeta
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_commentmeta`;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
# Dump of table wp_comments
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_comments`;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `wp_comments` WRITE;
/*!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','','https://wordpress.org/','','2015-06-29 13:23:51','2015-06-29 13:23:51','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_links
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_links`;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
# Dump of table wp_options
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_options`;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`)
VALUES
(1,'siteurl','http://opengov.dev:8888','yes'),
(2,'home','http://opengov.dev:8888','yes'),
(3,'blogname','Open Gov Foundation','yes'),
(4,'blogdescription','Just another WordPress site','yes'),
(5,'users_can_register','0','yes'),
(6,'admin_email','jmpa@meticulous.com','yes'),
(7,'start_of_week','1','yes'),
(8,'use_balanceTags','0','yes'),
(9,'use_smilies','1','yes'),
(10,'require_name_email','1','yes'),
(11,'comments_notify','1','yes'),
(12,'posts_per_rss','10','yes'),
(13,'rss_use_excerpt','0','yes'),
(14,'mailserver_url','mail.example.com','yes'),
(15,'mailserver_login','login@example.com','yes'),
(16,'mailserver_pass','password','yes'),
(17,'mailserver_port','110','yes'),
(18,'default_category','1','yes'),
(19,'default_comment_status','open','yes'),
(20,'default_ping_status','open','yes'),
(21,'default_pingback_flag','1','yes'),
(22,'posts_per_page','10','yes'),
(23,'date_format','F j, Y','yes'),
(24,'time_format','g:i a','yes'),
(25,'links_updated_date_format','F j, Y g:i a','yes'),
(26,'comment_moderation','0','yes'),
(27,'moderation_notify','1','yes'),
(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),
(29,'gzipcompression','0','yes'),
(30,'hack_file','0','yes'),
(31,'blog_charset','UTF-8','yes'),
(32,'moderation_keys','','no'),
(33,'active_plugins','a:4:{i:0;s:63:\"add-tags-and-category-to-page/add-tags-and-category-to-page.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:2;s:43:\"custom-post-type-ui/custom-post-type-ui.php\";i:3;s:24:\"wordpress-seo/wp-seo.php\";}','yes'),
(34,'category_base','','yes'),
(35,'ping_sites','http://rpc.pingomatic.com/','yes'),
(36,'advanced_edit','0','yes'),
(37,'comment_max_links','2','yes'),
(38,'gmt_offset','0','yes'),
(39,'default_email_category','1','yes'),
(40,'recently_edited','','no'),
(41,'template','opengovfoundation','yes'),
(42,'stylesheet','opengovfoundation','yes'),
(43,'comment_whitelist','1','yes'),
(44,'blacklist_keys','','no'),
(45,'comment_registration','0','yes'),
(46,'html_type','text/html','yes'),
(47,'use_trackback','0','yes'),
(48,'default_role','subscriber','yes'),
(49,'db_version','31535','yes'),
(50,'uploads_use_yearmonth_folders','1','yes'),
(51,'upload_path','','yes'),
(52,'blog_public','1','yes'),
(53,'default_link_category','2','yes'),
(54,'show_on_front','page','yes'),
(55,'tag_base','','yes'),
(56,'show_avatars','1','yes'),
(57,'avatar_rating','G','yes'),
(58,'upload_url_path','','yes'),
(59,'thumbnail_size_w','150','yes'),
(60,'thumbnail_size_h','150','yes'),
(61,'thumbnail_crop','1','yes'),
(62,'medium_size_w','300','yes'),
(63,'medium_size_h','300','yes'),
(64,'avatar_default','mystery','yes'),
(65,'large_size_w','1024','yes'),
(66,'large_size_h','1024','yes'),
(67,'image_default_link_type','file','yes'),
(68,'image_default_size','','yes'),
(69,'image_default_align','','yes'),
(70,'close_comments_for_old_posts','0','yes'),
(71,'close_comments_days_old','14','yes'),
(72,'thread_comments','1','yes'),
(73,'thread_comments_depth','5','yes'),
(74,'page_comments','0','yes'),
(75,'comments_per_page','50','yes'),
(76,'default_comments_page','newest','yes'),
(77,'comment_order','asc','yes'),
(78,'sticky_posts','a:0:{}','yes'),
(79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),
(80,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(82,'uninstall_plugins','a:0:{}','no'),
(83,'timezone_string','','yes'),
(84,'page_for_posts','0','yes'),
(85,'page_on_front','56','yes'),
(86,'default_post_format','0','yes'),
(87,'link_manager_enabled','0','yes'),
(88,'initial_db_version','31535','yes'),
(89,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:63:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),
(90,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(91,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),
(92,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),
(93,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),
(94,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(95,'sidebars_widgets','a: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:13:\"array_version\";i:3;s:9:\"sidebar-2\";a:0:{}}','yes'),
(97,'cron','a:5:{i:1436577832;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:1436582239;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1436600520;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:1436621041;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;}}}s:7:\"version\";i:2;}','yes'),
(101,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.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-4.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.2.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.2.2\";s:7:\"version\";s:5:\"4.2.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1436557632;s:15:\"version_checked\";s:5:\"4.2.2\";s:12:\"translations\";a:0:{}}','yes'),
(106,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1436557638;s:7:\"checked\";a:4:{s:17:\"opengovfoundation\";s:3:\"1.5\";s:13:\"twentyfifteen\";s:3:\"1.2\";s:14:\"twentyfourteen\";s:3:\"1.4\";s:14:\"twentythirteen\";s:3:\"1.5\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),
(108,'_transient_random_seed','f73d41915b4e2feb1a65a0ecc7a9a545','yes'),
(109,'_site_transient_timeout_browser_dd6692949e0d9294737c50b22227942a','1436189041','yes'),
(110,'_site_transient_browser_dd6692949e0d9294737c50b22227942a','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:5:\"8.0.6\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),
(112,'can_compress_scripts','1','yes'),
(129,'recently_activated','a:0:{}','yes'),
(134,'wpseo','a:20:{s:14:\"blocking_files\";a:0:{}s:26:\"ignore_blog_public_warning\";b:0;s:31:\"ignore_meta_description_warning\";b:0;s:20:\"ignore_page_comments\";b:0;s:16:\"ignore_permalink\";b:0;s:15:\"ms_defaults_set\";b:0;s:23:\"theme_description_found\";s:0:\"\";s:21:\"theme_has_description\";b:0;s:7:\"version\";s:5:\"2.2.1\";s:11:\"alexaverify\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:12:\"website_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";}','yes'),
(135,'wpseo_permalinks','a:13:{s:15:\"cleanpermalinks\";b:0;s:24:\"cleanpermalink-extravars\";s:0:\"\";s:29:\"cleanpermalink-googlecampaign\";b:0;s:31:\"cleanpermalink-googlesitesearch\";b:0;s:15:\"cleanreplytocom\";b:0;s:10:\"cleanslugs\";b:1;s:14:\"hide-feedlinks\";b:0;s:12:\"hide-rsdlink\";b:0;s:14:\"hide-shortlink\";b:0;s:16:\"hide-wlwmanifest\";b:0;s:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}','yes'),
(136,'wpseo_titles','a:54:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:5:\"noodp\";b:0;s:6:\"noydir\";b:0;s:15:\"usemetakeywords\";b:0;s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:18:\"metakey-home-wpseo\";s:0:\"\";s:20:\"metakey-author-wpseo\";s:0:\"\";s:22:\"noindex-subpages-wpseo\";b:0;s:20:\"noindex-author-wpseo\";b:0;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"metakey-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:16:\"hideeditbox-post\";b:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"metakey-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:16:\"hideeditbox-page\";b:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"metakey-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:22:\"hideeditbox-attachment\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:20:\"metakey-tax-category\";s:0:\"\";s:24:\"hideeditbox-tax-category\";b:0;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:20:\"metakey-tax-post_tag\";s:0:\"\";s:24:\"hideeditbox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:23:\"metakey-tax-post_format\";s:0:\"\";s:27:\"hideeditbox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;}','yes'),
(137,'wpseo_social','a:21:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"d80c352ab61ec2774806ed4fe0084132\";s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:9:\"opengraph\";b:1;s:10:\"googleplus\";b:0;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),
(138,'wpseo_rss','a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}','yes'),
(139,'wpseo_internallinks','a:10:{s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:23:\"breadcrumbs-blog-remove\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"»\";s:23:\"post_types-post-maintax\";i:0;}','yes'),
(140,'wpseo_xml','a:15:{s:22:\"disable_author_sitemap\";b:1;s:22:\"disable_author_noposts\";b:1;s:16:\"enablexmlsitemap\";b:1;s:16:\"entries-per-page\";i:1000;s:38:\"user_role-administrator-not_in_sitemap\";b:0;s:31:\"user_role-editor-not_in_sitemap\";b:0;s:31:\"user_role-author-not_in_sitemap\";b:0;s:36:\"user_role-contributor-not_in_sitemap\";b:0;s:35:\"user_role-subscriber-not_in_sitemap\";b:0;s:30:\"post_types-post-not_in_sitemap\";b:0;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:1;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:0;s:37:\"taxonomies-post_format-not_in_sitemap\";b:0;}','yes'),
(168,'_site_transient_timeout_browser_7ba0df6769b6e55d54ff2157cdc038d4','1436408749','yes'),
(169,'_site_transient_browser_7ba0df6769b6e55d54ff2157cdc038d4','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"43.0.2357.130\";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,'_site_transient_timeout_wporg_theme_feature_list','1435816394','yes'),
(218,'_site_transient_wporg_theme_feature_list','a:4:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:6:\"Layout\";a:9:{i:0;s:12:\"fixed-layout\";i:1;s:12:\"fluid-layout\";i:2;s:17:\"responsive-layout\";i:3;s:10:\"one-column\";i:4;s:11:\"two-columns\";i:5;s:13:\"three-columns\";i:6;s:12:\"four-columns\";i:7;s:12:\"left-sidebar\";i:8;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:8:\"blavatar\";i:2;s:10:\"buddypress\";i:3;s:17:\"custom-background\";i:4;s:13:\"custom-colors\";i:5;s:13:\"custom-header\";i:6;s:11:\"custom-menu\";i:7;s:12:\"editor-style\";i:8;s:21:\"featured-image-header\";i:9;s:15:\"featured-images\";i:10;s:15:\"flexible-header\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}','yes'),
(238,'_site_transient_timeout_browser_f9c3059ef2bacfd862d40f2f36470319','1436972991','yes'),
(239,'_site_transient_browser_f9c3059ef2bacfd862d40f2f36470319','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"43.0.2357.132\";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'),
(267,'acf_version','4.4.2','yes'),
(281,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(282,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(283,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(285,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(298,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1436416250','yes'),
(299,'_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:\"5223\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3269\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3204\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"2734\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2503\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2001\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"1906\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1836\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1787\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1769\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1738\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1728\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1621\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1419\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1357\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1299\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1207\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1165\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1150\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1021\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"975\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:3:\"942\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"932\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"896\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"865\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"853\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"806\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"791\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"767\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"743\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:3:\"738\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"736\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"695\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"687\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"682\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"669\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"649\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"645\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"640\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"639\";}}','yes'),
(300,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1436557635;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:63:\"add-tags-and-category-to-page/add-tags-and-category-to-page.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"30211\";s:4:\"slug\";s:29:\"add-tags-and-category-to-page\";s:6:\"plugin\";s:63:\"add-tags-and-category-to-page/add-tags-and-category-to-page.php\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/add-tags-and-category-to-page/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/add-tags-and-category-to-page.1.1.zip\";}s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"21367\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:5:\"4.4.2\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.zip\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.1.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.3.zip\";}s:43:\"custom-post-type-ui/custom-post-type-ui.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"13183\";s:4:\"slug\";s:19:\"custom-post-type-ui\";s:6:\"plugin\";s:43:\"custom-post-type-ui/custom-post-type-ui.php\";s:11:\"new_version\";s:5:\"1.1.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/custom-post-type-ui/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/custom-post-type-ui.1.1.1.zip\";s:14:\"upgrade_notice\";s:79:\"Re-add post type and taxonomy select buttons and only display for non-js users.\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"5899\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:5:\"2.2.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.2.2.1.zip\";}}}','yes'),
(301,'_site_transient_timeout_available_translations','1436416318','yes'),
(302,'_site_transient_available_translations','a:58:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 06:57:37\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-27 06:36:25\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-08 17:43:43\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-08 11:08:34\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-06-03 00:26:43\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-05 15:36:06\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-25 13:39:01\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-04 19:47:01\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.0/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-05 20:09:08\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-15 10:49:37\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-06-12 09:59:32\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-05 17:37:43\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.0/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 15:20:27\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.5/haz.zip\";s:3:\"iso\";a:1:{i:2;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 19:32:58\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-07 17:26:35\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 06:43:50\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-07 10:32:20\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 06:59:29\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-06-08 07:10:14\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-06-10 17:07:58\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.2.2/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-09 10:15:05\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.5/ps.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ps\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-06-23 22:36:27\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-08 14:53:48\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-31 11:58:44\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 09:29:23\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 16:25:46\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-29 08:27:12\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-06 10:10:09\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 07:01:28\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 16:45:38\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-05 10:51:50\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-29 06:37:03\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}','yes'),
(303,'tcp_add_tag','','yes'),
(304,'tcp_add_category','page','yes'),
(319,'category_children','a:2:{i:5;a:3:{i:0;i:6;i:1;i:7;i:2;i:8;}i:6;a:2:{i:0;i:9;i:1;i:10;}}','yes'),
(333,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1436600721','no'),
(334,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2015 22:55:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=4.3-beta2-33152\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/07/wordpress-4-3-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:\"Wed, 08 Jul 2015 22:04:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=3769\";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:337:\"WordPress 4.3 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2876:\"<p>WordPress 4.3 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Fixed an issue in beta 1 where an alert appeared when saving or publishing a new post/page for the first time.</li>\n<li><strong><strong>Customizer</strong></strong> improvements including enhanced accessibility, smoother menu creation and location assignment, and the ability to handle nameless menus. Please help us test menus in the Customizer to fix any remaining edge cases!</li>\n<li>More robust<strong> list tables</strong> with full content support on small screens and a fallback for the primary column for custom list tables. We’d love to know how these list tables, such as All Posts and Comments, work for you now on small screen devices.</li>\n<li>The <strong>Site Icon</strong> feature has been improved so that cropping is skipped if the image is the exact size (512px square) and the media modal now suggests a minimum icon size. Please let us know how the flow feels and if you encounter any glitches!</li>\n<li>The <strong>toolbar</strong> now has a direct link to the customizer, along with quick access to themes, widgets, and menus in the dashboard.</li>\n<li>We enabled <strong>utf8mb4 for MySQL</strong> extension users, which was previously unintentionally limited to MySQLi users. Please let us know if you run into any issues.</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=33138&stop_rev=33046\">almost 100 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.3&group=component&order=priority\">everything we’ve fixed</a>.</p>\n<p><em>Edges polished up</em><br />\n<em>Features meliorated</em><br />\n<em>Beta Two: go test!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamps 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/2015/07/wordcamps-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordcamps-update/#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, 08 Jul 2015 16:13:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3758\";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:311:\"Last week saw the halfway point for 2015, yay! This seems like a good time to update you on WordCamp happenings in the first half of this year. There have been 39 WordCamps in 2015 so far, with events organized in 17 different countries and on 5 continents. More than 14,000 people have registered for […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Andrea Middleton\";s: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:9419:\"<p>Last week saw the halfway point for 2015, yay! This seems like a good time to update you on WordCamp happenings in the first half of this year.</p>\n<p>There have been <a href=\"https://central.wordcamp.org/schedule/past-wordcamps/\">39 WordCamps in 2015</a> so far, with events organized in 17 different countries and on 5 continents. More than 14,000 people have registered for WordCamp tickets so far this year, isn’t that amazing?</p>\n<p><a href=\"https://europe.wordcamp.org/2015/\">WordCamp Europe</a> was held in Seville, Spain just a few weeks ago, with close to 1,000 registered participants and over 500 live stream participants. You can watch <a href=\"http://wordpress.tv/2015/07/04/matt-mullenweg-keynote-qanda-wordcamp-europe-2015/\">Matt Mullenweg’s keynote Q&A</a> session from WordCamp Europe right now on WordPress.tv.</p>\n<p>WordPress.tv has published 537 videos so far in 2015 from WordCamps around the world. Some of the more popular 2015 WordCamp talks on WordPress.tv include <a href=\"http://wordpress.tv/2015/03/13/tammie-lister-theme-dont-be-my-everything/\">Tammie Lister: Theme, Don’t Be My Everything </a>from WordCamp Maui, <a href=\"http://wordpress.tv/2015/04/17/jenny-munn-seo-for-2015-whats-in-whats-out-and-how-to-be-in-it-to-win-it-for-good/\">Jenny Munn: SEO for 2015 – What’s In, What’s Out and How to Be In It to Win It (For Good)</a> from WordCamp Atlanta, <a href=\"http://wordpress.tv/2015/02/27/fabrice-ducarme-les-constructeurs-de-page-pour-wordpress/\">Fabrice Ducarme: Les Constructeurs de Page pour WordPress</a> from WordCamp Paris, <a href=\"http://wordpress.tv/2015/06/02/ben-furfie-how-to-value-price-websites/\">Ben Furfie: How to Value Price Websites</a> from WordCamp London, and <a href=\"http://wordpress.tv/2015/06/09/morten-rand-hendriksen-building-themes-from-scratch-using-underscores-_s/\">Morten Rand-Hendriksen: Building Themes From Scratch Using Underscores (_S)</a> from WordCamp Seattle. Check them out!</p>\n<h3>Lots of great WordCamps are still to come</h3>\n<p><a href=\"http://ma.tt/2015/06/wordcamp-us-survey/\">WordCamp US</a> is currently in pre-planning, in the process of deciding on a host city. The following cities have proposed themselves as a great place to host the first WordCamp US: Chattanooga, Chicago, Detroit, Orlando, Philadelphia, and Phoenix. It’s possible the first WordCamp US will be held in 2016 so we can organize the best first WordCamp US imaginable.</p>\n<p>At this time, there are 28 <a href=\"https://central.wordcamp.org/schedule/\">WordCamps</a>, in 9 different countries, that have announced their dates for the rest of 2015. Twelve of these have tickets on sale:</p>\n<ul>\n<li><a href=\"https://columbus.wordcamp.org/2015/\">WordCamp Columbus</a>, Columbus, Ohio: July 17-18</li>\n<li><a href=\"https://scranton.wordcamp.org/2015/\">WordCamp Scranton</a>, Scranton, Pennsylvania: July 18</li>\n<li><a href=\"https://boston.wordcamp.org/2015/\">WordCamp Boston</a>, Boston, Massachussetts: July 18-19</li>\n<li><a href=\"https://milwaukee.wordcamp.org/2015/\">WordCamp Milwaukee</a>, Milwaukee, Wisconsin: July 24-26</li>\n<li><a href=\"https://asheville.wordcamp.org/2015/\">WordCamp Asheville</a>, Asheville, North Carolina: July 24-26</li>\n<li><a href=\"https://kansai.wordcamp.org/2015/\">WordCamp Kansai</a>, Kansai, Japan: July 25-26</li>\n<li><a href=\"https://fayetteville.wordcamp.org/2015/\">WordCamp Fayetteville</a>, Fayetteville, Arkansas: July 31-August 2</li>\n<li><a href=\"https://brighton.buddycamp.org/2015/\">BuddyCamp Brighton</a>,
Brighton, UK: August 8</li>\n<li><a href=\"https://vancouver.wordcamp.org/2015/\">WordCamp Vancouver, BC,</a> Vancouver, BC, Canada: August 15-16</li>\n<li><a href=\"https://russia.wordcamp.org/2015/\">WordCamp Russia</a>, Moscow, Russia: August 15</li>\n<li><a href=\"https://norrkoping.wordcamp.org/2015/\">WordCamp Norrköping</a>, Norrköping, Sweden: August 28-29</li>\n<li><a href=\"https://croatia.wordcamp.org/2015/\">WordCamp Croatia</a>, Rijeka, Croatia: September 5-6</li>\n<li><a href=\"https://krakow.wordcamp.org/2015/\">WordCamp Krakow,</a>
Krakow, Poland: September 12-13</li>\n<li><a href=\"https://nyc.wordcamp.org/2015/\">WordCamp NYC</a>, New York City, New York: October 30-November 1</li>\n</ul>\n<p>The other 16 events don’t have tickets on sale yet, but they’ve set their dates! Subscribe to the sites to find out when registration opens:</p>\n<ul>\n<li><a href=\"https://pune.wordcamp.org/2015/\">WordCamp Pune</a>, Pune, India: September 6</li>\n<li><a href=\"https://capetown.wordcamp.org/2015/\">WordCamp Cape Town</a>, Cape Town, South Africa: September 10-11</li>\n<li><a href=\"https://baltimore.wordcamp.org/2015/\">WordCamp Baltimore</a>, Baltimore, Maryland: September 12</li>\n<li><a href=\"https://slc.wordcamp.org/2015/\">WordCamp Salt Lake City</a>, Salt Lake City, Utah: September 12</li>\n<li><a href=\"https://lithuania.wordcamp.org/2015/\">WordCamp Lithuania</a>, Vilnius, Lithuania: September 19</li>\n<li><a href=\"https://vegas.wordcamp.org/2015\">WordCamp Vegas</a>, Las Vegas, Nevada: September 19-20</li>\n<li><a href=\"https://switzerland.wordcamp.org/2015/\">WordCamp Switzerland</a>, Zurich, Switzerland: September 19-20</li>\n<li><a href=\"https://tampa.wordcamp.org/2015/\">WordCamp Tampa</a>, Tampa, Florida: September 25-27</li>\n<li><a href=\"https://rhodeisland.wordcamp.org/2015/\">WordCamp Rhode Island</a>,
Providence, Rhode Island: September 25-26</li>\n<li><a href=\"https://la.wordcamp.org/2015/\">WordCamp Los Angeles</a>, Los Angeles, California: September 26-27</li>\n<li><a href=\"https://denmark.wordcamp.org/2015/\">WordCamp Denmark,</a>
Copenhagen, Denmark: October 3-4</li>\n<li><a href=\"https://toronto.wordcamp.org/2015\">WordCamp Toronto</a>, Toronto, Ontario, Canada: October 3-4</li>\n<li><a href=\"https://hamptonroads.wordcamp.org/2015/\">WordCamp Hampton Roads, </a>
Virginia Beach, VA, USA: October 17</li>\n<li><a href=\"https://annarbor.wordcamp.org/2015\">WordCamp Ann Arbor</a>, Ann Arbor, Michigan: October 24</li>\n<li><a href=\"https://portland.wordcamp.org/2015/\">WordCamp Portland</a>,
Portland, OR: October 24-25</li>\n</ul>\n<p>On top of all those exciting community events, there are 26 WordCamps in pre-planning as they look for the right event space. If you have a great idea for a free or cheap WordCamp venue in any of the below locations, get in touch with the organizers through the WordCamp sites:</p>\n<ul>\n<li><a href=\"https://dfw.wordcamp.org/2015/\">WordCamp DFW</a>:
Dallas/Fort Worth, Texas</li>\n<li><a href=\"https://riodejaneiro.wordcamp.org/2015/\">WordCamp Rio</a>: Rio de Janeiro, Brazil</li>\n<li><a href=\"https://saratoga.wordcamp.org/2015/\">WordCamp Saratoga</a>:
Saratoga Springs, New York</li>\n<li><a href=\"https://sofia.wordcamp.org/2015\">WordCamp Sofia</a>:
Sofia, Bulgaria</li>\n<li><a href=\"https://austin.wordcamp.org/2015/\">WordCamp Austin</a>:
Austin, TX</li>\n<li><a href=\"https://ottawa.wordcamp.org/2015/\">WordCamp Ottawa</a>:
Ottawa, Canada</li>\n<li><a href=\"https://charleston.wordcamp.org/2015/\">WordCamp Charleston</a>:
Charleston, South Carolina</li>\n<li><a href=\"https://chicago.wordcamp.org/2015/\">WordCamp Chicago</a>:
Chicago, Illinois</li>\n<li><a href=\"https://albuquerque.wordcamp.org/2015/\">WordCamp Albuquerque</a>:
Albuquerque, New Mexico</li>\n<li><a href=\"https://prague.wordcamp.org/2015/\">WordCamp Prague</a>:
Prague, Czech Republic</li>\n<li><a href=\"https://seoul.wordcamp.org/2014/\">WordCamp Seoul: </a>Seoul, South Korea</li>\n<li><a href=\"https://louisville.wordcamp.org/2014/\">WordCamp Louisville</a>: Louisville, Kentucky</li>\n<li><a href=\"https://omaha.wordcamp.org/2015/\">WordCamp Omaha</a>:
Omaha, Nebraska</li>\n<li><a href=\"https://grandrapids.wordcamp.org/2015/\">WordCamp Grand Rapids</a>:
Grand Rapids, Michigan</li>\n<li><a href=\"https://easttroy.wordcamp.org/2015/\">WordCamp East Troy</a>:
East Troy, Wisconsin</li>\n<li><a href=\"https://palmademallorca.wordcamp.org/2015\">WordCamp Mallorca</a>: Palma de Mallorca, Spain</li>\n<li><a href=\"https://edinburgh.wordcamp.org/2015/\">WordCamp Edinburgh</a>:
Edinburgh, United Kingdom</li>\n<li><a href=\"https://orlando.wordcamp.org/2015/\">WordCamp Orlando</a>:
Orlando, Florida</li>\n<li><a href=\"https://mexico.wordcamp.org/2015/\">WordCamp Mexico City</a>:
Mexico City, Mexico</li>\n<li><a href=\"https://netherlands.wordcamp.org/2015/\">WordCamp Netherlands</a>:
Utrecht, Netherlands</li>\n<li><a href=\"https://phoenix.wordcamp.org/2016/\">WordCamp Phoenix</a>:
Phoenix, Arizona</li>\n<li><a href=\"https://saopaulo.wordcamp.org/2015/\">WordCamp São Paulo</a>:
São Paulo, Brazil</li>\n<li><a href=\"https://manchester.wordcamp.org/2015/\">WordCamp Manchester</a>:
Manchester, United Kingdom</li>\n<li><a href=\"https://tokyo.wordcamp.org/2015/\">WordCamp Tokyo</a>:
Tokyo, Japan</li>\n<li><a href=\"https://lima.wordcamp.org/2015/\">WordCamp Lima</a>:
Lima, Peru</li>\n<li><a href=\"https://seattle.wordcamp.org/2015-beginner/\">WordCamp Seattle: Beginner</a>: Seattle, WA</li>\n</ul>\n<p>Don’t see your city on the list, but yearning for a local WordCamp? WordCamps are organized by local volunteers from the WordPress community, and we have a whole team of people to support new organizers setting up a first-time WordCamp. If you want to bring WordCamp to town, check out how you can <a href=\"https://central.wordcamp.org/become-an-organizer/\">become a WordCamp organizer</a>!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/news/2015/07/wordcamps-update/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/07/wordpress-4-3-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, 02 Jul 2015 01:30:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=3738\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.3 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4352:\"<p>WordPress 4.3 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta1.zip\">download the beta here</a> (zip).</p>\n<p>4.3 is due out next month, but to get there, we need your help testing what we’ve been working on:</p>\n<ul>\n<li><strong>Menus</strong> can now be managed with the <strong>Customizer</strong>, which allows you to live preview changes you’re making without changing your site for visitors until you’re ready. We’re especially interested to know if this helps streamline the process of setting up your site (<a href=\"https://core.trac.wordpress.org/ticket/32576\">#32576</a>).</li>\n<li>Take control of another piece of your site with the <strong>Site Icon</strong> feature. You can now manage your site’s favicon and app icon from the admin area (<a href=\"https://core.trac.wordpress.org/ticket/16434\">#16434</a>).</li>\n<li>We put a lot of work into <strong>Better Passwords</strong> throughout WordPress. Now, WordPress will limit the life time of password resets, no longer send passwords via email, and generate and suggest secure passwords for you. Try it out and let us know what you think! (<a href=\"https://core.trac.wordpress.org/ticket/32589\">#32589</a>)</li>\n<li>We’ve also added <strong>Editor Improvements</strong>. Certain text patterns are automatically transformed as you type, including <code>*</code> and <code>-</code> transforming into unordered lists, <code>1.</code> and <code>1)</code> for ordered lists, <code>></code> for blockquotes and two to six number signs (<code>#</code>) for headings (<a href=\"https://core.trac.wordpress.org/ticket/31441\">#31441</a>).</li>\n<li>We’ve improved the <strong>list view</strong> across the admin dashboard. Now, when you view your posts and pages <strong>on small screen devices</strong>, columns are not truncated and can be toggled into view (<a href=\"https://core.trac.wordpress.org/ticket/32395\">#32395</a>).</li>\n</ul>\n<p><strong>Developers</strong>: There have been a few of changes for you to test as well, including:</p>\n<ul>\n<li><strong>Taxonomy Roadmap:</strong> Terms shared across multiple taxonomies will <a href=\"https://make.wordpress.org/core/2015/06/09/eliminating-shared-taxonomy-terms-in-wordpress-4-3/\">now be split</a> into separate terms on update to 4.3. Please let us know if you hit any snags (<a href=\"https://core.trac.wordpress.org/ticket/30261\">#30261</a>).</li>\n<li>Added <code>singular.php</code> to the template hierarchy as a fallback for <code>single.php</code> and <code>page.php</code>. (<a href=\"https://core.trac.wordpress.org/ticket/22314\">#22314</a>).</li>\n<li>The old Distraction Free Writing code was removed (<a href=\"https://core.trac.wordpress.org/ticket/30949\">#30949</a>).</li>\n<li>List tables now can (and often should) have a primary column defined. We’re working on a fallback for existing custom list tables but right now they likely have some breakage in the aforementioned responsive view (<a href=\"https://core.trac.wordpress.org/ticket/25408\">#25408</a>).</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.3, <a href=\"https://make.wordpress.org/core/tag/4-3/\">check out all 4.3-tagged posts</a> on the main development blog.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.3\">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Site icons for all</em><br />\n<em>Live preview menu changes</em><br />\n<em>Four three beta now</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-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:3;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.2.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/05/wordpress-4-2-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2015/05/wordpress-4-2-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, 07 May 2015 02:24: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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3718\";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 4.2.2 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Version 4.2.2 addresses two security issues: The Genericons icon font package, which is used in a number of popular themes and plugins, contained an HTML file vulnerable to a cross-site […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Samuel Sidler\";s: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:3194:\"<p>WordPress 4.2.2 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>Version 4.2.2 addresses two security issues:</p>\n<ul>\n<li>The Genericons icon font package, which is used in a number of popular themes and plugins, contained an HTML file vulnerable to a cross-site scripting attack. All affected themes and plugins hosted on <a href=\"https://wordpress.org/\">WordPress.org</a> (including the Twenty Fifteen default theme) have been updated today by the WordPress security team to address this issue by removing this nonessential file. To help protect other Genericons usage, WordPress 4.2.2 proactively scans the wp-content directory for this HTML file and removes it. Reported by Robert Abela of <a href=\"http://netsparker.com\">Netsparker</a>.</li>\n<li>WordPress versions 4.2 and earlier are affected by a <a href=\"https://wordpress.org/news/2015/04/wordpress-4-2-1/\">critical cross-site scripting vulnerability</a>, which could enable anonymous users to compromise a site. WordPress 4.2.2 includes a comprehensive fix for this issue. Reported separately by Rice Adu and Tong Shi.</li>\n</ul>\n<p>The release also includes hardening for a potential cross-site scripting vulnerability when using the visual editor. This issue was reported by Mahadev Subedi.</p>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.2 also contains fixes for 13 bugs from 4.2. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.2\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=32418&stop_rev=32324\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.2.2.</p>\n<p>Thanks to everyone who contributed to 4.2.2:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Mike Adams</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/taka2\">taka2</a>, and <a href=\"https://profiles.wordpress.org/willstedt\">willstedt</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/05/wordpress-4-2-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:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.2.1 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/04/wordpress-4-2-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2015/04/wordpress-4-2-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:\"Mon, 27 Apr 2015 18:34: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:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3706\";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:366:\"WordPress 4.2.1 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. A few hours ago, the WordPress team was made aware of a cross-site scripting vulnerability, which could enable commenters to compromise a site. The vulnerability was discovered by Jouko Pynnönen. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s: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:1010:\"<p>WordPress 4.2.1 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>A few hours ago, the WordPress team was made aware of a cross-site scripting vulnerability, which could enable commenters to compromise a site. The vulnerability was discovered by <a href=\"http://klikki.fi/\">Jouko Pynnönen</a>.</p>\n<p>WordPress 4.2.1 has begun to roll out as an automatic background update, for sites that <a href=\"https://wordpress.org/plugins/background-update-tester/\">support</a> those.</p>\n<p>For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=32311&stop_rev=32300\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/04/wordpress-4-2-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: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:26:\"WordPress 4.2 “Powell”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wordpress.org/news/2015/04/powell/\";s: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:\"https://wordpress.org/news/2015/04/powell/#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 Apr 2015 18:35:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3642\";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:\"Version 4.2 of WordPress, named “Powell” in honor of jazz pianist Bud Powell, is available for download or update in your WordPress dashboard. New features in 4.2 help you communicate and share, globally. An easier way to share content Clip it, edit it, publish it. Get familiar with the new and improved Press This. From […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:29435:\"<p>Version 4.2 of WordPress, named “Powell” in honor of jazz pianist <a href=\"https://en.wikipedia.org/wiki/Bud_Powell\">Bud Powell</a>, is available for <a href=\"https://wordpress.org/download/\">download</a> or update in your WordPress dashboard. New features in 4.2 help you communicate and share, globally.</p>\n<div id=\"v-e9kH4FzP-1\" class=\"video-player\"><embed id=\"v-e9kH4FzP-1-video\" src=\"https://v0.wordpress.com/player.swf?v=1.04&guid=e9kH4FzP&isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" title=\"Introducing WordPress 4.2 "Powell"\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<hr />\n<h2 style=\"text-align: center\">An easier way to share content</h2>\n<p><img class=\"alignnone size-full wp-image-3677\" src=\"https://wordpress.org/news/files/2015/04/4.2-press-this-2.jpg\" alt=\"Press This\" width=\"1000\" height=\"832\" />Clip it, edit it, publish it. Get familiar with the new and improved Press This. From the Tools menu, add Press This to your browser bookmark bar or your mobile device home screen. Once installed you can share your content with lightning speed. Sharing your favorite videos, images, and content has never been this fast or this easy.</p>\n<hr />\n<h2 style=\"text-align: center\">Extended character support</h2>\n<p><img class=\"alignnone size-full wp-image-3676\" src=\"https://wordpress.org/news/files/2015/04/4.2-characters.png\" alt=\"Character support for emoji, special characters\" width=\"1000\" height=\"832\" />Writing in WordPress, whatever your language, just got better. WordPress 4.2 supports a host of new characters out-of-the-box, including native Chinese, Japanese, and Korean characters, musical and mathematical symbols, and hieroglyphs.</p>\n<p>Don’t use any of those characters? You can still have fun — emoji are now available in WordPress! Get creative and decorate your content with <img src=\"https://s.w.org/images/core/emoji/72x72/1f499.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />, <img src=\"https://s.w.org/images/core/emoji/72x72/1f438.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />, <img src=\"https://s.w.org/images/core/emoji/72x72/1f412.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />, <img src=\"https://s.w.org/images/core/emoji/72x72/1f355.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />, and all the many other <a href=\"https://codex.wordpress.org/Emoji\">emoji</a>.</p>\n<hr />\n<div><img class=\"alignright size-medium wp-image-3656\" src=\"https://wordpress.org/news/files/2015/04/4.2-theme-switcher-300x230.png\" alt=\"Customizer theme switcher\" width=\"288\" height=\"221\" /></p>\n<h3>Switch themes in the Customizer</h3>\n<p>Browse and preview your installed themes from the Customizer. Make sure the theme looks great with your content, before it debuts on your site.</p>\n</div>\n<div style=\"clear: both\"></div>\n<div><img class=\"alignright size-medium wp-image-3653\" src=\"https://wordpress.org/news/files/2015/04/4.2-embeds-300x230.png\" alt=\"Tumbr.com oEmbed example\" width=\"288\" height=\"221\" /></p>\n<h3>Even more embeds</h3>\n<p>Paste links from Tumblr.com and Kickstarter and watch them magically appear right in the editor. With every release, your publishing and editing experience get closer together.</p>\n</div>\n<div style=\"clear: both\"></div>\n<div>\n<p><img class=\"alignright size-medium wp-image-3654\" src=\"https://wordpress.org/news/files/2015/04/4.2-plugins-300x230.png\" alt=\"Inline plugin updates\" width=\"288\" height=\"221\" /></p>\n<h3>Streamlined plugin updates</h3>\n<p>Goodbye boring loading screen, hello smooth and simple plugin updates. Click <em>Update Now</em> and watch the magic happen.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<h2 style=\"text-align: center\">Under the Hood</h2>\n<h5>utf8mb4 support</h5>\n<p>Database character encoding has changed from utf8 to utf8mb4, which adds support for a whole range of new 4-byte characters.</p>\n<h5>JavaScript accessibility</h5>\n<p>You can now send audible notifications to screen readers in JavaScript with <code>wp.a11y.speak()</code>. Pass it a string, and an update will be sent to a dedicated ARIA live notifications area.</p>\n<h5>Shared term splitting</h5>\n<p>Terms shared across multiple taxonomies will be split when one of them is updated. Find out more in the <a href=\"https://developer.wordpress.org/plugins/taxonomy/working-with-split-terms-in-wp-4-2/\">Plugin Developer Handbook</a>.</p>\n<h5>Complex query ordering</h5>\n<p><code>WP_Query</code>, <code>WP_Comment_Query</code>, and <code>WP_User_Query</code> now support complex ordering with named meta query clauses.</p>\n<hr />\n<h2 style=\"text-align: center\">The Team</h2>\n<p><a class=\"alignleft\" href=\"https://profiles.wordpress.org/drewapicture\"><img src=\"https://www.gravatar.com/avatar/95c934fa2c3362794bf62ff8c59ada08?d=mm&s=150&r=G\" alt=\"Drew Jaynes\" width=\"90\" height=\"90\" /></a>This release was led by <a href=\"http://werdswords.com\">Drew Jaynes</a>, with the help of these fine individuals. There are 283 contributors with props in this release, a new high. Pull up some Bud Powell on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/mercime\">@mercime</a>, <a href=\"https://profiles.wordpress.org/a5hleyrich\">A5hleyRich</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abhishekfdd\">abhishekfdd</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/alexkingorg\">Alex King</a>, <a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>, <a href=\"https://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/awbauer\">Andrew Bauer</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/norcross\">Andrew Norcross</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ankitgadertcampcom\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/aramzs\">Aram Zucker-Scharff</a>, <a href=\"https://profiles.wordpress.org/arminbraun\">ArminBraun</a>, <a href=\"https://profiles.wordpress.org/ashfame\">Ashfame</a>, <a href=\"https://profiles.wordpress.org/filosofo\">Austin Matzko</a>, <a href=\"https://profiles.wordpress.org/avryl\">avryl</a>, <a href=\"https://profiles.wordpress.org/barrykooij\">Barry Kooij</a>, <a href=\"https://profiles.wordpress.org/beaulebens\">Beau Lebens</a>, <a href=\"https://profiles.wordpress.org/bendoh\">Ben Doherty (Oomph, Inc)</a>, <a href=\"https://profiles.wordpress.org/bananastalktome\">Billy Schneider</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bswatson\">Brian Watson</a>, <a href=\"https://profiles.wordpress.org/calevans\">CalEvans</a>, <a href=\"https://profiles.wordpress.org/carolinegeven\">carolinegeven</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/cdog\">Catalin Dogaru</a>, <a href=\"https://profiles.wordpress.org/chipbennett\">Chip Bennett</a>, <a href=\"https://profiles.wordpress.org/chipx86\">chipx86</a>, <a href=\"https://profiles.wordpress.org/chrico\">ChriCo</a>, <a href=\"https://profiles.wordpress.org/cbaldelomar\">Chris Baldelomar</a>, <a href=\"https://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"https://profiles.wordpress.org/cfoellmann\">Christian Foellmann</a>, <a href=\"https://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/clifgriffin\">Clifton Griffin</a>, <a href=\"https://profiles.wordpress.org/codix\">Code Master</a>, <a href=\"https://profiles.wordpress.org/corphi\">Corphi</a>, <a href=\"https://profiles.wordpress.org/couturefreak\">Courtney Ivey</a>, <a href=\"https://profiles.wordpress.org/craig-ralston\">Craig Ralston</a>, <a href=\"https://profiles.wordpress.org/cweiske\">cweiske</a>, <a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/timersys\">Damian</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/dkotter\">Darin Kotter</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/dmchale\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/davideugenepratt\">davideugenepratt</a>, <a href=\"https://profiles.wordpress.org/davidhamiltron\">davidhamiltron</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/dsmart\">Derek Smart</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipesh.kakadiya</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/doublesharp\">doublesharp</a>, <a href=\"https://profiles.wordpress.org/dzerycz\">DzeryCZ</a>, <a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>, <a href=\"https://profiles.wordpress.org/emazovetskiy\">e.mazovetskiy</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/cais\">Edward Caissie</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elliottcarlson\">elliottcarlson</a>, <a href=\"https://profiles.wordpress.org/enej\">enej</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/evansolomon\">Evan Solomon</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/fhwebcs\">fhwebcs</a>, <a href=\"https://profiles.wordpress.org/floriansimeth\">Florian Simeth</a>, <a href=\"https://profiles.wordpress.org/bueltge\">Frank Bueltge</a>, <a href=\"https://profiles.wordpress.org/frankpw\">Frank P. Walentynowicz</a>, <a href=\"https://profiles.wordpress.org/f-j-kaiser\">Franz Josef Kaiser</a>, <a href=\"https://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geertdd\">Geert De Deckere</a>, <a href=\"https://profiles.wordpress.org/genkisan\">genkisan</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/webord\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"https://profiles.wordpress.org/harishchaudhari\">Harish Chaudhari</a>, <a href=\"https://profiles.wordpress.org/hauvong\">hauvong</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/herbmillerjr\">herbmillerjr</a>, <a href=\"https://profiles.wordpress.org/hew\">Hew</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/horike\">horike</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jacklenox\">Jack Lenox</a>, <a href=\"https://profiles.wordpress.org/jamescollins\">James Collins</a>, <a href=\"https://profiles.wordpress.org/janhenckens\">janhenckens</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">jipmoors</a>, <a href=\"https://profiles.wordpress.org/jartes\">Joan Artes</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/yo-l1982\">Joel Bernerman</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johneckman\">John Eckman</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/jlevandowski\">John Levandowski</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joostdekeijzer\">joost de keijzer</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jcastaneda\">Jose Castaneda</a>, <a href=\"https://profiles.wordpress.org/joshlevinson\">Josh Levinson</a>, <a href=\"https://profiles.wordpress.org/jphase\">jphase</a>, <a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/justincwatt\">Justin Watt</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kevdotbadger\">Kevin Ruscoe</a>, <a href=\"https://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/mindrun\">Leonard</a>, <a href=\"https://profiles.wordpress.org/leopeo\">Leonardo Giacone</a>, <a href=\"https://profiles.wordpress.org/lgladdy\">Liam Gladdy</a>, <a href=\"https://profiles.wordpress.org/maimairel\">maimairel</a>, <a href=\"https://profiles.wordpress.org/mako09\">Mako</a>, <a href=\"https://profiles.wordpress.org/funkatronic\">Manny Fleurmond</a>, <a href=\"https://profiles.wordpress.org/marcelomazza\">marcelomazza</a>, <a href=\"https://profiles.wordpress.org/marcochiesi\">Marco Chiesi</a>, <a href=\"https://profiles.wordpress.org/mkaz\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/nofearinc\">Mario Peshev</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius (Clorith)</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/senff\">Mark Senff</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/mgibbs189\">Matt Gibbs</a>, <a href=\"https://profiles.wordpress.org/sivel\">Matt Martz</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mzak\">Matt Zak</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattheweppelsheimer\">Matthew Eppelsheimer</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/mehulkaklotar\">mehulkaklotar</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/meloniq\">meloniq</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/tw2113\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/thaicloud\">Mike Jordan</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"https://profiles.wordpress.org/mikengarrett\">MikeNGarrett</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"https://profiles.wordpress.org/mmn-o\">mmn-o</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/momdad\">MomDad</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/morpheu5\">Morpheu5</a>, <a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nathan_dawson\">nathan_dawson</a>, <a href=\"https://profiles.wordpress.org/neil_pie\">Neil Pie</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nicnicnicdevos\">nicnicnicdevos</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/ninnypants\">ninnypants</a>, <a href=\"https://profiles.wordpress.org/nitkr\">nitkr</a>, <a href=\"https://profiles.wordpress.org/nunomorgadinho\">Nuno Morgadinho</a>, <a href=\"https://profiles.wordpress.org/originalexe\">OriginalEXE</a>, <a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>, <a href=\"https://profiles.wordpress.org/pathawks\">Pat Hawks</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulschreiber\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/petemall\">Pete Mall</a>, <a href=\"https://profiles.wordpress.org/gungeekatx\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/podpirate\">podpirate</a>, <a href=\"https://profiles.wordpress.org/postpostmodern\">postpostmodern</a>, <a href=\"https://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>, <a href=\"https://profiles.wordpress.org/prasoon2211\">prasoon2211</a>, <a href=\"https://profiles.wordpress.org/cyman\">Primoz Cigler</a>, <a href=\"https://profiles.wordpress.org/r-a-y\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulbhangale\">rahulbhangale</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>, <a href=\"https://profiles.wordpress.org/ravindra-pal-singh\">Ravindra Pal Singh</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/ritteshpatel\">Ritesh Patel</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/rmarks\">Ryan Marks</a>, <a href=\"https://profiles.wordpress.org/sagarjadhav\">Sagar Jadhav</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samo9789\">samo9789</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sgrant\">Scott Grant</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scottgonzalez\">scott.gonzalez</a>, <a href=\"https://profiles.wordpress.org/greglone\">ScreenfeedFr</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sergejmueller\">Sergej Muller</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sevenspark\">sevenspark</a>, <a href=\"https://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/sippis\">sippis</a>, <a href=\"https://profiles.wordpress.org/slobodanmanic\">Slobodan Manic</a>, <a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevehickeydesign\">stevehickeydesign</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/taka2\">taka2</a>, <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/hissy\">Takuro Hishikawa</a>, <a href=\"https://profiles.wordpress.org/themiked\">theMikeD</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/ipm-frommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tillkruess\">Till</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tiqbiz\">tiqbiz</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tmeister\">tmeister</a>, <a href=\"https://profiles.wordpress.org/tschutter\">Tobias Schutter</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">trishasalas</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/uamv\">UaMV</a>, <a href=\"https://profiles.wordpress.org/desaiuditd\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/sorich87\">Ulrich Sossou</a>, <a href=\"https://profiles.wordpress.org/veritaserum\">Veritaserum</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/volodymyrc\">VolodymyrC</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/welcher\">welcher</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/willstedt\">willstedt</a>, and <a href=\"https://profiles.wordpress.org/wordpressorru\">WordPressor</a>.\n<p style=\"margin-top: 22px\">Special thanks go to <a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a> for producing the release video and <a href=\"http://camikaos.com/\">Cami Kaos</a> for the voice-over.</p>\n<p>Finally, thanks to all of the contributors who provided subtitles for the release video, which at last count had been translated into 30 languages!</p>\n<p><a href=\"https://profiles.wordpress.org/adrianpop\">Adrian Pop</a>, <a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>, <a href=\"https://profiles.wordpress.org/bagerathan\">Bagerathan Sivarajah</a>, <a href=\"https://profiles.wordpress.org/besnik\">Besnik</a>, <a href=\"https://profiles.wordpress.org/bjornjohansen\">Bjørn Johansen</a>, Chantal Coolsma, <a href=\"https://profiles.wordpress.org/cubells\">cubells</a>, Daisuke Takahashi, <a href=\"https://profiles.wordpress.org/dianakc\">Diana K. Cury</a>, <a href=\"https://profiles.wordpress.org/djzone\">DjZoNe</a>, <a href=\"https://profiles.wordpress.org/dyrer\">dyrer</a>, <a href=\"https://profiles.wordpress.org/semblance\">Elzette Roelofse</a>, <a href=\"https://profiles.wordpress.org/wordpress-tr\">Emre Erkan</a>, <a href=\"https://profiles.wordpress.org/fxbenard\">fxbenard</a>, <a href=\"https://profiles.wordpress.org/tacoverdo\">TacoVerdo</a>, <a href=\"https://profiles.wordpress.org/gabriel-reguly\">Gabriel Reguly</a>, <a href=\"https://profiles.wordpress.org/miss_jwo\">Jenny Wong</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/hgmb\">Håvard Grimelid</a>, <a href=\"https://profiles.wordpress.org/intoxstudio\">Joachim Jensen</a>, <a href=\"https://profiles.wordpress.org/jimmyxu\">Jimmy Xu</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/pokeraitis\">Justina</a>, <a href=\"https://profiles.wordpress.org/kenan3008/\">Kenan Dervisevic</a>, <a href=\"https://profiles.wordpress.org/kosvrouvas\">Kostas Vrouvas</a>, <a href=\"https://profiles.wordpress.org/eclare\">Krzysztof Trynkiewicz</a>, <a href=\"https://profiles.wordpress.org/goblindegook\">Luís Rodrigues</a>, <a href=\"https://profiles.wordpress.org/luisrull\">Luis Rull</a>, <a href=\"https://profiles.wordpress.org/culturemark\">Mark Thomas Gazel </a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/matthee\">matthee</a>, <a href=\"https://profiles.wordpress.org/damst\">Mattias Tengblad</a>, Matúš Záhradník, Mayuko Moriyama, <a href=\"https://profiles.wordpress.org/michalvittek\">Michal Vittek</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mrshemek\">MrShemek</a>, <a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/peterhoob\">Peter Holme Obrestad</a>, <a href=\"https://profiles.wordpress.org/petya\">Petya Raykovska</a>, Przemysław Mirota, <a href=\"https://profiles.wordpress.org/qraczek\">qraczek</a>, <a href=\"https://profiles.wordpress.org/bi0xid\">Rafa Poveda</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rasheed\">Rasheed Bydousi</a>, <a href=\"https://profiles.wordpress.org/gwgan\">Rhoslyn Prys</a>, <a href=\"https://profiles.wordpress.org/robee\">Robert Axelsen</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/siobhyb\">Siobhan Bamber</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/tohave\">ک To Have داشتن</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/egalego\">Victor J. Quesada</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly</a>, <a href=\"https://profiles.wordpress.org/xavivars\">Xavi Ivars</a>, <a href=\"https://profiles.wordpress.org/xibe\">Xavier Borderie</a></p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.3!</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:\"https://wordpress.org/news/2015/04/powell/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:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.1.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/04/wordpress-4-1-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2015/04/wordpress-4-1-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, 21 Apr 2015 13:44:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3628\";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:383:\"WordPress 4.1.2 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.1.1 and earlier are affected by a critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. This was reported by Cedric Van Bockhaven and fixed by […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s: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:3913:\"<p>WordPress 4.1.2 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.1.1 and earlier are affected by a critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. This was reported by <a href=\"https://cedricvb.be\">Cedric Van Bockhaven</a> and fixed by <a href=\"http://pento.net/\">Gary Pendergast</a>, <a href=\"http://blogwaffe.com/\">Mike Adams</a>, and <a href=\"http://nacin.com/\">Andrew Nacin</a> of the WordPress security team.</p>\n<p>We also fixed three other security issues:</p>\n<ul>\n<li>In WordPress 4.1 and higher, files with invalid or unsafe names could be uploaded. Discovered by <a href=\"http://HSASec.de\">Michael Kapfer and Sebastian Kraemer of HSASec</a>.</li>\n<li>In WordPress 3.9 and higher, a very limited cross-site scripting vulnerability could be used as part of a social engineering attack. Discovered by <a href=\"http://zoczus.blogspot.com/\">Jakub Zoczek</a>.</li>\n<li>Some plugins were vulnerable to an SQL injection vulnerability. Discovered by Ben Bidner of the WordPress security team.</li>\n</ul>\n<p>We also made four hardening changes, discovered by <a href=\"http://codesymphony.co/\">J.D. Grimes</a>, Divyesh Prajapati, <a href=\"http://www.allancollins.net/\">Allan Collins</a>, <a href=\"https://sucuri.net/\">Marc-Alexandre Montpas</a> and <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>.</p>\n<p>We appreciated the <a href=\"https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/\">responsible disclosure</a> of these issues directly to our security team. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.1.2\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.1?rev=32234&stop_rev=32144\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.1.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.1.2.</p>\n<p>Thanks to everyone who contributed to 4.1.2: <a href=\"https://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a>, <a href=\"https://profiles.wordpress.org/boonbgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/DrewAPicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, and <a href=\"https://profiles.wordpress.org/mdawaffe\">Mike Adams</a>.</p>\n<p>A number of plugins also released security fixes yesterday. Keep everything updated to stay secure. If you’re a plugin author, please read <a href=\"https://make.wordpress.org/plugins/2015/04/20/fixing-add_query_arg-and-remove_query_arg-usage/\">this post</a> to confirm that your plugin is not affected by the same issue. Thank you to all of the plugin authors who worked closely with our security team to ensure a coordinated response.</p>\n<p><em>Already testing WordPress 4.2? The third release candidate is now available (<a href=\"https://wordpress.org/wordpress-4.2-RC3.zip\">zip</a>) and it contains these fixes. For more on 4.2, see <a href=\"https://wordpress.org/news/2015/04/wordpress-4-2-release-candidate/\">the RC 1 announcement post</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/04/wordpress-4-1-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.2 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2015/04/wordpress-4-2-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2015/04/wordpress-4-2-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Apr 2015 19:07:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3609\";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:334:\"The release candidate for WordPress 4.2 is now available. We’ve made more than 140 changes since releasing Beta 4 a week and a half ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.2 on Wednesday, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Drew Jaynes\";s: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:2328:\"<p>The release candidate for WordPress 4.2 is now available.</p>\n<p>We’ve made more than <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=32136&stop_rev=31996&limit=100\">140 changes</a> since releasing Beta 4 a week and a half ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.2 on <strong>Wednesday, April 22</strong>, but we need your help to get there.</p>\n<p>If you haven’t tested 4.2 yet, now is the time! (Please though, not on your live site unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.2 RC1, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.2-RC1.zip\">download the release candidate here</a> (zip). </p>\n<p>For more information about what’s new in version 4.2, check out the <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2015/04/wordpress-4-2-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.2 and update your plugin’s <em>Tested up to</em> version in the readme to 4.2 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href=\"https://make.wordpress.org/core/\">follow along the core development blog</a>, where we’ll continue to post <a href=\"https://make.wordpress.org/core/tag/4-2-dev-notes/\">notes for developers</a> for 4.2.</p>\n<p><em>Im-Press-ive saving</em><br />\n<em>Achievement unlocked: RC</em><br />\n<em>Release here we come</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2015/04/wordpress-4-2-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:8;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Improvements to 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/04/improvements-to-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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wordpress.org/news/2015/04/improvements-to-wordpress-org/#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, 04 Apr 2015 20:19: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:1:{i:0;a:5:{s:4:\"data\";s:4:\"Meta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=3494\";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:335:\"If you visit WordPress.org regularly you might have noticed some changes around the place. If you don’t, now’s the time to check them out! We’ve been working hard to improve the site to make it more useful to everyone, both developers and users, and we hope you like what we’ve done. New Theme and Plugin Directories […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Samuel Sidler\";s: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:5551:\"<p>If you visit WordPress.org regularly you might have noticed some changes around the place. If you don’t, now’s the time to check them out! We’ve been working hard to improve the site to make it more useful to everyone, both developers and users, and we hope you like what we’ve done.</p>\n<h2>New Theme and Plugin Directories</h2>\n<p>Since WordPress 3.8, you’ve been enjoying improved theme management in your WordPress admin, and in WordPress 4.0 plugin management was refined. We’ve brought these experiences from your admin and re-created them right here on WordPress.org.</p>\n<h3>Theme Directory</h3>\n<p>The <a href=\"https://wordpress.org/themes/\">Theme Directory</a> has a better browsing experience, with handy tabs where you can view featured, popular, and the latest themes. As with the theme experience in your admin, you can use the feature filter to browse for just the right theme for your WordPress website.</p>\n<p><img class=\"alignnone size-large wp-image-3572\" src=\"https://wordpress.org/news/files/2015/04/theme-directory-1024x768.png\" alt=\"theme-directory\" width=\"692\" height=\"519\" /></p>\n<p>Click on a theme to get more information about it, including shiny screenshots, ratings, and statistics.</p>\n<p><img class=\"alignnone size-large wp-image-3573\" src=\"https://wordpress.org/news/files/2015/04/theme-directory-individual-1024x768.png\" alt=\"theme-directory-individual\" width=\"692\" height=\"519\" /></p>\n<p>Konstantin Obenland <a href=\"https://make.wordpress.org/meta/2015/03/10/new-theme-directory/\">posted a good overview</a> of everything involved with the theme directory overhaul and followed up with <a href=\"https://make.wordpress.org/meta/2015/03/31/theme-directory-stats/\">a post on improved statistics</a>.</p>\n<h3>Plugin Directory</h3>\n<p>The <a href=\"https://wordpress.org/plugins/\">Plugin Directory</a> has a brand new theme that mirrors the experience in your WordPress admin, with a more visual experience, and better search and statistics.</p>\n<p><img class=\"alignnone size-large wp-image-3594\" src=\"https://wordpress.org/news/files/2015/04/plugin-directory-1024x768.png\" alt=\"plugin-directory\" width=\"692\" height=\"519\" /></p>\n<p>As well as a facelift, there are some great new features for you to play around with:</p>\n<ul>\n<li>Favorites – when you’re logged in to you WordPress.org account, this page gives you direct access to the plugins that you have favorited.</li>\n<li>Beta Testing – try out plugins where developers are experimenting with new features for WordPress.</li>\n<li>Search by plugin author – you can search for a plugin author using their username.</li>\n<li>Better statistics – listings now display the number of active installs so you can see how many people are actually using a plugin.</li>\n</ul>\n<p>An <a href=\"https://make.wordpress.org/meta/2015/03/04/new-plugin-directory-theme/\">overview of the new theme</a> was posted by Scott Reilly.</p>\n<h2>Better Statistics</h2>\n<p>We’ve made huge improvements to <a href=\"https://wordpress.org/about/stats/\">our statistics</a>. This gives us more useful information about the WordPress versions people are using, their PHP version, and their MySQL version.</p>\n<p>Already these new statistics have provided us with useful insights into WordPress usage.</p>\n<ul>\n<li>More than 43% of all sites are running the latest version of WordPress. Previously, we thought only 10% of sites were up-to-date. By excluding sites that are no longer online we were able to improve these statistics.</li>\n<li>We were able to clear up the data around WordPress 3.0, bringing it more in line with expectations. This anomaly was a by-product of spammers.</li>\n<li>Only 15.9% of sites are using PHP 5.2, which is better than we thought.</li>\n</ul>\n<p>Over the coming months we’ll be able to use these statistics to bring you new tools and improvements, and to make more informed decisions across the board. Read <a href=\"https://make.wordpress.org/meta/2015/03/01/major-update-to-our-version-stats-for-php-mysql-and-wordpress/\">Andrew Nacin’s post about these changes</a> for more background.</p>\n<h2>Thanks!</h2>\n<p>Thanks to everyone who contributed to the theme directory redesign, the plugin directory refresh, and improved statistics: <a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>, <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/mj12982\">Jan Cavan Boulas</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/BrashRebel\">Kyle Maurer</a>, <a href=\"https://profiles.wordpress.org/matveb\">Matías Ventura</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/nataliemac\">Natalie MacLees</a>, <a href=\"https://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/Otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan McKeown</a>.</p>\n<p>If you want to help out or follow along with future WordPress.org projects, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/meta/\">meta development blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2015/04/improvements-to-wordpress-org/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:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.2 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/04/wordpress-4-2-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/04/wordpress-4-2-beta-4/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Apr 2015 13:05:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3566\";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:337:\"WordPress 4.2 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Drew Jaynes\";s: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:2694:\"<p>WordPress 4.2 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.2-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.2, check out the <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/\">Beta 3</a> blog posts. Some of the changes in Beta 4 include:</p>\n<ul>\n<li>Incrementally improved the experience when <strong>accessing the Customizer on mobile</strong>. Please test on your mobile devices and let us know if anything seems wonky.</li>\n<li>Added the ability to make <strong>admin notices dismissible</strong>. Plugin and theme authors: adding <code>.notice</code> and <code>.is-dismissible</code> as adjacent classes to your notice containers should automatically make them dismissible. Please test.</li>\n<li>Fixed some reported issues with <strong>backward-compatibility issues</strong> caused by the modularization of core JS files.</li>\n<li>Removed the <strong>ability to swipe the admin menu open and closed</strong> on touch devices due to reports of some issues with built-in history navigation on certain platforms.</li>\n<li>Improved <strong>accessibility of the WordPress admin</strong> by adding landmark roles. Screen reader users: please test in any core admin screens.</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=31996&stop_rev=31902&limit=100\">more than 90 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.2\">everything we’ve fixed</a>.</p>\n<p><em>Dismiss notices</em><br />\n<em>Customizer on mobile</em><br />\n<em>RC nearly 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:61:\"https://wordpress.org/news/2015/04/wordpress-4-2-beta-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 10 Jul 2015 19:45:20 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:10:\"x-pingback\";s:37:\"https://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Wed, 08 Jul 2015 22:55:54 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20130911080210\";}','no'),
(335,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1436600721','no'),
(336,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1436557521','no'),
(337,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1436600724','no'),
(338,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: SocialCrumbs: A Free WordPress Theme that Streams Social Activity Using IFTTT Recipes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46448\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://wptavern.com/socialcrumbs-a-free-wordpress-theme-that-streams-social-activity-using-ifttt-recipes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3949:\"<p>With all of the content an average user generates across social media sites, it can be challenging to get a full view of all that activity. Let’s face it, your social media posts are scattered all over the web.</p>\n<p><a href=\"https://github.com/ademilter/socialcrumbs\" target=\"_blank\">SocialCrumbs</a> is a non-traditional, niche WordPress theme that aggregates all of your social media activity into one stream with the help of <a href=\"https://ifttt.com/\" target=\"_blank\">IFTTT</a> recipes. The theme was created by <a href=\"http://ademilter.com/\" target=\"_blank\">Adam Ilter</a>, a user interface designer and developer living in Istanbul. He designed a Pinterest-style display to output the social posts brought in by IFTTT. The masonry grid is responsive and colorful with posts featuring icons for each social network.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/socialcrumbs-screenshot.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/socialcrumbs-screenshot.jpg?resize=1025%2C745\" alt=\"socialcrumbs-screenshot\" class=\"aligncenter size-full wp-image-46451\" /></a></p>\n<p>You can view a live demo of SocialCrumbs at <a href=\"http://adem.social/\" target=\"_blank\">adem.social</a>.</p>\n<p>In order to use the theme, you need to sign up for IFTTT and set up recipes for all the social accounts you want to include in the stream. The theme’s readme.txt files includes a list of 19 <a href=\"https://github.com/ademilter/socialcrumbs#recipes\" target=\"_blank\">recipes</a> that Ilter has pre-configured, with a checklist of many more planned.</p>\n<p>Certain networks have multiple options. For example, you can choose to include Twitter tweets and/or favorites:</p>\n<ul>\n<li>twitter-tweet-write <a href=\"https://ifttt.com/recipes/189363\" target=\"_blank\">https://ifttt.com/recipes/189363</a></li>\n<li>twitter-tweet-favorite <a href=\"https://ifttt.com/recipes/189331\" target=\"_blank\">https://ifttt.com/recipes/189331</a></li>\n</ul>\n<p>It can take up to 15 minutes for the content to appear in your theme after posting to the social network, as most IFTTT recipes check for new trigger data at that interval.</p>\n<p>It’s important to note that this theme is hosted on GitHub, not officially supported, and is an example of a fun, experimental concept that relies on IFTTT. As such, it doesn’t includes a single post template but rather outputs as an index. SocialCrumbs is not yet capable of providing a comprehensive archive for social media posts, so it’s not a theme you would use if you intend to record all of your social activities for preservation.</p>\n<p>One might argue that this kind of functionality is better housed in a plugin. In that case you might want to take a look at the <a href=\"https://wordpress.org/plugins/social-streams/\" target=\"_blank\">Social Streams</a> or <a href=\"https://wordpress.org/plugins/wp-social-stream/\" target=\"_blank\">WP Social Stream</a> plugins on WordPress.org. WP Social Stream is based on <a href=\"https://github.com/christianv/jquery-lifestream\" target=\"_blank\">jQuery Lifestream</a>, as opposed to IFTTT. The methods of retrieving social posts vary from plugin to plugin, depending on how you want to fetch, display, and store that content.</p>\n<p>The most ideal use for the SocialCrumbs theme would be where you dedicate a subsite to its display, i.e. for showing social media posts surrounding an event or brand. If it was forked to include the ability to make the social media content searchable and sortable, SocialCrumbs would be even more useful beyond a simple visual display of activities.</p>\n<p>In its current state, the theme is a nice example of IFTTT and WordPress working together to create a configurable social stream that aggregates activity from multiple networks to a single page of your WordPress site. Check it out on <a href=\"https://github.com/ademilter/socialcrumbs\" target=\"_blank\">GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2015 18:31:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:22:\"Matt: Paired Opposites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45232\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/07/paired-opposites/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:517:\"<blockquote><p>I used to think that paired opposites were a given, that love was the opposite of hate, right the opposite of wrong. But now I think we sometimes buy into these concepts because it is so much easier to embrace absolutes than to suffer reality. I don’t think anything is the opposite of love. Reality is unforgivingly complex.</p>\n<p>— Anne Lamott</p></blockquote>\n<p>From her great book <a href=\"http://www.amazon.com/Bird-Some-Instructions-Writing-Life/dp/0385480016\">Bird by Bird</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, 10 Jul 2015 14:58:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Chris Pearson Loses Cybersquatting Case Against Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46365\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wptavern.com/automattic-wins-cybersquatting-case-against-chris-pearson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6258:\"<p>First <a href=\"http://domainnamewire.com/2015/07/08/wordpress-wins-another-round-against-chris-pearson/\">reported by Domain Name Wire</a>, Automattic has <a href=\"http://www.adrforum.com/domaindecisions/1613723.htm\">won their <span class=\"_Tgc\"> Uniform Domain-Name Dispute-Resolution Policy</span> (UDRP) case</a> against <a href=\"http://www.pearsonified.com/\">Chris Pearson</a>. UDRP requests are<span class=\"_Tgc\"> a process established by the Internet Corporation for Assigned Names and Numbers (ICANN) for the resolution of disputes regarding the registration of internet domain names. </span></p>\n<h2>Automattic Wins Thesis.com</h2>\n<p>According to <a href=\"http://www.adrforum.com/domaindecisions/1613723.htm\">findings by the UDRP panel</a>, in late 2014, a third-party who owned <a href=\"http://themeshaper.com/\">Thesis.com</a> approached Automattic and Pearson to see if they were interested in buying the domain. Automattic won the domain by bidding $100K.</p>\n<p>Soon after winning the domain, Pearson filed a UDRP request with ICANN seeking relief requesting that the domain name be transferred from Automattic to himself. In June 2015, a three-member panel was appointed to review the case.</p>\n<p>According to <a href=\"https://www.icann.org/resources/pages/rules-be-2012-02-25-en\">rule number five</a> set forth by ICANN for the UDRP process, Respondents have 20 days to respond to the Provider. If a Respondent does not submit a response, in the absence of exceptional circumstances, the Panel decides the dispute based upon the complaint.</p>\n<p>In a controversial move, the Panel accepted and reviewed Automattic’s late response.</p>\n<blockquote><p>The Panel notes that Respondent failed to submit its response within the requisite time period, failing to comply with ICANN Rule #5. In its discretion, the Panel considered Respondent’s arguments in the late filed Response in the interest of justice.</p></blockquote>\n<p>Pearson satisfied two of the three burdens imposed under the Policy in order for the Panel to order transfer of a domain name from the entity registering it. Pearson failed to provide evidence that showed Thesis.com redirects to Themeshaper.com. In its response to the Panel, Automattic admitted to using the domain in this way but it appears to have had no affect on the Panel’s decision.</p>\n<p>The Panel noted that if Complainant’s submissions are insufficient, it may request additional exhibits or information under Rule 12 but given the outcome, the Panel chose not to seek additional submissions.</p>\n<p>You can view the panel’s findings in <a href=\"http://www.adrforum.com/domaindecisions/1613723.htm\">this public document.</a> The panel concluded that the Complainant (Pearson) failed to establish all three elements required under the ICANN Policy and that relief shall be denied.</p>\n<blockquote><p>A party must satisfy all three of the burdens imposed under the Policy in order for the Panel to order transfer of a domain name from the entity registering it. Here, Complainant failed to establish that Respondent registered and used the disputed domain name in bad faith.</p>\n<p><em>See Starwood Hotels & Resorts Worldwide, Inc. v. Samjo CellTech.Ltd</em>, FA 406512 (Nat. Arb. Forum Mar. 9, 2005) (finding that the complainant failed to establish that respondent registered and used the disputed domain name in bad faith because mere assertions of bad faith are insufficient for a complainant to establish Policy ¶ 4(a)(iii)). Therefore, the Panel finds that Complainant failed to support its allegations under Policy ¶ 4(a)(iii) and finds for Respondent.</p></blockquote>\n<p>Therefore, Thesis.com is allowed to remain under Automattic’s ownership.</p>\n<h2>Automattic Strikes Back</h2>\n<p>On June 16th, Automattic struck back by <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=1\">filing a petition for cancellation</a> with the United States Patent and Trademark Office. In their petition, Automattic argues that the three trademarks owned by Pearson, DIYTHEMES, THESIS THEME, and THESIS, should be cancelled.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/PetitionForCancellation.png\"><img class=\"size-full wp-image-46431\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/PetitionForCancellation.png?resize=704%2C721\" alt=\"Petition for Cancellation\" /></a>Petition for Cancellation\n<p>When questioned about the Thesis.com domain and petition to cancel Perason’s trademarks, Automattic responded with the following statement:</p>\n<blockquote><p>Chris Pearson tried to seize a domain Automattic owns through the UDRP process. As part of defending ourselves we have dug into the trademarks that were being claimed by the aggressor, as that was the basis of his claim.</p>\n<p>We’re happy the panel ruled in our favor. We think Thesis.com is a cool, generic .com that could be used for a variety of things. Just because you have a small WordPress theme doesn’t mean you have a right to seize generic English word .com domains.</p></blockquote>\n<p>I’ve reached out to Pearson for comment but have yet to receive a response.</p>\n<h2>Automattic’s Interest in Thesis.com Remains Unexplained</h2>\n<p>There are a lot of unanswered questions that need to be answered. For instance, why did Automattic participate in the bidding process for Thesis.com when it has nothing to do with WordPress.com or associated services?</p>\n<p>The turbulent history between <a href=\"http://wordpress.tv/2010/07/15/mixergy-interview-pearson-mullenweg/\">Matt Mullenweg and Pearson in 2010</a> nearly resulted in a lawsuit over GPLv2 compliance. The statement from Automattic fails to clarify why the company pursued Pearson again years later by bidding on a domain relevant to his business, apart from stating that it’s “a cool generic.com”. Going after Pearson’s trademarks in order to have them cancelled raises questions as to whether the move is motivated by retribution.</p>\n<p>We’ll keep a close eye on the <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=1\">trademark cancellation petition</a> and if there are any updates, we’ll let you know.</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, 10 Jul 2015 04:40:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:96:\"WPTavern: PhpStorm 9 Introduces Partial PHP 7 Support, Inline Debugging, and Remote File Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46327\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://wptavern.com/phpstorm-9-introduces-partial-php-7-support-inline-debugging-and-remote-file-editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3006:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/introduce_parameter.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/introduce_parameter.png?resize=1025%2C513\" alt=\"New in PhpStorm 9: Introduce parameter refactoring\" class=\"size-full wp-image-46421\" /></a>New in PhpStorm 9: <em>Introduce parameter</em> refactoring\n<p><a href=\"http://www.jetbrains.com/phpstorm/whatsnew/\" target=\"_blank\">PhpStorm 9</a> was released this week with a slew of improvements and new features for PHP and web developers. The popular IDE is used by more than 300,000 developers and its development team usually puts out one major release per year. <a href=\"http://wptavern.com/phpstorm-8-released-with-full-wordpress-support\" target=\"_blank\">Version 8</a> was released last September with official support for WordPress.</p>\n<p>Highlights of version 9 include:</p>\n<ul>\n<li>PHP Language & Editing Experience: Includes <a href=\"http://blog.jetbrains.com/phpstorm/2015/05/postfix-code-completion-for-php-in-phpstorm-9-eap/\" target=\"_blank\">postfix code completion for PHP</a>, partial PHP 7 support, advanced code understanding, and other enhancements</li>\n<li>New Debugging Experience: <a href=\"http://blog.jetbrains.com/phpstorm/2015/03/inline-debugging-for-php-in-phpstorm-9-eap/\" target=\"_blank\">Inline debugger</a> for PHP and <a href=\"http://blog.jetbrains.com/phpstorm/2015/07/debugging-improvements-in-phpstorm-9/\" target=\"_blank\">debugging workflow enhancements</a></li>\n<li>Remote Development: <a href=\"http://blog.jetbrains.com/phpstorm/2015/04/remote-edit-in-phpstorm-9-eap/\" target=\"_blank\">Remote edit</a>, PHP Code Sniffer and Mess Detector via remote PHP interpreters</li>\n<li>Many improvements related to frameworks and tools</li>\n<li>A range of new and updated third-party plugins available in the <a href=\"https://plugins.jetbrains.com/phpStorm\" target=\"_blank\">PhpStorm plugin repository</a></li>\n</ul>\n<p>The new <a href=\"http://blog.jetbrains.com/phpstorm/2015/03/inline-debugging-for-php-in-phpstorm-9-eap/\" target=\"_blank\">inline debugging</a> feature is already a hit with WordPress developers. It lets you view variable values in the source code, next to their usages, without having to switch over to the Variables pane or Debug tool window.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">Pretty much in love with <a href=\"https://twitter.com/phpstorm\">@phpstorm</a> 9\'s inline debugging h/t <a href=\"https://twitter.com/jeremyfelt\">@jeremyfelt</a></p>\n<p>— Zack Tollman (@tollmanz) <a href=\"https://twitter.com/tollmanz/status/618905116326805504\">July 8, 2015</a></p></blockquote>\n<p></p>\n<p>Auto-recognition of <a href=\"https://youtrack.jetbrains.com/issue/WI-21339\" target=\"_blank\">common WordPress global variables</a> (global variable => classname) is also included in the latest release.</p>\n<p>Check out the version 9 tour video to see some of the new features in action:</p>\n<p><span class=\"embed-youtube\"></span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2015 22:33: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:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Edit WordPress Email Templates in the Customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wptavern.com/edit-wordpress-email-templates-in-the-customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3806:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mailboxes.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mailboxes.jpg?resize=1024%2C496\" alt=\"mailboxes\" class=\"aligncenter size-full wp-image-39214\" /></a></p>\n<p>Argentinian WordPress developer <a href=\"https://wp.timersys.com/\" target=\"_blank\">Damian Logghe</a> had never touched the <a href=\"https://codex.wordpress.org/Theme_Customization_API\" target=\"_blank\">Customizer API</a>, but with all the controversy swirling around it, he decided to jump in to see what all the fuss was about.</p>\n<p>“The customizer has been making a lot of noise lately, as we all know, bringing politics to WordPress, and by politics I mean people arguing but getting nowhere,” he said.</p>\n<p>“As a plugin developer I never coded with the customizer and I only used it as a front end user. But at the latest <a href=\"https://buenosaires.wordcamp.org/2015/\" target=\"_blank\">WordCamp Buenos Aires</a>, <a href=\"https://twitter.com/eliorivero\" target=\"_blank\">Elio Rivero</a> spoke about using the customizer in plugins, and I decided to give it a try instead of entering into debate. And you know what? I loved it!”</p>\n<p>Logghe was contracted to build a new WordPress site and was looking for an easy way to beautify WordPress’ default emails. He thought that the customizer would be the best choice for the job. After a week of development, he created <a href=\"https://wordpress.org/plugins/email-templates/\" target=\"_blank\">Email Templates</a>, the first plugin to enhance WordPress email templates using the customizer.</p>\n<p>Email Templates can be accessed under the Appearance menu. The plugin creates customizer panels for editing the template, email header, footer, and settings. It even includes the ability to send a test email.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/email-templates-panels.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/email-templates-panels.jpg?resize=1014%2C638\" alt=\"email-templates-panels\" class=\"aligncenter size-full wp-image-46399\" /></a></p>\n<p>Adding a logo to the top of your email template is as easy as uploading an image. You can also customize the alignment, background color, and header text. The plugin includes panels for changing the “from name” and “from email”, footer text, and basic template styles.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/email-templates-logo.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/email-templates-logo.jpg?resize=1025%2C643\" alt=\"email-templates-logo\" class=\"aligncenter size-full wp-image-46401\" /></a></p>\n<p>After you finish your customizations, you can fire off a test email to see how the new template looks in your inbox. I tested the plugin and found that it works as advertised. Ordinarily, customizing WordPress’ default email template is not something your average user would attempt to do. The <a href=\"https://wordpress.org/plugins/email-templates/\" target=\"_blank\">Email Templates</a> plugin makes this accessible to anyone.</p>\n<p>Building with the Customizer API has solidified Logghe’s belief in its potential for the future of WordPress. His example of live previewing email templates is a creative use of the API in the context of a plugin.</p>\n<p>“In my opinion, the customizer is the right choice for every design change,” he said. “The API is extremely easy to use and previewing changes on the fly makes it awesome for every end user.</p>\n<p>“It is just matter of time until the waters get calm and everyone migrates to it. In a year or so, editing your theme without the customizer is going to feel strange.”</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, 09 Jul 2015 20:00:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: 39 WordCamps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45228\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://ma.tt/2015/07/39-wordcamps/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:220:\"<p>There have been 39 WordCamps already so far this year, <a href=\"https://wordpress.org/news/2015/07/wordcamps-update/\">here are a bunch more interesting stats about WordCamps including a list of upcoming ones.</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, 09 Jul 2015 15:50:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:25:\"Joseph: WordCamp SLC 2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://josephscott.org/?p=13154\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://josephscott.org/archives/2015/07/wordcamp-slc-2015/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1045:\"<p><a href=\"https://slc.wordcamp.org/2015/\">WordCamp Salt Lake City 2015</a> is coming September 12 at Washington Square ( 451 South State Street ). <a href=\"https://slc.wordcamp.org/2015/tickets/\">Tickets</a> are already on sale, only <a href=\"https://slc.wordcamp.org/2015/tickets/\">$18 each</a>. The <a href=\"https://slc.wordcamp.org/2015/attendees/\">attendees page</a> has a list of some of the people who have already signed up.</p>\n<p><a href=\"https://slc.wordcamp.org/2015/speakers/\">Speakers</a> are being <a href=\"https://slc.wordcamp.org/2015/news/\">announced on the news page</a>. If you area interested in presenting fill out the <a href=\"https://slc.wordcamp.org/2015/07/01/call-for-speakers/\">call for speakers form</a>. We are also looking for <a href=\"https://slc.wordcamp.org/2015/07/01/call-for-volunteers/\">volunteers</a> and <a href=\"https://slc.wordcamp.org/2015/07/01/call-for-sponsors/\">sponsors</a>.</p>\n<div class=\"jetpack-video-wrapper\"></div>\n<p>Come learn and hang out with the local Utah WordPress community.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2015 14:48: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:12:\"Joseph Scott\";s: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:24:\"Matt: Napoleon Champagne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45221\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://ma.tt/2015/07/napoleon-champagne/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"<blockquote><p>In victory you deserve champagne.</p>\n<p>In defeat you need it.</p>\n<p>— Napoleon Bonaparte</p></blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 09 Jul 2015 04:25:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: BuddySlack Plugin Sends BuddyPress Activities to a Slack Channel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46203\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wptavern.com/buddyslack-plugin-sends-buddypress-activities-to-a-slack-channel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4041:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/buddyslack.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/buddyslack.jpg?resize=656%2C300\" alt=\"buddyslack\" class=\"aligncenter size-full wp-image-46372\" /></a></p>\n<p>Not long after the WordPress project adopted Slack as its primary form of communication, David Bisset started using it to help <a href=\"http://davidbisset.com/organizing-a-conference-with-slack/\" target=\"_blank\">organize WordCamp Miami 2015</a>. The application added real time communication for organizers, speakers, volunteers, sponsors, and the public. He found it to be a helpful addition to the WordCamp’s conference communication tools.</p>\n<p>As a new fan of the platform, Bisset decided to build an extension for those who want to use Slack with BuddyPress. <a href=\"https://wordpress.org/plugins/buddyslack/\" target=\"_blank\">BuddySlack</a> is his first plugin released on WordPress.org. The bare bones plugin will send a notice to Slack whenever an activity stream item is generated by any of the following core components:</p>\n<ul>\n<li>Members</li>\n<li>Profiles</li>\n<li>Activity</li>\n<li>Groups</li>\n</ul>\n<p>The plugin allows you send your selected stream of activity posts to a particular channel, private group, or as a direct message to a user on your Slack team. It also includes an optional Slack settings panel within BuddyPress user profiles, allowing them to opt out of having their activities sent to Slack.</p>\n<p>In order to use the BuddySlack plugin, you’ll need to set up an incoming webhook via Slack, which can then be entered into the plugin’s settings panel.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/screenshot-1.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/screenshot-1.png?resize=1025%2C736\" alt=\"screenshot-1\" class=\"aligncenter size-full wp-image-46379\" /></a></p>\n<p>Bisset doesn’t plan on officially supporting the plugin but will add more features as time permits. He recognizes that it is currently somewhat limited, as it only supports sending activities for four default BuddyPress components. In the future, Bisset plans to expand it to support custom BP components as well as allow the user to customize the message sent to Slack.</p>\n<p>Ideally, the plugin would allow you to set certain trigger words so that you wouldn’t have to send the entire stream of activities from a selected component. Right now the best use for BuddySlack might be on a smaller social network that doesn’t have a constant stream of activities. For example, if the Groups component is used sparingly, sending group activity stream posts to a specific Slack channel could be useful. Being able to narrow it down to a specific group would be even better.</p>\n<p>The <a href=\"http://wptavern.com/wp-slack-plugin-sends-notifications-to-slack-based-on-events-triggered-in-wordpress\" target=\"_blank\">Slack plugin for WordPress</a> allows you to set up multiple integrations for sending notices to different channels. It also allows for sending test notifications and temporarily disabling notices. These might be a few handy features that could benefit <a href=\"https://wordpress.org/plugins/buddyslack/\" target=\"_blank\">BuddySlack</a>. Bisset is accepting pull requests if anyone wishes to <a href=\"https://github.com/dimensionmedia/buddyslack\" target=\"_blank\">contribute to the plugin on GitHub</a>.</p>\n<p>Slack integration via a plugin is also available for <a href=\"http://wptavern.com/bbpress-slack-integration-send-new-topics-and-replies-to-a-slack-channel\" target=\"_blank\">bbPress</a>, <a href=\"http://wordpress.org/plugins/slack-woocommerce\" target=\"_blank\">WooCommerce</a>, <a href=\"http://wordpress.org/plugins/slack-edd\" target=\"_blank\">Easy Digital Downloads</a>, <a href=\"http://wordpress.org/plugins/slack-contact-form-7\" target=\"_blank\">Contact Form 7</a>, and <a href=\"http://wordpress.org/plugins/slack-gravityforms\" target=\"_blank\">Gravity Forms</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, 09 Jul 2015 01:49: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: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:81:\"WPTavern: Update Adobe Flash Immediately to Patch Critical Security Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46361\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://wptavern.com/update-adobe-flash-immediately-to-patch-critical-security-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2384:\"<p>If you have Adobe Flash installed, you’ll want to make sure it’s updated to the <a href=\"https://get.adobe.com/flashplayer/\">latest version</a> as it patches a <a href=\"https://helpx.adobe.com/security/products/flash-player/apsa15-03.html\">critical security vulnerability</a>. According <a href=\"http://www.theregister.co.uk/2015/07/07/hacking_team_zero_days_flash_windows_kernel/\">to The Register</a>, confidential source code was stolen from <a href=\"http://www.theverge.com/2015/7/6/8899861/hacking-team-hacked-security-leak\">Hacking Team</a> and <a href=\"http://www.theregister.co.uk/2015/07/06/unified_cdm_static_password/\">leaked online</a>.</p>\n<p>Within the leaked source code, software vulnerabilities used by Hacking Team to break into PCs was discovered. Source code for the vulnerabilities is out in the open which means you should update as soon as possible. You’re at risk if you use the following:</p>\n<table border=\"1\" width=\"100%\" cellspacing=\"0\" cellpadding=\"1\">\n<tbody>\n<tr>\n<td width=\"120\">Adobe Flash Player Desktop Runtime</td>\n<td width=\"120\">18.0.0.194 and earlier</td>\n<td width=\"120\">Windows and Macintosh</td>\n</tr>\n<tr>\n<td>Adobe Flash Player Extended Support Release</td>\n<td>13.0.0.296 and earlier</td>\n<td>Windows and Macintosh</td>\n</tr>\n<tr>\n<td>Adobe Flash Player for Google Chrome</td>\n<td>18.0.0.194 and earlier</td>\n<td>Windows, Macintosh and Linux</td>\n</tr>\n<tr>\n<td>Adobe Flash Player for Internet Explorer 10 and Internet Explorer 11</td>\n<td>18.0.0.194 and earlier</td>\n<td>Windows 8.0 and 8.1</td>\n</tr>\n<tr>\n<td width=\"60\">Adobe Flash Player</td>\n<td>11.2.202.468 and earlier</td>\n<td>Linux</td>\n</tr>\n<tr>\n<td>AIR Desktop Runtime</td>\n<td>18.0.0.144 and earlier</td>\n<td>Windows and Macintosh</td>\n</tr>\n<tr>\n<td>AIR SDK</td>\n<td>18.0.0.144 and earlier</td>\n<td>Windows, Macintosh, Android and iOS</td>\n</tr>\n<tr>\n<td>AIR SDK & Compiler</td>\n<td>18.0.0.144 and earlier</td>\n<td>Windows, Macintosh, Android and iOS</td>\n</tr>\n</tbody>\n</table>\n<p>Visit Adobe’s <a href=\"https://get.adobe.com/flashplayer/\">Flash Player download page</a> to determine which version you’re using and upgrade if necessary. In recent months, Adobe has fixed a <a href=\"https://helpx.adobe.com/security.html\">series of security vulnerabilities</a> in Flash. At this point, it may be safer to uninstall Flash all together.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2015 22:28:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:58:\"WPTavern: Stack Exchange Blog Ditches WordPress for Jekyll\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46136\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wptavern.com/stack-exchange-blog-ditches-wordpress-for-jekyll\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4747:\"<p>Last week Stack Exchange <a href=\"http://blog.stackexchange.com/2015/07/the-new-stack-exchange-blog/\" target=\"_blank\">announced</a> its new blog, revamped to publish company news and engineering posts. The first post on the blog, written by Jon Chan, Stack Overflow’s developer evangelist, made no small amount of fanfare over <a href=\"http://blog.stackexchange.com/2015/07/how-we-built-our-blog/\" target=\"_blank\">migrating from WordPress to Jekyll</a>.</p>\n<p>Chan’s explanation of the team’s process cites a few curious reasons for their dissatisfaction with WordPress:</p>\n<blockquote><p>During the original proposal stage for the engineering blog, we also had a conversation about what engine we would use. At the time, all of our blogs were running WordPress…which we weren’t so happy about. It was very buggy, difficult to log in to, not very performant, and has caused our SRE team more than a few headaches. If we were really going to revamp the new company blog, it seemed like a lot of work to try and wrestle with our WordPress installation.</p></blockquote>\n<p>With a little bit of WordPress skill, these seem like easy complaints to resolve, especially given that Chan said the team was inspired by blogs like <a href=\"https://codeascraft.com/\" target=\"_blank\">Code as Craft</a> and <a href=\"http://oktrends.okcupid.com/\" target=\"_blank\">OkTrends</a>, both powered by WordPress. However, anti-WordPress sentiments continue to run high within the Stack Overflow community, which recently ranked the software as <a href=\"http://wptavern.com/stack-overflow-developer-survey-ranks-wordpress-as-the-3rd-most-dreaded-technology\" target=\"_blank\">the third most dreaded technology</a>.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/get-rid-of-wp.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/get-rid-of-wp.png?resize=800%2C528\" alt=\"photo credit: StackExchange Blog\" class=\"size-full wp-image-46331\" /></a>photo credit: <a href=\"http://blog.stackexchange.com/2015/07/how-we-built-our-blog/\">StackExchange Blog</a>\n<p>After a great deal of consideration, the Stack Exchange team opted to use a static engine, eventually landing on <a href=\"http://jekyllrb.com/\" target=\"_blank\">Jekyll</a>. Chan outlined the advantages they perceived in the move:</p>\n<ul>\n<li>Posts are in Markdown, something most of our company was familiar with</li>\n<li>Jekyll is just static site generation, so it’s much more performant</li>\n<li>Complete flexibility for front end work, no need to wrestle with templates</li>\n<li>Open source with a strong community, which we love</li>\n<li>Not WordPress or PHP</li>\n</ul>\n<p>Chan described the migration process, an endeavor that was fraught with obstacles. There is a <a href=\"http://wptavern.com/export-your-wordpress-blog-to-jekyll-with-one-click\" target=\"_blank\">Jekyll Exporter plugin</a> available to those who want to migrate their blogs over, but Stack Exchange opted to use the <a href=\"https://github.com/thomasf/exitwp\" target=\"_blank\">exitwp</a> tool to get them most of the way there.</p>\n<p>Since Jekyll doesn’t offer native support for comments, one of the biggest challenges in the migration was preserving that content and porting it into a new system. The Stack Exchange team decided to use <a href=\"https://disqus.com/\" target=\"_blank\">Disqus</a> for comments but were unable to properly migrate their existing comments and had to craft an alternative solution.</p>\n<p>“The worst part of this is how unsupported we were by the Disqus team,” Chan said. “We waited on the order of weeks for support responses and for over a month they went unresolved. Sending in official support tickets, emails, and posts on their Discuss forum went unnoticed.”</p>\n<p>Despite their unsatisfactory experience with Disqus and the fact that they have to sacrifice Stack Exchange login capabilities in order to use it, Chan said they will continue with it going forward.</p>\n<p>If you’re running a large, high profile blog on WordPress, it requires a certain level of expertise to customize themes and plugins and to ensure a high level of performance. It’s unclear whether or not the Stack Exchange team was lacking in expertise (based on some of the complaints cited) or simply unwilling to continue with WordPress after unsatisfactory experiences. No massive migration from one platform to another is ever going to be easy and bug-free, but Chan’s <a href=\"http://blog.stackexchange.com/2015/07/how-we-built-our-blog/\" target=\"_blank\">account</a> offers some valuable insight on how difficult it currently is to move from WordPress to Jekyll while preserving all of your 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, 08 Jul 2015 21:29:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: HeroPress Ends Experiment With WPChat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46345\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wptavern.com/heropress-ends-experiment-with-wpchat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2781:\"<p>Since March of this year, <a href=\"http://heropress.com/\">HeroPress</a> has published inspirational essays from people all over the world. Instead of allowing comments on the site itself, Topher DeRosia, founder of HeroPress, partnered with <a href=\"http://www.wpchat.com\">WPChat</a> to host conversations for each essay. Unfortunately, many of the articles received little feedback.</p>\n<p>Starting this week, DeRosia is allowing contributing writers <a href=\"http://heropress.com/thoughts-on-comments/\">to decide</a> whether they want comments enabled on their essay or not. “I made the decision to have no comments because I wanted the essays to stand alone, with one voice, that being the voice of the contributor.” DeRosia told the Tavern.</p>\n<p>Directing people to a third-party site is an odd way to generate a conversation around an article. DeRosia explains why he chose to host comments on WPChat, “I chose to attach WPChat to the project because it seemed like a good way for readers to express themselves without marring the surface of the essay itself.”</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/HeroPress3SurveyOnWPChat.png\"><img class=\"size-full wp-image-46347\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/HeroPress3SurveyOnWPChat.png?resize=816%2C594\" alt=\"Example of a Conversation on WPChat About a HeroPress Essay\" /></a>Example of a Conversation on WPChat\n<p><em><a href=\"https://wpchat.com/t/isolated-and-intrigued-heropress-essay-3/796\">Isolated and intrigued</a></em> as well as <em><a href=\"https://wpchat.com/t/finding-stability-in-wordpress/893\">Finding stability in WordPress</a></em> are two examples where great conversations took place on WPChat. However, these conversations are few and far between. “That leads me to believe there could be more quality input out there and people are simply not interested in making an extra account to comment,” said DeRosia.</p>\n<p>Contributors who choose to enable comments don’t need to worry about moderation. DeRosia will heavily moderate comments with a zero tolerance policy for trolls. As for WPChat hosting future conversations, DeRosia says, “I like WPChat but in this case, I simply don’t think it’s the tool for the job.”</p>\n<p>Comments connect authors to readers and are an <a href=\"http://wptavern.com/why-comments-still-matter\">important part of the internet</a>. Sometimes, the feedback is better than the post itself. However, requiring readers to register to a forum to comment on articles hosted on a different site is too high of a roadblock. The commenting process should be as smooth and simple as possible. Enabling comments on HeroPress is a step in the right direction.</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, 08 Jul 2015 20:29: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:23:\"Matt: Customer Success?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45217\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/07/customer-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:225:\"<p>“Customer support, when done well, is a career.” Automattic’s support lead Andrew Spittle on <a href=\"http://andrewspittle.com/2015/07/02/customer-success/\">customer success vs customer support</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, 08 Jul 2015 03:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:90:\"WPTavern: BuiltWith Reports a 7% Increase in WordPress’ Usage from January – July 2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wptavern.com/builtwith-reports-a-7-increase-in-wordpress-usage-from-january-july-2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4602:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/chart.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/chart.jpg?resize=1025%2C511\" alt=\"photo credit: Luis Llerena\" class=\"size-full wp-image-46313\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/S3JE5YAMND\">Luis Llerena</a>\n<p>BuiltWith, the popular service dedicated to monitoring internet technology trends and providing platform usage analytics, released its bi-annual <a href=\"http://blog.builtwith.com/2015/07/06/entire-internet-cms-usage-january-july-2015/\" target=\"_blank\">internet coverage report for CMS usage from January – July 2015</a>. The report shows that WordPress, which accounts for 48% of total CMS’s tracked, added 1.1 million domains since January.</p>\n<blockquote><p>WordPress has been found on an additional 1.1 million domains since January but only accounts for a 7% increase in customer base. Whereas Ghost was added to 2,184 domain home pages and accounts for a 17% increase in their customer base.</p></blockquote>\n<p>The title of the summary is “CMS Market Share Increases by Install Base,” but WordPress is the only CMS shown in the chart with an actual market share value assigned based on its place among tracked competitors.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/builtwith-cms-marketshare-june-2015-report.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/builtwith-cms-marketshare-june-2015-report.png?resize=600%2C793\" alt=\"builtwith-cms-marketshare-june-2015-report\" class=\"aligncenter size-full wp-image-46289\" /></a></p>\n<p>BuiltWith indexed 328,852,063 domains during this quarter. Instead of simply showing the increase by usage numbers, the summary focuses on the percentage increase in customer base for a more interesting comparison. When commenters noted that this is not, in fact, market share data, Ghost co-founder John O’Nolan replied, “Relative growth compared to existing size is pretty much the only sane measure.”</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/JohnONolan\">@JohnONolan</a> Strange perspective. Ghost added 17% or 2,184 domains. WordPress added 7% or 1,149,956. That\'s only 535 times more sites ;)</p>\n<p>— Aigars Silkalns (@AigarsSilkalns) <a href=\"https://twitter.com/AigarsSilkalns/status/618368722613497856\">July 7, 2015</a></p></blockquote>\n<p></p>\n<p>Oddly, the report did not share any figures for <a href=\"http://trends.builtwith.com/cms/Drupal\" target=\"_blank\">Drupal</a> or <a href=\"http://trends.builtwith.com/cms/Joomla!\" target=\"_blank\">Joomla</a>, which <a href=\"http://w3techs.com/technologies/overview/content_management/all\" target=\"_blank\">W3techs estimates as WordPress’ closest CMS competitors</a> in terms of market share. BuiltWith’s summary appears to be limited to the fastest growing platforms based on percentage increase in customer base.</p>\n<p>The CMS report also included some interesting stats on the WordPress versions it detected on sites indexed. These numbers roughly correspond to the project’s <a href=\"https://wordpress.org/about/stats/\" target=\"_blank\">version usage stats</a>, although WordPress doesn’t publish numbers for versions older than 3.0. BuiltWith found that 1748 websites are still running on WordPress 2.1, released eight years ago. This number is down 259 sites since the beginning of the year.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/wordpress-versions.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/wordpress-versions.png?resize=600%2C545\" alt=\"photo credit: BuiltWith\" class=\"size-full wp-image-46308\" /></a>photo credit: <a href=\"http://blog.builtwith.com/2015/07/06/entire-internet-cms-usage-january-july-2015/\">BuiltWith</a>\n<p>According to Gary Brewer, founder of BuiltWith, “Wix and Squarespace’s main acquisition for existing websites that are using a CMS are from WordPress sites.” He also notes that WordPress continues to dominate without the help of celebrity advertisements. <a href=\"https://www.youtube.com/watch?v=mjhZ11vGl1Q\" target=\"_blank\">Wix’s ad with Heidi Klum</a> and <a href=\"https://www.youtube.com/watch?v=BKIlfLReHyo\" target=\"_blank\">Squarespace’s Jeff Bridges commercial</a>, which aired during the Super Bowl, are evidence of both companies’ massive marketing budgets. WordPress.com, the world’s leading provider of free WordPress sites, has yet to explore that route.</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, 07 Jul 2015 23:05:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: New Proposal on Trac to Remove Post Formats from WordPress Core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45949\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wptavern.com/new-proposal-on-trac-to-remove-post-formats-from-wordpress-core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4154:\"<p><a href=\"http://codex.wordpress.org/Post_Formats\">Post Formats</a> is a feature introduced in WordPress 3.1 that enables themes to visually differentiate between types of content. A<a href=\"http://wptavern.com/post-format-history-and-wordpress-3-6\"> metabox with radio buttons</a> was added in WordPress 3.6 to expose the feature to users and allow them to easily select a format. Since WordPress 3.6 was released, there has been <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=assigned&status=closed&status=new&status=reopened&status=reviewing&component=Post+Formats&order=priority\">little effort</a> to improve the feature.</p>\n<p>Morten Rand-Hendriksen <a href=\"http://wptavern.com/wordpress-trainer-morten-rand-hendriksen-on-common-pain-points-roadblocks-and-advice-for-new-users\">teaches WordPress</a> to thousands of people through <a href=\"http://www.lynda.com/WordPress-tutorials/WordPress-Essential-Training/154417-2.html\">Lynda.com</a>. After spending time writing training materials for post formats, Hendriksen was reminded of how much post formats shouldn’t be in WordPress core.</p>\n<p>He’s created a <a href=\"https://core.trac.wordpress.org/ticket/32844\">new ticket on trac</a> suggesting post formats be removed from WordPress and placed into a plugin similar to how the link manager and blogroll <a href=\"https://codex.wordpress.org/Links_Manager\">were removed</a> in WordPress 3.5.</p>\n<blockquote><p>After the termination of Post Formats UI, it appears the feature has largely been left to pasture and implementation across themes is at best spotty and inconsistent. One example of this is how different Post Formats are treated in the default themes, culminating in the minimalist/absent inclusion in Twenty Fifteen.</p></blockquote>\n<p>Hendriksen lists six key arguments that come up when discussing the removal of post formats from WordPress:</p>\n<ul>\n<li>Feature support is inconsistent across themes causing users to wonder why the panel and options appear and disappear when themes are switched.</li>\n<li>When implemented, behavior is inconsistent between themes causing a perception of arbitrary or broken behavior in the eyes of the user.</li>\n<li>Specification for what exactly each post format does is vague and ambiguous giving theme developers too much room to come up with arbitrary and non-standard behaviors that cause user confusion when themes are switched.</li>\n<li>The use case for Post Formats seems to have gone away or have been supplanted for the larger goal of making modular, Snowfall-like post editing available.</li>\n<li>Post Formats behavior can be mimicked by theme developers through the use of Categories or other custom taxonomies.</li>\n</ul>\n<p>Applying the <a href=\"https://en.wikipedia.org/wiki/Pareto_principle#In_software\">80/20 rule</a> to software development, Hendriksen believes post formats is in the 20% range or lower. He ends the ticket by proposing post formats be moved into a feature plugin.</p>\n<p>This would allow it to be improved concurrently with WordPress and open up opportunities to experiment with different implementations and ideas. Alternatively, it could be abandoned if no interest is shown to improve it.</p>\n<h2>Move Post Formats to a Plugin</h2>\n<p>My opinion of Post Formats hasn’t changed since the <a href=\"http://wptavern.com/why-arent-post-formats-in-wordpress-more-popular\">last time I wrote about them</a>. They’re still unpredictable, I don’t see many sites using them, and they’re tough to explain to new users.</p>\n<p>Considering post formats dramatically impact the presentation of content, it’s strange that the core team has not continually improved the feature after 3.6. By now, they should be rock solid. Instead, it’s a feature with no obvious future.</p>\n<p>Although you can leave a comment on this post, the best place to leave feedback is in this <a href=\"https://core.trac.wordpress.org/ticket/32844\">trac ticket</a>. It’s time WordPress core developers got involved with the conversation to let us know what they think about the future of post formats in WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2015 18:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:87:\"WPTavern: WordPress 4.3 Improves User Search and Turns Comments Off on Pages by Default\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"http://wptavern.com/wordpress-4-3-improves-user-search-and-turns-comments-off-on-pages-by-default\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4001:\"<p><a href=\"http://wptavern.com/wordpress-4-3-beta-1-now-available-for-testing\" target=\"_blank\">WordPress 4.3 beta 1</a> was put into the hands of testers last week. Those who have been following 4.3 developments are already familiar with the major features headlining this release, ie. the new <a href=\"http://wptavern.com/wordpress-4-3-adds-new-site-icons-feature-and-a-text-editor-to-press-this\" target=\"_blank\">site icons</a>, <a href=\"http://wptavern.com/menu-customizer-officially-approved-for-merge-into-wordpress-4-3\" target=\"_blank\">menu management in the customizer</a>, and <a href=\"https://core.trac.wordpress.org/ticket/32589\" target=\"_blank\">more secure passwords</a>. However, there are also a couple lesser-known improvements that will have a positive impact on millions of WordPress users.</p>\n<h4>Improved User Search</h4>\n<p>Searching for users in the admin is about to get much easier, thanks to work on a <a href=\"https://core.trac.wordpress.org/ticket/27304\" target=\"_blank\">ticket</a> opened by John Blackbourn 16 months ago. He notes that “only the user_login (username) and user_nicename (sanitized username) fields are searched,” excluding the following more likely fields:</p>\n<ul>\n<li>First name</li>\n<li>Last name</li>\n<li>Nickname</li>\n<li>Display name</li>\n</ul>\n<p>This issue was especially problematic in large, multi-thousand member multisite installations where finding a user in the admin often meant knowing exactly what to query and then paging through results. WordPress 4.3 contributions from <a href=\"https://profiles.wordpress.org/mordauk\" target=\"_blank\">Pippin Williamson</a> and <a href=\"https://profiles.wordpress.org/wonderboymusic\" target=\"_blank\">Scott Taylor</a> make it possible to <a href=\"https://core.trac.wordpress.org/changeset/32980\" target=\"_blank\">search by the user’s email, URL, and display name</a>.</p>\n<h4>Comments Turned Off on Pages by Default</h4>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/comments-off-on-pages-by-default.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/comments-off-on-pages-by-default.jpg?resize=962%2C323\" alt=\"comments-off-on-pages-by-default\" class=\"aligncenter size-full wp-image-46275\" /></a></p>\n<p>WordPress 4.3 will also bring a welcome change to turn off comments on pages by default. In the future when you create pages, you won’t have to remember to go into the discussion settings to disable comments. One might think this would be a simple little thing to change, but quite a bit of discussion has gone into crafting the best solution to the <a href=\"https://core.trac.wordpress.org/ticket/31168\" target=\"_blank\">ticket</a> opened five months ago.</p>\n<p>This change also applies to all custom post types. Mel Choyce outlined the new behavior in a <a href=\"https://make.wordpress.org/core/2015/07/06/comments-are-now-turned-off-on-pages-by-default/\" target=\"_blank\">post</a> on the make.wordpress.org/core blog:</p>\n<blockquote><p>Post registrations that don’t explicitly add support for comments will now default to comments being off on new posts of that type (before, they defaulted to on). Up until now, post type support for comments has only affected admin UI; a developer could omit comment support on registration but still allow comments to be posted. <strong>This is a change in behavior</strong>, and we will be closely monitoring its effects during beta. Moving to explicit support will allow core behavior to be more predictable and robust in the future, but we will always consider real-world usage.</p></blockquote>\n<p>The change also comes with a new function and a filter that you can use to restore the current behavior of comments to your post type, if necessary. More details and an example on how to use the filter are available on the make.wordpress.org/core announcement <a href=\"https://make.wordpress.org/core/2015/07/06/comments-are-now-turned-off-on-pages-by-default/\" target=\"_blank\">post</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, 07 Jul 2015 05:07: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: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:20:\"Matt: Why We Encrypt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://ma.tt/2015/07/why-we-encrypt/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:172:\"<p>From one of the best blogs on the internet, <a href=\"https://www.schneier.com/blog/archives/2015/06/why_we_encrypt.html\">Bruce Schnier writes on Why We Encrypt</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, 07 Jul 2015 04:46:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Akismet: Akismet WordPress Plugin 3.1.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1854\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://blog.akismet.com/2015/07/06/akismet-3-1-3-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:1014:\"<p>Version 3.1.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>This update addresses an issue causing some users to see blank Akismet settings screens. After installing this update, the settings screen should either load successfully, or it will display an error message with instructions for fixing the problem.</p>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1854/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1854/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1854&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 23:49:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:76:\"WPTavern: Jetpack 3.6 Adds the Ability to Manage Your Connections to Jetpack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46227\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://wptavern.com/jetpack-3-6-adds-the-ability-to-manage-your-connections-to-jetpack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3928:\"<p>Jetpack 3.6 <a href=\"http://jetpack.me/2015/07/06/jetpack-3-6-updated-social-widgets-jetpack-cli-and-more/\">is available</a> and has <a href=\"https://wordpress.org/plugins/jetpack/changelog/\">several bug fixes and enhancements</a>. <a href=\"http://jetpack.me/support/jetpack-cli/\">Jetpack CLI</a> which is a command line interface for Jetpack and extends off of <a href=\"http://wp-cli.org/\" target=\"_blank\">wp-cli</a> for WordPress, has undergone a number of improvements. There are a handful of new extra sidebar widgets, including Facebook Like Box, and Social Media Icons.</p>\n<p>Existing widgets such as Top Posts are more configurable. The Top Posts and Pages widget now allows you to show or hide different page types from the widget. For example, if you only want to show post and page results, check the boxes for Posts and Pages in the widget configuration area.</p>\n<p>The new Facebook Like box widget is streamlined and looks much better than its predecessor.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/NewJetpackFacebookWidget.png\"><img class=\"size-full wp-image-46248\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/NewJetpackFacebookWidget.png?resize=332%2C310\" alt=\"New Jetpack Facebook Widget is Streamlined\" /></a>New Jetpack Facebook Widget is Streamlined\n<p>There’s a social media icons widget that’s great for themes that don’t already have a built-in method of displaying social networking connections. Simply place it in the sidebar and apply your username to each service you use. On the Tavern test site, the icons were a little too small for my liking but I realize this is an issue with the theme we use.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/SocialMediaIconsWidget.png\"><img class=\"size-full wp-image-46249\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/SocialMediaIconsWidget.png?resize=335%2C128\" alt=\"Social Media Icons Widget\" /></a>Social Media Icons Widget\n<p>Jetpack 3.6 also introduces a connection manager where users can manage a site’s <a href=\"http://jetpack.me/support/primary-user/\">Primary User</a>, see any other connected users, and/or manage your connection to WordPress.com. The team says there are plans to add additional features to My Jetpack in future versions.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/JetpackConnectionManager.png\"><img class=\"size-full wp-image-46247\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/JetpackConnectionManager.png?resize=1025%2C383\" alt=\"Jetpack Connection Manager\" /></a>Jetpack Connection Manager\n<p>In a sign of the times, <a href=\"http://www.stumbleupon.com/\">StumbleUpon</a> is no longer an option in the sharing module. Email sharing now uses <a href=\"https://developers.google.com/recaptcha/intro\">reCAPTCHA 2.0</a> to verify human behavior. Stats are more accurate as previewing posts and pages no longer count as pageviews.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/AvailableSharingButtons.png\"><img class=\"size-full wp-image-46229\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/AvailableSharingButtons.png?resize=778%2C345\" alt=\"StumbleUpon Sharing Button Retired from Jetpack\" /></a>StumbleUpon Sharing Button Retired from Jetpack\n<p>Jetpack Carousel supports HTML 5 and the Slideshare shortcode is fixed. Deprecated card types for Twitter cards are removed and the Facebook share button now shows up for the Australian and Canadian locale.</p>\n<p>Upgrade to <a href=\"https://wordpress.org/plugins/jetpack/\">Jetpack 3.6</a> to take advantage of the numerous bug fixes and enhancements. If you’d like to be the first to test new features and help Jetpack users experience fewer problems, consider participating in the <a href=\"http://wptavern.com/jetpack-relaunches-beta-testing-program\">Jetpack Beta testing program</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 22:58:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:62:\"WPTavern: Pressnomics 4 Set for March 3-4, 2016 in Phoenix, AZ\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46236\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/pressnomics-4-set-for-march-3-4-2016-in-phoenix-az\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2822:\"<p>Pressnomics <a href=\"http://pressnomics.com/2015/07/announcing-dates-for-pressnomics-4/\">has announced</a> that the 4th iteration of the event will take place on March 3-4, 2016 at Tempe Mission Palms Hotel, Phoenix, AZ. Started in 2012 by Joshua Strebel of <a title=\"http://page.ly\" href=\"http://page.ly\">Pagely,</a> Pressnomics is a conference dedicated to the business aspects of WordPress, whether it is software as a service, commercial themes and plugins, or development agencies.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/Pressnomics4Dates.png\"><img class=\"aligncenter size-full wp-image-46243\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/Pressnomics4Dates.png?resize=655%2C240\" alt=\"Date for Pressomics 4\" /></a>When the event concluded last year, there was talk of it being moved to Europe for 2016. Despite the event taking place in the US in 2016, I asked Strebel if plans to host Pressnomics in Europe or even a branch of the conference are still on the table?</p>\n<blockquote><p>We are conversing with folks in Europe to try to make something happen in 2016, in addition to, Pressnomics 4 in Phoenix. Rather than ice everything until all details are final, we decided to swing and see if we can make both happen.</p></blockquote>\n<p>Tickets go on sale <strong>September 1st, 2015 at 10AM PST</strong>. Despite feedback from attendees that ticket prices should increase, event co-organizer Sally Strebel, says prices will remain roughly the same as last year.</p>\n<blockquote><p>I’ve been told by numerous people that we should increase the cost of tickets for this event and that they go to other conferences that cost more and return less value.</p>\n<p>Thank you for looking out for us and I truly value your opinion, however we have decided to keep costs essentially the same as last year because it’s not about the money. It’s about giving back. We look forward to growing our businesses together.</p></blockquote>\n<p>Companies immediately applied to be sponsors within minutes of receiving sponsorship information. Those companies include, GoDaddy, Envato, Sucuri, iThemes, Easy Digital Downloads, and more.</p>\n<p>I had the privilege <a href=\"http://wptavern.com/envato-stats-tips-for-getting-things-done-and-more-at-pressnomics-3\">to attend Pressnomics 3</a> and it was by far one of the most unique WordPress conferences I’ve attended. Compared to WordCamps, the atmosphere is much different and you can tell speakers are more open and relaxed since sessions are not recorded.</p>\n<p>March is a great time of year to host a conference in Phoenix. If Pressnomics 3 is anything to go by, Pressnomics 4 will be amazing. If you have the opportunity to attend Pressnomics 4, I highly suggest doing so as it’s a memorable experience.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 22: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: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:70:\"WPTavern: PHP 4 Style Constructors Will Be Deprecated in WordPress 4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46222\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wptavern.com/php-4-style-constructors-will-be-deprecated-in-wordpress-4-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1730:\"<p>PHP 4 style constructors are being deprecated in WordPress 4.3 to ease the transition to support PHP 7. According to Aaron Jorbin, on the <a href=\"https://make.wordpress.org/core/2015/07/02/deprecating-php4-style-constructors-in-wordpress-4-3/\">Make WordPress Core blog post</a>, WordPress <a href=\"https://core.trac.wordpress.org/changeset/32990\">r32990</a> introduces a change so that all classes use the PHP 5 style constructors, while still retaining the PHP 4 style constructors for backwards compatibility.</p>\n<p>A deprecated_constructor warning that follows the same rules as <a href=\"https://developer.wordpress.org/reference/functions/_deprecated_function/\">deprecated_function</a> will also be displayed for WordPress classes that are not external libraries</p>\n<p><a href=\"http://chriscct7.com/\">Chris Christoff</a>, who contributes to WordPress core, <a href=\"https://gist.github.com/chriscct7/d7d077afb01011b1839d\">generated a list of plugins</a> on the WordPress plugin directory that have widgets calling <code>WP_Widget::WP_Widget()</code> and/or <code>parent::WP_Widget()</code> and/or <code>{object}->WP_Widget()</code>.</p>\n<p>The list includes more than 4,000 plugins and contains the author, title, and slug. Plugin authors should check the list to see if your plugin is listed. Even if it’s not, you’re still encouraged to make sure you’re not using a PHP 4 style constructor in your code.</p>\n<p>If you use any of the plugins listed, please create a support forum thread with a link to the <a href=\"https://make.wordpress.org/core/2015/07/02/deprecating-php4-style-constructors-in-wordpress-4-3/\">Make WordPress Core blog post</a> and politely ask them to update their plugin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 21:11:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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: Highlights of Matt Mullenweg’s Q&A Session at WordCamp Europe 2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46152\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wptavern.com/highlights-of-matt-mullenwegs-qa-session-at-wordcamp-europe-2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5818:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/mullenweg-wordcamp-europe.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/mullenweg-wordcamp-europe.jpg?resize=1025%2C518\" alt=\"Kari Leigh | Found Art Photography\" class=\"size-full wp-image-46199\" /></a>Kari Leigh | <a href=\"http://www.found-art-photography.com/\" target=\"_blank\">Found Art Photography</a>\n<p>The video of <a href=\"http://wordpress.tv/2015/07/04/matt-mullenweg-keynote-qanda-wordcamp-europe-2015/\" target=\"_blank\">Matt Mullenweg’s Q&A session at WordCamp Europe</a> is now published on WordPress.tv. For those who were unable to attend, this session provides a glimpse into what WordPress’ co-founder sees for the future of the software and the community.</p>\n<p>One of the most exciting parts of the video is where Mullenweg talks about the potential of WordPress.org to serve other languages and eventually expand avenues of core contribution to non-English speaking audiences.</p>\n<p>When asked what kind of contribution can be made to improve WordPress.org for Rosetta sites, themes, and plugins, Mullenweg replied:</p>\n<blockquote><p>Themes and plugins are undoubtedly the most important. To me, the next most important things are the Rosetta sites and having theme and plugin directories available on the Rosetta sites. There is actually a great example at <a href=\"https://ro.wordpress.org/\" target=\"_blank\">ro.wordpress.org</a>, which is the Romanian Rosetta site that shows both the potential and the problem:</p>\n<p>Now there are themes and plugins menu items there, which none of the Rosetta sites have had prior to this. But when you click on it you see mostly English in the plugin descriptions, even things like screenshots and tutorials.</p></blockquote>\n<p>He described these updates to WordPress.org as just a “hint of what could be amazing” one day. Mullenweg noted that despite Europe having 23+ recognized languages, attendees at the WordCamp were all speaking English. However, not all areas of the world are populated by people with bilingual capabilities.</p>\n<blockquote><p>I think it would be amazing to open up WordPress to have a first priority experience of the thousands of plugins and themes that are available for people who do not speak a word of English. Right now WordPress is just not accessible to that group. Luckily, over half the people in Europe are bilingual… In places where that’s a possibility, WordPress can still do well even though we don’t have a native experience in someone’s mother tongue.</p>\n<p>But English is only the third most popular language in the world and it’s not the fastest growing. There are huge audiences that I think would be an important part of the community. Someday I want it to be where, instead of things being translated from English to a different language, we’re getting core contributions translated from, say, Chinese or Hindi or Spanish, into English to be reviewed. We’re not looking to just how to translate plugins from English into other languages but vice versa. I think that will be when we’re successful.</p></blockquote>\n<p>In the same way that better language support opens up WordPress to a wider audience, Mullenweg believes that the customizer will open up the software for more non-technical users. During the Q&A he shared his thoughts on the future of the customizer:</p>\n<blockquote><p>As we currently are working, the customizer is the way forward…It essentially removes the fear and disconnect between wp-admin and the front end of a site. It’s a bridge that gives people the confidence to make changes while seeing those changes in real time. The real time feedback and safety net of seeing that, and being able to undo and redo things, is incredibly empowering, particularly for non-technical users who don’t know how to dive into CSS or the code. I personally believe that the work on the customizer is some of the most important going on in the WordPress project right now.</p></blockquote>\n<p>In addition to building the feature in a way that is responsive to mobile devices, Mullenweg noted that the customizer currently falls short on desktop:</p>\n<blockquote><p>The customizer is, for lack of a better word, a narrow interface, because it needs to show your site in addition to the admin. I think we need to do a better job of making sure that interface scales up as well as down, meaning that if you do have the space or would like to make it fullscreen, that it is responsive, so that it enlarges into an interface that probably looks and works much like the current wp-admin interface for being a fullscreen experience for editing and modifying menus, widgets, colors, fonts, header images, site title, all the things that are key to the presentation of your site.</p></blockquote>\n<p>It is curious that the customizer is being pushed through to WordPress 4.3 without the ability to scale up gracefully. If the situation were reversed, where the feature was unfriendly to mobile users, it seems less likely that it would have been deemed ready for core. This illustrates the WordPress project’s strong emphasis on being positioned to attract mobile users.</p>\n<p>Mullenweg encouraged attendees to keep an eye on the customizer, because he believes it will do a much better job than Wix and Squarespace when it comes to providing a user-friendly way to customizer websites.</p>\n<p>The entirety of the 66-minute long Q&A session is included in the video below. In addition to languages and the customizer, Mullenweg also answers questions about security, WordPress’ minimum PHP version, the possibility of multilingual features in core, and the importance of building for mobile.</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:\"Mon, 06 Jul 2015 16:39: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: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:61:\"WPTavern: A Narrative of Using Composer in a WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wptavern.com/a-narrative-of-using-composer-in-a-wordpress-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:10900:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/petersuhm.jpeg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/petersuhm.jpeg?resize=150%2C150\" alt=\"petersuhm\" class=\"alignright size-thumbnail wp-image-43613\" /></a>This piece was contributed by guest author <a href=\"https://twitter.com/petersuhm\" target=\"_blank\">Peter Suhm</a>. Peter is a web developer from the Land of the Danes. He is the creator of <a href=\"https://wppusher.com/\" target=\"_blank\">WP Pusher</a> and a huge travel addict, bringing his work along with him as he goes.<br />\n </p>\n<hr />\n<p>The other day I posted <a href=\"http://blog.wppusher.com/a-warning-about-using-composer-with-wordpress/\" target=\"_blank\">a warning about using Composer in WordPress plugins</a> on the WP Pusher blog. This post got a lot of attention and I feel the need to clarify a few points that were not all clear to everyone. The article was also a bit heavy on the technical stuff, so in this post I will try to make my main point more clear by using a simple narrative to illustrate it.</p>\n<h3>A narrative</h3>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/boxes.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/boxes.jpg?resize=1024%2C490\" alt=\"photo credit: Doors Open Toronto 2008 - Toronto Archives - (license)\" class=\"size-full wp-image-46150\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/25716750@N06/2527068003\">Doors Open Toronto 2008 – Toronto Archives</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Let’s imagine for a while that you and I are both plugin authors. Both of us have a great idea for a plugin we wish to distribute via WordPress.org. We want to include a few premium features in our plugins that users of the free version can unlock by entering a license key.</p>\n<p>We need some code that can handle this process. Both of us realize that this problem have probably already been solved by someone else. None of us are fans of reinventing the wheel, so we head over to Packagist and type in “license manager”. It looks like our assumption was justified. Yoast already has a package that can handle this. We both decide to do a quick <code>composer require yoast/license-manager</code>. Easy peasy. Now we can move on to work on something that really matters- the core features of our respective plugins.</p>\n<p>Fast forward, ready to release your plugin, you realize something: Your user doesn’t necessarily have Composer handy when installing your plugin from WordPress.org, so how are they going to get the code for the license manager? This situation is a bit annoying, because the only solution you really see is to just commit the whole Composer generated <code>vendor</code> directory to your plugin and push it to WordPress.org. You know this is not how Composer is supposed to work, but whatever. You don’t really have other options.</p>\n<p>Meanwhile, I have come to the same conclusion with my plugin. Just include the license manager code and be done with it.</p>\n<p>Fast forward once more, both our plugins now live in the WordPress.org repository and once in a while, someone decides to upgrade to our premium versions. Everything seems to be fine and we are both grateful that we could just use the code that Yoast had generously open sourced, and didn’t have to reinvent the wheel.</p>\n<p>One day, you receive a strange e-mail. A customer is experiencing some really strange behavior when trying to unlock your premium features. It makes no sense to you, because no one else ever reported this. After hours of debugging, you finally ask your customer to deactivate everything else, except your plugin, and then: It works! Hmm. Your plugin seems to somehow be incompatible with another plugin. My plugin.</p>\n<p>You realize this after hours of going through source code of all the other plugins the customer had installed. When you realize that we both use the license manager, a bell rings. Could this really be it? If so, how come no <code>fatal errors: cannot redeclare class</code> was caused by PHP?</p>\n<p>A week earlier, I had bumped the required version of the license manager in my plugin to the latest version, which included some (fictional) breaking changes. After even more debugging and <code>var_dump()</code>’ing, you realize that my version of the license manager is also the version loaded by PHP in your plugin. You find that really strange because you specifically required another version of the license manager with Composer. You don’t really know what to do about this.</p>\n<p>Because there really isn’t much you can do about it.</p>\n<h3>What happened here?</h3>\n<p>Now that we have all seen the problem, let’s take a moment to go through what actually happened in the narrative. First of all, why didn’t PHP cause a fatal error when two classes obviously had the same name that both of us included the license manager?</p>\n<p>The reason for this is that we used an autoloader generated by Composer. This autoloader scans the diretory structure of our dependencies and adds every class to the autoloader. If a class has already been added, Composer will ignore it. Silently. I have written a small code example if you want to see it for yourself. <a href=\"https://github.com/petersuhm/Illustrating-WordPress-Dependency-Issue\" target=\"_blank\">It’s on GitHub</a>.</p>\n<p>Why was my version of the license manager included before yours?</p>\n<p>This happened because my plugin had a name that caused it to be loaded before yours. Maybe, in the future, we will all name our plugins “Aaaaaa My Plugin” in order to be loaded first!</p>\n<p>So to sum up, the main issue here is that we won’t know which version of our dependencies are available to us at which time. It simply depends on factors we can’t fully control as plugin developers.</p>\n<h3>Is this a Composer specific issue?</h3>\n<p>No. It really isn’t. WordPress doesn’t have a way of dealing with third party code in plugins or themes. Therein lies the problem. The reason why I’m talking about Composer is that it is gaining a lot of traction these days. If WordPress developers want to use Composer in plugins released via WordPress.org, this needs to be solved somehow. Otherwise, we will see true chaos when all plugins starts to be incompatible with each other because they use different versions. Welcome to debugging hell.</p>\n<h3>What can we do about this?</h3>\n<p>Someone who has been really concerned about this and has worked hard to find a potential solution is <a href=\"https://twitter.com/CoenJacobs\" target=\"_blank\">Coen Jacobs</a>. I decided to reach out to Coen and ask him if he thinks there is anything we can do about this.</p>\n<p><strong>Many developers are already including 3rd party code in their plugins. Is this really a problem?</strong></p>\n<p>Yes, this is already a problem in the plugins ecosystem. It will become even worse when more people figure out it’s a good idea to put common functionality in separate packages. These packages can then be bundled with multiple plugins and the issue will appear more and more. I’ve been speaking to a couple developers who have already been through debug hell trying to find out what’s causing this issue.</p>\n<p><strong>Moving forward, would you suggest developers stop including 3rd party code in their plugins?</strong></p>\n<p>I’m a bit torn on this subject. It makes no sense from a developers point of view to tell people to stop bundling shared packages in their plugins. On the other hand, everybody wants the best possible user experience for their users. It’s a tough decision to make for sure.</p>\n<p>At this point, I want to push WordPress related development forward. I want to share libraries and use libraries shared by others. Nobody should be reinventing the wheel over and over again. So I would take the risk of running into issues like this, solving the problems as they show up.</p>\n<p>This also means that I’ll be doing my damned best to find a long term solution for this issue. More people will start using Composer, more people will bundle libraries with their plugins. This problem will show up more often, so it’s time to fix it.</p>\n<p><strong>What can plugin developers do to prevent this problem?</strong></p>\n<p>There is a workaround that I have seen some people use already. It basically comes down to moving your dependency to the namespace of your plugin. Danny van Kooten <a href=\"https://github.com/ibericode/scroll-triggered-boxes/commit/9ceef204073e4049b82833e96c0202a5754fd230\" target=\"_blank\">did this for one of his plugins</a>. This is not ideal however. Every time he updates his dependencies, he has to go through all the files and change the namespaces again. Now this is not such a big task for a relatively small library like Pimple, but a massive undertaking for larger libraries.</p>\n<p>This can only be done with namespaces though, so you’ll have to make your plugin require PHP 5.3+ as well. I’m not gonna lie, I think every plugin should start doing that sooner or later, but it’s definitely something you need to consider when you decide to do this.</p>\n<p><strong>What would the ideal solution be, if there is any?</strong></p>\n<p>The ideal situation would be using some sort of dependency manager. There is of course Composer, the most used dependency manager. Composer is very hard, if not impossible, to use for the vast majority of the WordPress users. It’s a developer’s tool after all.</p>\n<p>WordPress should make this easier for its end users, while still enabling developers to utilize pretty much any package they want. On this thought, I have started putting together the <a href=\"https://github.com/coenjacobs/wordpress-composer-installer\" target=\"_blank\">WordPress Composer Installer</a> plugin, which does all the hard Composer work while people install plugins as they always have. As soon as I am been able to finish this up, I’ll integrate it properly into the whole plugin installer flow.</p>\n<p>Now maybe one day, this can be integrated in core WordPress. It has a long way to go, but the proof of concept already works.</p>\n<h3>Conclusion</h3>\n<p>If you have been reading this far, first of all: Thank you. Second of all, I hope you now see how this is something that will eventually become a problem. Our current situation is very frustrating, because we simply don’t have the tools we need. Still, I think it’s important that we keep talking about this and make sure that we all, as WordPress developers, understand the potential issues caused by conflicting third party dependencies in our code.</p>\n<p>Finally, I want to mention one more time that this is not a Composer issue. It’s a WordPress 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:\"Mon, 06 Jul 2015 12:03:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:83:\"WPTavern: Resonar: A Free WordPress Blog Theme Designed to Showcase Featured Images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45927\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wptavern.com/resonar-a-free-wordpress-blog-theme-designed-to-showcase-featured-images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2501:\"<p><a href=\"https://wordpress.org/themes/resonar/\" target=\"_blank\">Resonar</a> is an elegant WordPress blog theme that was launched in mid-March on WordPress.com and is now available to self-hosted WordPress sites. This theme makes a big impact with its strong typography and fullscreen featured images.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/resonar-screenshot.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/resonar-screenshot.jpg?resize=660%2C495\" alt=\"resonar-screenshot\" class=\"aligncenter size-full wp-image-46158\" /></a></p>\n<p>Resonar was designed by <a href=\"http://takashiirie.com/\" target=\"_blank\">Takashi Irie</a>, the same designer for the Twenty Fifteen and Twenty Fourteen default themes. Irie’s designs are also behind the popular <a href=\"http://wptavern.com/espied-a-free-wordpress-portfolio-theme-for-designers-and-photographers\" target=\"_blank\">Espied</a> and <a href=\"https://wordpress.org/themes/ryu/\" target=\"_blank\">Ryu</a> themes.</p>\n<p>The homepage for Resonar is created by assigning a sticky post with a large featured image (ideally 2000px wide and 1500px high). If you frequently change this sticky post, your site will always have a fresh focal point on the homepage.</p>\n<p>If you’re looking for a theme that highlights longform posts, Resonar fits the bill with its unique styling for blockquotes, pull quotes, overhanging images.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/resonar-quotes.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/resonar-quotes.jpg?resize=660%2C915\" alt=\"resonar-quotes\" class=\"aligncenter size-full wp-image-46167\" /></a></p>\n<p>The centered blog layout keeps the focus on the content, but you don’t have to sacrifice widget areas to use the theme. Clicking on the ellipsis icon in the main menu will reveal a 576px-wide slide-out sidebar where you can drop in widgets and display a social links menu.</p>\n<p>As Resonar revolves around fullscreen featured images, you’ll need to be prepared to have a 2000px by 1500px image for each post in order to keep the theme looking its best. Check out the <a href=\"https://resonardemo.wordpress.com/\" target=\"_blank\">live demo</a> on WordPress.com to see Resonar in action. Self-hosted WordPress blog owners can <a href=\"https://wordpress.org/themes/resonar/\" target=\"_blank\">download the theme from WordPress.org</a> or install it via the admin themes browser.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 04:41:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Matt: Trevor Noah & Jerry Seinfeld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45210\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://ma.tt/2015/07/trevor-noah-jerry-seinfeld/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:425:\"<p> </p>\n<p><a href=\"http://comediansincarsgettingcoffee.com/trevor-noah-thats-the-whole-point-of-apartheid-jerry\">Trevor Noah, the new host of the Daily Show, was on Jerry Seinfeld’s Comedians in Cars Getting Coffee show</a>, and it was quite interesting. I really love this show, even when it’s slow you get some fun thoughts. I would embed the video but that doesn’t seem possible.</p>\n<p> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 03:24:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:26:\"Matt: Automattic Challenge\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45213\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://ma.tt/2015/07/automattic-challenge/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:313:\"<p>“We have two interesting challenges for you – to write the shortest code possible and to write the fastest code possible.” One of the prizes is a conference ticket and three nights in a hotel. Check it out over at the <a href=\"http://automattic.paris/\">Automattic React Europe Challenge</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 05 Jul 2015 05: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: New VideoPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45204\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://ma.tt/2015/07/new-videopress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:283:\"<p><a href=\"https://en.blog.wordpress.com/2015/07/01/videopress-next/\">We launched a shiny new version of VideoPress</a> that makes mobile better, is way faster, has a sleek UI, and is HTML5. This is targeted at WordPress.com users right now, but will expand for everyone soon.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 04 Jul 2015 05:56:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:88:\"WPTavern: Automattic Overhauls VideoPress and Open Sources Technologies Used to Build It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://wptavern.com/automattic-overhauls-videopress-and-open-sources-technologies-used-to-build-it\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2837:\"<p><a href=\"http://videopress.com/\">VideoPress</a>, Automattic’s video hosting service, has undergone a <a href=\"https://en.blog.wordpress.com/2015/07/01/videopress-next/\">complete overhaul</a>. The video player is now responsive and adjusts well to mobile devices. Videos can be embedded anywhere and are easier to share, thanks to permalinks.</p>\n<p>There’s also a couple of neat options for sharing videos. Similar to YouTube, you can select a time stamp where the video will start playing. You can also loop and autoplay videos.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/VideoPressSharingOptions.png\"><img class=\"wp-image-46114 size-full\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/VideoPressSharingOptions.png?resize=566%2C319\" alt=\"VideoPress Sharing Options\" /></a>VideoPress Sharing Options\n<p>One thing I noticed is that pasting a VideoPress permalink into the self hosted WordPress visual editor does not load the video. This is because WordPress does not have <a href=\"https://codex.wordpress.org/Embeds\">oEmbed support</a> for VideoPress.</p>\n<p>To embed videos into posts, you need to copy the HTML embed code from the video and past it into the WordPress text editor. Pasting the code into the visual editor doesn’t work. Guillermo Rauch, who works on the VideoPress team at Automattic says they are <a href=\"https://en.blog.wordpress.com/2015/07/01/videopress-next/?c=221756#comment-221760\">working on adding oEmbed support</a>.</p>\n<p>The new video player takes up little space and is unbranded. According to Rauch, the player’s skin and behavior is controlled by JavaScript, HTML and CSS. This opens the door for customizations by theme developers in the future. Thanks to major performance enhancements, pages with videos on them will load faster, even for those on slow internet connections. Here’s an example of a video using the new player.</p>\n<p></p>\n<p></p>\n<p>A feature that I think a lot of people will enjoy is real-time seek which lets you skim through videos and helps you start playing at a desired point. Last but not least, the libraries used to build the new video player have been open sourced, including <a href=\"https://github.com/automattic/jpeg-stream\">jpeg-stream</a>, <a href=\"https://github.com/automattic/pixel-stack\">pixel-stack</a>, and <a href=\"https://github.com/automattic/video-thumb-grid\">video-thumb-grid</a>.</p>\n<p>If you’re interested in using VideoPress, you need a <a href=\"https://wordpress.com/plans/\">Premium or Business</a> plan on WordPress.com. The premium plan is $99 per year and includes 13GB of space. Videos take up a lot of space and one has to wonder if it’s worth the cost or if YouTube is a better option. If you use VideoPress, let us know what you think of these improvements.</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, 03 Jul 2015 03:46: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: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:68:\"Matt: Domain Anonymity and the Brilliance of Entertainment Lobbyists\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45202\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://ma.tt/2015/07/domain-anonymity-and-the-brilliance-of-entertainment-lobbyists/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1747:\"<blockquote><p>To rid the internet of piracy, entertainment companies are willing to greatly reduce privacy, at least where website registration is concerned.</p>\n<p>Where the entertainment industry views proxy registration as a pirate’s tool for obfuscation, privacy advocates see identity concealment as a feature that can enable free speech and freedom from harassment.</p></blockquote>\n<p>So there’s <a href=\"http://www.buzzfeed.com/hamzashaban/proposed-domain-name-rule-threatens-website-owner-anonymity\">a new proposal to force any “commercial” website, which could cover pretty much anything, to have real WHOIS/contact info</a>. This is a terrible idea, and of course there are already ample and simple means to bypass proxy services being actually abused with a court order. But they want to go a step further, so potentially a parenting blogger with ads or affiliate links on their site would be forced to put their actual home address and phone number in a public directory anyone on the internet can access, or break the law. What could go wrong? <a href=\"https://www.eff.org/deeplinks/2015/06/changes-domain-name-rules-place-user-privacy-jeopardy\">EFF has more about why this impacts user privacy</a>.</p>\n<p>I think the better question here, is <em>when has the entertainment industry <strong>ever</strong> proposed something good for consumers or the internet?</em> I’m not kidding, 100% serious: have they ever been right?</p>\n<p>It seems like a good approach for governing bodies like FCC, ICANN, or Congress to just blanket oppose or do the opposite of what MPAA or COA propose, and they’ll be on the right side of history and magically appear to be a very tech-savvy candidate or regulator.</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, 02 Jul 2015 22:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:62:\"WPTavern: Lasso Adds Real Time Revision Restoring 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=46095\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wptavern.com/lasso-adds-real-time-revision-restoring-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:3491:\"<p>This week Nick Haskins launched an update to <a href=\"https://lasso.is/\" target=\"_blank\">Lasso</a>, which introduces real time revision restoring. Lasso, a plugin originally designed to improve the experience of using of <a href=\"http://aesopstoryengine.com/\" target=\"_blank\">Aesop Story Engine</a>, is currently one of the most user-friendly and well-supported attempts at bringing frontend editing to WordPress.</p>\n<p>The plugin works with or without Aesop Story Engine. Lasso brings a minimal, unobtrusive approach to editing that keeps the focus on content creation. Haskins hopes to ship <a href=\"https://lasso.is/the-road-to-version-one/\" target=\"_blank\">version 1.0</a> of the plugin this fall, and the source was recently <a href=\"http://wptavern.com/lasso-frontend-editing-plugin-for-wordpress-now-available-on-github\" target=\"_blank\">made available to developers and testers on GitHub</a>.</p>\n<p>“Our goal is simple: be a front-end editor that negates the use of the WordPress post editor,” Haskins said. “One of the last areas to tackle in this endeavor was revisions.”</p>\n<p><a href=\"https://lasso.is/0-9-6-release-notes/\" target=\"_blank\">Lasso 0.9.6</a> allows users to restore revisions in real time while editing a post on the front end. The plugin introduces a new and unique approach to displaying revisions, removing the default “diff style” comparison in favor of a simpler sliding interface.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/lasso-revisions.gif\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/lasso-revisions.gif?resize=948%2C723\" alt=\"lasso-revisions\" class=\"aligncenter size-full wp-image-46097\" /></a></p>\n<p>Lasso displays the last six revisions and users can click on the time to restore a revision live. It functions like a little piece of magic on the front end.</p>\n<p>“Because Lasso already operates within the post_content, there wasn’t really a huge technical challenge to overcome,” Haskins said. “The biggest bottle neck was finding a way to do this that would cause no confusion.</p>\n<p>“WordPress revisions use a “diff style” comparison, which I don’t think benefits 80% of WordPress users. After all they’re not coders. So we decided to restore the post as it was, and most importantly, the context that it lives in,” he said.</p>\n<p>The live revisions restoring supports images, markup, and everything else that you would expect to be parsed into HTML, but Haskins has a few outstanding items he hopes to polish up.</p>\n<p>“Things like shortcodes and ombeds are not processed into HTML as they need a page refresh, so finding a way to parse these live is just about the only technical challenge that we still have to overcome,” he said. “This doesn’t prevent things from working, but I think a user expects these items to show as they appear on site.”</p>\n<p>This is the first time a plugin author has done anything like this with revision display and restore. It transforms the process of reviewing revisions into a visual and interactive experience. Removing the “diff style” comparison makes it much easier for the average content creator to decide on which revision to restore. If you want to test it out or take a closer look at how it works, check out <a href=\"https://github.com/AesopInteractive/lasso\" target=\"_blank\">Lasso on GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 19:19: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: WordPress 4.3 Beta 1 Now Available for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46057\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wptavern.com/wordpress-4-3-beta-1-now-available-for-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3292:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/testing.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/testing.jpg?resize=960%2C474\" alt=\"testing\" class=\"aligncenter size-full wp-image-46092\" /></a></p>\n<p>WordPress 4.3 is right around the corner with <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\" target=\"_blank\">beta 1</a> released and ready for testing. According to the <a href=\"https://make.wordpress.org/core/version-4-3-project-schedule/\" target=\"_blank\">4.3 project schedule</a>, there will be no more commits for new enhancements or feature requests from this point on. Contributors are now focusing on bug fixes and documentation ahead of August 18th, the target release date.</p>\n<p>With all the controversy surrounding WordPress 4.3’s inclusion of <a href=\"https://core.trac.wordpress.org/ticket/32576\" target=\"_blank\">menus in the customizer</a>, you may have missed a few other lesser known features that are on track to be included and need to be put through the paces. The <a href=\"http://wptavern.com/wordpress-4-3-adds-new-site-icons-feature-and-a-text-editor-to-press-this\" target=\"_blank\">new site icons feature</a> was added to trunk this week, along with a text editor for the Press This posting interface.</p>\n<p>WordPress lead developer Mark Jaquith has been working on <a href=\"https://core.trac.wordpress.org/ticket/32589\" target=\"_blank\">making passwords more secure</a>. As of 4.3, WordPress will no longer send passwords via email. The password strength meter is now more tightly integrated. It will warn users upon selection of a weak password and can also suggest a secure password.</p>\n<p>One interesting new improvement added to the post editor is <a href=\"https://core.trac.wordpress.org/ticket/31441\" target=\"_blank\">recognition of some basic markdown-esque patterns inside TinyMCE</a>:</p>\n<blockquote><p>Certain text patterns are automatically transformed as you type, including * and – transforming into unordered lists, 1. and 1) for ordered lists, > for blockquotes and one to six number signs (#) for headings</p></blockquote>\n<p>For those who are used to formatting text this way, the post editor in WordPress 4.3. will be a more friendly place for speedy composition.</p>\n<p>Admin post and page <a href=\"https://core.trac.wordpress.org/ticket/32395\" target=\"_blank\">list tables</a> will take a huge leap forward to become more responsive in this release, improving the experience of using WordPress on smaller screens. Previously, the columns that could not fit were truncated, but WordPress 4.3 will allow columns to be toggled into view.</p>\n<p>Check out release lead Konstantin Obenland’s <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\" target=\"_blank\">beta announcement</a> post to download a zip of the beta. If you want to help test, the easiest way is to get hooked up via the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\">WordPress Beta Tester</a> plugin. Bug reports are welcome on the <a href=\"https://wordpress.org/support/forum/alphabeta\" target=\"_blank\">Alpha/Beta support forums</a> and can also be filed on <a href=\"https://make.wordpress.org/core/reports/\" target=\"_blank\">WordPress trac</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, 02 Jul 2015 16:39:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:68:\"WPTavern: WPWeekly Episode 197 – WordPress Theme Review 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=46068&preview_id=46068\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wptavern.com/wpweekly-episode-197-wordpress-theme-review-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:2582:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"https://profiles.wordpress.org/chipbennett\">Chip Bennett</a>, <a href=\"https://profiles.wordpress.org/jcastaneda\">Jose Castaneda</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, and <a href=\"https://profiles.wordpress.org/cais\"><span class=\"st\">Edward Cassie</span></a> who are members of the <a href=\"https://make.wordpress.org/themes/\">WordPress Theme Review Team</a>. We learn why the team exists, its goals, and what the process is for getting a theme into the <a href=\"https://wordpress.org/themes/\">official directory</a>.</p>\n<p>The team clarified the difference between <a href=\"https://make.wordpress.org/themes/handbook/review/required/\">requirements</a> and guidelines. We discuss the results of three separate surveys that indicate users want to see improvements to the way theme demo content is displayed. Last but not least, we learn how you can <a href=\"https://make.wordpress.org/themes/handbook/get-involved/become-a-reviewer/\">get involved</a> with the team.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://tommcfarlin.com/the-wordpress-community-a-comedy-of-drama-ego-oligarchies-and-more/\">The WordPress Community (A Comedy of Drama, Ego, Oligarchies, and More)</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/plugin-grouper/\">Plugin Grouper</a> allows users to group plugins together to make them easier to manage.</p>\n<p><a href=\"https://wordpress.org/plugins/import-liked-youtube-videos/\">WordPress Import YouTube Liked Videos</a> helps users connect to their YouTube account and import their recently liked videos.</p>\n<p><a href=\"https://wordpress.org/plugins/author-chat/\">Author Chat</a> is an internal chat system that lets your authors or users with access to the dashboard chat with each other.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, June 8th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #197:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 16:35:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:75:\"WPTavern: Ship: A New App for Shipping Plugins from GitHub to 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wptavern.com/ship-a-new-app-for-shipping-plugins-from-github-to-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4863:\"<p>One of the small hurdles to hosting a plugin on WordPress.org is the fact that you have to use SVN to ship your updates. Most developers are far more familiar with Git. It’s not difficult to learn how to use SVN for the sake of WordPress.org plugins, but many find it to be inconvenient.</p>\n<p><a href=\"http://ship.getherbert.com/\" target=\"_blank\">Ship</a> is a new application designed to eliminate this hassle by helping developers ship plugins directly from GitHub to WordPress.org. All you have to do is tag the release on GitHub and the app will automatically push updates to the plugin’s official SVN repo on WordPress.org.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/ship.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/ship.png?resize=1025%2C641\" alt=\"ship\" class=\"aligncenter size-full wp-image-46026\" /></a></p>\n<p>The application was created by <a href=\"https://twitter.com/jasonagnew__\" target=\"_blank\">Jason Agnew</a> and his team at <a href=\"http://bigbitecreative.com/\" target=\"_blank\">Big Bite Creative</a>, authors of the <a href=\"http://wptavern.com/herbert-a-new-wordpress-plugin-framework\" target=\"_blank\">Herbert plugin framework</a>. The team built the app in Laravel in just five days. It’s currently hosted on Digital Ocean, but Agnew plans to move it over to AWS once Ship has gained more users.</p>\n<p>“We’ve reached a point where most developers are familiar with GitHub, and as a result, Git,” Agnew said in his <a href=\"http://bigbitecreative.com/introducing-ship-publishing-your-wordpress-plugin/\" target=\"_blank\">announcement</a>. “If you plan to do anything open source you’re likely to find yourself on there – even Apple has made the move. Unfortunately WordPress.org uses SVN, which most developers don’t use daily, or are even familiar with. It’s easy enough to pick up, but why should you learn something new to update your plugin?”</p>\n<p>With the help of the Ship app, developers won’t have to touch SVN at all during the process of sending updates to WordPress.org plugin repositories.</p>\n<p>“For years most plugin developers have used GitHub and then shipped to WordPress.org SVN using a bash script,” Agnew said. “You’ll find plenty out there, but they require you to keep both a Git and SVN repo on your machine — plus you need to remember to run it every time you tag a new release. We thought there must be a simpler way to do this, so we put our heads together. After a few days we had put together the first version of Ship.”</p>\n<p>In order to use the app you must have already <a href=\"https://wordpress.org/plugins/add/\" target=\"_blank\">submitted your plugin zip file to WordPress.org</a>. You can then sign into the <a href=\"http://ship.getherbert.com/\" target=\"_blank\">Ship</a> app with GitHub and authorize its access to your repositories.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/authorize-ship-app.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/authorize-ship-app.jpg?resize=716%2C434\" alt=\"authorize-ship-app\" class=\"aligncenter size-full wp-image-46044\" /></a></p>\n<p>The app will then fetch your repositories and you’ll have the opportunity to select the ones you want to link up with a WordPress.org SVN address in order to start syncing updates.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/ship-sync-reops.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/ship-sync-reops.jpg?resize=842%2C525\" alt=\"ship-sync-reops\" class=\"aligncenter size-full wp-image-46046\" /></a></p>\n<p>Big Bite Creative has built many custom plugins over the years, but Agnew said they never had the time to open source them.</p>\n<p>“Now with Herbert out there we want to start releasing more plugins on Github – Ship is part of making that process easier,” he said.</p>\n<p>In the future, Agnew and his team would like to eliminate the need to first submit your plugin on WordPress.org and instead have that process initiated by Ship. They used “Sign in with GitHub” to save time when initially building the app but would also like to open it up for other services like BitBucket.</p>\n<p>The new Ship app effectively gets around WordPress.org’s SVN requirement for plugin repos, which has long been a minor deterrent and annoyance for developers wanting to host their work in the directory. If Ship is successful in making plugin developer’s lives easier, the result will be more open source extensions available to WordPress users. Agnew and his team welcome feedback on the app and have created <a href=\"https://github.com/getherbert/ship\" target=\"_blank\">an empty repo on GiHub</a> to capture any suggestions or issues.</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, 02 Jul 2015 01:13: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:\"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: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:64:\"WPTavern: Which One of These Six Cities Should Host WordCamp 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46027\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wptavern.com/which-one-of-these-six-cities-should-host-wordcamp-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1498:\"<p>When Matt Mullenweg <a href=\"http://wptavern.com/wordcamp-us-2015-now-accepting-applications-for-host-city\">put out the call</a> to cities interested in hosting WordCamp US, we learned the criteria they would have to meet in order to qualify. Venues would need to seat approximately 1,000-2,00 people, have hotels within 3 miles of the venue, hotel costs for a range of budgets, and average flight costs from the West Coast, East Coast, Midwest, Mexico, and Canada.</p>\n<p>Applications to host WordCamp US 2015 <a href=\"https://make.wordpress.org/community/2015/07/01/wordcamp-us-update/\">officially closed today</a>. Six cities submitted applications to host the event, they include:</p>\n<ul>\n<li>Chattanooga</li>\n<li>Chicago</li>\n<li>Detroit</li>\n<li>Orlando</li>\n<li>Philadelphia</li>\n<li>Phoenix</li>\n</ul>\n<p>On the Make WordPress Community site, Cami Kaos says applications are being carefully reviewed and organizers of the host city will be contacted as soon as possible. Dates for the event won’t be given until a host city and venue is chosen.</p>\n<p>Out of all the cities selected, I want WordCamp US to be in Chicago. I love Chicago and it’s a quick flight from Cleveland. The city also has awesome pizza. Take the poll below and vote for which city you think should host WordCamp US. This poll is only for fun and will not affect the outcome of the host city.</p>\nNote: There is a poll embedded within this post, please visit the site to participate in this post\'s poll.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 00:28:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:65:\"WPTavern: It’s Not a WordPress Problem, It’s a People Problem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wptavern.com/its-not-a-wordpress-problem-its-a-people-problem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1503:\"<p>Tom McFarlin <a href=\"https://tommcfarlin.com/the-wordpress-community-a-comedy-of-drama-ego-oligarchies-and-more/\">published a thoughtful piece</a> on what he perceives to be the sad state of the WordPress community. Too many people are participating in behavior that is embarrassing from the outside looking in. It’s a long read, but it highlights the need for members of the WordPress community to stop and reflect on our actions.</p>\n<p>The WordPress community is described by many as being open, friendly, with a willingness to help. It’s all of those things but in the past few months, discussions on hotly debated topics such as the Customizer have brought the worst out of people.</p>\n<p>Criticism is one thing, personal attacks are another and simply unnecessary. Unfortunately, text is a difficult medium to decipher context. Emoticons and emoji help, but it doesn’t solve the problem. We as a community need to approach discussions with open minds. We can have different perspectives and viewpoints but we need to clearly communicate them without tearing the opposition down in the process. We must also learn to agree to disagree.</p>\n<p>McFarlin’s post is an inward facing moment for the WordPress community. Is this how we want people on the outside to portray us? WordPress is software created by passionate people who work tirelessly to improve the web. Let’s all take a deep breath, collect ourselves, and do more to listen and understand each other.</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, 01 Jul 2015 23:21:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:83:\"WPTavern: WordPress 4.3 Adds New Site Icons Feature and a Text Editor to Press This\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wptavern.com/wordpress-4-3-adds-new-site-icons-feature-and-a-text-editor-to-press-this\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3433:\"<p>WordPress 4.3 is on track to include a new site icons feature, which will allow administrators to easily upload an image to be used as the favicon and app icons for a site. Favicons have traditionally been handled by WordPress themes or plugins, but the new core support means that users no longer have to hunt down an extension to handle this basic site feature.</p>\n<p>This addition landed in 4.3 in response to a four-year old trac <a href=\"https://core.trac.wordpress.org/ticket/16434\" target=\"_blank\">ticket</a> requesting an easier way for non-technical users to upload and crop an image to use as a favicon. Konstantin Obenland, release lead for 4.3, <a href=\"https://core.trac.wordpress.org/changeset/32994\" target=\"_blank\">committed the feature to WordPress trunk</a> this week, along with the following summary of its current capabilities:</p>\n<blockquote><p>This v1 marries Jetpack’s Site Icon module with the Media Modal, reusing code from the Custom Header admin. For now, the core-provided icons will be limited to a favicon, an iOS app icon, and a Windows tile icon, leaving .ico support and additional icons to plugins to add.</p></blockquote>\n<p>After testing WordPress 4.3-alpha, I found that the experience of adding a favicon in the settings panel is smoother and more intuitive than any plugin I’ve ever tried. The screen offers users a nice preview of the image as a favicon and mobile icon. It also doesn’t burden you with any notices about sizes and image quality, unless you attempt to upload an image that is less than 512px in width.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/wordpress-site-icon.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/wordpress-site-icon.jpg?resize=848%2C691\" alt=\"wordpress-site-icon\" class=\"aligncenter size-full wp-image-46000\" /></a></p>\n<p>If you want to test the feature, you can provide feedback on the <a href=\"https://core.trac.wordpress.org/ticket/16434\" target=\"_blank\">ticket</a> or via the announcement <a href=\"https://make.wordpress.org/core/2015/06/30/today-in-the-nightly-site-icons-text-editor-in-press-this/\" target=\"_blank\">post</a>.</p>\n<p>Another major enhancement added to 4.3 this week is a text editor for Press This. Many WordPress users appreciate the streamlined simplicity of the Press This post editor but were held back from using it to compose posts due to the lack of HTML editing support. The addition of a text editor offers the same capabilities as the standard editor in <em>post-new.php</em>.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/press-this-text-editor.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/press-this-text-editor.jpg?resize=1025%2C466\" alt=\"press-this-text-editor\" class=\"aligncenter size-full wp-image-46007\" /></a></p>\n<p>Press This will also receive a few <a href=\"https://core.trac.wordpress.org/changeset/32999\" target=\"_blank\">polishes</a> in addition to the text editor, including auto-scrolling when the caret moves out of the viewport while the user is typing (similar to editor-expand) and auto-resizing for the textarea. WordPress 4.3’s improvements to Press This are not exactly a replacement for the dearly-departed distraction-free writing mode, but the post editor at <em>wp-admin/press-this.php</em> is quickly becoming one of the more zen-like interfaces in the admin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jul 2015 20:50:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Safari the new IE?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45200\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://ma.tt/2015/07/safari-the-new-ie/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:291:\"<p>“In recent years, Apple’s strategy towards the web can most charitably be described as ‘benevolent neglect.\'” <a href=\"http://nolanlawson.com/2015/06/30/safari-is-the-new-ie/\">Nolan Lawson throws the gauntlet down by asking Is Safari the new Internet Explorer?</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, 01 Jul 2015 18:28:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:27:\"Matt: Gut Bacteria and Mood\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45193\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://ma.tt/2015/06/gut-bacteria-and-mood/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"<p><a href=\"http://www.nytimes.com/2015/06/28/magazine/can-the-bacteria-in-your-gut-explain-your-mood.html\">Can the Bacteria in Your Gut Explain Your Mood?</a> Answer: Maybe.</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, 01 Jul 2015 06:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: WordPress for iOS 5.3 Released With Refreshed Stats and a New Layout for Posts and Pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45958\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"http://wptavern.com/wordpress-for-ios-5-3-released-with-refreshed-stats-and-a-new-layout-for-posts-and-pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2620:\"<p>WordPress for iOS 5.3 <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=\">is available on iTunes</a> and has a few new features. Post listings display more content making them easier to browse. A search feature has been added to the post listing screen that displays results as you type.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressForIos53Search.png\"><img class=\"size-large wp-image-45969\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressForIos53Search.png?resize=281%2C500\" alt=\"Search bar in WordPress for iOS 5.3\" /></a>Search bar in WordPress for iOS 5.3\n<p>I tested the search feature on two different sites. The first site is on WordPress.com and doesn’t use featured images. Search results displayed quickly with little lag.</p>\n<p>The second is a self hosted WordPress site that uses featured images. I noticed lag as the app tried to display real-time results as I typed which also lagged the app. I couldn’t do anything else within the app until the search query finished.</p>\n<p>I don’t use the search feature often and this experience has me concerned. Instead of being fast and fluid, it’s chunky and slow. I also don’t see the need to display featured images in search results. I think this would make the search query and the app faster.</p>\n<p>WordPress.com and self hosted WordPress sites are now combined under My Sites. Instead of seeing a spinning circle when checking stats, there’s a progress bar at the top. This gives the appearance that the stats page loads faster. The stats page also has a subtle color scheme change that makes things more pronounced.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressiOS53StatsPage.png\"><img class=\"size-large wp-image-45975\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressiOS53StatsPage.png?resize=281%2C500\" alt=\"WordPress for iOS 5.3 Stats Page\" /></a>WordPress for iOS 5.3 Stats Page\n<p>Last but not least, 5.3 includes <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=%E2%9C%93&q=is%3Aclosed+is%3Aissue+milestone%3A5.3+label%3Abug+\">several bug fixes</a>. Overall, 5.3 is a decent update. Remember to use caution when searching a site with a lot of posts that use featured images. WordPress for iOS 5.3 <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=\">is available for free on iTunes</a>. If you encounter any issues in 5.3, please report them <a href=\"https://ios.forums.wordpress.org/\">in the support forum</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, 01 Jul 2015 00:26:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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: Filter to Disable the Customizer Shot Down on WordPress Trac\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45837\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wptavern.com/filter-to-disable-the-customizer-shot-down-on-wordpress-trac\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7716:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/do-not-shut-off.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/do-not-shut-off.jpg?resize=823%2C420\" alt=\"photo credit: shutoff - (license)\" class=\"size-full wp-image-45971\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/86846941@N00/404597014\">shutoff</a> – <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">(license)</a>\n<p>WordPress 4.3 will <a href=\"http://wptavern.com/menu-customizer-officially-approved-for-merge-into-wordpress-4-3\" target=\"_blank\">introduce menu management via the customizer</a>, providing live previews on the frontend for adding, deleting, and ordering menu items. Although users still have the option to manage menus using the admin interface, developers who are not keen on the feature are searching for an easy way to disable the customizer and remove its links throughout WordPress.</p>\n<p>In certain scenarios involving client work, the customizer can be more trouble than it’s worth and may not be a beneficial addition to a custom-tailored WordPress admin.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/pollyplummer\">@pollyplummer</a> very interesting. I\'m not against the new updates but the customizer is hell in the agency world.</p>\n<p>— Edward McIntyre (@twittem) <a href=\"https://twitter.com/twittem/status/613500444162195456\">June 24, 2015</a></p></blockquote>\n<p></p>\n<p><a href=\"https://twitter.com/hereswhatidid\" target=\"_blank\">Gabe Shackle</a>, an application developer and UI engineer at <a href=\"http://www.risdall.com/\" target=\"_blank\">Risdall</a>, created a <a href=\"https://core.trac.wordpress.org/ticket/32772\" target=\"_blank\">ticket</a> on WordPress trac last week, requesting a filter to disable the customizer. His patch offers developers an easy way to enable the ‘no-customizer-support’ class within the body tag.</p>\n<blockquote><p>Due to the fact that the ‘customizer-support’ class is added via JavaScript on page render, it cannot be manipulated using any core filters or actions currently.</p>\n<p>By setting the filter value to false, the Customizer is essentially hidden from the admin and the links that were currently pointing at the Customizer (widgets, themes, etc…) are reverted to their previous dashboard destinations.</p></blockquote>\n<p>Currently, developers who want to disable the customizer have to employ a combination of different methods in order to effectively remove everything that the customizer introduces into the admin.</p>\n<p>“This filter makes this process into a simple boolean filter so that developers who do not want or need the Customizer can easily remove it,” Shackle said.</p>\n<p>WordPress lead developer <a href=\"https://profiles.wordpress.org/dd32\" target=\"_blank\">Dion Hulse</a> replied to the ticket to say that although he doesn’t use the customizer much himself, he doesn’t think that WordPress users would benefit from an easy way to turn it off.</p>\n<blockquote><p>Personally as much as I don’t use the customizer a lot of the time, I think offering a filter to disable it is probably not in the best interests of WordPress users.</p>\n<p>The customizer, as much as some dislike it, is a major component of the future of WordPress UX – whether that is a good or bad thing remains to be seen by some – but like it or hate it, it’s here.</p></blockquote>\n<p>Hulse <a href=\"https://core.trac.wordpress.org/ticket/32772#comment:1\" target=\"_blank\">suggested</a>, as an alternative, that a better way to disable it would be to remove the <code>customize</code> capability from the roles.</p>\n<p>Shackle further explained that he was attempting to follow the precedent of the admin bar, which he considers to be a similar type of UX component.</p>\n<p>“The Admin Bar can be disabled not only by a filter but by a global variable, core function, and user profile setting,” he said. “The Customizer has none of these options.”</p>\n<p>Nick Halsey, the developer of the Menu Customizer plugin that is being merged into 4.3, <a href=\"https://core.trac.wordpress.org/ticket/32772#comment:3\" target=\"_blank\">replied</a> based on assumptions about why Shackle might request a filter to disable the feature:</p>\n<blockquote><p>I have yet to see a valid reason for something like this. In most cases, concerns about not wanting users to have access to the Customizer stem from the fact that you’re not giving them the appropriate capabilities. And the customize capability can be used to turn off the Customizer if you really must.</p>\n<p>While you can remove the customize meta capability (or re-map it or whatever), doing so simply because you don’t want to train users or don’t want to use the Customizer is doing yourself and your users an enormous disservice. As dd32 mentioned, the Customizer will only continue to grow in importance within WordPress. Additionally, user testing has shown that the Customizer experience is generally easier for users to grasp than the admin, which largely stems from the value of having live-previewing available. We’re putting a significant amount of time into the Customizer every release to continue improving it, conducting frequent user tests along the way to optimize usability.</p></blockquote>\n<p>Halsey promptly closed the ticket following this exchange. I followed up with Shackle to find out why the proposed alternative to remove the <code>customize</code> capability is inadequate for his purposes.</p>\n<p>“Mostly I was hoping that the Customizer could be treated more like the admin bar, which has 3+ methods for disabling it,” Shackle said. “Having a clearly labeled filter is, in my opinion, more legible than modifying user capabilities. A PHP developer with virtually no WordPress knowledge could most likely understand much quicker what’s happening with a filter named ‘enable_customizer_support’ rather than ‘map_meta_cap’.”</p>\n<p>Obviously, not all tickets and patches will be considered valid by the maintainers of WordPress core components, but Shackle was disappointed by the defensive response to the discussion.</p>\n<p>“Honestly, had the reply simply been something along the lines of ‘You should just use the <code>customize</code> capability to achieve the same effect’ I really wouldn’t have had any issue,” he said.</p>\n<p>“Unfortunately, it seems any approach other than ‘Customizer for all things!’ means I get to be told multiple times how much of a disservice I’m doing my clients and what a lazy developer I am for not just re-training my clients how to manage their sites’ appearance.</p>\n<p>“It feels like the Customizer team themselves have an all-or-nothing approach to the project and that anyone who questions this is wrong, regardless of their reasoning,” Shackle said.</p>\n<p>This exchange demonstrates that since core contributors view the customizer as a major part of the future of WordPress, this is one feature where there will be little willingness to support efforts to make it more modular. Disabling support for the customizer will continue to require use of ‘map_meta_cap,’ the same <a href=\"https://github.com/parallelus/customizer-remove-all-parts/blob/master/wp-crap.php#L75\" target=\"_blank\">method</a> the creators of the <a href=\"http://wptavern.com/new-plugin-removes-all-traces-of-the-customizer-in-wordpress\" target=\"_blank\">Customizer Remove All Parts</a> plugin have employed.</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, 30 Jun 2015 23:08: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: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:72:\"WPTavern: UpThemes Adds Managed WordPress Hosting to Theme Club Business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45775\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/upthemes-adds-managed-wordpress-hosting-to-theme-club-business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4711:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/upthemes.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/upthemes.jpg?resize=665%2C300\" alt=\"upthemes\" class=\"aligncenter size-full wp-image-45946\" /></a></p>\n<p>After five years of selling themes and support, UpThemes is branching out into the managed WordPress hosting business. Last week the company <a href=\"https://upthemes.com/blog/2015/06/upthemes-hosting/\" target=\"_blank\">announced</a> the new hosting venture and partnership with <a href=\"http://aesopstoryengine.com/\" target=\"_blank\">Aesop Interactive</a>:</p>\n<blockquote><p>We are excited to announce UpThemes Hosting, a managed WordPress hosting solution that includes 40+ premium WordPress themes including our entire theme library, all themes from the collection of Aesop Interactive (makers of Aesop Story Engine), as well as a curated selection of beautifully-designed themes from WordPress.org.</p></blockquote>\n<p>For <a href=\"https://upthemes.com/hosting/\" target=\"_blank\">$20/month</a> customers can host one WordPress site with 5GB disk space and 100GB monthly bandwith. Tech support is included along with 40+ commercial themes from UpThemes and Aesop Interactive. Users have control over their sites as they would with a standard WordPress installation, i.e. FTP access, ability to install plugins and themes, etc.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/upthemes-hosting.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/upthemes-hosting.png?resize=640%2C647\" alt=\"upthemes-hosting\" class=\"aligncenter size-full wp-image-45944\" /></a></p>\n<p>“This is actually a partnership with <a href=\"http://www.pressed.net/\" target=\"_blank\">Pressed.net</a>, a division of <a href=\"http://www.site5.com/p/wordpress/\" target=\"_blank\">Site5</a>, that sits on top of their managed WordPress hosting architecture,” UpThemes co-founder Chris Wallace told the Tavern. “We’ve looked at many opportunities for a hosting partnership over the years and none of the options felt quite right to us, so we waited until there was one that provided our customers with the best hosting service and support.</p>\n<p>“Site5 understood that need and we’ve worked hand-in-hand for many months to finally release this product. We’re very proud of it and think it provides more value than the typical WordPress hosting product.”</p>\n<p>The hybrid combination of hosting plus a theme club is fairly unique in the WordPress ecosystem, but Wallace believes it provides an easier path for UpThemes customers looking to build an online presence.</p>\n<p>“Our audience is mainly DIYers who just need a site up and running,” he said. “We’ve always been looking to make it as easy as possible to purchase and install an UpThemes theme so a hosting platform where all our themes are pre-installed seemed like the perfect solution to the problem of ‘which theme do I pick’ and ‘how do I install a theme’ and ‘will your theme work on my webhost?\'”</p>\n<p>The new hosting product also helps UpThemes deal with the financial volatility and unpredictability of managing a theme club business.</p>\n<p>“From a business perspective, selling themes alone has always made it difficult to pin down our customer acquisition cost and churn rate (meaning the number of customers who stop paying their annual renewals),” Wallace said.</p>\n<p>“Since we offer an annual license, we don’t know if a customer will renew for a whole year, which, as you can imagine, makes it hard to know the lifetime value of the customer. It’s a hard thing to analyze. Some people care enough to renew but most people don’t understand the value enough to care.”</p>\n<p>UpThemes will continue to serve the small business and DIY market and Wallace hopes to add more journalists, storytellers, and photographers with the new Aesop Interactive partnership.</p>\n<p>“Beyond our new hosting venture, we also serve thousands of blogs on WordPress.com, which helps us offer a one-click method of buying and using our themes without any sort of installation required,” Wallace said.</p>\n<p>“I think that really is one of the key points for us: closing the gap on how much knowledge you need to use our themes. We’d like to make it even easier for certain types of customers (e-commerce, for example) to hit the ground running.</p>\n<p>“There are so many variables to creating a successful online business and we just want to give less technical WordPress users an easier path to success.”</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, 30 Jun 2015 17:54:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:30:\"Matt: Loyalists vs Mercenaries\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45198\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://ma.tt/2015/06/loyalists-vs-mercenaries/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:853:\"<blockquote><p>Finally, think about being somewhere other than the Bay Area or NYC. Yes, they are great places to start companies, find talent, and get investment. But they are also places where others start companies, get investment, and find your talent. It’s a ratrace, a treadmill, and it’s grueling. If you can avoid it, you owe it to yourself to try.</p></blockquote>\n<p>Fred Wilson on <a href=\"http://avc.com/2015/06/loyalists-vs-mercenaries/\">Loyalists vs Mercenaries in companies</a>. I’m so happy to see the non-SF/NYC company idea continue to pick up steam, and I think its natural conclusion is distributed work as Automattic does. Like any relationship, I think the most rewarding employee/employer relationships are the ones that grow <a href=\"http://ma.tt/2015/06/ten-years-of-automattic/\">over decades</a>, not just years.</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, 30 Jun 2015 06:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: The Recommended Hosting Page on WordPress.org Starts Over From Scratch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45904\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wptavern.com/the-recommended-hosting-page-on-wordpress-org-starts-over-from-scratch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4803:\"<p>One of the most difficult tasks for new WordPress users is choosing a good webhost. The process can involve getting recommendations from friends, searching Google for reviews, and taking advantage of trial offers. Since 2005, WordPress.org has had a <a href=\"https://web.archive.org/web/20050913180027/http://wordpress.org/hosting/\">recommended hosts page</a> featuring companies that meet certain criteria.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressRecommendedHosts2005.png\"><img class=\"size-full wp-image-45906\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressRecommendedHosts2005.png?resize=761%2C841\" alt=\"WordPress.org Recommended Host Page in 2005\" /></a>WordPress.org Recommended Host Page in 2005\n<p>Over the years, new companies would rarely be added to the page. For several years, <a href=\"http://www.bluehost.com/\">Bluehost</a>, <a href=\"https://www.dreamhost.com/home.2.html\">DreamHost</a>, and <a href=\"http://laughingsquid.com/\">Laughing Squid</a> were the only companies listed.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/RecommendedHostsIn2014.png\"><img class=\"size-full wp-image-45907\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/RecommendedHostsIn2014.png?resize=727%2C600\" alt=\"Recommend Hosts Page in 2014\" /></a>Recommend Hosts Page in 2014\n<p>I’ve spoken to a number of people in the webhosting industry in the last two years and the general consensus is that, to get on the list, you need to pay Matt Mullenweg a lot of money, which isn’t true. Bluehost is often used as an example as they’re owned by <a href=\"http://www.endurance.com/\">Endurance International Group</a> who <a href=\"http://www.prweb.com/releases/2014/05/prweb11874425.htm\">invested in Automattic</a> in 2014. Bluehost has been on the list since 2005, long before any investment took place.</p>\n<h2>A Fresh Start to The Recommended Hosts Page</h2>\n<p>Currently, Bluehost is the only recommended webhost <a href=\"https://wordpress.org/hosting/\">on the</a><a href=\"https://wordpress.org/hosting/\"> page</a> because it’s going through a revamp. Near the bottom of the page is a paragraph that admits a lot has changed in the industry over the years.</p>\n<blockquote><p>Much has changed in the hosting world since this page was originally set up. There are now many types of dedicated and cloud accounts that are as easy as shared hosting was a generation ago, and shared and managed hosts have evolved significantly to become more tailored to WordPress. WordPress is often now the most commonly used application on major web hosts!</p></blockquote>\n<p>I asked Mullenweg if hosts that were on the page before are eligible to be re-added, “Of course, anyone is up for consideration and Bluehost is up for being removed.”</p>\n<p>The WordPress.org team is starting over from scratch and as such, webhosting companies are asked to complete <a href=\"http://mcm.polldaddy.com/s/2015-wordpress-hosting-survey\">the following</a> survey by <strong>July 31st</strong>.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/FirstPageofTheSurvey.png\"><img class=\"size-full wp-image-45908\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/FirstPageofTheSurvey.png?resize=616%2C415\" alt=\"First Page of The Survey\" /></a>First Page of The Survey\n<p>The survey is 40 questions long and includes questions such as:</p>\n<ul>\n<li>What’s the WordPress-specific landing page you’d want /hosting to point to?</li>\n<li>What type of customers do you target?</li>\n<li>Please describe your technology stack, and why you like it.</li>\n<li>Is 100% of the code included or promoted with your WordPress install GPL or compatible?</li>\n</ul>\n<p>It may seem like a tedious process, but those I’ve spoken to in the past affiliated with companies once on the list say it generates thousands to millions of dollars in signups. This should motivate companies to complete the survey accurately. Even if a company is not listed on the page, those who fill out the survey will be giving WordPress.org a lot of information that may come in handy for other uses.</p>\n<h2>It’s About Time</h2>\n<p>The recommended hosting page is long overdue for a revamp. There are companies such as, A2 Hosting, Pagely, WP Engine, InMotion Hosting, and countless others that are doing a great job hosting large and small WordPress sites. Perhaps it’s time they become the ones recommended instead of the standard three. If you own or operate a webhosting company with an emphasis on WordPress, <a href=\"http://mcm.polldaddy.com/s/2015-wordpress-hosting-survey\">fill out the survey</a>, as it’s the best chance you have to getting on the recommended hosts page.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jun 2015 03:52:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: VaultPress Comes Out on Top in Recent Survey of WordPress Backup Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45874\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wptavern.com/vaultpress-comes-out-on-top-in-recent-survey-of-wordpress-backup-tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2207:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/VaultFeaturesImage.png\"><img class=\"size-full wp-image-45875\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/VaultFeaturesImage.png?resize=647%2C363\" alt=\"Vault Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/37053322@N00/2291139919\">Code</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Steven Gliebe asked 21 WordPress professionals what they use to generate backups for their personal sites and published the results on the <a href=\"https://proplugindirectory.com/best-backup-wordpress-plugins/\">Pro Plugin Directory blog</a>. The results are split into two groups of people – writers and developers.</p>\n<p>All of the writers mentioned <a href=\"https://vaultpress.com/\">VaultPress</a> as their go-to backup solution. Some of the developers use VaultPress but most rely on backups generated by their webhost in addition to a plugin or custom strategy. <a href=\"https://ithemes.com/purchase/backupbuddy/\">BackupBuddy </a>by iThemes ended up with the second most mentions.</p>\n<p>Although <a href=\"https://deliciousbrains.com/wp-migrate-db-pro/\">WP Migrate DB Pro</a> is used primarily to migrate WordPress sites, Gilbert Pellegrom of <a href=\"http://dev7studios.com/\">Dev7studios,</a> uses it to backup his databases and user uploads with a setup <a href=\"https://deliciousbrains.com/remotely-backup-wordpress-database-media-wp-migrate-db-pro-cli/\">similar to this</a>.</p>\n<p>Bill Robbins of <a href=\"http://www.organizedthemes.com/\">Organized Themes,</a> says WPEngine provides a prompt reminding users to generate a full backup before upgrading. This sounds like a great idea and is something I think more hosts should look into doing. Daniel Espinoza of <a href=\"https://shopplugins.com/\">Shop Plugins,</a> uses a backup strategy that allows him to <strong>own his data</strong>.</p>\n<p>To learn <strong>why</strong> these 21 people use the backup strategies that they do, I encourage you to <a href=\"https://proplugindirectory.com/best-backup-wordpress-plugins/\">read the full article</a>. What plugins and services do you use to backup your sites?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2015 22:40:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Theme Hybrid Experiments with Free Signups for Club Membership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45871\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/theme-hybrid-experiments-with-free-signups-for-club-membership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3870:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/open-source.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/open-source.jpg?resize=1024%2C514\" alt=\"photo credit: 16th st - (license)\" class=\"size-full wp-image-45884\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/79777096@N00/6866996865\">16th st</a> – <a href=\"https://creativecommons.org/licenses/by-nd/2.0/\">(license)</a>\n<p>Justin Tadlock, creator of Theme Hybrid, <a href=\"http://themehybrid.com/weblog/steering-the-ship-back-home\" target=\"_blank\">announced</a> today that the seven year old theme club is experimenting with a radical change in club pricing. <a href=\"http://themehybrid.com/club\" target=\"_blank\">Club membership</a> is now free for anyone who wants to sign up. Although Theme Hybrid’s plugins and themes have always been free, standard club membership (which includes access to the support forums), was previously $25/year.</p>\n<p>In a post titled “<a href=\"http://themehybrid.com/weblog/steering-the-ship-back-home\" target=\"_blank\">Steering the Ship Back Home</a>,” Tadlock explains his original purpose for the club. Theme Hybrid entered the WordPress theme market with free, open source products back in the day when very few commercial theme sellers were fully adopting the GPL.</p>\n<p>“When I first laid the groundwork for Theme Hybrid, or <a href=\"http://justintadlock.com/archives/2008/05/31/project-m\" target=\"_blank\">Project M</a> as it was originally called, seven awesome years ago, the idea was to face off against ‘premium’ theme authors,” he said. “I wanted to provide a free alternative to the marketplace and show that it could work.”</p>\n<p>Tadlock described how, overall, the Theme Hybrid experience has been positive, but during the past year he faced creative blocks, burnout, and a lack of focus. As part of regaining motivation, he decided to refocus Theme Hybrid back to its radical roots.</p>\n<p>“I always knew I wanted to provide awesome free/$free WordPress themes and plugins,” he said. “However, $free doesn’t exactly put food on the table. While seven years has been a good run, I don’t think I ever found the right balance between philosophy and practical concerns.”</p>\n<p>As part of a fresh start, Tadlock is opening up his club membership in an effort to expand the community that has kept the site going over the years. In addition to the free memberships, which provide access to the forums, he is also slashing prices on the tiered memberships.</p>\n<p>“Today, I have at least a couple of months of wiggle room to try something new while figuring out the direction I want to take the business aspect of this site,” Tadlock said.</p>\n<p>Theme Hybrid’s radical shift in club pricing is another example of WordPress businesses giving away more for free, whether it be <a href=\"http://wptavern.com/lasso-frontend-editing-plugin-for-wordpress-now-available-on-github\" target=\"_blank\">commercial products on GitHub</a>, a <a href=\"http://wptavern.com/all-official-easy-digital-downloads-themes-are-now-100-free\" target=\"_blank\">suite of e-commerce themes</a>, or <a href=\"http://wptavern.com/wpsessions-changes-pricing-structure-live-events-are-now-100-free\" target=\"_blank\">live training events</a>.</p>\n<p>Theme Hybrid has always erred on the side of providing free products and tutorials for the community, as opposed to locking them up. Will giving away more for free translate into a higher number of people willing to pay for support? This question is at the core of the freemium business model, the boundaries of which Tadlock has been willing to push for the past seven years.</p>\n<p>“While trying new things is certainly frightening, I’m excited about some of the prospects,” he said.</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, 29 Jun 2015 21:45:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:54:\"WPTavern: Vienna, Austria to Host WordCamp Europe 2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45834\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wptavern.com/vienna-austria-to-host-wordcamp-europe-2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4764:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/wceu-2016-announcement.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/wceu-2016-announcement.png?resize=1022%2C511\" alt=\"photo credit: RubenSutiloFoto\" class=\"size-full wp-image-45848\" /></a>photo credit: <a href=\"https://europe.wordcamp.org/2015/how-we-selected-vienna-the-wordcamp-europe-2016-host-city/\">RubenSutiloFoto</a>\n<p>The local WordPress community in Seville welcomed a diverse group of attendees to <a href=\"https://europe.wordcamp.org/2015/\" target=\"_blank\">WordCamp Europe 2015</a> over the weekend. WordPress enthusiasts and professionals from Europe and beyond made strategic connections, <a href=\"https://twitter.com/no_fear_inc/status/615149090825965568\" target=\"_blank\">contributed</a>, found <a href=\"https://twitter.com/WCEurope/status/615286319305084929\" target=\"_blank\">jobs and employees</a>, and enjoyed presentations from a selection of world class speakers.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">Seville has got the imaginative juices flowing and led to some exciting changes of life direction <a href=\"https://twitter.com/hashtag/wceu?src=hash\">#wceu</a></p>\n<p>— Fiona Barnes (@Barnes_Fiona) <a href=\"https://twitter.com/Barnes_Fiona/status/615137692293197824\">June 28, 2015</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">Very happy to announce <a href=\"https://twitter.com/SergeyBiryukov\">@SergeyBiryukov</a> will be joining <a href=\"https://twitter.com/yoast\">@yoast</a>, spending 50% of his time on WP core. <a href=\"https://twitter.com/hashtag/WCEU?src=hash\">#WCEU</a> was productive.</p>\n<p>— Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/615219329035042816\">June 28, 2015</a></p></blockquote>\n<p></p>\n<p>At the conclusion of the WordCamp, organizers <a href=\"https://europe.wordcamp.org/2015/how-we-selected-vienna-the-wordcamp-europe-2016-host-city/\" target=\"_blank\">announced</a> that the 2016 event will be held in Vienna, Austria, June 24 – 26. Applications for the host city were <a href=\"http://wptavern.com/wordcamp-europe-now-taking-applications-for-2016-host-city\" target=\"_blank\">opened</a> in March and <a href=\"http://wptavern.com/applications-to-host-wordcamp-europe-2016-closing-soon\" target=\"_blank\">closed</a> at the end of April.</p>\n<p>The WordCamp Europe organization team received strong applications from the WordPress communities in Vienna, Bratislava, and Berlin. Some of the most important criteria in the selection process included organizer experience, location, venue, contributor day, and budget.</p>\n<p>Berlin was ruled out due to lack of experience among the organizers.</p>\n<p>“The reason that we ruled out Berlin is that there hasn’t yet been a WordCamp in Berlin and we felt that the team needed more WordCamp organizing experience,” Siobhan McKeown said in the official <a href=\"https://europe.wordcamp.org/2015/how-we-selected-vienna-the-wordcamp-europe-2016-host-city/\" target=\"_blank\">announcement</a>. “We’d love to see a WordCamp Berlin in the future – such a wonderful city needs a wonderful WordCamp.”</p>\n<p>Although Berlin has actually hosted three WordCamps in the past, including <a href=\"https://central.wordcamp.org/wordcamps/germany-2010/\" target=\"_blank\">WordCamp Germany 2010</a>, WordCamps Berlin <a href=\"http://wpde.org/wordcamp/\" target=\"_blank\">2012</a> and <a href=\"http://wpcamp.de/\" target=\"_blank\">2013</a>, other more weighty factors pushed Bratislava and Vienna ahead as potential host cities.</p>\n<p>Bratislava brought a strong and diverse local team to the table, but Vienna ultimately surpassed the other applicants when it came down to logistics.</p>\n<p>“In the end, the venue, location, and available dates for the WordCamp won out,” McKeown said. “We loved the Bratislava application, but none of the venues were completely suitable for our event.</p>\n<p>“The venue in Vienna, however, was perfect. We also have 100% confidence in the Vienna local team: they organized a successful WordCamp Vienna in 2015, and Paolo Belcastro, the lead applicant for WordCamp Europe 2016, has been involved in WordCamp Europe for the past three years. This means that the local team will have a leader with a ton of WCEU experience.”</p>\n<p>With a successful <a href=\"https://europe.wordcamp.org/2015/\" target=\"_blank\">WordCamp Europe 2015</a> in the bag, the organization team will now set its sights on Vienna and continue its year round planning efforts. Speaker selection usually begins five or six months in advance for this event, so those planning to apply have plenty of time to prepare.</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, 29 Jun 2015 17:54:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:27:\"Matt: Obama Delivers Eulogy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45195\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://ma.tt/2015/06/obama-delivers-eulogy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"<p><span class=\"embed-youtube\"></span></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:\"Mon, 29 Jun 2015 06:48: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:40:\"Alex King: More micro-blogging workflows\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://pinboard-2097310c4ccd2c9bdaac738aaa90b519\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://www.manton.org/2015/06/more-quick-blogging-workflows.html\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1170:\"<p>Manton writes about a few workflows <a href=\"http://www.manton.org/2015/06/four-microblogging-community-tips.html\">here</a> the follows it up with the post I’ve linked to.</p>\n<p>FWIW I’ve posted to my own site first then passed stuff along to Twitter and Facebook since <a href=\"http://alexking.org/blog/2011/08/11/wordpress-social-plugin\">we released the Social plugin for WordPress</a> back in 2011. Each of my posts has a link to its counterpart on Twitter and Facebook, and reactions on those networks are brought back in as comments on this site. Special handling is done to thread comments based on Twitter’s reply_to property, as well as a retweets, etc. More details about how this works can be found in the <a href=\"https://crowdfavorite.com/blog/2014/01/23/own-your-online-identity/\">blog post I wrote back in January</a> on the Crowd Favorite blog.</p>\n<p>When I’m mobile, I’ve found that using the WordPress admin web interface is better for my needs than the iOS app. Mainly because of additional post meta that I utilize on this site.</p>\n<p><a href=\"http://alexking.org/blog/2015/06/28/micro-blogging-workflows\">#</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2015 01:53:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:24:\"Matt: Fight Against Uber\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45191\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://ma.tt/2015/06/fight-against-uber/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:446:\"<blockquote><p>The Parisian taxi drivers are partly protesting against economic regulations in cities where taxi drivers have to pay for expensive medallions while Uber drivers do not. But, in a larger sense, they’re actually protesting against our increased impatience.</p></blockquote>\n<p>Om Malik: <a href=\"http://www.newyorker.com/tech/elements/the-long-history-of-the-fight-against-uber\">The Long History of the Fight Against Uber</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 28 Jun 2015 00:46: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:45:\"Post Status: Announcing: WordCamp Europe 2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://poststatus.com/?p=13568\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://poststatus.com/announcing-wordcamp-europe-2016/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2713:\"<p>The <a href=\"https://europe.wordcamp.org/2015/\">WordCamp Europe 2015</a> conference’s second day is now closing, and it’s been a weekend full of fantastic and diverse content. This was the 3rd, of a now annual, pan-European WordCamp and every year it gets better.</p>\n<p>That’s a pretty exciting prospect, as we receive the announcement of next year’s WordCamp Europe 2016 which will take place in Vienna, Austria, 24-26 June 2016.</p>\n<h3>On larger WordCamps</h3>\n<p>As described on WordCamp Central:</p>\n<blockquote><p>WordCamps are informal, community-organized events that are put together by WordPress users like you. Everyone from casual users to core developers participate, share ideas, and get to know each other.</p></blockquote>\n<p>Generally speaking, WordCamps are based around a local community in a specific city. WordCamp Europe is one of two annual WordCamps that span a larger region. The other is WordCamp San Francisco, which is widely considered to be “the mother ship”, and will likely evolve into WordCamp US in its next incarnation.</p>\n<p>This new approach of embracing larger WordCamps seems to me to be a sign of a maturing community and project. The content of these WordCamps also seems to reflect this maturation, as topics tend to be less technical and more high level. Covering issues like ethics and cross-community relations.</p>\n<h3>Other regions</h3>\n<p>As individual regions begin to reach similar levels of maturity, the move toward these larger WordCamps is a natural progression. Earlier this year at <a href=\"https://brisbane.wordcamp.org/2015/\">WordCamp Brisbane</a> in Australia, there were a number of attendees from the wider Asia Pacific region. The same will be true of <a href=\"https://kansai.wordcamp.org/2015/\">WordCamp Kansai</a> in July this year with attendees from outside of Japan travelling to attend and speak.</p>\n<p>I wouldn’t be surprised if, in the not-too-distant-future, we’ll also see a pan-Asia Pacific WordCamp being organised. Particularly when you look at the size of WordCamps already in places like Tokyo, with attendance approaching 1500 people.</p>\n<h3>Moving forward</h3>\n<p>The European community has set a wonderful example of how a large, roaming, pan-regional WordCamp can and does work. Embraced by the community, and growing every year, with attendance from all over the world.</p>\n<p>I’m very much looking forward to WordCamp Europe 2016 in Vienna, Austria, as we all continue to grow as a community and push WordPress together. Hope to see you there!</p>\n<p><em>Special thanks to <a href=\"https://twitter.com/schmitzoide\">Marcel Schmitz</a> for the featured image.</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:\"Sat, 27 Jun 2015 16:14:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Japh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 10 Jul 2015 19:45:22 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"173955\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 10 Jul 2015 19:30:15 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20130911080210\";}','no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`)
VALUES
(339,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1436600725','no'),
(340,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1436557525','no'),
(341,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1436600725','no'),
(342,'_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:117:\"\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:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2015 19:44:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29832@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Your WordPress, Streamlined.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast's WordPress SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"50539@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Protect your WordPress site by hiding vital areas of your site, protecting access to important files, preventing brute-force login attempts, detecting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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: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:23:\"MailChimp for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/mailchimp-for-wp/#post-54377\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Jun 2013 17:32: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:\"54377@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:\"MailChimp for WordPress, the absolute best. Add subscribers to your MailChimp lists from your WordPress site, with ease.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Danny van Kooten\";s: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:13:\"Photo 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:\"https://wordpress.org/plugins/photo-gallery/#post-63299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 27 Jan 2014 15:58: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"63299@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:143:\"Photo Gallery is an advanced plugin with a list of tools and options for adding and editing images for different views. It is fully responsive.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"webdorado\";s: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:21:\"WPtouch Mobile Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wptouch/#post-5468\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2008 04:58:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"5468@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Make your WordPress website mobile-friendly with just a few clicks.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"BraveNewCode Inc.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"51888@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:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:17:\"InfiniteWP Client\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wordpress.org/plugins/iwp-client/#post-36147\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 26 Mar 2012 04:21: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"36147@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:143:\"Install this plugin on unlimited sites and manage them all from a central dashboard.\nThis plugin communicates with your InfiniteWP Admin Panel.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"infinitewp\";s: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: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:\"The Events Calendar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wordpress.org/plugins/the-events-calendar/#post-14790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Dec 2009 21:58: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:35:\"14790@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Peter Chester\";s: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: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:\"EWWW Image Optimizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/ewww-image-optimizer/#post-38780\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jun 2012 19:30:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"38780@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:144:\"Reduce file sizes for images in WordPress including NextGEN, GRAND FlAGallery and more using lossless/lossy methods and image format conversion.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"nosilver4u\";s: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: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:40:\"NextScripts: Social Networks Auto-Poster\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/plugins/social-networks-auto-poster-facebook-twitter-g/#post-35439\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Mar 2012 00:28: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"35439@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:149:\"Automatically re-publishes blogposts to Facebook, Twitter, Google+, Pinterest, LinkedIn, Blogger, Tumblr, Delicious, Plurk, etc profiles and/or pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"NextScripts\";s: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:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Share Buttons by AddToAny\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wordpress.org/plugins/add-to-any/#post-498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 17 Mar 2007 23:08: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:33:\"498@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:142:\"Share buttons for WordPress including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"micropat\";s: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:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"SiteOrigin Widgets Bundle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/so-widgets-bundle/#post-67824\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 24 May 2014 14:27: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:\"67824@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"A collection of all widgets, neatly bundled into a single plugin. It's also a framework to code your own widgets on top of.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;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:\"Captcha by BestWebSoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/captcha/#post-26129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Apr 2011 05:53:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26129@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"This plugin allows you to implement super security captcha form into web forms.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"bestwebsoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;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:\"WP Super 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:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@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:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Donncha O Caoimh\";s: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:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25254@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:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2082@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;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:60:\"https://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:143:\"Send newsletters post notifications or autoresponders from WordPress easily, and beautifully. Start to capture subscribers with our widget now.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:26;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:56:\"https://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:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 12 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:27;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:13:\"WP Statistics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-statistics/#post-25318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 20 Mar 2011 09:03: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:\"25318@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:44:\"Complete statistics for your WordPress site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Mostafa Soufi\";s: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:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Google Analytics by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;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:12:\"WP Retina 2x\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wp-retina-2x/#post-39551\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Jun 2012 11:25: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"39551@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:73:\"Make your website look beautiful and crisp on Retina / High DPI displays.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Jordy Meow\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 10 Jul 2015 19:45:25 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:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Fri, 09 Mar 2007 22:11:30 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20130911080210\";}','no'),
(343,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1436600725','no'),
(344,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1436557525','no'),
(345,'_transient_timeout_plugin_slugs','1436643925','no'),
(346,'_transient_plugin_slugs','a:5:{i:0;s:63:\"add-tags-and-category-to-page/add-tags-and-category-to-page.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:2;s:19:\"akismet/akismet.php\";i:3;s:43:\"custom-post-type-ui/custom-post-type-ui.php\";i:4;s:24:\"wordpress-seo/wp-seo.php\";}','no'),
(347,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1436600725','no'),
(348,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\'>WordPress 4.3 Beta 2</a> <span class=\"rss-date\">July 8, 2015</span><div class=\"rssSummary\">WordPress 4.3 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wptavern.com/socialcrumbs-a-free-wordpress-theme-that-streams-social-activity-using-ifttt-recipes\'>WPTavern: SocialCrumbs: A Free WordPress Theme that Streams Social Activity Using IFTTT Recipes</a></li><li><a class=\'rsswidget\' href=\'http://ma.tt/2015/07/paired-opposites/\'>Matt: Paired Opposites</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/automattic-wins-cybersquatting-case-against-chris-pearson\'>WPTavern: Chris Pearson Loses Cybersquatting Case Against Automattic</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/so-widgets-bundle/\' class=\'dashboard-news-plugin-link\'>SiteOrigin Widgets Bundle</a> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=so-widgets-bundle&_wpnonce=750c22209e&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'SiteOrigin Widgets Bundle\'>Install</a>)</span></li></ul></div>','no'),
(352,'_site_transient_timeout_theme_roots','1436562258','yes'),
(353,'_site_transient_theme_roots','a:4:{s:17:\"opengovfoundation\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";}','yes'),
(356,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1436560715;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),
(357,'current_theme','Twenty Thirteen/opengovfoundation','yes'),
(358,'theme_mods_opengovfoundation','a:1:{i:0;b:0;}','yes'),
(359,'theme_switched','','yes'),
(360,'theme_switched_via_customizer','','yes'),
(361,'rewrite_rules','a:75:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:25:\"index.php?xsl=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=56&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_postmeta
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_postmeta`;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `wp_postmeta` WRITE;
/*!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'),
(2,4,'_edit_last','1'),
(3,4,'_edit_lock','1435804945:1'),
(4,6,'_edit_last','1'),
(5,6,'_edit_lock','1435804999:1'),
(6,8,'_edit_last','1'),
(7,8,'_edit_lock','1436404756:1'),
(8,8,'_yoast_wpseo_canonical','/projects/free-law-founders/'),
(9,10,'_edit_last','1'),
(10,10,'_edit_lock','1436404727:1'),
(11,10,'_yoast_wpseo_canonical','/projects/madison/'),
(12,12,'_edit_last','1'),
(13,12,'_edit_lock','1436404742:1'),
(14,14,'_edit_last','1'),
(15,14,'_edit_lock','1436380275:1'),
(16,14,'_wp_trash_meta_status','publish'),
(17,14,'_wp_trash_meta_time','1436380426'),
(18,17,'_edit_last','1'),
(19,17,'_edit_lock','1436405472:1'),
(20,17,'Name','Seamus Kraft'),
(21,17,'Job Title','Executive Director, Co-Founder & Vice-Chairman of the Board'),
(22,19,'_edit_last','1'),
(23,19,'_edit_lock','1436405434:1'),
(24,19,'Name','Aaron Bartnick'),
(25,19,'Job Title','Chief of Operations'),
(26,21,'_edit_last','1'),
(27,21,'_edit_lock','1436405462:1'),
(28,21,'Name','Chris Birk'),
(29,21,'Job Title','Lead Developer'),
(30,23,'_edit_last','1'),
(31,23,'_edit_lock','1436405452:1'),
(32,23,'Name','Bill Hunt'),
(33,23,'Job Title','Senior Developer'),
(34,25,'_edit_last','1'),
(35,25,'_edit_lock','1436406563:1'),
(36,25,'Name','Darrell Issa'),
(37,25,'Job Title','Co-Founder, Chairman of the Board & California Congressman'),
(38,27,'_edit_last','1'),
(39,27,'_edit_lock','1436406633:1'),
(40,27,'Name','Abhi Nemani'),
(41,27,'Job Title','Board Member'),
(42,29,'_edit_last','1'),
(43,29,'_edit_lock','1436406673:1'),
(44,29,'Name','Lanham Napier'),
(45,29,'Job Title','Board Member'),
(46,31,'_edit_last','1'),
(47,31,'_edit_lock','1436406720:1'),
(48,31,'Name','Tom Davis'),
(49,31,'Job Title','Former U.S. Congressman from Virginia, Board Member'),
(50,33,'_edit_last','1'),
(51,33,'_edit_lock','1436406765:1'),
(52,33,'Name','James Lacy'),
(53,33,'Job Title','Treasurer, Board Member'),
(54,35,'_edit_last','1'),
(55,35,'_edit_lock','1436406831:1'),
(56,35,'Name','Joe Trippi'),
(57,35,'Job Title','Message and Media'),
(58,39,'_edit_last','1'),
(59,39,'_edit_lock','1436406889:1'),
(60,39,'Name','Karien Bezuidenhout'),
(61,39,'Job Title','Internal Growth'),
(62,41,'_edit_last','1'),
(63,41,'_edit_lock','1436406935:1'),
(64,41,'Name','Maggie McKinley'),
(65,41,'Job Title','Academic Partnerships'),
(66,43,'_edit_last','1'),
(67,43,'_edit_lock','1436406986:1'),
(68,43,'Name','Jen Yu'),
(69,43,'Job Title','Design'),
(70,45,'_edit_last','1'),
(71,45,'_edit_lock','1436407068:1'),
(72,45,'Name','Scout Addis'),
(73,45,'Job Title','Design'),
(74,2,'_wp_trash_meta_status','publish'),
(75,2,'_wp_trash_meta_time','1436407221'),
(76,48,'_edit_last','1'),
(77,48,'_edit_lock','1436407709:1'),
(78,48,'Media Contact','Aaron Bartnick, aaron@opengovfoundation.org, 845-216-6809'),
(81,50,'_edit_last','1'),
(82,50,'_edit_lock','1436407805:1'),
(85,52,'_edit_last','1'),
(86,52,'_edit_lock','1436407868:1'),
(87,56,'_edit_last','1'),
(88,56,'_edit_lock','1436560727:1');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_posts
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_posts`;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `wp_posts` WRITE;
/*!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,'2015-06-29 13:23:51','2015-06-29 13:23:51','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2015-06-29 13:23:51','2015-06-29 13:23:51','',0,'http://opengov.dev:8888/?p=1',0,'post','',1),
(2,1,'2015-06-29 13:23:51','2015-06-29 13:23:51','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://opengov.dev:8888/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','','','2015-07-09 02:00:21','2015-07-09 02:00:21','',0,'http://opengov.dev:8888/?page_id=2',0,'page','',0),
(4,1,'2015-07-02 02:42:35','2015-07-02 02:42:35','At the end of 2013, a San Francisco resident was looking through his city’s municipal code and found a law that prevented him, or any of the city’s more than 850,000 residents, from storing his bike in his garage. So he left a comment directly on sanfranciscocode.org asking for a change. His local representative saw the comment, and now that law is off the books. Not only that, but the same representative is now using sanfranciscocode.org to clear other unnecessary laws from San Francisco\'s books and improve outdated laws that need updating.\r\n\r\nThat’s modern government. That’s what we do.\r\n\r\nWe are The OpenGov Foundation. We bridge the gap between citizens and government and build the tools that power lawmaking for a modern democracy. We work at the vanguard of the open government movement, developing software, events, and coalitions that push governments across the country to be more accessible and responsive.\r\n\r\nOpen government isn’t just a buzzword--it’s real change. Open government is being able to easily find the laws you need, when you need them. It’s being able to seamlessly tell your representatives when laws don’t make sense. And it’s empowering lawmakers to make those changes.\r\n\r\nYou have a right to know what’s going on in your government, and a responsibility to get involved. We make it easy for you to do both.\r\n\r\nJoin us today.','About the OpenGov Foundation','','publish','open','open','','about','','','2015-07-02 02:42:35','2015-07-02 02:42:35','',0,'http://opengov.dev:8888/?page_id=4',0,'page','',0),
(5,1,'2015-07-02 02:42:21','2015-07-02 02:42:21','At the end of 2013, a San Francisco resident was looking through his city’s municipal code and found a law that prevented him, or any of the city’s more than 850,000 residents, from storing his bike in his garage. So he left a comment directly on sanfranciscocode.org asking for a change. His local representative saw the comment, and now that law is off the books. Not only that, but the same representative is now using sanfranciscocode.org to clear other unnecessary laws from San Francisco\'s books and improve outdated laws that need updating.\r\n\r\nThat’s modern government. That’s what we do.\r\n\r\nWe are The OpenGov Foundation. We bridge the gap between citizens and government and build the tools that power lawmaking for a modern democracy. We work at the vanguard of the open government movement, developing software, events, and coalitions that push governments across the country to be more accessible and responsive.\r\n\r\nOpen government isn’t just a buzzword--it’s real change. Open government is being able to easily find the laws you need, when you need them. It’s being able to seamlessly tell your representatives when laws don’t make sense. And it’s empowering lawmakers to make those changes.\r\n\r\nYou have a right to know what’s going on in your government, and a responsibility to get involved. We make it easy for you to do both.\r\n\r\nJoin us today.','About the OpenGov Foundation','','inherit','open','open','','4-revision-v1','','','2015-07-02 02:42:21','2015-07-02 02:42:21','',4,'http://opengov.dev:8888/2015/07/02/4-revision-v1/',0,'revision','',0),
(6,1,'2015-07-02 02:45:30','2015-07-02 02:45:30','At The OpenGov Foundation, we work to address a variety of problems across the larger scope of opening government. We run several projects that help citizens get involved with their governments and help public servants easily collaborate to solve shared problems. We don’t simply throw technology at problems; we build a series of projects that create an ecosystem for a significant culture change in government.\r\n\r\nThe Free Law Founders are a group of legislators and organizations that work together to improve government, by sharing knowledge and solutions.\r\n\r\nMadison is a system to put legislation online for citizens to comment on and suggest improvements to.\r\n\r\nAmerica Decoded is a collection of sites running The State Decoded project to put the law online in a modern, user-friendly way.','Projects','','publish','open','open','','projects','','','2015-07-02 02:45:30','2015-07-02 02:45:30','',0,'http://opengov.dev:8888/?page_id=6',0,'page','',0),
(7,1,'2015-07-02 02:45:24','2015-07-02 02:45:24','At The OpenGov Foundation, we work to address a variety of problems across the larger scope of opening government. We run several projects that help citizens get involved with their governments and help public servants easily collaborate to solve shared problems. We don’t simply throw technology at problems; we build a series of projects that create an ecosystem for a significant culture change in government.\r\n\r\nThe Free Law Founders are a group of legislators and organizations that work together to improve government, by sharing knowledge and solutions.\r\n\r\nMadison is a system to put legislation online for citizens to comment on and suggest improvements to.\r\n\r\nAmerica Decoded is a collection of sites running The State Decoded project to put the law online in a modern, user-friendly way.','Projects','','inherit','open','open','','6-revision-v1','','','2015-07-02 02:45:24','2015-07-02 02:45:24','',6,'http://opengov.dev:8888/2015/07/02/6-revision-v1/',0,'revision','',0),
(8,1,'2015-07-02 02:47:03','2015-07-02 02:47:03','The Free Law Founders (FLF) is a nationwide partnership of local elected officials, non-profit software developers, educators, and city attorneys dedicated to upgrading how citizens can access America’s laws, legislation, and the lawmaking process itself on the Internet. The Founders have embraced the challenge of creating the modern tools, data standards, and processes our state and local governments need to meet the growing challenges of democracy in the Internet Age.\r\n\r\nAny citizen living in a Free Law community should be able to:\r\n<ul>\r\n <li>Access complete, timely, machine-processable and primary laws, legal codes, and legislation on the internet without facing restrictions, paywalls, fees, or burdensome user agreements.</li>\r\n <li>Download, share, annotate, and reuse that legal data in non-proprietary, open formats that are both license- and copyright-free.</li>\r\n <li>See and participate in the lawmaking process on the Internet utilizing the latest open-source software, on their own time and on their own terms.</li>\r\n <li>Freely engage with the law, and connect with their elected officials, other citizens and community stakeholders to collaboratively create and modify the laws when they want and how they want.</li>\r\n <li>Expect that all those involved in lawmaking are committed to injecting innovation, iteration and improvement into their work.</li>\r\n</ul>\r\nLearn more at http://freelawfounders.org/','Free Law Founders','','publish','open','open','','free-law-founders','','','2015-07-09 01:21:37','2015-07-09 01:21:37','',6,'http://opengov.dev:8888/?page_id=8',0,'page','',0),
(9,1,'2015-07-02 02:47:03','2015-07-02 02:47:03','The Free Law Founders (FLF) is a nationwide partnership of local elected officials, non-profit software developers, educators, and city attorneys dedicated to upgrading how citizens can access America’s laws, legislation, and the lawmaking process itself on the Internet. The Founders have embraced the challenge of creating the modern tools, data standards, and processes our state and local governments need to meet the growing challenges of democracy in the Internet Age.\r\n\r\nAny citizen living in a Free Law community should be able to:\r\n<ul>\r\n <li>Access complete, timely, machine-processable and primary laws, legal codes, and legislation on the internet without facing restrictions, paywalls, fees, or burdensome user agreements.</li>\r\n <li>Download, share, annotate, and reuse that legal data in non-proprietary, open formats that are both license- and copyright-free.</li>\r\n <li>See and participate in the lawmaking process on the Internet utilizing the latest open-source software, on their own time and on their own terms.</li>\r\n <li>Freely engage with the law, and connect with their elected officials, other citizens and community stakeholders to collaboratively create and modify the laws when they want and how they want.</li>\r\n <li>Expect that all those involved in lawmaking are committed to injecting innovation, iteration and improvement into their work.</li>\r\n</ul>\r\nLearn more at http://freelawfounders.org/','Free Law Founders','','inherit','open','open','','8-revision-v1','','','2015-07-02 02:47:03','2015-07-02 02:47:03','',8,'http://opengov.dev:8888/2015/07/02/8-revision-v1/',0,'revision','',0),
(10,1,'2015-07-02 02:51:40','2015-07-02 02:51:40','Madison is a government policy co-creation platform that opens up laws and legislation previously off-limits to individuals and the Internet community. Launched to battle the Stop Online Piracy Act (SOPA), it has since been used to power citizen participation in official government documents in the United States Congress. With Madison, you can easily access the law as it’s being written, leave comments, annotate specific content, and interact with other civic-minded participants. Madison brings the law-making process straight to you, and gives you a say in your government’s decisions.\r\n\r\nEngage with the community. Madison allows you to interact not only with specific pieces of legislation, but with other civic-minded citizens. See what other people are saying and share your thoughts. Explore documents from other sponsors or legislative bodies. And suggest changes or features you’d like to see on Madison by giving us feedback in the tab at the left-hand side of the page, or by sending us an email. We’d love to hear from you.\r\n\r\nLearn more at https://mymadison.io/','Madison','','publish','open','open','','madison','','','2015-07-09 01:21:10','2015-07-09 01:21:10','',6,'http://opengov.dev:8888/?page_id=10',0,'page','',0),
(11,1,'2015-07-02 02:51:40','2015-07-02 02:51:40','Madison is a government policy co-creation platform that opens up laws and legislation previously off-limits to individuals and the Internet community. Launched to battle the Stop Online Piracy Act (SOPA), it has since been used to power citizen participation in official government documents in the United States Congress. With Madison, you can easily access the law as it’s being written, leave comments, annotate specific content, and interact with other civic-minded participants. Madison brings the law-making process straight to you, and gives you a say in your government’s decisions.\r\n\r\nEngage with the community. Madison allows you to interact not only with specific pieces of legislation, but with other civic-minded citizens. See what other people are saying and share your thoughts. Explore documents from other sponsors or legislative bodies. And suggest changes or features you’d like to see on Madison by giving us feedback in the tab at the left-hand side of the page, or by sending us an email. We’d love to hear from you.\r\n\r\nLearn more at https://mymadison.io/','Madison','','inherit','open','open','','10-revision-v1','','','2015-07-02 02:51:40','2015-07-02 02:51:40','',10,'http://opengov.dev:8888/2015/07/02/10-revision-v1/',0,'revision','',0),
(12,1,'2015-07-02 02:52:30','2015-07-02 02:52:30','The State Decoded is a platform that displays legal codes, court decisions, and information from legislative tracking services to make it all more understandable to normal humans. With beautiful typography, embedded definitions of legal terms, and a robust API, this project aims to make our laws a centerpiece of media coverage.\r\n\r\nIn development since June 2010, The State Decoded is now in open beta testing, with a growing network of sites running the software. This work is made possible by a generous grant from the Knight Foundation.\r\n\r\nAmerica Decoded is a collection of sites that run The State Decoded for cities and states across the country, providing the legal codes in a consistent format.\r\n\r\nLearn more at <a href=\"http://americadecoded.org/\">http://americadecoded.org/</a> and <a href=\"http://www.statedecoded.com/\">http://www.statedecoded.com/</a>','America Decoded/The State Decoded','','publish','open','open','','america-decoded-the-state-decoded','','','2015-07-09 01:21:25','2015-07-09 01:21:25','',6,'http://opengov.dev:8888/?page_id=12',0,'page','',0),
(13,1,'2015-07-02 02:52:30','2015-07-02 02:52:30','The State Decoded is a platform that displays legal codes, court decisions, and information from legislative tracking services to make it all more understandable to normal humans. With beautiful typography, embedded definitions of legal terms, and a robust API, this project aims to make our laws a centerpiece of media coverage.\r\n\r\nIn development since June 2010, The State Decoded is now in open beta testing, with a growing network of sites running the software. This work is made possible by a generous grant from the Knight Foundation.\r\n\r\nAmerica Decoded is a collection of sites that run The State Decoded for cities and states across the country, providing the legal codes in a consistent format.\r\n\r\nLearn more at <a href=\"http://americadecoded.org/\">http://americadecoded.org/</a> and <a href=\"http://www.statedecoded.com/\">http://www.statedecoded.com/</a>','America Decoded/The State Decoded','','inherit','open','open','','12-revision-v1','','','2015-07-02 02:52:30','2015-07-02 02:52:30','',12,'http://opengov.dev:8888/2015/07/02/12-revision-v1/',0,'revision','',0),
(14,1,'2015-07-08 18:33:36','2015-07-08 18:33:36','At the end of 2013, a San Francisco resident was looking through his city’s municipal code and found a law that prevented him, or any of the city’s more than 850,000 residents, from storing his bike in his garage. So he left a comment directly on sanfranciscocode.org asking for a change. His local representative saw the comment, and now that law is off the books. Not only that, but the same representative is now using sanfranciscocode.org to clear other unnecessary laws from San Francisco\'s books and improve outdated laws that need updating.\r\n\r\nThat’s modern government. That’s what we do.\r\n\r\nWe are The OpenGov Foundation. We bridge the gap between citizens and government and build the tools that power lawmaking for a modern democracy. We work at the vanguard of the open government movement, developing software, events, and coalitions that push governments across the country to be more accessible and responsive.\r\n\r\nOpen government isn’t just a buzzword--it’s real change. Open government is being able to easily find the laws you need, when you need them. It’s being able to seamlessly tell your representatives when laws don’t make sense. And it’s empowering lawmakers to make those changes.\r\n\r\nYou have a right to know what’s going on in your government, and a responsibility to get involved. We make it easy for you to do both.\r\n\r\nJoin us today.','About Us','','trash','open','open','','about-us','','','2015-07-08 18:33:46','2015-07-08 18:33:46','',0,'http://opengov.dev:8888/?page_id=14',0,'page','',0),
(15,1,'2015-07-08 18:33:33','2015-07-08 18:33:33','At the end of 2013, a San Francisco resident was looking through his city’s municipal code and found a law that prevented him, or any of the city’s more than 850,000 residents, from storing his bike in his garage. So he left a comment directly on sanfranciscocode.org asking for a change. His local representative saw the comment, and now that law is off the books. Not only that, but the same representative is now using sanfranciscocode.org to clear other unnecessary laws from San Francisco\'s books and improve outdated laws that need updating.\r\n\r\nThat’s modern government. That’s what we do.\r\n\r\nWe are The OpenGov Foundation. We bridge the gap between citizens and government and build the tools that power lawmaking for a modern democracy. We work at the vanguard of the open government movement, developing software, events, and coalitions that push governments across the country to be more accessible and responsive.\r\n\r\nOpen government isn’t just a buzzword--it’s real change. Open government is being able to easily find the laws you need, when you need them. It’s being able to seamlessly tell your representatives when laws don’t make sense. And it’s empowering lawmakers to make those changes.\r\n\r\nYou have a right to know what’s going on in your government, and a responsibility to get involved. We make it easy for you to do both.\r\n\r\nJoin us today.','About Us','','inherit','open','open','','14-revision-v1','','','2015-07-08 18:33:33','2015-07-08 18:33:33','',14,'http://opengov.dev:8888/2015/07/08/14-revision-v1/',0,'revision','',0),
(16,1,'2015-07-08 20:47:15','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-07-08 20:47:15','0000-00-00 00:00:00','',0,'http://opengov.dev:8888/?page_id=16',0,'page','',0),
(17,1,'2015-07-09 01:18:06','2015-07-09 01:18:06','<i></i>Seamus Kraft is a communicator and civic activist building new means for successful democracy in the digital age. Since February 2013, he has built The OpenGov Foundation into a dedicated four-person team producing cutting-edge civic software used by elected officials and citizens in governments across the US. Seamus is also a co-creator of the Free Law Founders, a coalition of leaders from New York, San Francisco, Boston, Chicago, and Washington, DC working to open the processes and information of government to access and innovation for all. Prior to creating The OpenGov Foundation, Seamus served as Digital Director and Press Secretary for The US House Oversight Committee, where he built one the most successful digital communications operations in government from the ground up. Seamus’s work both in and outside of government has been viewed by millions of people worldwide; in 2012 TechCrunch named him among its list of the “20 Most Innovative People of 2012”. A native of Marblehead, MA, he received his undergraduate degree in classical political philosophy from Georgetown University in 2007.','Seamus Kraft','','publish','open','open','','seamus-kraft','','','2015-07-09 01:33:33','2015-07-09 01:33:33','',4,'http://opengov.dev:8888/?page_id=17',0,'page','',0),
(18,1,'2015-07-09 01:18:06','2015-07-09 01:18:06','<i></i>Seamus Kraft is a communicator and civic activist building new means for successful democracy in the digital age. Since February 2013, he has built The OpenGov Foundation into a dedicated four-person team producing cutting-edge civic software used by elected officials and citizens in governments across the US. Seamus is also a co-creator of the Free Law Founders, a coalition of leaders from New York, San Francisco, Boston, Chicago, and Washington, DC working to open the processes and information of government to access and innovation for all. Prior to creating The OpenGov Foundation, Seamus served as Digital Director and Press Secretary for The US House Oversight Committee, where he built one the most successful digital communications operations in government from the ground up. Seamus’s work both in and outside of government has been viewed by millions of people worldwide; in 2012 TechCrunch named him among its list of the “20 Most Innovative People of 2012”. A native of Marblehead, MA, he received his undergraduate degree in classical political philosophy from Georgetown University in 2007.','Seamus Kraft','','inherit','open','open','','17-revision-v1','','','2015-07-09 01:18:06','2015-07-09 01:18:06','',17,'http://opengov.dev:8888/2015/07/09/17-revision-v1/',0,'revision','',0),
(19,1,'2015-07-09 01:18:56','2015-07-09 01:18:56','<i></i>Aaron Bartnick oversees day-to-day operations for The OpenGov Foundation, including branding, outreach, fundraising, and internal project management. Prior to joining The OpenGov Foundation, Aaron served as Deputy Campaign Manager for now-Congressman Seth Moulton, where he helped grow the organization from a single staffer to a 50-person team en route to Massachusetts’ first successful primary challenge of an incumbent since 1992. Aaron has previously served in operational roles at startups, law firms, and political campaigns. Hailing from Chester, NY, he received undergraduate degrees with honors in history and political science from Brown University in 2011.','Aaron Bartnick','','publish','open','open','','aaron-bartnick','','','2015-07-09 01:32:55','2015-07-09 01:32:55','',4,'http://opengov.dev:8888/?page_id=19',0,'page','',0),
(20,1,'2015-07-09 01:18:56','2015-07-09 01:18:56','<i></i>Aaron Bartnick oversees day-to-day operations for The OpenGov Foundation, including branding, outreach, fundraising, and internal project management. Prior to joining The OpenGov Foundation, Aaron served as Deputy Campaign Manager for now-Congressman Seth Moulton, where he helped grow the organization from a single staffer to a 50-person team en route to Massachusetts’ first successful primary challenge of an incumbent since 1992. Aaron has previously served in operational roles at startups, law firms, and political campaigns. Hailing from Chester, NY, he received undergraduate degrees with honors in history and political science from Brown University in 2011.','Aaron Bartnick','','inherit','open','open','','19-revision-v1','','','2015-07-09 01:18:56','2015-07-09 01:18:56','',19,'http://opengov.dev:8888/2015/07/09/19-revision-v1/',0,'revision','',0),
(21,1,'2015-07-09 01:19:53','2015-07-09 01:19:53','<i></i>Chris is a geek at heart, graduating from Purdue University with a degree in Computer Science. He previously worked for a series of startup web development companies before diving into Madison with The OpenGov Foundation. He was part of the <a href=\"http://insourcecode.com/\">inSourceCode</a> team that first built Madison and <a href=\"http://keepthewebopen.com/\">KeepTheWebOpen.com</a>, while bringing an innovation mindset to how the U.S. Congress uses technology. He has a fancy for working with open source projects and is constantly staying up to date on new toys and tools.Chris is originally from Carmel, Indiana and in his spare time can be found hooping on the hardcourt, cheering on his Indianapolis Colts, or relaxing to some Dave Matthews Band. Tweet him <a href=\"http://www.twitter.com/cmbirk\">@cmbirk</a> or drop him a line at Chris@OpenGovFoundation.org.','Chris Birk','','publish','open','open','','chris-birk','','','2015-07-09 01:33:24','2015-07-09 01:33:24','',4,'http://opengov.dev:8888/?page_id=21',0,'page','',0),
(22,1,'2015-07-09 01:19:53','2015-07-09 01:19:53','<i></i>Chris is a geek at heart, graduating from Purdue University with a degree in Computer Science. He previously worked for a series of startup web development companies before diving into Madison with The OpenGov Foundation. He was part of the <a href=\"http://insourcecode.com/\">inSourceCode</a> team that first built Madison and <a href=\"http://keepthewebopen.com/\">KeepTheWebOpen.com</a>, while bringing an innovation mindset to how the U.S. Congress uses technology. He has a fancy for working with open source projects and is constantly staying up to date on new toys and tools.Chris is originally from Carmel, Indiana and in his spare time can be found hooping on the hardcourt, cheering on his Indianapolis Colts, or relaxing to some Dave Matthews Band. Tweet him <a href=\"http://www.twitter.com/cmbirk\">@cmbirk</a> or drop him a line at Chris@OpenGovFoundation.org.','Chris Birk','','inherit','open','open','','21-revision-v1','','','2015-07-09 01:19:53','2015-07-09 01:19:53','',21,'http://opengov.dev:8888/2015/07/09/21-revision-v1/',0,'revision','',0),
(23,1,'2015-07-09 01:29:28','2015-07-09 01:29:28','Bill has been a web developer for almost as long as the web has been around. In that time, he has worked for a variety of start-ups, client service firms, and government agencies, including as the technical lead for several award-winning teams. As an oldschool web geek, he likes to work with the whole stack, from servers to sass and everything in between. Before joining OpenGov, he was a major contributor to <a href=\"http://statedecoded.com/\">The State Decoded</a> project that puts the law online the right way. Bill is also The OpenGov Foundation’s <a href=\"http://www.thedailymeal.com/users/bill-hunt/contact\">resident tea-enthusiast</a>. Tweet him cool .*rc hacks <a href=\"http://twitter.com/krues8dr\">@krues8dr</a> or drop him a line at <a href=\"mailto:Bill@OpenGovFoundation.org\">Bill@OpenGovFoundation.org</a>','Bill Hunt','','publish','open','open','','bill-hunt','','','2015-07-09 01:33:06','2015-07-09 01:33:06','',4,'http://opengov.dev:8888/?page_id=23',0,'page','',0),
(24,1,'2015-07-09 01:29:28','2015-07-09 01:29:28','Bill has been a web developer for almost as long as the web has been around. In that time, he has worked for a variety of start-ups, client service firms, and government agencies, including as the technical lead for several award-winning teams. As an oldschool web geek, he likes to work with the whole stack, from servers to sass and everything in between. Before joining OpenGov, he was a major contributor to <a href=\"http://statedecoded.com/\">The State Decoded</a> project that puts the law online the right way. Bill is also The OpenGov Foundation’s <a href=\"http://www.thedailymeal.com/users/bill-hunt/contact\">resident tea-enthusiast</a>. Tweet him cool .*rc hacks <a href=\"http://twitter.com/krues8dr\">@krues8dr</a> or drop him a line at <a href=\"mailto:Bill@OpenGovFoundation.org\">Bill@OpenGovFoundation.org</a>','Bill Hunt','','inherit','open','open','','23-revision-v1','','','2015-07-09 01:29:28','2015-07-09 01:29:28','',23,'http://opengov.dev:8888/2015/07/09/23-revision-v1/',0,'revision','',0),
(25,1,'2015-07-09 01:51:43','2015-07-09 01:51:43',' \r\n\r\nDarrell is a lifelong technophile with a passion for open, accountable government. First elected to Congress in 2000, he led the successful opposition to the Stop Online Piracy Act (SOPA) in the U.S. House of Representatives. Issa launched OpenGov in March 2011 to expand development of free software solutions like Madison that help citizens access government, empowering them to collaborate with elected officials and each other to deliver better policy.\r\n\r\n \r\n\r\nBefore serving the people of California’s 49th Congressional district as Chairman of the House Oversight and Government Committee, Issa founded Directed Electronics Incorporated and served as Chairman of the Consumer Electronics Association. Issa received the 1994 Entrepreneur of the Year Award from Inc. Magazine, Ernst & Young and the San Diego Union-Tribune. Tweet him @DarrellIssa.\r\n\r\n ','Darrell Issa','','publish','open','open','','darrell-issa','','','2015-07-09 01:51:43','2015-07-09 01:51:43','',4,'http://opengov.dev:8888/?page_id=25',0,'page','',0),
(26,1,'2015-07-09 01:51:43','2015-07-09 01:51:43',' \r\n\r\nDarrell is a lifelong technophile with a passion for open, accountable government. First elected to Congress in 2000, he led the successful opposition to the Stop Online Piracy Act (SOPA) in the U.S. House of Representatives. Issa launched OpenGov in March 2011 to expand development of free software solutions like Madison that help citizens access government, empowering them to collaborate with elected officials and each other to deliver better policy.\r\n\r\n \r\n\r\nBefore serving the people of California’s 49th Congressional district as Chairman of the House Oversight and Government Committee, Issa founded Directed Electronics Incorporated and served as Chairman of the Consumer Electronics Association. Issa received the 1994 Entrepreneur of the Year Award from Inc. Magazine, Ernst & Young and the San Diego Union-Tribune. Tweet him @DarrellIssa.\r\n\r\n ','Darrell Issa','','inherit','open','open','','25-revision-v1','','','2015-07-09 01:51:43','2015-07-09 01:51:43','',25,'http://opengov.dev:8888/2015/07/09/25-revision-v1/',0,'revision','',0),
(27,1,'2015-07-09 01:52:42','2015-07-09 01:52:42','Abhi Nemani is a writer, speaker, organizer, and technologist. For the past four years, he helped build the national non-profit, Code for America, atechnology organization dedicated to reinventing government for the 21st century. Abhi led CfA’s product strategy as its teams tackled local government challenges ranging from transparency and business licensing to food stamps and the criminal justice system. He also led the organization’s efforts to scale through building multiple new programs: a first-of-its-kind civic startup accelerator, an international volunteer corps, and a collaborative network for hundreds of government innovators. Abhi’s work at CfA has been featured in the New York Times, Government Technology, and Forbes, and he has been featured as a speaker at SxSW, the World Bank, and various universities and conferences around the world.\r\n\r\nPrior to CfA, Abhi worked for Google, developing social engagement strategies, the Rose Institute of State and Local Government, managing multiple local government transparency research teams, and the Center for American Progress, focusing on connecting a national network of public-minded students.\r\n\r\nAbhi is a Truman National Security Partner, a member of the Board of Advisors of Significance Labs, and a member of the World Economic Forum’s Urban Development Initiative. He graduated magna cum laude from Claremont McKenna College with a honors degree in Philosophy, Politics, and Economics (PPE), and studied political philosophy and rhetoric as the University of Oxford.','Abhi Nemani','','publish','open','open','','abhi-nemani','','','2015-07-09 01:52:42','2015-07-09 01:52:42','',4,'http://opengov.dev:8888/?page_id=27',0,'page','',0),
(28,1,'2015-07-09 01:52:42','2015-07-09 01:52:42','Abhi Nemani is a writer, speaker, organizer, and technologist. For the past four years, he helped build the national non-profit, Code for America, atechnology organization dedicated to reinventing government for the 21st century. Abhi led CfA’s product strategy as its teams tackled local government challenges ranging from transparency and business licensing to food stamps and the criminal justice system. He also led the organization’s efforts to scale through building multiple new programs: a first-of-its-kind civic startup accelerator, an international volunteer corps, and a collaborative network for hundreds of government innovators. Abhi’s work at CfA has been featured in the New York Times, Government Technology, and Forbes, and he has been featured as a speaker at SxSW, the World Bank, and various universities and conferences around the world.\r\n\r\nPrior to CfA, Abhi worked for Google, developing social engagement strategies, the Rose Institute of State and Local Government, managing multiple local government transparency research teams, and the Center for American Progress, focusing on connecting a national network of public-minded students.\r\n\r\nAbhi is a Truman National Security Partner, a member of the Board of Advisors of Significance Labs, and a member of the World Economic Forum’s Urban Development Initiative. He graduated magna cum laude from Claremont McKenna College with a honors degree in Philosophy, Politics, and Economics (PPE), and studied political philosophy and rhetoric as the University of Oxford.','Abhi Nemani','','inherit','open','open','','27-revision-v1','','','2015-07-09 01:52:42','2015-07-09 01:52:42','',27,'http://opengov.dev:8888/2015/07/09/27-revision-v1/',0,'revision','',0),
(29,1,'2015-07-09 01:53:34','2015-07-09 01:53:34','Lanham is the former CEO of Rackspace, the service leader in open cloud computing and user-first “fanatical customer support.” He joined the company in 2000, growing its team of Rackers from fewer than 100 to more than 4,500 and its revenue to more than $1 billion in 2011. Under his leadership, Rackspace has developed the groundbreaking OpenStack open source cloud operating system. That makes Rackspace and OpenGov, as he puts it, “like brothers from another mother.”Lanham earned a Bachelor’s degree in Economics from Rice University and an MBA from Harvard Business School. Lanham also serves as part-time advisor to General Catalyst. He lives in San Antonio, TX with his wife and two children. Rumor has it that he uses a cloud-based app and smartphone to control the temperature of a backyard smoker to regularly deliver award-winning ribs.','Lanham Napier','','publish','open','open','','lanham-napier','','','2015-07-09 01:53:34','2015-07-09 01:53:34','',4,'http://opengov.dev:8888/?page_id=29',0,'page','',0),
(30,1,'2015-07-09 01:53:34','2015-07-09 01:53:34','Lanham is the former CEO of Rackspace, the service leader in open cloud computing and user-first “fanatical customer support.” He joined the company in 2000, growing its team of Rackers from fewer than 100 to more than 4,500 and its revenue to more than $1 billion in 2011. Under his leadership, Rackspace has developed the groundbreaking OpenStack open source cloud operating system. That makes Rackspace and OpenGov, as he puts it, “like brothers from another mother.”Lanham earned a Bachelor’s degree in Economics from Rice University and an MBA from Harvard Business School. Lanham also serves as part-time advisor to General Catalyst. He lives in San Antonio, TX with his wife and two children. Rumor has it that he uses a cloud-based app and smartphone to control the temperature of a backyard smoker to regularly deliver award-winning ribs.','Lanham Napier','','inherit','open','open','','29-revision-v1','','','2015-07-09 01:53:34','2015-07-09 01:53:34','',29,'http://opengov.dev:8888/2015/07/09/29-revision-v1/',0,'revision','',0),
(31,1,'2015-07-09 01:54:21','2015-07-09 01:54:21','Tom serves as a Director for Deloitte & Touche, working to bring effective, common sense solutions to government. He was first elected to office in 1979, representing Mason District on the Fairfax County Board of Supervisors. In 1991, after spending 12 years as the Mason District supervisor, Tom defeated the incumbent chairman of the county board, taking the top elected office in Fairfax County, Virginia.In 1994, Tom successfully took on another incumbent, this time winning a seat in the U.S. House of Representatives to represent the 11th Congressional District of Virginia. He was the first freshman in 50 years to be given a subcommittee chairmanship, taking the gavel of the Subcommittee on the District of Columbia. He is known for his encyclopedic knowledge of political minutia, often teaching members of Congress on the electoral history of their own districts. He has also twice won the Political Trivial Pursuit challenge sponsored by the Hotline and National Journal.After the 2002 election, he was named chairman of the House Committee on Government Reform, gaining national prominence once again by chairing hearings on the use of performance enhancing substances in professional sports. Other notable accomplishments include his hard-hitting but objective report on the federal response to Hurricane Katrina; his sponsorship of legislation giving the Food and Drug Administration authority to regulate tobacco; and passage of the National Capital Transportation Amendments Act, which authorizes much needed capital reinvestment in the Washington Metro system.Tom is a cum laude graduate of Amherst College and earned a JD degree at the University of Virginia Law School. He is married to Jeannemarie Devolites Davis and has two step daughters, Nicole, and Ashley who are George Mason Graduates.','Tom Davis','','publish','open','open','','tom-davis','','','2015-07-09 01:54:21','2015-07-09 01:54:21','',4,'http://opengov.dev:8888/?page_id=31',0,'page','',0),
(32,1,'2015-07-09 01:54:21','2015-07-09 01:54:21','Tom serves as a Director for Deloitte & Touche, working to bring effective, common sense solutions to government. He was first elected to office in 1979, representing Mason District on the Fairfax County Board of Supervisors. In 1991, after spending 12 years as the Mason District supervisor, Tom defeated the incumbent chairman of the county board, taking the top elected office in Fairfax County, Virginia.In 1994, Tom successfully took on another incumbent, this time winning a seat in the U.S. House of Representatives to represent the 11th Congressional District of Virginia. He was the first freshman in 50 years to be given a subcommittee chairmanship, taking the gavel of the Subcommittee on the District of Columbia. He is known for his encyclopedic knowledge of political minutia, often teaching members of Congress on the electoral history of their own districts. He has also twice won the Political Trivial Pursuit challenge sponsored by the Hotline and National Journal.After the 2002 election, he was named chairman of the House Committee on Government Reform, gaining national prominence once again by chairing hearings on the use of performance enhancing substances in professional sports. Other notable accomplishments include his hard-hitting but objective report on the federal response to Hurricane Katrina; his sponsorship of legislation giving the Food and Drug Administration authority to regulate tobacco; and passage of the National Capital Transportation Amendments Act, which authorizes much needed capital reinvestment in the Washington Metro system.Tom is a cum laude graduate of Amherst College and earned a JD degree at the University of Virginia Law School. He is married to Jeannemarie Devolites Davis and has two step daughters, Nicole, and Ashley who are George Mason Graduates.','Tom Davis','','inherit','open','open','','31-revision-v1','','','2015-07-09 01:54:21','2015-07-09 01:54:21','',31,'http://opengov.dev:8888/2015/07/09/31-revision-v1/',0,'revision','',0),
(33,1,'2015-07-09 01:55:01','2015-07-09 01:55:01','<i></i>Jim serves as legal counsel for OpenGov, bringing to bear more than 25 years of experience in non-profit law.','James Lacy','','publish','open','open','','james-lacy','','','2015-07-09 01:55:01','2015-07-09 01:55:01','',4,'http://opengov.dev:8888/?page_id=33',0,'page','',0),
(34,1,'2015-07-09 01:55:01','2015-07-09 01:55:01','<i></i>Jim serves as legal counsel for OpenGov, bringing to bear more than 25 years of experience in non-profit law.','James Lacy','','inherit','open','open','','33-revision-v1','','','2015-07-09 01:55:01','2015-07-09 01:55:01','',33,'http://opengov.dev:8888/2015/07/09/33-revision-v1/',0,'revision','',0),
(35,1,'2015-07-09 01:55:41','2015-07-09 01:55:41','<i></i>Founder and President of Trippi & Associates, and heralded on the cover of The New Republic as the man who “reinvented campaigning”, Joe Trippi is widely recognized as one of America’s most influential political strategists. During his 34-year career, Trippi has run and consulted on numerous presidential, Senatorial, congressional, mayoral and gubernatorial races. Most recently, Trippi was a senior strategist and media consultant in Jerry Brown’s successful run for California Governor.\r\n\r\nTrippi is known for his innovation in the world of political strategy. In 2004, as the National Campaign Manager for Howard Dean’s presidential campaign, he pioneered the use of online technology to organize what became the largest grassroots movement in presidential politics. Trippi and his team also created the empowerment messaging and the online community tools that President Barack Obama used in his campaigns, and which has now become the basis for movement politics all around the world. He also has an extensive international resume, serving as advisor to successful campaigns for Prime Minister in Greece, Great Britain, and Italy.\r\n\r\nTrippi is the author of The Revolution Will Not Be Televised: Democracy, the Internet and the Overthrow of Everything, the story of how his revolutionary use of the Internet combined with an impassioned, contagious desire to overturn politics-as-usual grew into a national grassroots movement – and changed the face of American politics forever.','Joe Trippi','','publish','open','open','','joe-trippi','','','2015-07-09 01:56:12','2015-07-09 01:56:12','',4,'http://opengov.dev:8888/?page_id=35',0,'page','',0),
(36,1,'2015-07-09 01:55:41','2015-07-09 01:55:41','<i></i>Founder and President of Trippi & Associates, and heralded on the cover of The New Republic as the man who “reinvented campaigning”, Joe Trippi is widely recognized as one of America’s most influential political strategists. During his 34-year career, Trippi has run and consulted on numerous presidential, Senatorial, congressional, mayoral and gubernatorial races. Most recently, Trippi was a senior strategist and media consultant in Jerry Brown’s successful run for California Governor.','Joe Trippi','','inherit','open','open','','35-revision-v1','','','2015-07-09 01:55:41','2015-07-09 01:55:41','',35,'http://opengov.dev:8888/2015/07/09/35-revision-v1/',0,'revision','',0),
(37,1,'2015-07-09 01:55:43','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-07-09 01:55:43','0000-00-00 00:00:00','',0,'http://opengov.dev:8888/?page_id=37',0,'page','',0),
(38,1,'2015-07-09 01:56:12','2015-07-09 01:56:12','<i></i>Founder and President of Trippi & Associates, and heralded on the cover of The New Republic as the man who “reinvented campaigning”, Joe Trippi is widely recognized as one of America’s most influential political strategists. During his 34-year career, Trippi has run and consulted on numerous presidential, Senatorial, congressional, mayoral and gubernatorial races. Most recently, Trippi was a senior strategist and media consultant in Jerry Brown’s successful run for California Governor.\r\n\r\nTrippi is known for his innovation in the world of political strategy. In 2004, as the National Campaign Manager for Howard Dean’s presidential campaign, he pioneered the use of online technology to organize what became the largest grassroots movement in presidential politics. Trippi and his team also created the empowerment messaging and the online community tools that President Barack Obama used in his campaigns, and which has now become the basis for movement politics all around the world. He also has an extensive international resume, serving as advisor to successful campaigns for Prime Minister in Greece, Great Britain, and Italy.\r\n\r\nTrippi is the author of The Revolution Will Not Be Televised: Democracy, the Internet and the Overthrow of Everything, the story of how his revolutionary use of the Internet combined with an impassioned, contagious desire to overturn politics-as-usual grew into a national grassroots movement – and changed the face of American politics forever.','Joe Trippi','','inherit','open','open','','35-revision-v1','','','2015-07-09 01:56:12','2015-07-09 01:56:12','',35,'http://opengov.dev:8888/2015/07/09/35-revision-v1/',0,'revision','',0),
(39,1,'2015-07-09 01:56:57','2015-07-09 01:56:57','Director of the Shuttleworth Foundation, Karien is an advocate for openness and supporter of social entrepreneurs. She has played various roles within the Foundation, facing new challenges and learning every step of the way. She now focuses on the Fellowship Program – engaging with issues of openness and social change, identifying potential investments and working closely with Fellows towards realizing their vision.\r\n\r\nShe is a native of the Eastern Cape, South Africa, and the smell of rain after a dry spell still makes her think of home. She believes elephants have noble hearts and is passionate about their protection and conservation. It is rare for a meme to pass her by; she always knows what’s up in the collective mind of the Internet.\r\n\r\nKarien studied business and economics at the business schools of the University of Stellenbosch and University of Cape Town.','Karien Bezuidenhout','','publish','open','open','','karien-bezuidenhout','','','2015-07-09 01:56:57','2015-07-09 01:56:57','',4,'http://opengov.dev:8888/?page_id=39',0,'page','',0),
(40,1,'2015-07-09 01:56:57','2015-07-09 01:56:57','Director of the Shuttleworth Foundation, Karien is an advocate for openness and supporter of social entrepreneurs. She has played various roles within the Foundation, facing new challenges and learning every step of the way. She now focuses on the Fellowship Program – engaging with issues of openness and social change, identifying potential investments and working closely with Fellows towards realizing their vision.\r\n\r\nShe is a native of the Eastern Cape, South Africa, and the smell of rain after a dry spell still makes her think of home. She believes elephants have noble hearts and is passionate about their protection and conservation. It is rare for a meme to pass her by; she always knows what’s up in the collective mind of the Internet.\r\n\r\nKarien studied business and economics at the business schools of the University of Stellenbosch and University of Cape Town.','Karien Bezuidenhout','','inherit','open','open','','39-revision-v1','','','2015-07-09 01:56:57','2015-07-09 01:56:57','',39,'http://opengov.dev:8888/2015/07/09/39-revision-v1/',0,'revision','',0),
(41,1,'2015-07-09 01:57:48','2015-07-09 01:57:48','Maggie McKinley is Co-Principal Investigator of the “Language of Lobbying” Project at the University of Chicago. She received her JD from Stanford Law School and her BA in linguistic anthropology from UCLA. Previously, she served as Manager of Research at the UCLA Ethnography of Autism Project, Principal Policy Producer at the Sloan Center on the Everyday Lives of Families, and practiced civil litigation on behalf of unions and labor federations at Bredhoff & Kaiser in Washington, DC. Following law school, she clerked for the Northern District of California and the Ninth Circuit. Her work has been published in the Stanford Law Review and was awarded the Steven M. Block Civil Liberties Award for excellence in writing in the area of personal freedom. In August of 2014, Maggie will begin her tenure at Harvard Law School as a Climenko Fellow and Lecturer on Law. Click here for more on Maggie. Tweet her @MaggieMcKinley.','Maggie McKinley','','publish','open','open','','maggie-mckinley','','','2015-07-09 01:57:48','2015-07-09 01:57:48','',4,'http://opengov.dev:8888/?page_id=41',0,'page','',0),
(42,1,'2015-07-09 01:57:48','2015-07-09 01:57:48','Maggie McKinley is Co-Principal Investigator of the “Language of Lobbying” Project at the University of Chicago. She received her JD from Stanford Law School and her BA in linguistic anthropology from UCLA. Previously, she served as Manager of Research at the UCLA Ethnography of Autism Project, Principal Policy Producer at the Sloan Center on the Everyday Lives of Families, and practiced civil litigation on behalf of unions and labor federations at Bredhoff & Kaiser in Washington, DC. Following law school, she clerked for the Northern District of California and the Ninth Circuit. Her work has been published in the Stanford Law Review and was awarded the Steven M. Block Civil Liberties Award for excellence in writing in the area of personal freedom. In August of 2014, Maggie will begin her tenure at Harvard Law School as a Climenko Fellow and Lecturer on Law. Click here for more on Maggie. Tweet her @MaggieMcKinley.','Maggie McKinley','','inherit','open','open','','41-revision-v1','','','2015-07-09 01:57:48','2015-07-09 01:57:48','',41,'http://opengov.dev:8888/2015/07/09/41-revision-v1/',0,'revision','',0),
(43,1,'2015-07-09 01:58:42','2015-07-09 01:58:42','<i></i>As a multifaceted creative with roots in film, animation, illustration, product and interactive design, Jen Yu has led wildly successful design and experience teams in the last decade. These places include Disney, Adobe, Slide (acquired by Google), Jen YuJawbone, and Frog Design, to name a few. She is also deeply involved with social entrepreneurs, having worked with TEDActive in 2011 on the Social Networks Project Leadership team, served on the board of the International Game Developers Association in Asia, and worked as a design mentor for Startup Weekend.\r\n\r\nShe led the Defense Advanced Research Projects Agency’s (DARPA) experience design team in building Plan X, the U.S. Defense Department’s foundational cyberwarfare program. Jen is currently the Chief Creative Officer of a Y Combinator startup in San Francisco. If you buy her a cookie, she will gladly take it.','Jen Yu','','publish','open','open','','jen-yu','','','2015-07-09 01:58:42','2015-07-09 01:58:42','',4,'http://opengov.dev:8888/?page_id=43',0,'page','',0),
(44,1,'2015-07-09 01:58:42','2015-07-09 01:58:42','<i></i>As a multifaceted creative with roots in film, animation, illustration, product and interactive design, Jen Yu has led wildly successful design and experience teams in the last decade. These places include Disney, Adobe, Slide (acquired by Google), Jen YuJawbone, and Frog Design, to name a few. She is also deeply involved with social entrepreneurs, having worked with TEDActive in 2011 on the Social Networks Project Leadership team, served on the board of the International Game Developers Association in Asia, and worked as a design mentor for Startup Weekend.\r\n\r\nShe led the Defense Advanced Research Projects Agency’s (DARPA) experience design team in building Plan X, the U.S. Defense Department’s foundational cyberwarfare program. Jen is currently the Chief Creative Officer of a Y Combinator startup in San Francisco. If you buy her a cookie, she will gladly take it.','Jen Yu','','inherit','open','open','','43-revision-v1','','','2015-07-09 01:58:42','2015-07-09 01:58:42','',43,'http://opengov.dev:8888/2015/07/09/43-revision-v1/',0,'revision','',0),
(45,1,'2015-07-09 01:59:31','2015-07-09 01:59:31','<i></i>Scout is the Managing Director for Mad*Pow’s West Coast office in Oakland, California.\r\n\r\nHe is always looking for ways to do things better, faster, and easier and that’s what makes him successful at uncovering the best solutions for large-scale design challenges. From Fortune 500 companies to angel-funded startups, his leadership, consulting, and designs have resulted in tens of millions of dollars in revenue and cost savings.\r\n\r\nScout‘s passion for complex domains and solving new problems has drawn him to healthcare, financial services, startups, and government. Most recently, he was the Director of Design at Practice Fusion, the leader in cloud-based electronic health records, where he manged the company’s “design first” approach to product development. Some of the other companies he’s worked with include Barclays Global Investors, Thomson Reuters, United Health Group, The United Way, NetApp, Zendesk, and Cooper. He served as a design advisor to the Tech and Digital teams for President Obama’s 2012 campaign and Libby Schaaf’s successful 2014 Oakland mayoral campaign.','Scout Addis','','publish','open','open','','scout-addis','','','2015-07-09 01:59:31','2015-07-09 01:59:31','',4,'http://opengov.dev:8888/?page_id=45',0,'page','',0),
(46,1,'2015-07-09 01:59:31','2015-07-09 01:59:31','<i></i>Scout is the Managing Director for Mad*Pow’s West Coast office in Oakland, California.\r\n\r\nHe is always looking for ways to do things better, faster, and easier and that’s what makes him successful at uncovering the best solutions for large-scale design challenges. From Fortune 500 companies to angel-funded startups, his leadership, consulting, and designs have resulted in tens of millions of dollars in revenue and cost savings.\r\n\r\nScout‘s passion for complex domains and solving new problems has drawn him to healthcare, financial services, startups, and government. Most recently, he was the Director of Design at Practice Fusion, the leader in cloud-based electronic health records, where he manged the company’s “design first” approach to product development. Some of the other companies he’s worked with include Barclays Global Investors, Thomson Reuters, United Health Group, The United Way, NetApp, Zendesk, and Cooper. He served as a design advisor to the Tech and Digital teams for President Obama’s 2012 campaign and Libby Schaaf’s successful 2014 Oakland mayoral campaign.','Scout Addis','','inherit','open','open','','45-revision-v1','','','2015-07-09 01:59:31','2015-07-09 01:59:31','',45,'http://opengov.dev:8888/2015/07/09/45-revision-v1/',0,'revision','',0),
(47,1,'2015-07-09 02:00:21','2015-07-09 02:00:21','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://opengov.dev:8888/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','','','2015-07-09 02:00:21','2015-07-09 02:00:21','',2,'http://opengov.dev:8888/2015/07/09/2-revision-v1/',0,'revision','',0),
(48,1,'2015-05-08 02:03:18','2015-05-08 02:03:18','<p class=\"p1\"></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>DC, Cambridge & SF Competitors Come to the U.S. Capitol to Pitch Solutions to Members of Congress, Key Staff</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\"> </span></p>\r\n<p class=\"p1\"><span class=\"s1\">WASHINGTON, D.C. (May 7, 2015) — <a href=\"http://opengovfoundation.org/\"><span class=\"s3\">The OpenGov Foundation</span></a> and <a href=\"http://ash.harvard.edu/\"><span class=\"s3\">Harvard University Ash Center</span></a> today announced the grand finale of the first annual nationwide #Hack4Congress competition to discover the most innovative solutions to create a 21st Century Congress. On Tuesday, May 12, the winners of <a href=\"https://www.youtube.com/watch?feature=player_detailpage&v=jTsOJGH0Pfo#t=784\"><span class=\"s3\">#Hack4Congress-DC</span></a>, <a href=\"https://hack4congresssf.hackpad.com/SF-Team-Submissions-0zOARIycu5j#:h=Project-Name:-MyCRS\"><span class=\"s3\">#Hack4-Congress-SF</span></a>, and <a href=\"https://www.youtube.com/watch?v=w8Ddu-0l6YQ\"><span class=\"s3\">#Hack4Congress-Boston</span></a> will present their projects to a panel of Members and top staff from House Leadership and Senate offices.</span></p>\r\n<p class=\"p1\"><span class=\"s1\">#Hack4Congress is a series of civic hackathons that has attracted hundreds of civic hackers, technologists, and congressional staffers from across the country to address over three dozen challenges posed by Members of Congress, staffers, and individual citizens.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>WHAT:</b> #Hack4Congress Final Demos</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>WHEN:</b> Tuesday, May 12, 10:00am</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>WHERE:</b> Rayburn House Office Building</span></p>\r\n<p class=\"p1\"><span class=\"s1\">Room 2237</span></p>\r\n<p class=\"p1\"><span class=\"s1\">Washington, DC 201515</span></p>','#Hack4Congress Winning Teams To Present Innovative Projects for A Better Congress','','publish','open','open','','hack4congress-winning-teams-to-present-innovative-projects-for-a-better-congress','','','2015-07-09 02:10:38','2015-07-09 02:10:38','',0,'http://opengov.dev:8888/?p=48',0,'post','',0),
(49,1,'2015-07-09 02:10:38','2015-07-09 02:10:38','<p class=\"p1\"></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>DC, Cambridge & SF Competitors Come to the U.S. Capitol to Pitch Solutions to Members of Congress, Key Staff</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\"> </span></p>\r\n<p class=\"p1\"><span class=\"s1\">WASHINGTON, D.C. (May 7, 2015) — <a href=\"http://opengovfoundation.org/\"><span class=\"s3\">The OpenGov Foundation</span></a> and <a href=\"http://ash.harvard.edu/\"><span class=\"s3\">Harvard University Ash Center</span></a> today announced the grand finale of the first annual nationwide #Hack4Congress competition to discover the most innovative solutions to create a 21st Century Congress. On Tuesday, May 12, the winners of <a href=\"https://www.youtube.com/watch?feature=player_detailpage&v=jTsOJGH0Pfo#t=784\"><span class=\"s3\">#Hack4Congress-DC</span></a>, <a href=\"https://hack4congresssf.hackpad.com/SF-Team-Submissions-0zOARIycu5j#:h=Project-Name:-MyCRS\"><span class=\"s3\">#Hack4-Congress-SF</span></a>, and <a href=\"https://www.youtube.com/watch?v=w8Ddu-0l6YQ\"><span class=\"s3\">#Hack4Congress-Boston</span></a> will present their projects to a panel of Members and top staff from House Leadership and Senate offices.</span></p>\r\n<p class=\"p1\"><span class=\"s1\">#Hack4Congress is a series of civic hackathons that has attracted hundreds of civic hackers, technologists, and congressional staffers from across the country to address over three dozen challenges posed by Members of Congress, staffers, and individual citizens.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>WHAT:</b> #Hack4Congress Final Demos</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>WHEN:</b> Tuesday, May 12, 10:00am</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>WHERE:</b> Rayburn House Office Building</span></p>\r\n<p class=\"p1\"><span class=\"s1\">Room 2237</span></p>\r\n<p class=\"p1\"><span class=\"s1\">Washington, DC 201515</span></p>','#Hack4Congress Winning Teams To Present Innovative Projects for A Better Congress','','inherit','open','open','','48-revision-v1','','','2015-07-09 02:10:38','2015-07-09 02:10:38','',48,'http://opengov.dev:8888/2015/07/09/48-revision-v1/',0,'revision','',0),
(50,1,'2015-05-14 02:10:53','2015-05-14 02:10:53','<p class=\"p1\"></p>\r\n<p class=\"p3\"><span class=\"s1\"><b>100+ Turn Out for Creating A Better Congress with Innovative, Open-Source Technologies </b></span></p>\r\n<p class=\"p4\"><span class=\"s1\"><b>WASHINGTON, D.C. </b><i>(May 14, 2015)</i><b> — </b><a href=\"http://www.opengovfoundation.org/\"><span class=\"s2\">The OpenGov Foundation</span></a> and the <a href=\"http://ash.harvard.edu/\"><span class=\"s2\">Harvard University Ash Center</span></a> closed the <a href=\"http://hack4congress.org/\"><span class=\"s2\">2015 #Hack4Congress competitions </span></a>– where teams of citizens vie to create innovative, low-cost and open-source technologies that make Congress work better – with a standing room-only event on Capitol Hill yesterday. The winning teams from #Hack4Congress events in Boston, San Francisco, and DC presented their solutions to a panel of Members, including Representatives <a href=\"http://www.moulton.house.gov/\"><span class=\"s2\">Seth Moulton</span></a> (D-MA), <a href=\"http://www.issa.house.gov/\"><span class=\"s2\">Darrell Issa</span></a> (R-CA), <a href=\"http://www.walden.house.gov/\"><span class=\"s2\">Greg Walden</span></a> (R-OR) and <a href=\"http://www.susanwbrooks.house.gov/\"><span class=\"s2\">Susan Brooks</span></a> (R-IN), as well as top digital and communications staff from House Leadership and Senate Offices. Later in the day, the teams visited Senators <a href=\"http://thune.senate.gov/\"><span class=\"s2\">John Thune</span></a> (R-SD) and <a href=\"http://markey.senate.gov/\"><span class=\"s2\">Edward Markey</span></a> (D-MA) and received even more actionable feedback on how to take their projects to the next level, with an eye towards deploying them to support a modern, efficient and effective U.S. House and Senate.</span></p>\r\n<p class=\"p5\"><span class=\"s1\">Video of the event is available <a href=\"https://www.youtube.com/watch?v=Xf3ZBkipVsM\"><span class=\"s2\"><b>here</b></span></a>.</span></p>\r\n<p class=\"p4\"><span class=\"s1\">“Members of Congress need to know about these tools,” said Rep. Brooks to #Hack4Congress Boston representatives CongressConnect, who built a platform to help congressional offices schedule smarter, more efficient meetings. “We don’t spend enough time being educated on the types of tools we have; these would be spectacular and make our lives a lot easier. So thank you all very much.”</span><span class=\"s1\"> </span></p>\r\n<p class=\"p4\"><span class=\"s1\">“I think all of this is really helpful,” said Rep. Walden to Team CDash, who built an open-source data visualization and verification platform for citizens, staffers and Members themselves. “I’ve been on staff. I’ve been a Member. Going out on the Internet [for mission-critical information] is great, but it takes a long time, and then you have to verify the information.”</span><span class=\"s1\"> </span></p>\r\n<p class=\"p4\"><span class=\"s1\">“The difference between our founding fathers and today is there is so much more information and it’s so hard to even sort through the information the executive and legislative branch wants you to see,” said Rep. Issa in his opening remarks. “The goal is for the American people, for 300 million-plus people, to begin discovering, and then telling us what they see that was overlooked by the handful of people who run the government today.”</span></p>\r\n<p class=\"p4\"><span class=\"s1\"><b>About the Three Winning Teams & Projects</b></span><span class=\"s1\"> </span></p>\r\n<p class=\"p4\"><span class=\"s3\"><a href=\"https://hack4congresssf.hackpad.com/San-Francisco-Hack4Congress-yevPLbBSlZ5\">#Hack4Congress-San Francisco</a></span><span class=\"s1\"> representatives, <a href=\"https://youtu.be/Xf3ZBkipVsM?t=977\"><span class=\"s2\">CDash</span></a>, designed a way to put analytical tools in the hands of members and staff so that, when preparing for a hearing or a constituent meeting, users can search, collect, and view data sets about relevant issues. “We know that one of the main challenges of working in Congress is time,” said team member Kate Wing. “We want to help Members of Congress be able to go into meetings and be fully prepared.”</span><span class=\"s1\"> </span></p>\r\n<p class=\"p4\"><span class=\"s3\"><a href=\"https://hackpad.com/Hack4Congress-DC-9oz0P32pSCa\">#Hack4-Congress-DC</a></span><span class=\"s1\">’s Team <a href=\"https://youtu.be/Xf3ZBkipVsM?t=2168\"><span class=\"s2\">CoalitionBuilder</span></a> created an easy-to-use platform that aggregates necessary information, such as voting records, co-sponsorships, and committee assignments to produce a list of members who are active on the issue, streamlining the vetting process. CoalitionBuilder helps congressional staffers who otherwise struggle through hours of research to identify potential partners or pay up to $6,000 per year to use existing platforms. “That’s about 20 percent of a staffer’s salary,” said team member and former congressional staffer Melissa Medina. “Offices can’t afford that.”</span><span class=\"s1\"> </span></p>\r\n<p class=\"p4\"><span class=\"s3\"><a href=\"https://hackpad.com/Hack4Congress-Cambridge-QimRAl5EkRp\">#Hack4Congress-Boston</a></span><span class=\"s1\"> representatives, <a href=\"https://youtu.be/Xf3ZBkipVsM?t=3011\"><span class=\"s2\">CongressConnect</span></a>, designed a platform where constituents can directly request meetings on the Hill or in their district office, access tutorials to prepare for their meeting and connect with other constituents who share their advocacy goals. Team member Jessie Landerman told panelists that CongressConnect “captures the essence of democracy: helping to engage, educate, and empower citizens.”</span></p>\r\n<p class=\"p4\"><span class=\"s1\">#Hack4Congress is a series of civic hackathons that has attracted hundreds of civic hackers, technologists, and congressional staffers from across the country to address over three dozen challenges posed by Members of Congress, staffers, and individual citizens.</span></p>','Reps. Walden, Brooks, Issa and Moulton, Senators Thune and Markey Join #Hack4Congress Grand Finale','','publish','open','open','','reps-walden-brooks-issa-and-moulton-senators-thune-and-markey-join-hack4congress-grand-finale','','','2015-07-09 02:12:23','2015-07-09 02:12:23','',0,'http://opengov.dev:8888/?p=50',0,'post','',0),
(51,1,'2015-07-09 02:12:23','2015-07-09 02:12:23','<p class=\"p1\"></p>\r\n<p class=\"p3\"><span class=\"s1\"><b>100+ Turn Out for Creating A Better Congress with Innovative, Open-Source Technologies </b></span></p>\r\n<p class=\"p4\"><span class=\"s1\"><b>WASHINGTON, D.C. </b><i>(May 14, 2015)</i><b> — </b><a href=\"http://www.opengovfoundation.org/\"><span class=\"s2\">The OpenGov Foundation</span></a> and the <a href=\"http://ash.harvard.edu/\"><span class=\"s2\">Harvard University Ash Center</span></a> closed the <a href=\"http://hack4congress.org/\"><span class=\"s2\">2015 #Hack4Congress competitions </span></a>– where teams of citizens vie to create innovative, low-cost and open-source technologies that make Congress work better – with a standing room-only event on Capitol Hill yesterday. The winning teams from #Hack4Congress events in Boston, San Francisco, and DC presented their solutions to a panel of Members, including Representatives <a href=\"http://www.moulton.house.gov/\"><span class=\"s2\">Seth Moulton</span></a> (D-MA), <a href=\"http://www.issa.house.gov/\"><span class=\"s2\">Darrell Issa</span></a> (R-CA), <a href=\"http://www.walden.house.gov/\"><span class=\"s2\">Greg Walden</span></a> (R-OR) and <a href=\"http://www.susanwbrooks.house.gov/\"><span class=\"s2\">Susan Brooks</span></a> (R-IN), as well as top digital and communications staff from House Leadership and Senate Offices. Later in the day, the teams visited Senators <a href=\"http://thune.senate.gov/\"><span class=\"s2\">John Thune</span></a> (R-SD) and <a href=\"http://markey.senate.gov/\"><span class=\"s2\">Edward Markey</span></a> (D-MA) and received even more actionable feedback on how to take their projects to the next level, with an eye towards deploying them to support a modern, efficient and effective U.S. House and Senate.</span></p>\r\n<p class=\"p5\"><span class=\"s1\">Video of the event is available <a href=\"https://www.youtube.com/watch?v=Xf3ZBkipVsM\"><span class=\"s2\"><b>here</b></span></a>.</span></p>\r\n<p class=\"p4\"><span class=\"s1\">“Members of Congress need to know about these tools,” said Rep. Brooks to #Hack4Congress Boston representatives CongressConnect, who built a platform to help congressional offices schedule smarter, more efficient meetings. “We don’t spend enough time being educated on the types of tools we have; these would be spectacular and make our lives a lot easier. So thank you all very much.”</span><span class=\"s1\"> </span></p>\r\n<p class=\"p4\"><span class=\"s1\">“I think all of this is really helpful,” said Rep. Walden to Team CDash, who built an open-source data visualization and verification platform for citizens, staffers and Members themselves. “I’ve been on staff. I’ve been a Member. Going out on the Internet [for mission-critical information] is great, but it takes a long time, and then you have to verify the information.”</span><span class=\"s1\"> </span></p>\r\n<p class=\"p4\"><span class=\"s1\">“The difference between our founding fathers and today is there is so much more information and it’s so hard to even sort through the information the executive and legislative branch wants you to see,” said Rep. Issa in his opening remarks. “The goal is for the American people, for 300 million-plus people, to begin discovering, and then telling us what they see that was overlooked by the handful of people who run the government today.”</span></p>\r\n<p class=\"p4\"><span class=\"s1\"><b>About the Three Winning Teams & Projects</b></span><span class=\"s1\"> </span></p>\r\n<p class=\"p4\"><span class=\"s3\"><a href=\"https://hack4congresssf.hackpad.com/San-Francisco-Hack4Congress-yevPLbBSlZ5\">#Hack4Congress-San Francisco</a></span><span class=\"s1\"> representatives, <a href=\"https://youtu.be/Xf3ZBkipVsM?t=977\"><span class=\"s2\">CDash</span></a>, designed a way to put analytical tools in the hands of members and staff so that, when preparing for a hearing or a constituent meeting, users can search, collect, and view data sets about relevant issues. “We know that one of the main challenges of working in Congress is time,” said team member Kate Wing. “We want to help Members of Congress be able to go into meetings and be fully prepared.”</span><span class=\"s1\"> </span></p>\r\n<p class=\"p4\"><span class=\"s3\"><a href=\"https://hackpad.com/Hack4Congress-DC-9oz0P32pSCa\">#Hack4-Congress-DC</a></span><span class=\"s1\">’s Team <a href=\"https://youtu.be/Xf3ZBkipVsM?t=2168\"><span class=\"s2\">CoalitionBuilder</span></a> created an easy-to-use platform that aggregates necessary information, such as voting records, co-sponsorships, and committee assignments to produce a list of members who are active on the issue, streamlining the vetting process. CoalitionBuilder helps congressional staffers who otherwise struggle through hours of research to identify potential partners or pay up to $6,000 per year to use existing platforms. “That’s about 20 percent of a staffer’s salary,” said team member and former congressional staffer Melissa Medina. “Offices can’t afford that.”</span><span class=\"s1\"> </span></p>\r\n<p class=\"p4\"><span class=\"s3\"><a href=\"https://hackpad.com/Hack4Congress-Cambridge-QimRAl5EkRp\">#Hack4Congress-Boston</a></span><span class=\"s1\"> representatives, <a href=\"https://youtu.be/Xf3ZBkipVsM?t=3011\"><span class=\"s2\">CongressConnect</span></a>, designed a platform where constituents can directly request meetings on the Hill or in their district office, access tutorials to prepare for their meeting and connect with other constituents who share their advocacy goals. Team member Jessie Landerman told panelists that CongressConnect “captures the essence of democracy: helping to engage, educate, and empower citizens.”</span></p>\r\n<p class=\"p4\"><span class=\"s1\">#Hack4Congress is a series of civic hackathons that has attracted hundreds of civic hackers, technologists, and congressional staffers from across the country to address over three dozen challenges posed by Members of Congress, staffers, and individual citizens.</span></p>','Reps. Walden, Brooks, Issa and Moulton, Senators Thune and Markey Join #Hack4Congress Grand Finale','','inherit','open','open','','50-revision-v1','','','2015-07-09 02:12:23','2015-07-09 02:12:23','',50,'http://opengov.dev:8888/2015/07/09/50-revision-v1/',0,'revision','',0),
(52,1,'2015-05-26 02:12:29','2015-05-26 02:12:29','<p class=\"p1\"><span class=\"s1\"><b>About Us</b></span></p>\r\n<p class=\"p1\"><span class=\"s2\"><a href=\"http://opengovfoundation.org/\">The OpenGov Foundation</a></span><span class=\"s1\"> is a small non-profit organization working to build a 21st century democracy by bridging the gap between citizens and government. We’re looking for a strong communicator to help create and share our story of building better government in partnership with citizens and elected officials.</span></p>\r\n<p class=\"p1\"><span class=\"s1\">We value diversity in our organization, and candidates from groups under-represented in government and technology–including women, people of color, and people with disabilities–are encouraged to apply.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>About You</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">Are you passionate about creating more informed, engaged communities that are more inclusive and accessible for everyone? Are you interested in how new technologies can create powerful social change? Do you love connecting with others, and finding the most effective way to tell a story? Are you social-media-savvy, an engaging and versatile writer, and familiar with video and photography? We would love to hear from you.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>Summary</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">You will develop and execute our press, digital, and external relations strategies in a fast-paced, rewarding and high-growth environment, working closely with the rest of The OpenGov Foundation team. This position is based in our Washington, DC office.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>Key Responsibilities</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">You would:</span></p>\r\n\r\n<ul class=\"ul1\">\r\n <li class=\"li1\"><span class=\"s1\">Build and manage relationships with local, national, and tech reporters in order to share our story</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Draft and place op-eds, promotional materials, and presentations</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Manage and grow our existing communications platforms, including our social media accounts, blog, and newsletter, and proactively seek new ways to promote the organization’s work</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Manage relationships with current partner organizations and government officials, and strategically grow The OpenGov Foundation family</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Coordinate special projects and events, including legislative crowdsourcing initiatives and hackathons</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Help to develop, execute and share powerful digital storytelling pieces like infographics and video</span></li>\r\n</ul>\r\n<p class=\"p1\"><span class=\"s1\"><b>Required Qualifications</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">You have the following skills and experience: </span></p>\r\n\r\n<ul class=\"ul1\">\r\n <li class=\"li1\"><span class=\"s1\">Some (1-2 years) experience in nonprofit, advocacy, or political communications</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Excellent written and oral communications skills, with an emphasis on persuasive writing</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Strong experience developing and executing digital communications (social media, infographics, video)</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Ability to work with a small, tight-knit team of equals in an emerging field; ability to take initiative and execute projects with minimal oversight</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Flexibility; willingness to experiment and to grow on the job</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Strong organizational skills and attention to detail</span></li>\r\n</ul>\r\n<p class=\"p1\"><span class=\"s1\"><b>Preferred Qualifications</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">It would be a bonus if you have: </span></p>\r\n\r\n<ul class=\"ul1\">\r\n <li class=\"li1\"><span class=\"s1\">Interest in civic technology, open government, and open data</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Familiarity with agile project management and web development</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Experience in public speaking or sales</span></li>\r\n</ul>\r\n<p class=\"p1\"><span class=\"s1\">If you do not have these qualifications, we can provide the mentorship needed to bring you up to speed.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>Application Materials</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">Using <a href=\"https://screendoor.dobt.co/opengov-foundation/director-of-communications-strategic-partnerships\"><span class=\"s2\">Screendoor</span></a>, please submit:</span></p>\r\n\r\n<ul class=\"ul1\">\r\n <li class=\"li1\"><span class=\"s1\">Your current resume</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Two writing samples, including one recent press release, published op-ed or publicly-delivered speech and one example of your long-form writing.</span></li>\r\n</ul>\r\n<p class=\"p1\"><span class=\"s1\"><b>Salary, Benefits, Legal Documents</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">We are able to provide $50,000-$75,000 for this position depending on experience and needs. We are an organization that operates in the open, which means that you can see our internal and legal documents online. We have <a href=\"https://github.com/opengovfoundation/legal-docs\"><span class=\"s2\">posted online</span></a> all of our employee documents, including <a href=\"https://github.com/opengovfoundation/hr-manual\"><span class=\"s2\">our current employee handbook and onboarding materials</span></a>, <a href=\"https://github.com/opengovfoundation/hr-resources\"><span class=\"s2\">additional human resources documents</span></a>, and <a href=\"https://github.com/opengovfoundation/legal-information/blob/master/staff-salary.csv\"><span class=\"s2\">current employee salaries</span></a>. We also try to promote a healthy work/life balance, and have flexible time policies.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>Sample Video & News Stories from The OpenGov Foundation</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">Get a taste of our news coverage and videos:</span></p>\r\n\r\n<ul class=\"ul1\">\r\n <li class=\"li3\"><span class=\"s5\">Roll Call: <a href=\"http://blogs.rollcall.com/hill-blotter/hacking-congress-with-lawmaker-support/?dcz=\"><span class=\"s2\">Congress is for Hackers</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">The White House: <a href=\"https://www.whitehouse.gov/blog/2015/02/03/announcing-us-public-participation-playbook\"><span class=\"s2\">Announcing the US Public Participation Playbook</span></a></span></li>\r\n <li class=\"li1\"><span class=\"s1\">Baltimore Sun Editorial: <a href=\"http://www.baltimoresun.com/news/opinion/editorial/bs-ed-open-government-20130817-story.html\"><span class=\"s2\">Opening Maryland Government</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">Wired Magazine: <a href=\"http://www.wired.com/2013/10/madison-project/\"><span class=\"s2\">Out in the Open: Hackers Bring Lawmaking Into the 21st Century</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">Washington Post: <a href=\"http://www.washingtonpost.com/blogs/mike-debonis/wp/2014/03/19/dcdecoded-org-offers-better-public-access-to-d-c-laws/\"><span class=\"s2\">DC Decoded Offers Better Public Access to D.C.’s Laws</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">Government Executive: <a href=\"http://m.govexec.com/state-local/2014/07/free-law-founders-open-data-nyc-san-francisco-dc-chicago-boston/88858/\"><span class=\"s2\">Open Gov Backers Launch “Free Law” Coalition</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">[VIDEO] The Verge’s “<a href=\"https://www.youtube.com/watch?v=TzrAoEIXzFk\"><span class=\"s2\">Small Empires with Alexis Ohanian</span></a>”</span></li>\r\n <li class=\"li3\"><span class=\"s5\">[VIDEO] <a href=\"https://www.youtube.com/watch?v=pOv51qIQmDw\"><span class=\"s2\">Meet Madison: Giving You A Direct Voice in Government</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">[VIDEO] <a href=\"https://www.youtube.com/watch?v=x5Bzi6PaK78\"><span class=\"s2\">America Decoded: Free, Open & Online Access to Your Laws</span></a></span></li>\r\n</ul>','WE’RE HIRING! DIRECTOR OF COMMUNICATIONS AND STRATEGIC PARTNERSHIPS','','publish','open','open','','were-hiring-director-of-communications-and-strategic-partnerships','','','2015-07-09 02:13:25','2015-07-09 02:13:25','',0,'http://opengov.dev:8888/?p=52',0,'post','',0),
(53,1,'2015-07-09 02:13:25','2015-07-09 02:13:25','<p class=\"p1\"><span class=\"s1\"><b>About Us</b></span></p>\r\n<p class=\"p1\"><span class=\"s2\"><a href=\"http://opengovfoundation.org/\">The OpenGov Foundation</a></span><span class=\"s1\"> is a small non-profit organization working to build a 21st century democracy by bridging the gap between citizens and government. We’re looking for a strong communicator to help create and share our story of building better government in partnership with citizens and elected officials.</span></p>\r\n<p class=\"p1\"><span class=\"s1\">We value diversity in our organization, and candidates from groups under-represented in government and technology–including women, people of color, and people with disabilities–are encouraged to apply.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>About You</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">Are you passionate about creating more informed, engaged communities that are more inclusive and accessible for everyone? Are you interested in how new technologies can create powerful social change? Do you love connecting with others, and finding the most effective way to tell a story? Are you social-media-savvy, an engaging and versatile writer, and familiar with video and photography? We would love to hear from you.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>Summary</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">You will develop and execute our press, digital, and external relations strategies in a fast-paced, rewarding and high-growth environment, working closely with the rest of The OpenGov Foundation team. This position is based in our Washington, DC office.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>Key Responsibilities</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">You would:</span></p>\r\n\r\n<ul class=\"ul1\">\r\n <li class=\"li1\"><span class=\"s1\">Build and manage relationships with local, national, and tech reporters in order to share our story</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Draft and place op-eds, promotional materials, and presentations</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Manage and grow our existing communications platforms, including our social media accounts, blog, and newsletter, and proactively seek new ways to promote the organization’s work</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Manage relationships with current partner organizations and government officials, and strategically grow The OpenGov Foundation family</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Coordinate special projects and events, including legislative crowdsourcing initiatives and hackathons</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Help to develop, execute and share powerful digital storytelling pieces like infographics and video</span></li>\r\n</ul>\r\n<p class=\"p1\"><span class=\"s1\"><b>Required Qualifications</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">You have the following skills and experience: </span></p>\r\n\r\n<ul class=\"ul1\">\r\n <li class=\"li1\"><span class=\"s1\">Some (1-2 years) experience in nonprofit, advocacy, or political communications</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Excellent written and oral communications skills, with an emphasis on persuasive writing</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Strong experience developing and executing digital communications (social media, infographics, video)</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Ability to work with a small, tight-knit team of equals in an emerging field; ability to take initiative and execute projects with minimal oversight</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Flexibility; willingness to experiment and to grow on the job</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Strong organizational skills and attention to detail</span></li>\r\n</ul>\r\n<p class=\"p1\"><span class=\"s1\"><b>Preferred Qualifications</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">It would be a bonus if you have: </span></p>\r\n\r\n<ul class=\"ul1\">\r\n <li class=\"li1\"><span class=\"s1\">Interest in civic technology, open government, and open data</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Familiarity with agile project management and web development</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Experience in public speaking or sales</span></li>\r\n</ul>\r\n<p class=\"p1\"><span class=\"s1\">If you do not have these qualifications, we can provide the mentorship needed to bring you up to speed.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>Application Materials</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">Using <a href=\"https://screendoor.dobt.co/opengov-foundation/director-of-communications-strategic-partnerships\"><span class=\"s2\">Screendoor</span></a>, please submit:</span></p>\r\n\r\n<ul class=\"ul1\">\r\n <li class=\"li1\"><span class=\"s1\">Your current resume</span></li>\r\n <li class=\"li1\"><span class=\"s1\">Two writing samples, including one recent press release, published op-ed or publicly-delivered speech and one example of your long-form writing.</span></li>\r\n</ul>\r\n<p class=\"p1\"><span class=\"s1\"><b>Salary, Benefits, Legal Documents</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">We are able to provide $50,000-$75,000 for this position depending on experience and needs. We are an organization that operates in the open, which means that you can see our internal and legal documents online. We have <a href=\"https://github.com/opengovfoundation/legal-docs\"><span class=\"s2\">posted online</span></a> all of our employee documents, including <a href=\"https://github.com/opengovfoundation/hr-manual\"><span class=\"s2\">our current employee handbook and onboarding materials</span></a>, <a href=\"https://github.com/opengovfoundation/hr-resources\"><span class=\"s2\">additional human resources documents</span></a>, and <a href=\"https://github.com/opengovfoundation/legal-information/blob/master/staff-salary.csv\"><span class=\"s2\">current employee salaries</span></a>. We also try to promote a healthy work/life balance, and have flexible time policies.</span></p>\r\n<p class=\"p1\"><span class=\"s1\"><b>Sample Video & News Stories from The OpenGov Foundation</b></span></p>\r\n<p class=\"p1\"><span class=\"s1\">Get a taste of our news coverage and videos:</span></p>\r\n\r\n<ul class=\"ul1\">\r\n <li class=\"li3\"><span class=\"s5\">Roll Call: <a href=\"http://blogs.rollcall.com/hill-blotter/hacking-congress-with-lawmaker-support/?dcz=\"><span class=\"s2\">Congress is for Hackers</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">The White House: <a href=\"https://www.whitehouse.gov/blog/2015/02/03/announcing-us-public-participation-playbook\"><span class=\"s2\">Announcing the US Public Participation Playbook</span></a></span></li>\r\n <li class=\"li1\"><span class=\"s1\">Baltimore Sun Editorial: <a href=\"http://www.baltimoresun.com/news/opinion/editorial/bs-ed-open-government-20130817-story.html\"><span class=\"s2\">Opening Maryland Government</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">Wired Magazine: <a href=\"http://www.wired.com/2013/10/madison-project/\"><span class=\"s2\">Out in the Open: Hackers Bring Lawmaking Into the 21st Century</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">Washington Post: <a href=\"http://www.washingtonpost.com/blogs/mike-debonis/wp/2014/03/19/dcdecoded-org-offers-better-public-access-to-d-c-laws/\"><span class=\"s2\">DC Decoded Offers Better Public Access to D.C.’s Laws</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">Government Executive: <a href=\"http://m.govexec.com/state-local/2014/07/free-law-founders-open-data-nyc-san-francisco-dc-chicago-boston/88858/\"><span class=\"s2\">Open Gov Backers Launch “Free Law” Coalition</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">[VIDEO] The Verge’s “<a href=\"https://www.youtube.com/watch?v=TzrAoEIXzFk\"><span class=\"s2\">Small Empires with Alexis Ohanian</span></a>”</span></li>\r\n <li class=\"li3\"><span class=\"s5\">[VIDEO] <a href=\"https://www.youtube.com/watch?v=pOv51qIQmDw\"><span class=\"s2\">Meet Madison: Giving You A Direct Voice in Government</span></a></span></li>\r\n <li class=\"li3\"><span class=\"s5\">[VIDEO] <a href=\"https://www.youtube.com/watch?v=x5Bzi6PaK78\"><span class=\"s2\">America Decoded: Free, Open & Online Access to Your Laws</span></a></span></li>\r\n</ul>','WE’RE HIRING! DIRECTOR OF COMMUNICATIONS AND STRATEGIC PARTNERSHIPS','','inherit','open','open','','52-revision-v1','','','2015-07-09 02:13:25','2015-07-09 02:13:25','',52,'http://opengov.dev:8888/2015/07/09/52-revision-v1/',0,'revision','',0),
(54,1,'2015-07-09 02:13:33','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-07-09 02:13:33','0000-00-00 00:00:00','',0,'http://opengov.dev:8888/?p=54',0,'post','',0),
(55,1,'2015-07-10 19:45:15','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-07-10 19:45:15','0000-00-00 00:00:00','',0,'http://opengov.dev:8888/?p=55',0,'post','',0),
(56,1,'2015-07-10 20:35:35','2015-07-10 20:35:35','<p class=\"p1\"><span class=\"s1\">We are a non-partisan 501(c)(3) nonprofit. We promote citizen participation in how laws are envisioned and created. We boost collaboration and openness in governments and communities. Our software, coalition-building, and events are designed to change the culture of government. Everything we create is free and open source, allowing everyone to use, contribute to, and benefit from our work.</span><span class=\"s2\">\r\n<b>Learn more about us »</b> </span></p>','Home Page','','publish','open','open','','home-page','','','2015-07-10 20:41:10','2015-07-10 20:41:10','',0,'http://opengov.dev:8888/?page_id=56',0,'page','',0),
(57,1,'2015-07-10 20:35:35','2015-07-10 20:35:35','','Home Page','','inherit','open','open','','56-revision-v1','','','2015-07-10 20:35:35','2015-07-10 20:35:35','',56,'http://opengov.dev:8888/2015/07/10/56-revision-v1/',0,'revision','',0),
(58,1,'2015-07-10 20:37:09','2015-07-10 20:37:09','<p class=\"p1\"><span class=\"s1\">We are a non-partisan 501(c)(3) nonprofit. We promote citizen participation in how laws are envisioned and created. We boost collaboration and openness in governments and communities. Our software, coalition-building, and events are designed to change the culture of government. Everything we create is free and open source, allowing everyone to use, contribute to, and benefit from our work.</span><span class=\"s2\">\n<b>Learn more about us »</b> </span></p>','Home Page','','inherit','open','open','','56-autosave-v1','','','2015-07-10 20:37:09','2015-07-10 20:37:09','',56,'http://opengov.dev:8888/2015/07/10/56-autosave-v1/',0,'revision','',0),
(59,1,'2015-07-10 20:41:10','2015-07-10 20:41:10','<p class=\"p1\"><span class=\"s1\">We are a non-partisan 501(c)(3) nonprofit. We promote citizen participation in how laws are envisioned and created. We boost collaboration and openness in governments and communities. Our software, coalition-building, and events are designed to change the culture of government. Everything we create is free and open source, allowing everyone to use, contribute to, and benefit from our work.</span><span class=\"s2\">\r\n<b>Learn more about us »</b> </span></p>','Home Page','','inherit','open','open','','56-revision-v1','','','2015-07-10 20:41:10','2015-07-10 20:41:10','',56,'http://opengov.dev:8888/2015/07/10/56-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_term_relationships
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_term_relationships`;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `wp_term_relationships` WRITE;
/*!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),
(19,2,0),
(21,2,0),
(23,2,0),
(25,3,0),
(27,3,0),
(29,3,0),
(31,3,0),
(33,3,0),
(35,4,0),
(39,4,0),
(41,4,0),
(43,4,0),
(45,4,0),
(48,6,0),
(48,9,0),
(50,10,0),
(52,6,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_term_taxonomy
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_term_taxonomy`;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!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,1),
(2,2,'category','',0,4),
(3,3,'category','',0,5),
(4,4,'category','',0,5),
(5,5,'category','',0,0),
(6,6,'category','',5,2),
(7,7,'category','',5,0),
(8,8,'category','',5,0),
(9,9,'category','',6,1),
(10,10,'category','',6,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_terms
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_terms`;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`)
VALUES
(1,'Uncategorized','uncategorized',0),
(2,'Team Members','team-members',0),
(3,'Board Members','board-members',0),
(4,'Advisory Board','advisory-board',0),
(5,'News','news',0),
(6,'Announcements','announcements',0),
(7,'Blog','blog',0),
(8,'General News','general-news',0),
(9,'Media Advisory','media-advisory',0),
(10,'Press Release','press-release',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_usermeta
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_usermeta`;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`)
VALUES
(1,1,'nickname','opengov'),
(2,1,'first_name',''),
(3,1,'last_name',''),
(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','wp360_locks,wp390_widgets,wp410_dfw'),
(13,1,'show_welcome_panel','1'),
(14,1,'session_tokens','a:2:{s:64:\"09705a9e2eb41a57471036b01c62e1bcc4323e3736cab80171474b744ab01e9a\";a:4:{s:10:\"expiration\";i:1435976743;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36\";s:5:\"login\";i:1435803943;}s:64:\"706341fb2ddc1ec9b1971b6929aaf0be36bf1d3eb97f2e323f22e4d3f7bb3a90\";a:4:{s:10:\"expiration\";i:1437013544;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36\";s:5:\"login\";i:1435803944;}}'),
(15,1,'wp_dashboard_quick_press_last_post_id','55'),
(16,1,'wpseo_ignore_tour','1'),
(17,1,'closedpostboxes_page','a:0:{}'),
(18,1,'metaboxhidden_page','a:3:{i:0;s:16:\"commentstatusdiv\";i:1;s:7:\"slugdiv\";i:2;s:9:\"authordiv\";}'),
(19,1,'meta-box-order_page','a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:36:\"submitdiv,pageparentdiv,postimagediv\";s:6:\"normal\";s:56:\"postcustom,wpseo_meta,commentstatusdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),
(20,1,'screen_layout_page','2'),
(21,1,'wpseo_seen_about_version','2.2.1'),
(22,1,'closedpostboxes_post','a:0:{}'),
(23,1,'metaboxhidden_post','a:5:{i:0;s:11:\"postexcerpt\";i:1;s:13:\"trackbacksdiv\";i:2;s:16:\"commentstatusdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}'),
(24,1,'meta-box-order_post','a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:61:\"submitdiv,formatdiv,categorydiv,tagsdiv-post_tag,postimagediv\";s:6:\"normal\";s:82:\"postcustom,wpseo_meta,postexcerpt,trackbacksdiv,commentstatusdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),
(25,1,'screen_layout_post','2');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_users
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_users`;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `wp_users` WRITE;
/*!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,'opengov','$P$B7ev9ewiSC2PRlzfWpt2qUxvONM3Nq1','opengov','jmpa@meticulous.com','','2015-06-29 13:23:51','',0,'opengov');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;