-
Notifications
You must be signed in to change notification settings - Fork 13
/
wp.sql
378 lines (331 loc) · 443 KB
/
wp.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
-- MySQL dump 10.13 Distrib 5.6.19, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: wp
-- ------------------------------------------------------
-- Server version 5.6.19-0ubuntu0.14.04.1
/*!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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!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 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=169 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://localhost:19102','yes'),(2,'home','http://localhost:19102','yes'),(3,'blogname','phila.gov','yes'),(4,'blogdescription','City of Philadelphia','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','yes'),(7,'start_of_week','0','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%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:8:{i:0;s:41:\"amazon-s3-and-cloudfront/wordpress-s3.php\";i:1;s:43:\"amazon-web-services/amazon-web-services.php\";i:2;s:21:\"meta-box/meta-box.php\";i:3;s:33:\"phila.gov-customization/index.php\";i:4;s:43:\"restrict-categories/restrict-categories.php\";i:5;s:28:\"swiftype-search/swiftype.php\";i:6;s:41:\"wordpress-importer/wordpress-importer.php\";i:7;s:53:\"wpfront-user-role-editor/wpfront-user-role-editor.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','-5','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','','no'),(41,'template','phila.gov-theme','yes'),(42,'stylesheet','phila.gov-theme','yes'),(43,'comment_whitelist','1','yes'),(44,'blacklist_keys','','no'),(45,'comment_registration','0','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','30133','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','0','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','posts','yes'),(55,'tag_base','','yes'),(56,'show_avatars','1','yes'),(57,'avatar_rating','G','yes'),(58,'upload_url_path','','yes'),(59,'thumbnail_size_w','150','yes'),(60,'thumbnail_size_h','150','yes'),(61,'thumbnail_crop','1','yes'),(62,'medium_size_w','300','yes'),(63,'medium_size_h','300','yes'),(64,'avatar_default','mystery','yes'),(65,'large_size_w','1024','yes'),(66,'large_size_h','1024','yes'),(67,'image_default_link_type','file','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','0','yes'),(71,'close_comments_days_old','14','yes'),(72,'thread_comments','1','yes'),(73,'thread_comments_depth','5','yes'),(74,'page_comments','0','yes'),(75,'comments_per_page','50','yes'),(76,'default_comments_page','newest','yes'),(77,'comment_order','asc','yes'),(78,'sticky_posts','a:0:{}','yes'),(79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_text','a:0:{}','yes'),(81,'widget_rss','a:0:{}','yes'),(82,'uninstall_plugins','a:0:{}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','0','yes'),(85,'page_on_front','0','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','29630','yes'),(89,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:69:{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:10:\"list_roles\";b:1;s:12:\"create_roles\";b:1;s:10:\"edit_roles\";b:1;s:12:\"delete_roles\";b:1;s:15:\"edit_role_menus\";b:1;s:27:\"edit_posts_role_permissions\";b:1;s:27:\"edit_pages_role_permissions\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(90,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(91,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(92,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(93,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s: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;}','yes'),(96,'_transient_random_seed','ed7ee9a4582b9afd88e01be5e6f9349d','yes'),(97,'logged_in_key',':-cx*Tfwa}!I>eFb.20O|Q]pKi92E^4X)2xm[5&w>kh|x87h/SA(U4c-0Z#$}mqa','yes'),(98,'logged_in_salt','`xY.T[=*4).CvZQn6D(hzs)^4;`J8xOo}.=Q d|wQNZTkZk3Fo&H6$) Du]#uq^k','yes'),(99,'cron','a:5:{i:1417626273;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:1417626274;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1417679700;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:1418925273;a:1:{s:34:\"as3cf_cron_update_meta_with_region\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:38:\"as3cf_update_meta_with_region_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}s:7:\"version\";i:2;}','yes'),(100,'_transient_doing_cron','1419027322.3885180950164794921875','yes'),(101,'auth_key','LlxSgCI{wY4DKxpK][N<KtNVquB#Kb$shC8IfxQdWipRE$R4hx(G`ttz9nwdE6};','yes'),(102,'auth_salt','Ej7lj:Ezv@rtDV8JZ+=*l0`pxu:6o~L3YEz^@pWH<(YAC-L,YHD~XVVk|Iwb{=@z','yes'),(103,'nonce_key','#ccw>;N*n{2<C(e2$oN@f1R(|MLAT`%Ohq,x,`2VrnD2h0vVTEDx2~QC|na#ss}f','yes'),(104,'nonce_salt',' 6uxT[^]*>/6Zu;K2/U5yb|mX}WLN#r*zAB _Tke#]J$v^[Fs]urGr5>u{xN1lk3','yes'),(106,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1419027323;s:7:\"checked\";a:8:{s:41:\"amazon-s3-and-cloudfront/wordpress-s3.php\";s:5:\"0.7.2\";s:43:\"amazon-web-services/amazon-web-services.php\";s:3:\"0.2\";s:21:\"meta-box/meta-box.php\";s:5:\"4.4.1\";s:33:\"phila.gov-customization/index.php\";s:5:\"0.3.3\";s:43:\"restrict-categories/restrict-categories.php\";s:5:\"2.6.3\";s:28:\"swiftype-search/swiftype.php\";s:6:\"1.1.39\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.1\";s:53:\"wpfront-user-role-editor/wpfront-user-role-editor.php\";s:3:\"2.3\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:41:\"amazon-s3-and-cloudfront/wordpress-s3.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"38149\";s:4:\"slug\";s:24:\"amazon-s3-and-cloudfront\";s:6:\"plugin\";s:41:\"amazon-s3-and-cloudfront/wordpress-s3.php\";s:11:\"new_version\";s:5:\"0.7.2\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/amazon-s3-and-cloudfront/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/amazon-s3-and-cloudfront.0.7.2.zip\";}s:43:\"amazon-web-services/amazon-web-services.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"44146\";s:4:\"slug\";s:19:\"amazon-web-services\";s:6:\"plugin\";s:43:\"amazon-web-services/amazon-web-services.php\";s:11:\"new_version\";s:3:\"0.2\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/amazon-web-services/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/amazon-web-services.0.2.zip\";}s:21:\"meta-box/meta-box.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"26827\";s:4:\"slug\";s:8:\"meta-box\";s:6:\"plugin\";s:21:\"meta-box/meta-box.php\";s:11:\"new_version\";s:5:\"4.4.1\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/meta-box/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/meta-box.4.4.1.zip\";}s:43:\"restrict-categories/restrict-categories.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"18007\";s:4:\"slug\";s:19:\"restrict-categories\";s:6:\"plugin\";s:43:\"restrict-categories/restrict-categories.php\";s:11:\"new_version\";s:5:\"2.6.3\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/restrict-categories/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/restrict-categories.2.6.3.zip\";}s:28:\"swiftype-search/swiftype.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"32678\";s:4:\"slug\";s:15:\"swiftype-search\";s:6:\"plugin\";s:28:\"swiftype-search/swiftype.php\";s:11:\"new_version\";s:6:\"1.1.39\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/swiftype-search/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/swiftype-search.1.1.39.zip\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14975\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.6.1\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.1.zip\";}s:53:\"wpfront-user-role-editor/wpfront-user-role-editor.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"48417\";s:4:\"slug\";s:24:\"wpfront-user-role-editor\";s:6:\"plugin\";s:53:\"wpfront-user-role-editor/wpfront-user-role-editor.php\";s:11:\"new_version\";s:3:\"2.3\";s:14:\"upgrade_notice\";s:65:\"Integrates with Duplicator plugin.\nPerformance fix on list roles.\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/wpfront-user-role-editor/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/wpfront-user-role-editor.2.3.zip\";}}}','yes'),(109,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1419027323;s:7:\"checked\";a:1:{s:15:\"phila.gov-theme\";s:9:\"1.0-wpcom\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),(129,'theme_mods_twentyfourteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1417626295;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(130,'current_theme','phila-gov','yes'),(131,'theme_mods_phila.gov-theme','a:1:{i:0;b:0;}','yes'),(132,'theme_switched','','yes'),(133,'recently_activated','a:0:{}','yes'),(134,'WPLANG','','yes'),(138,'RestrictCats_options','','yes'),(139,'RestrictCats_user_options','','yes'),(140,'RestrictCats-screen-options','a:2:{s:14:\"roles_per_page\";i:20;s:14:\"users_per_page\";i:20;}','yes'),(141,'_transient_is_multi_author','0','yes'),(142,'db_upgraded','','yes'),(143,'rewrite_rules','a:128:{s:26:\"departments/topics/(.+)/?$\";s:54:\"index.php?post_type=department_page&topics=$matches[1]\";s:10:\"service/?$\";s:32:\"index.php?post_type=service_post\";s:40:\"service/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=service_post&feed=$matches[1]\";s:35:\"service/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=service_post&feed=$matches[1]\";s:27:\"service/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=service_post&paged=$matches[1]\";s:7:\"news/?$\";s:29:\"index.php?post_type=news_post\";s:37:\"news/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=news_post&feed=$matches[1]\";s:32:\"news/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=news_post&feed=$matches[1]\";s:24:\"news/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=news_post&paged=$matches[1]\";s:14:\"departments/?$\";s:35:\"index.php?post_type=department_page\";s:44:\"departments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=department_page&feed=$matches[1]\";s:39:\"departments/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=department_page&feed=$matches[1]\";s:31:\"departments/page/([0-9]{1,})/?$\";s:53:\"index.php?post_type=department_page&paged=$matches[1]\";s:40:\"./(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"./(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:28:\"./(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:10:\"./(.+?)/?$\";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:45:\"browse/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?topics=$matches[1]&feed=$matches[2]\";s:40:\"browse/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?topics=$matches[1]&feed=$matches[2]\";s:33:\"browse/(.+?)/page/?([0-9]{1,})/?$\";s:46:\"index.php?topics=$matches[1]&paged=$matches[2]\";s:15:\"browse/(.+?)/?$\";s:28:\"index.php?topics=$matches[1]\";s:35:\"service/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"service/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"service/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"service/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"service/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"service/([^/]+)/trackback/?$\";s:39:\"index.php?service_post=$matches[1]&tb=1\";s:48:\"service/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?service_post=$matches[1]&feed=$matches[2]\";s:43:\"service/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?service_post=$matches[1]&feed=$matches[2]\";s:36:\"service/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?service_post=$matches[1]&paged=$matches[2]\";s:43:\"service/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?service_post=$matches[1]&cpage=$matches[2]\";s:28:\"service/([^/]+)(/[0-9]+)?/?$\";s:51:\"index.php?service_post=$matches[1]&page=$matches[2]\";s:24:\"service/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"service/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"service/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"service/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"service/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"news/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"news/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"news/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"news/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"news/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:25:\"news/([^/]+)/trackback/?$\";s:36:\"index.php?news_post=$matches[1]&tb=1\";s:45:\"news/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?news_post=$matches[1]&feed=$matches[2]\";s:40:\"news/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?news_post=$matches[1]&feed=$matches[2]\";s:33:\"news/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?news_post=$matches[1]&paged=$matches[2]\";s:40:\"news/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?news_post=$matches[1]&cpage=$matches[2]\";s:25:\"news/([^/]+)(/[0-9]+)?/?$\";s:48:\"index.php?news_post=$matches[1]&page=$matches[2]\";s:21:\"news/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"news/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"news/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"news/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"news/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"departments/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"departments/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"departments/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"departments/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"departments/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"departments/(.+?)/trackback/?$\";s:42:\"index.php?department_page=$matches[1]&tb=1\";s:50:\"departments/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?department_page=$matches[1]&feed=$matches[2]\";s:45:\"departments/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?department_page=$matches[1]&feed=$matches[2]\";s:38:\"departments/(.+?)/page/?([0-9]{1,})/?$\";s:55:\"index.php?department_page=$matches[1]&paged=$matches[2]\";s:45:\"departments/(.+?)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?department_page=$matches[1]&cpage=$matches[2]\";s:30:\"departments/(.+?)(/[0-9]+)?/?$\";s:54:\"index.php?department_page=$matches[1]&page=$matches[2]\";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:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)(/[0-9]+)?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}','yes'),(146,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.1.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-4.1-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"4.1\";s:7:\"version\";s:3:\"4.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1419027323;s:15:\"version_checked\";s:3:\"4.1\";s:12:\"translations\";a:0:{}}','yes'),(147,'_site_transient_timeout_browser_ee2e29b5e18302adfac38de9e1b7b3ae','1419546674','yes'),(148,'_site_transient_browser_ee2e29b5e18302adfac38de9e1b7b3ae','a:9:{s:8:\"platform\";s:5:\"Linux\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"39.0.2171.95\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(149,'can_compress_scripts','1','yes'),(150,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1418985076','no'),(151,'_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:\"Thu, 18 Dec 2014 18:57: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:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/?v=4.2-alpha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.1 “Dinah”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2014/12/dinah/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/news/2014/12/dinah/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Dec 2014 18:35:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3386\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"Version 4.1 of WordPress, named “Dinah” in honor of jazz singer Dinah Washington, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style. Introducing Twenty Fifteen Our newest default theme, Twenty Fifteen, is […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:23200:\"<p>Version 4.1 of WordPress, named “Dinah” in honor of jazz singer <a href=\"http://wikipedia.org/wiki/Dinah_Washington\">Dinah Washington</a>, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style.</p>\n<hr />\n<h2 style=\"text-align: center\">Introducing Twenty Fifteen</h2>\n<p><img class=\"aligncenter size-large wp-image-3389\" src=\"https://wordpress.org/news/files/2014/12/2015-laptop-1024x533.png\" alt=\"2015-laptop\" width=\"692\" height=\"360\" /></p>\n<h3>Our newest default theme, Twenty Fifteen, is a blog-focused theme designed for clarity.</h3>\n<p><img class=\"alignright wp-image-3426 size-medium\" src=\"https://wordpress.org/news/files/2014/12/2015-phones-languages-small-300x250.png\" alt=\"\" width=\"300\" height=\"250\" />Twenty Fifteen has flawless language support, with help from <a href=\"https://www.google.com/get/noto/\">Google’s Noto font family</a>.</p>\n<p>The straightforward typography is readable on any screen size.</p>\n<p>Your content always takes center stage, whether viewed on a phone, tablet, laptop, or desktop computer.</p>\n<hr />\n<h2 style=\"text-align: center\">Distraction-free writing</h2>\n<p><img class=\"aligncenter size-large wp-image-3392\" src=\"https://wordpress.org/news/files/2014/12/dfw-screen-1024x614.png\" alt=\"dfw-screen\" width=\"692\" height=\"415\" /></p>\n<h3 style=\"text-align: center\"><em>Just write.</em></h3>\n<p>Sometimes, you just need to concentrate on putting your thoughts into words. Try turning on <strong>distraction-free writing mode</strong>. When you start typing, all the distractions will fade away, letting you focus solely on your writing. All your editing tools instantly return when you need them.</p>\n<hr />\n<h2 style=\"text-align: center\">The Finer Points</h2>\n<h5><strong><img class=\"alignleft wp-image-3405\" src=\"https://wordpress.org/news/files/2014/12/icon-language2.png\" alt=\"\" width=\"80\" height=\"80\" /></strong>Choose a language</h5>\n<p>Right now, WordPress 4.1 is already translated into over forty languages, with more always in progress. You can switch to any translation on the General Settings screen.</p>\n<h5><strong><img class=\"alignleft wp-image-3406\" src=\"https://wordpress.org/news/files/2014/12/icon-logout1.png\" alt=\"\" width=\"80\" height=\"80\" /></strong>Log out everywhere</h5>\n<p>If you’ve ever worried you forgot to sign out from a shared computer, you can now go to your profile and log out everywhere.</p>\n<h5><strong><img class=\"alignleft wp-image-3407\" src=\"https://wordpress.org/news/files/2014/12/icon-vine1.png\" alt=\"\" width=\"80\" height=\"80\" /></strong>Vine embeds</h5>\n<p>Embedding videos from Vine is as simple as pasting a URL onto its own line in a post. See the <a href=\"https://codex.wordpress.org/Embeds\">full list</a> of supported embeds.</p>\n<h5><strong><img class=\"alignleft wp-image-3408\" src=\"https://wordpress.org/news/files/2014/12/icon-recommended1.png\" alt=\"\" width=\"80\" height=\"80\" /></strong>Plugin recommendations</h5>\n<p>The plugin installer suggests plugins for you to try. Recommendations are based on the plugins you and other users have installed.</p>\n<hr />\n<h2 style=\"text-align: center\">Under the Hood</h2>\n<h5>Complex Queries</h5>\n<p>Metadata, date, and term queries now support advanced conditional logic, like nested clauses and multiple operators — <code>A AND ( B OR C )</code>.</p>\n<h5>Customizer API</h5>\n<p>The customizer now supports conditionally showing panels and sections based on the page being previewed.</p>\n<h5><code><title></code> tags in themes</h5>\n<p><code>add_theme_support( \'title-tag\' )</code> tells WordPress to handle the complexities of document titles.</p>\n<h5>Developer Reference</h5>\n<p>Continued improvements to inline code documentation have made the <a href=\"https://developer.wordpress.org/reference/\">developer reference</a> more complete than ever.</p>\n<hr />\n<h2 style=\"text-align: center\">The Choir</h2>\n<p>This release was led by <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, with the help of these awesome folks. Check out some of their profiles while listening to Dinah Washington on the music service of your choice:</p>\n<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/kawauso\">Adam Harley (Kawauso)</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adelval\">adelval</a>, <a href=\"https://profiles.wordpress.org/ajay\">Ajay</a>, <a href=\"https://profiles.wordpress.org/akeda\">Akeda Bagus</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/aliso\">Alison Barrett</a>, <a href=\"https://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"https://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/norcross\">Andrew Norcross</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andykeith\">Andy Keith</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/aubreypwd\">Aubrey Portwood</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/toszcze\">Bartosz Romanowski</a>, <a href=\"https://profiles.wordpress.org/bassgang\">bassgang</a>, <a href=\"https://profiles.wordpress.org/bcworkz\">bcworkz</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"https://profiles.wordpress.org/bigdawggi\">bigdawggi</a>, <a href=\"https://profiles.wordpress.org/bobbravo2\">Bob Gregor</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/bradt\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/bradparbs\">bradparbs</a>, <a href=\"https://profiles.wordpress.org/bramd\">Bram Duvigneau</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brasofilo\">brasofilo</a>, <a href=\"https://profiles.wordpress.org/bravokeyl\">bravokeyl</a>, <a href=\"https://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"https://profiles.wordpress.org/cgaffga\">cgaffga</a>, <a href=\"https://profiles.wordpress.org/chiragswadia\">Chirag Swadia</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/ehg\">Chris Blower</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"https://profiles.wordpress.org/chrisscott\">Chris Scott</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/chrisguitarguy\">chrisguitarguy</a>, <a href=\"https://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/ciantic\">ciantic</a>, <a href=\"https://profiles.wordpress.org/antorome\">Comparativa de Bancos</a>, <a href=\"https://profiles.wordpress.org/cojennin\">Connor Jennings</a>, <a href=\"https://profiles.wordpress.org/corvannoorloos\">Cor van Noorloos</a>, <a href=\"https://profiles.wordpress.org/corphi\">Corphi</a>, <a href=\"https://profiles.wordpress.org/cramdesign\">cramdesign</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/dannydehaan\">Danny de Haan</a>, <a href=\"https://profiles.wordpress.org/koop\">Daryl Koopersmith</a>, <a href=\"https://profiles.wordpress.org/eightface\">Dave Kellam (eightface)</a>, <a href=\"https://profiles.wordpress.org/dpe415\">DaveE</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidmarichal\">David Marichal</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/drprotocols\">DrProtocols</a>, <a href=\"https://profiles.wordpress.org/dustyf\">Dustin Filippini</a>, <a href=\"https://profiles.wordpress.org/eatingrules\">eatingrules</a>, <a href=\"https://profiles.wordpress.org/plocha\">edik</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/enej\">enej</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Lewis</a>, <a href=\"https://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"https://profiles.wordpress.org/evarlese\">Erica Varlese</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/ejdanderson\">Evan Anderson</a>, <a href=\"https://profiles.wordpress.org/fahmiadib\">Fahmi Adib</a>, <a href=\"https://profiles.wordpress.org/fboender\">fboender</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/ounziw\">Fumito MIZUNO</a>, <a href=\"https://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/genkisan\">genkisan</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/vancoder\">Grant Mangham</a>, <a href=\"https://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"https://profiles.wordpress.org/hanni\">hanni</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/ippetkov\">ippetkov</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jackreichert\">Jack Reichert</a>, <a href=\"https://profiles.wordpress.org/_jameslee\">jameslee</a>, <a href=\"https://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/janrenn\">janrenn</a>, <a href=\"https://profiles.wordpress.org/jaycc\">JayCC</a>, <a href=\"https://profiles.wordpress.org/jeffsebring\">Jeff Sebring</a>, <a href=\"https://profiles.wordpress.org/jenmylo\">Jen</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jayjdk\">Jesper Johansen (jayjdk)</a>, <a href=\"https://profiles.wordpress.org/jnielsendotnet\">jnielsendotnet</a>, <a href=\"https://profiles.wordpress.org/jartes\">Joan Artes</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"https://profiles.wordpress.org/jond3r\">Jonas Bolinder (jond3r)</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshuaabenazer\">Joshua Abenazer</a>, <a href=\"https://profiles.wordpress.org/jstraitiff\">jstraitiff</a>, <a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kasparsd\">Kaspars</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kerikae\">kerikae</a>, <a href=\"https://profiles.wordpress.org/kworthington\">Kevin Worthington</a>, <a href=\"https://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/klihelp\">klihelp</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/drozdz\">Krzysiek Drozdz</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/ldebrouwer\">ldebrouwer</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/lpointet\">lpointet</a>, <a href=\"https://profiles.wordpress.org/spmlucas\">Lucas Karpiuk</a>, <a href=\"https://profiles.wordpress.org/lkwdwrd\">Luke Woodward</a>, <a href=\"https://profiles.wordpress.org/nofearinc\">Mario Peshev</a>, <a href=\"https://profiles.wordpress.org/mark8barnes\">Mark Barnes</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/marventus\">Marventus</a>, <a href=\"https://profiles.wordpress.org/iammattthomas\">Matt (Thomas) Miklic</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mdbitz\">Matthew Denton</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattonomics\">mattonomics</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/matveb\">Matías Ventura</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/mcadwell\">mcadwell</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/meloniq\">meloniq</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/smashcut\">Michael Pick</a>, <a href=\"https://profiles.wordpress.org/michelwppi\">Michel - xiligroup dev</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/gradyetc\">Mike Burns</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikemanger\">Mike Manger</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"https://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikecorkum\">mikecorkum</a>, <a href=\"https://profiles.wordpress.org/mitchoyoshitaka\">mitcho (Michael Yoshitaka Erlewine)</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"https://profiles.wordpress.org/nendeb55\">nendeb55</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nicolealleyinteractivecom\">Nicole Arnold</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal (NikV)</a>, <a href=\"https://profiles.wordpress.org/nivijah\">Nivi Jah</a>, <a href=\"https://profiles.wordpress.org/nunomorgadinho\">Nuno Morgadinho</a>, <a href=\"https://profiles.wordpress.org/olivm\">olivM</a>, <a href=\"https://profiles.wordpress.org/jbkkd\">Omer Korner</a>, <a href=\"https://profiles.wordpress.org/originalexe\">OriginalEXE</a>, <a href=\"https://profiles.wordpress.org/patricknami\">patricknami</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/djpaul\">Paul Gibbs</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>, <a href=\"https://profiles.wordpress.org/prettyboymp\">prettyboymp</a>, <a href=\"https://profiles.wordpress.org/raamdev\">Raam Dev</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/mauryaratan\">Ram Ratan Maurya</a>, <a href=\"https://profiles.wordpress.org/ramonchiara\">ramonchiara</a>, <a href=\"https://profiles.wordpress.org/rhyswynne\">Rhys Wynne</a>, <a href=\"https://profiles.wordpress.org/ricardocorreia\">Ricardo Correia</a>, <a href=\"https://profiles.wordpress.org/richard2222\">Richard</a>, <a href=\"https://profiles.wordpress.org/theorboman\">Richard Sweeney</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/robmiller\">robmiller</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/romaimperator\">romaimperator</a>, <a href=\"https://profiles.wordpress.org/roothorick\">roothorick</a>, <a href=\"https://profiles.wordpress.org/ruudjoyo\">Ruud Laan</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sandyr\">Sandeep</a>, <a href=\"https://profiles.wordpress.org/scottlee\">Scott Lee</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/greglone\">ScreenfeedFr</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/sdasse\">sdasse</a>, <a href=\"https://profiles.wordpress.org/bootsz\">Sean Butze</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/nessworthy\">Sean Nessworthy</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shahpranaf\">shahpranaf</a>, <a href=\"https://profiles.wordpress.org/shaunandrews\">Shaun Andrews</a>, <a href=\"https://profiles.wordpress.org/shinichin\">ShinichiN</a>, <a href=\"https://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/siobhyb\">Siobhan Bamber (siobhyb)</a>, <a href=\"https://profiles.wordpress.org/sirzooro\">sirzooro</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">solarissmoke</a>, <a href=\"https://profiles.wordpress.org/sonjanyc\">sonjanyc</a>, <a href=\"https://profiles.wordpress.org/spencerfinnell\">Spencer Finnell</a>, <a href=\"https://profiles.wordpress.org/piontkowski\">Spencer Piontkowski</a>, <a href=\"https://profiles.wordpress.org/stephcook22\">stephcook22</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/sbruner\">Steve Bruner</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/tanner-m\">Tanner Moushey</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/tbrams\">tbrams</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/willmot\">Tom Willmot</a>, <a href=\"https://profiles.wordpress.org/topher1kenobe\">Topher</a>, <a href=\"https://profiles.wordpress.org/topquarky\">topquarky</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/umeshsingla\">Umesh Kumar</a>, <a href=\"https://profiles.wordpress.org/undergroundnetwork\">undergroundnetwork</a>, <a href=\"https://profiles.wordpress.org/varunagw\">VarunAgw</a>, <a href=\"https://profiles.wordpress.org/wawco\">wawco</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wokamoto\">wokamoto</a>, <a href=\"https://profiles.wordpress.org/xsonic\">xsonic</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yurivictor\">Yuri Victor</a>, <a href=\"https://profiles.wordpress.org/zbtirrell\">Zach Tirrell</a>, and <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>.\n<p>There were 283 contributors to this release, again a new high.</p>\n<p>If you want to help out or follow along, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Thanks for choosing WordPress. Happy holidays and see you next year for version 4.2!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/news/2014/12/dinah/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 4.1 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Dec 2014 02:22:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3411\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:429:\"The next release candidate for WordPress 4.1 is now available for testing. Seventy changes have gone in since the first release candidate. With no known issues left, we plan to release 4.1 tomorrow, December 18. To test, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the release candidate here (zip). If you’d like to learn more about […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1465:\"<p>The next release candidate for WordPress 4.1 is now available for testing.</p>\n<p><a href=\"https://core.trac.wordpress.org/log/trunk?rev=30961&stop_rev=30827\">Seventy changes</a> have gone in since the <a href=\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/\">first release candidate</a>. With no known issues left, we plan to release 4.1 tomorrow, December 18.</p>\n<p>To test, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.1-RC3.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.1, visit the updated About screen in your dashboard (<strong><img src=\"https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) and also check out <a href=\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/\">the Beta 1 post</a>.</p>\n<p><strong>Plugin authors:</strong> Remember to test your plugins against 4.1, and if they’re compatible, make sure they are marked as tested up to 4.1. Be sure to follow along the core development blog; we’ve been posting <a href=\"https://make.wordpress.org/core/tag/4-1-dev-notes/\">notes for developers for 4.1</a> as always.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:31:\"WordPress 4.1 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Dec 2014 11:52:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3375\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"The release candidate for WordPress 4.1 is now available. We’ve made a lot of refinements over the last few weeks. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.1 on Tuesday, December 16, but we need your […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2301:\"<p>The release candidate for WordPress 4.1 is now available.</p>\n<p>We’ve made a lot of refinements over the last few weeks. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.1 on Tuesday, December 16, but we need your help to get there. If you haven’t tested 4.1 yet, now is the time! (Please though, not on your live site unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.1 RC1, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.1-RC1.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.1, visit the About screen in your dashboard (<strong><img src=\"https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) or check out the <a href=\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/\">beta announcement</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.1 and update your plugin’s <em>Tested up to</em> version in the readme to 4.1 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href=\"https://make.wordpress.org/core/\">follow along the core development blog</a>, where we’ll continue to post <a href=\"https://make.wordpress.org/core/tag/4-1-dev-notes/\">notes for developers</a> for 4.1. (For example: if you’ve written a child theme for Twenty Fifteen, some of the new pagination functions have been renamed for clarity.)</p>\n<p><em>Testing four point one</em><br />\n<em>Why are we up at this hour?</em><br />\n<em>Code is poetry</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.0.1 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2014/11/wordpress-4-0-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2014/11/wordpress-4-0-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Nov 2014 18:55:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3363\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:345:\"WordPress 4.0.1 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3395:\"<p>WordPress 4.0.1 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be updated to 3.9.3, 3.8.5, or 3.7.5 to keep everything secure. (We don’t support older versions, so please update to 4.0.1 for the latest and greatest.)</p>\n<p>WordPress versions 3.9.2 and earlier are affected by a critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. This was reported by <a href=\"http://klikki.fi/\">Jouko Pynnonen</a>. This issue does not affect version 4.0, but version 4.0.1 does address these eight security issues:</p>\n<ul>\n<li>Three cross-site scripting issues that a contributor or author could use to compromise a site. Discovered by <a href=\"http://joncave.co.uk/\">Jon Cave</a>, <a href=\"http://www.miqrogroove.com/\">Robert Chapin</a>, and <a href=\"https://johnblackbourn.com/\">John Blackbourn</a> of the WordPress security team.</li>\n<li>A cross-site request forgery that could be used to trick a user into changing their password.</li>\n<li>An issue that could lead to a denial of service when passwords are checked. Reported by <a href=\"http://www.behindthefirewalls.com/\">Javier Nieto Arevalo</a> and <a href=\"http://www.devconsole.info/\">Andres Rojas Guerrero</a>.</li>\n<li>Additional protections for server-side request forgery attacks when WordPress makes HTTP requests. Reported by Ben Bidner (vortfu).</li>\n<li>An extremely unlikely hash collision could allow a user’s account to be compromised, that also required that they haven’t logged in since 2008 (I wish I were kidding). Reported by <a href=\"http://david.dw-perspective.org.uk\">David Anderson</a>.</li>\n<li>WordPress now invalidates the links in a password reset email if the user remembers their password, logs in, and changes their email address. Reported separately by <a href=\"https://twitter.com/MomenBassel\">Momen Bassel</a>, <a href=\"http://c0dehouse.blogspot.in/\">Tanoy Bose</a>, and <a href=\"https://managewp.com/\">Bojan Slavković of ManageWP</a>.</li>\n</ul>\n<p>Version 4.0.1 also fixes 23 bugs with 4.0, and we’ve made two hardening changes, including better validation of EXIF data we are extracting from uploaded photos. Reported by <a href=\"http://www.securesolutions.no/\">Chris Andrè Dale</a>.</p>\n<p>We appreciated the <a href=\"https://codex.wordpress.org/FAQ_Security\">responsible disclosure</a> of these issues directly to our security team. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.0.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.0?rev=30475&stop_rev=29710\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.0.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n<p><em>Already testing WordPress 4.1? The second beta is now available (<a href=\"https://wordpress.org/wordpress-4.1-beta2.zip\">zip</a>) and it contains these security fixes. For more on 4.1, see <a href=\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/\">the beta 1 announcement post</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2014/11/wordpress-4-0-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:20:\"WordPress 4.1 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Nov 2014 22:35:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3352\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"Welcome, everyone, to WordPress 4.1 Beta 1! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.1, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3409:\"<p>Welcome, everyone, to WordPress 4.1 Beta 1!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.1, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"//wordpress.org/wordpress-4.1-beta1.zip\">download the beta here</a> (zip).</p>\n<p>WordPress 4.1 is due for release next month, so we need your help with testing. Here are some highlights of what to test:</p>\n<ul>\n<li>Our beautiful new default theme, <a href=\"https://make.wordpress.org/core/2014/09/09/twenty-fifteen/\">Twenty Fifteen</a>. It’s a clean, mobile-first, blog-focused theme designed through simplicity.</li>\n<li>A new <a href=\"https://make.wordpress.org/core/2014/11/11/focus-v2-demo-video/\">distraction-free writing mode for the editor</a>. It’s enabled by default for beta, and we’d love feedback on it.</li>\n<li>The ability to automatically install new language packs right from the General Settings screen (available as long as your site’s filesystem is writable).</li>\n<li>A new inline formatting toolbar for images embedded into posts.</li>\n</ul>\n<p>There have been a lot of changes for developers to test as well:</p>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2014/10/20/update-on-query-improvements-in-4-1/\">Improvements to meta, date, comment, and taxonomy queries</a>, including complex (nested, multiple relation) queries; and querying comment types (<a href=\"https://core.trac.wordpress.org/ticket/12668\">#12668</a>).</li>\n<li>A single term shared across multiple taxonomies is now split into two when updated. For more, <a href=\"https://make.wordpress.org/core/2014/11/12/an-update-on-the-taxonomy-roadmap/\">see this post</a>, <a href=\"https://core.trac.wordpress.org/ticket/5809\">#5809</a>, and <a href=\"https://core.trac.wordpress.org/ticket/30335\">#30335</a>.</li>\n<li>A new and better way for <a href=\"https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/\">themes to handle title tags</a>.</li>\n<li>Several <a href=\"https://make.wordpress.org/core/2014/10/27/toward-a-complete-javascript-api-for-the-customizer/\">improvements to the Customizer API</a>, including contextual panels and sections, and JavaScript templates for controls.</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.1, <a href=\"https://make.wordpress.org/core/tag/week-in-core/\">check out the weekly review posts</a> on the main development blog.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.1\">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Twenty Fifteen theme</em><br />\n<em> The beautiful face which hides</em><br />\n<em> Many improvements</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:39:\"Watch WordCamp San Francisco Livestream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2014/10/wcsf-livestream/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2014/10/wcsf-livestream/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Oct 2014 20:18:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3341\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:381:\"WordCamp San Francisco is the official annual WordPress conference, gathering the community every year since 2006. This is the time when Matt Mullenweg addresses the community in his annual State of the Word presentation – a recap of the year in WordPress and giving us a glimpse into its future. This year the speaker lineup is stellar. There will be talks by […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nikolay Bachiyski\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1975:\"<p><a title=\"2014 edition\" href=\"http://2014.sf.wordcamp.org\">WordCamp San Francisco</a> is the official annual WordPress conference, gathering the community every year <a title=\"An old website for a WordPress long time ago\" href=\"http://2006.sf.wordcamp.org\">since 2006</a>. This is the time when Matt Mullenweg addresses the community in his annual <a href=\"http://wordpress.tv/?s=state+of+the+word\">State of the Word</a> presentation – a recap of the year in WordPress and giving us a glimpse into its future.</p>\n<p>This year the speaker lineup is stellar. There will be talks by three of the lead WordPress developers: <a href=\"http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-andrew-nacin\">Andrew Nacin</a>, <a href=\"http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-helen-hou-sandi\">Helen Hou-Sandí</a>, and <a href=\"http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-mark-jaquith\">Mark Jaquith</a>. We’re also looking forward to speakers like <a href=\"http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jenny-lawson\">Jenny Lawson</a>, also known as The Bloggess, and <a href=\"http://2014.sf.wordcamp.org/speaker/chris-lema/\">Chris Lema</a>. If you’re at all interested in the web, you will appreciate the appearance of <a href=\"http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jeff-veen\">Jeff Veen</a> – one of the creators of Google Analytics and co-founder of Typekit.</p>\n<p>Even though San Francisco is far far away for most of you, you can still be part of the fun and watch all presentations in real-time via livestream:</p>\n<p><a href=\"http://2014.sf.wordcamp.org/tickets/\">Get a livestream ticket and watch all talks from WordCamp San Francisco live</a></p>\n<p>If you hurry, you can get one of the special livestream tickets, including a WordCamp San Francisco 2104 t-shirt. You can find all the technical details and start times <a href=\"http://2014.sf.wordcamp.org/live-stream/\">at the WordCamp San Francisco website</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2014/10/wcsf-livestream/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.0 “Benny”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2014/09/benny/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/news/2014/09/benny/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Sep 2014 17:05:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3296\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:370:\"Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader Benny Goodman, is available for download or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:23082:\"<p>Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader <a href=\"http://en.wikipedia.org/wiki/Benny_Goodman\">Benny Goodman</a>, is available <a href=\"https://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience we think you’ll enjoy.</p>\n<div id=\"v-bUdzKMro-1\" class=\"video-player\"><embed id=\"v-bUdzKMro-1-video\" src=\"https://v0.wordpress.com/player.swf?v=1.03&guid=bUdzKMro&isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" title=\"Introducing WordPress 4.0 "Benny"\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<hr />\n<h2 style=\"text-align: center\">Manage your media with style</h2>\n<p><img class=\"alignnone size-full wp-image-3316\" src=\"https://wordpress.org/news/files/2014/09/media.jpg\" alt=\"Media Library\" width=\"1000\" height=\"586\" />Explore your uploads in a beautiful, endless grid. A new details preview makes viewing and editing any amount of media in sequence a snap.</p>\n<hr />\n<h2 style=\"text-align: center\">Working with embeds has never been easier</h2>\n<div style=\"width: 632px; \" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-3296-1\" width=\"632\" height=\"445\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"//s.w.org/images/core/4.0/embed.mp4?_=1\" /><source type=\"video/webm\" src=\"//s.w.org/images/core/4.0/embed.webm?_=1\" /><source type=\"video/ogg\" src=\"//s.w.org/images/core/4.0/embed.ogv?_=1\" /><a href=\"//s.w.org/images/core/4.0/embed.mp4\">//s.w.org/images/core/4.0/embed.mp4</a></video></div>\n<p>Paste in a YouTube URL on a new line, and watch it magically become an embedded video. Now try it with a tweet. Oh yeah — embedding has become a visual experience. The editor shows a true preview of your embedded content, saving you time and giving you confidence.</p>\n<p>We’ve expanded the services supported by default, too — you can embed videos from CollegeHumor, playlists from YouTube, and talks from TED. <a href=\"https://codex.wordpress.org/Embeds\">Check out all of the embeds</a> that WordPress supports.</p>\n<hr />\n<h2 style=\"text-align: center\">Focus on your content</h2>\n<div style=\"width: 632px; \" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-3296-2\" width=\"632\" height=\"356\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"//s.w.org/images/core/4.0/focus.mp4?_=2\" /><source type=\"video/webm\" src=\"//s.w.org/images/core/4.0/focus.webm?_=2\" /><source type=\"video/ogg\" src=\"//s.w.org/images/core/4.0/focus.ogv?_=2\" /><a href=\"//s.w.org/images/core/4.0/focus.mp4\">//s.w.org/images/core/4.0/focus.mp4</a></video></div>\n<p>Writing and editing is smoother and more immersive with an editor that expands to fit your content as you write, and keeps the formatting tools available at all times.</p>\n<hr />\n<h2 style=\"text-align: center\">Finding the right plugin</h2>\n<p><img class=\"aligncenter size-large wp-image-3309\" src=\"https://wordpress.org/news/files/2014/09/add-plugin1-1024x600.png\" alt=\"Add plugins\" width=\"692\" height=\"405\" /></p>\n<p>There are more than 30,000 free and open source plugins in the WordPress plugin directory. WordPress 4.0 makes it easier to find the right one for your needs, with new metrics, improved search, and a more visual browsing experience.</p>\n<hr />\n<h2 style=\"text-align: center\">The Ensemble</h2>\n<p>This release was led by <a href=\"http://helenhousandi.com\">Helen Hou-Sandí</a>, with the help of these fine individuals. There are 275 contributors with props in this release, a new high. Pull up some Benny Goodman on your music service of choice, as a bandleader or in one of his turns as a classical clarinetist, and check out some of their profiles:</p>\n<p><a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/kawauso\">Adam Harley (Kawauso)</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adelval\">adelval</a>, <a href=\"https://profiles.wordpress.org/ajay\">Ajay</a>, <a href=\"https://profiles.wordpress.org/akeda\">Akeda Bagus</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/aliso\">Alison Barrett</a>, <a href=\"https://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"https://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/norcross\">Andrew Norcross</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andykeith\">Andy Keith</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/aubreypwd\">Aubrey Portwood</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/toszcze\">Bartosz Romanowski</a>, <a href=\"https://profiles.wordpress.org/bassgang\">bassgang</a>, <a href=\"https://profiles.wordpress.org/bcworkz\">bcworkz</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"https://profiles.wordpress.org/bigdawggi\">bigdawggi</a>, <a href=\"https://profiles.wordpress.org/bobbravo2\">Bob Gregor</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/bradt\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/bradparbs\">bradparbs</a>, <a href=\"https://profiles.wordpress.org/bramd\">Bram Duvigneau</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brasofilo\">brasofilo</a>, <a href=\"https://profiles.wordpress.org/bravokeyl\">bravokeyl</a>, <a href=\"https://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"https://profiles.wordpress.org/cgaffga\">cgaffga</a>, <a href=\"https://profiles.wordpress.org/chiragswadia\">Chirag Swadia</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/ehg\">Chris Blower</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"https://profiles.wordpress.org/chrisscott\">Chris Scott</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/chrisguitarguy\">chrisguitarguy</a>, <a href=\"https://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/ciantic\">ciantic</a>, <a href=\"https://profiles.wordpress.org/antorome\">Comparativa de Bancos</a>, <a href=\"https://profiles.wordpress.org/cojennin\">Connor Jennings</a>, <a href=\"https://profiles.wordpress.org/corvannoorloos\">Cor van Noorloos</a>, <a href=\"https://profiles.wordpress.org/corphi\">Corphi</a>, <a href=\"https://profiles.wordpress.org/cramdesign\">cramdesign</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/dannydehaan\">Danny de Haan</a>, <a href=\"https://profiles.wordpress.org/koop\">Daryl Koopersmith</a>, <a href=\"https://profiles.wordpress.org/eightface\">Dave Kellam (eightface)</a>, <a href=\"https://profiles.wordpress.org/dpe415\">DaveE</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidmarichal\">David Marichal</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/drprotocols\">DrProtocols</a>, <a href=\"https://profiles.wordpress.org/dustyf\">Dustin Filippini</a>, <a href=\"https://profiles.wordpress.org/eatingrules\">eatingrules</a>, <a href=\"https://profiles.wordpress.org/plocha\">edik</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/enej\">enej</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Lewis</a>, <a href=\"https://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"https://profiles.wordpress.org/evarlese\">Erica Varlese</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/ejdanderson\">Evan Anderson</a>, <a href=\"https://profiles.wordpress.org/fahmiadib\">Fahmi Adib</a>, <a href=\"https://profiles.wordpress.org/fboender\">fboender</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/ounziw\">Fumito MIZUNO</a>, <a href=\"https://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/genkisan\">genkisan</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/vancoder\">Grant Mangham</a>, <a href=\"https://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"https://profiles.wordpress.org/hanni\">hanni</a>, <a href=\"https://profiles.wordpress.org/ippetkov\">ippetkov</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jackreichert\">Jack Reichert</a>, <a href=\"https://profiles.wordpress.org/_jameslee\">jameslee</a>, <a href=\"https://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/janrenn\">janrenn</a>, <a href=\"https://profiles.wordpress.org/jaycc\">JayCC</a>, <a href=\"https://profiles.wordpress.org/jeffsebring\">Jeff Sebring</a>, <a href=\"https://profiles.wordpress.org/jenmylo\">Jen</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jayjdk\">Jesper Johansen (jayjdk)</a>, <a href=\"https://profiles.wordpress.org/jnielsendotnet\">jnielsendotnet</a>, <a href=\"https://profiles.wordpress.org/jartes\">Joan Artes</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"https://profiles.wordpress.org/jond3r\">Jonas Bolinder (jond3r)</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshuaabenazer\">Joshua Abenazer</a>, <a href=\"https://profiles.wordpress.org/jstraitiff\">jstraitiff</a>, <a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kasparsd\">Kaspars</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kerikae\">kerikae</a>, <a href=\"https://profiles.wordpress.org/kworthington\">Kevin Worthington</a>, <a href=\"https://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/klihelp\">klihelp</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/drozdz\">Krzysiek Drozdz</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/ldebrouwer\">ldebrouwer</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/lpointet\">lpointet</a>, <a href=\"https://profiles.wordpress.org/spmlucas\">Lucas Karpiuk</a>, <a href=\"https://profiles.wordpress.org/lkwdwrd\">Luke Woodward</a>, <a href=\"https://profiles.wordpress.org/nofearinc\">Mario Peshev</a>, <a href=\"https://profiles.wordpress.org/mark8barnes\">Mark Barnes</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/marventus\">Marventus</a>, <a href=\"https://profiles.wordpress.org/iammattthomas\">Matt (Thomas) Miklic</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mdbitz\">Matthew Denton</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattonomics\">mattonomics</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/matveb\">Matías Ventura</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/mcadwell\">mcadwell</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/meloniq\">meloniq</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michelwppi\">Michel - xiligroup dev</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/gradyetc\">Mike Burns</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikemanger\">Mike Manger</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"https://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikecorkum\">mikecorkum</a>, <a href=\"https://profiles.wordpress.org/mitchoyoshitaka\">mitcho (Michael Yoshitaka Erlewine)</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"https://profiles.wordpress.org/nendeb55\">nendeb55</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nicolealleyinteractivecom\">Nicole Arnold</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal (NikV)</a>, <a href=\"https://profiles.wordpress.org/nivijah\">Nivi Jah</a>, <a href=\"https://profiles.wordpress.org/nunomorgadinho\">Nuno Morgadinho</a>, <a href=\"https://profiles.wordpress.org/olivm\">olivM</a>, <a href=\"https://profiles.wordpress.org/jbkkd\">Omer Korner</a>, <a href=\"https://profiles.wordpress.org/originalexe\">OriginalEXE</a>, <a href=\"https://profiles.wordpress.org/patricknami\">patricknami</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/djpaul\">Paul Gibbs</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>, <a href=\"https://profiles.wordpress.org/prettyboymp\">prettyboymp</a>, <a href=\"https://profiles.wordpress.org/raamdev\">Raam Dev</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/mauryaratan\">Ram Ratan Maurya</a>, <a href=\"https://profiles.wordpress.org/ramonchiara\">ramonchiara</a>, <a href=\"https://profiles.wordpress.org/rhyswynne\">Rhys Wynne</a>, <a href=\"https://profiles.wordpress.org/ricardocorreia\">Ricardo Correia</a>, <a href=\"https://profiles.wordpress.org/richard2222\">Richard</a>, <a href=\"https://profiles.wordpress.org/theorboman\">Richard Sweeney</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/robmiller\">robmiller</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/romaimperator\">romaimperator</a>, <a href=\"https://profiles.wordpress.org/roothorick\">roothorick</a>, <a href=\"https://profiles.wordpress.org/ruudjoyo\">Ruud Laan</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sandyr\">Sandeep</a>, <a href=\"https://profiles.wordpress.org/scottlee\">Scott Lee</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/greglone\">ScreenfeedFr</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/sdasse\">sdasse</a>, <a href=\"https://profiles.wordpress.org/bootsz\">Sean Butze</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/nessworthy\">Sean Nessworthy</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shahpranaf\">shahpranaf</a>, <a href=\"https://profiles.wordpress.org/shaunandrews\">Shaun Andrews</a>, <a href=\"https://profiles.wordpress.org/shinichin\">ShinichiN</a>, <a href=\"https://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/siobhyb\">Siobhan Bamber (siobhyb)</a>, <a href=\"https://profiles.wordpress.org/sirzooro\">sirzooro</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">solarissmoke</a>, <a href=\"https://profiles.wordpress.org/sonjanyc\">sonjanyc</a>, <a href=\"https://profiles.wordpress.org/spencerfinnell\">Spencer Finnell</a>, <a href=\"https://profiles.wordpress.org/piontkowski\">Spencer Piontkowski</a>, <a href=\"https://profiles.wordpress.org/stephcook22\">stephcook22</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/sbruner\">Steve Bruner</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/tanner-m\">Tanner Moushey</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/tbrams\">tbrams</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/willmot\">Tom Willmot</a>, <a href=\"https://profiles.wordpress.org/topher1kenobe\">Topher</a>, <a href=\"https://profiles.wordpress.org/topquarky\">topquarky</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/umeshsingla\">Umesh Kumar</a>, <a href=\"https://profiles.wordpress.org/undergroundnetwork\">undergroundnetwork</a>, <a href=\"https://profiles.wordpress.org/varunagw\">VarunAgw</a>, <a href=\"https://profiles.wordpress.org/wawco\">wawco</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wokamoto\">wokamoto</a>, <a href=\"https://profiles.wordpress.org/xsonic\">xsonic</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yurivictor\">Yuri Victor</a>, <a href=\"https://profiles.wordpress.org/zbtirrell\">Zach Tirrell</a>, and <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>. Also thanks to <a href=\"http://michaelpick.wordpress.com/\">Michael Pick</a> for producing the release video, and Helen with <a href=\"http://adriansandi.com\">Adrián Sandí</a> for the music.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.1!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/news/2014/09/benny/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.0 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Aug 2014 12:20:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3287\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:321:\"The first release candidate for WordPress 4.0 is now available! In RC 1, we’ve made refinements to what we’ve been working on for this release. Check out the Beta 1 announcement post for more details on those features. We hope to ship WordPress 4.0 next week, but we need your help to get there. If you […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2134:\"<p>The first release candidate for WordPress 4.0 is now available!</p>\n<p>In RC 1, we’ve made refinements to what we’ve been working on for this release. Check out the <a href=\"https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/\">Beta 1 announcement post</a> for more details on those features. We hope to ship WordPress 4.0 <em>next week</em>, but we need your help to get there. If you haven’t tested 4.0 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.0 RC1, try the <a href=\"https://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.0-RC1.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.0, visit the awesome About screen in your dashboard (<strong><img src=\"https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar).</p>\n<p><strong>Developers,</strong> please test your plugins and themes against WordPress 4.0 and update your plugin’s <em>Tested up to</em> version in the readme to 4.0 before next week. If you find compatibility problems, please be sure to post any issues to the support forums so we can figure those out before the final release. You also may want to <a href=\"https://make.wordpress.org/core/2014/08/21/introducing-plugin-icons-in-the-plugin-installer/\">give your plugin an icon</a>, which we launched last week and will appear in the dashboard along with banners.</p>\n<p><em>It is almost time</em><br />\n<em> For the 4.0 release</em><br />\n<em> And its awesomeness</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.0 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Aug 2014 05:06:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3280\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:353:\"The fourth and likely final beta for WordPress 4.0 is now available. We’ve made more than 250 changes in the past month, including: Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes. Better handling of small screens in the media library modals. A separate bulk selection mode […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2003:\"<p>The fourth and likely final beta for WordPress 4.0 is now available. We’ve made <a href=\"https://core.trac.wordpress.org/log?rev=29496&stop_rev=29229&limit=300\">more than 250 changes</a> in the past month, including:</p>\n<ul>\n<li>Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes.</li>\n<li>Better handling of small screens in the media library modals.</li>\n<li>A separate bulk selection mode for the media library grid view.</li>\n<li>Improvements to the installation language selector.</li>\n<li>Visual tweaks to plugin details and customizer panels.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for a release this month, which means the next week will be critical for identifying and squashing bugs. If you’re just joining us, please see <a href=\"https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/\">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 4.0 yet, now is the time — and be sure to update the “tested up to” version for your plugins so they’re listed as compatible with 4.0.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the <a href=\"https://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.0-beta4.zip\">download the beta here</a> (zip).</p>\n<p><em>We are working hard</em><br />\n<em>To finish up 4.0<br />\n</em><em>Will you help us too?</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 3.9.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2014/08/wordpress-3-9-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2014/08/wordpress-3-9-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Aug 2014 19:04:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3269\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:377:\"WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately. This release fixes a possible denial of service issue in PHP’s XML processing, reported by Nir Goldshlager of the Salesforce.com Product Security Team. It was fixed by Michael Adams and Andrew Nacin of the WordPress […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2353:\"<p>WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately.</p>\n<p>This release fixes a possible denial of service issue in PHP’s XML processing, reported by <a href=\"https://twitter.com/nirgoldshlager\">Nir Goldshlager</a> of the Salesforce.com Product Security Team. It was fixed by Michael Adams and Andrew Nacin of the WordPress security team and David Rothstein of the <a href=\"https://www.drupal.org/SA-CORE-2014-004\">Drupal security team</a>. This is the first time our two projects have coordinated joint security releases.</p>\n<p>WordPress 3.9.2 also contains other security changes:</p>\n<ul>\n<li>Fixes a possible but unlikely code execution when processing widgets (WordPress is not affected by default), discovered by <a href=\"http://www.buayacorp.com/\">Alex Concha</a> of the WordPress security team.</li>\n<li>Prevents information disclosure via XML entity attacks in the external GetID3 library, reported by <a href=\"http://onsec.ru/en/\">Ivan Novikov</a> of ONSec.</li>\n<li>Adds protections against brute attacks against CSRF tokens, reported by <a href=\"http://systemoverlord.com/\">David Tomaschik</a> of the Google Security Team.</li>\n<li>Contains some additional security hardening, like preventing cross-site scripting that could be triggered only by administrators.</li>\n</ul>\n<p>We appreciated responsible disclosure of these issues directly to our security team. For more information, see the <a href=\"https://codex.wordpress.org/Version_3.9.2\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/3.9?stop_rev=29383&rev=29411\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 3.9.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.9.2 within 12 hours. (If you are still on WordPress 3.8.3 or 3.7.3, you will also be updated to 3.8.4 or 3.7.4. We don’t support older versions, so please update to 3.9.2 for the latest and greatest.)</p>\n<p>Already testing WordPress 4.0? The third beta is <a href=\"https://wordpress.org/wordpress-4.0-beta3.zip\">now available</a> (zip) and it contains these security fixes.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2014/08/wordpress-3-9-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 18 Dec 2014 22:31:15 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:37:\"https://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Thu, 18 Dec 2014 18:57:51 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20141218192608\";}','no'),(152,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1418985076','no'),(153,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1418941876','no'),(154,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1418985077','no'),(155,'_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:81:\"WPTavern: Critical Git Vulnerability Patched: Update Your Git Clients Immediately\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35990\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/critical-git-vulnerability-patched-update-your-git-clients-immediately\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2605:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/01/git-logo.png\" rel=\"prettyphoto[35990]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/01/git-logo.png?resize=910%2C380\" alt=\"photo credit: git - the simple guide\" class=\"size-full wp-image-14763\" /></a>photo credit: <a href=\"http://rogerdudler.github.io/git-guide/\" target=\"_blank\">git – the simple guide</a>\n<p>Git just announced <a href=\"http://git-blame.blogspot.com.es/2014/12/git-1856-195-205-214-and-221-and.html\" target=\"_blank\">version 2.2.1</a>, a maintenance release that includes a security fix for a critical vulnerability that affects those using Windows and Mac OS X Git clients. This update also includes new releases with the same security fix for older Git versions.</p>\n<p>GitHub <a href=\"https://github.com/blog/1938-vulnerability-announced-update-your-git-clients\" target=\"_blank\">confirmed</a> that GitHub for Windows and GitHub for Mac are both affected and should be updated immediately. The GitHub engineering team explains how attackers might exploit the vulnerability:</p>\n<blockquote><p>The vulnerability concerns Git and Git-compatible clients that access Git repositories in a case-insensitive or case-normalizing filesystem. An attacker can craft a malicious Git tree that will cause Git to ovewrite its own .git/config file when cloning or checking out a repository, leading to arbitrary command execution in the client machine. Git clients running on OS X (HFS+) or any version of Microsoft Windows (NTFS, FAT) are exploitable through this vulnerability. Linux clients are not affected if they run in a case-sensitive filesystem.</p></blockquote>\n<p>If you’re using GitHub’s client for <a href=\"https://windows.github.com/\" target=\"_blank\">Windows</a> or <a href=\"https://mac.github.com/\" target=\"_blank\">Mac</a>, the security issue has been patched and is ready for download. This includes an update to both the desktop application and the bundled version of the Git command-line client. If you’re using any other kind of Git client or software that connects to Git repositories, you’ll want to update immediately.</p>\n<p>Although the issue should not affect Linux users, the release announcement encourages those who operate hosting services with users that fetch from Windows or Mac OS X machines to update in order to protect users with older versions of Git. Check out the <a href=\"https://raw.githubusercontent.com/git/git/master/Documentation/RelNotes/2.2.1.txt\" target=\"_blank\">2.2.1 release notes</a> for further information on the security fixes.</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, 18 Dec 2014 22:03:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:61:\"WPTavern: Export Your WordPress Blog to Jekyll with One Click\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/export-your-wordpress-blog-to-jekyll-with-one-click\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4380:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/jekyll.png\" rel=\"prettyphoto[35497]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/jekyll.png?resize=909%2C440\" alt=\"jekyll\" class=\"aligncenter size-full wp-image-35937\" /></a></p>\n<p><a href=\"http://jekyllrb.com/\" target=\"_blank\">Jekyll</a> fans are fond of the Ruby-powered static blogging software due to its ease of use and support for <a href=\"http://daringfireball.net/projects/markdown/\" target=\"_blank\">Markdown</a> and the <a href=\"https://github.com/Shopify/liquid/wiki\" target=\"_blank\">Liquid</a> templating engine. With no database to maintain and no comments to moderate, Jekyll radically simplifies blogging. It’s also the software that powers blogging on <a href=\"https://pages.github.com/\" target=\"_blank\">Github Pages</a>.</p>\n<p>Moving content from WordPress to Jekyll is super easy, thanks to the <a href=\"https://wordpress.org/plugins/jekyll-exporter/\" target=\"_blank\">Jekyll Exporter</a> plugin created by <a href=\"https://twitter.com/BenBalter\" target=\"_blank\">Ben Balter</a>. His Jekyll-powered blog is hosted on <a href=\"http://ben.balter.com/\" target=\"_blank\">GitHub</a>, along with his <a href=\"https://github.com/benbalter/wordpress-to-jekyll-exporter\" target=\"_blank\">exporter plugin</a>, which has been in development for more than a year. It was recently updated to be even easier to use and is now available on WordPress.org.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>Want to move from <a href=\"https://twitter.com/WordPress\">@WordPress</a> to <a href=\"https://twitter.com/jekyllrb\">@jekyllrb</a>? The native, one-click exporter got a big refresh; now in plugin directory <a href=\"https://t.co/tUWrOe9Tn4\">https://t.co/tUWrOe9Tn4</a></p>\n<p>— Ben Balter (@BenBalter) <a href=\"https://twitter.com/BenBalter/status/543442743197179904\">December 12, 2014</a></p></blockquote>\n<p></p>\n<p>The one-click plugin converts all posts, pages, taxonomies, metadata, and settings to Markdown and YAML, which can be dropped right into Jekyll.</p>\n<h3>Who Needs a Jekyll Exporter?</h3>\n<p>I think WordPress is best blogging software out there, but there are some bloggers who don’t want the hassle of comment moderation and all the maintenance that WordPress requires. This plugin is perfect for conveniently transitioning to Jekyll.</p>\n<p>It’s also useful if you have created a bunch of documentation for a project on your WordPress site but decide to move the docs to a freely hosted Jekyll-powered site on GitHub Pages. This allows you to manage your documentation with version control and makes it easy for others to contribute.</p>\n<p>I have not found Jekyll terribly easy to set up when I’ve worked with it in the past. That’s why this exporter plugin is a huge time saver – it basically does everything for you:</p>\n<ul>\n<li>Converts all posts, pages, and settings from WordPress for use in Jekyll</li>\n<li>Export what your users see, not what the database stores (runs post content through the_content filter prior to export, allowing third-party plugins to modify the output)</li>\n<li>Converts all post_content to Markdown Extra (using Markdownify)</li>\n<li>Converts all post_meta and fields within the wp_posts table to YAML front matter for parsing by Jekyll</li>\n<li>Generates a _config.yml with all settings in the wp_options table</li>\n<li>Outputs a single zip file with _config.yml, pages, and _posts folder containing .md files for each post in the proper Jekyll naming convention</li>\n</ul>\n<p>The Jekyll Exporter plugin has no settings to configure. Just click the button and you’ll have all your content exported into the correct format for Jekyll and organized into the right structure.</p>\n<p>If you’re having trouble with your server timing out on the export, Balter has ensured that the plugin is compatible with WP-CLI. You can run this command, which also has support for sites where wp-content isn’t in the traditional location:</p>\n<p><code>wp jekyll-export > export.zip</code></p>\n<p>Currently, the <a href=\"https://wordpress.org/plugins/jekyll-exporter/\" target=\"_blank\">Jekyll Exporter</a> is the only one of its kind in the WordPress.org plugin directory. Fortunately, it was created by a reputable developer who knows the ins and outs of using Jekyll after 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:\"Thu, 18 Dec 2014 21:33:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:39:\"Post Status: WordPress 4.1, “Dinah”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.poststat.us/?p=7245\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.poststat.us/wordpress-4-1-dinah/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7656:\"<p><img src=\"http://www.poststat.us/wp-content/uploads/2014/12/wordpress-4-1-752x300.jpg\" alt=\"wordpress-4-1\" width=\"627\" height=\"250\" class=\"aligncenter size-large wp-image-7247\" /><br />\nWordPress 4.1, “Dinah”, <a href=\"https://wordpress.org/news/2014/12/dinah/\">has just been released</a>. WordPress 4.1 is the result of months of work and includes a number of excellent new features.</p>\n<p>WordPress 4.1 was led by <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, who did an outstanding job. Two hundred and eighty three contributors were part of WordPress 4.1, which Matt Mullenweg states is a new high.</p>\n<p>Here are some of the new features.</p>\n<h3>Persistent Distraction-free Writing</h3>\n<p>I must begin with the new persistent Distraction-free Writing feature, as I’m using it to write this very post. We’ve had Distraction-free Writing since 2011, with the <a href=\"https://wordpress.org/news/2011/07/gershwin/\">release of WordPress 3.2</a>. However, it’s always been a single-experience decision. You hit the button to enter distraction free mode, and you utilize it for a single writing session.<span id=\"more-7245\"></span></p>\n<p>Now, the button itself is persistent, and the experience of writing distraction free doesn’t enter a new screen, but rather fade away the distractions of the default editor.</p>\n<p><a href=\"https://cloudup.com/cqbFU6CSqm2\"><img src=\"https://cldup.com/Gya2WLi5yP-900x900.png\" alt=\"Screen Shot\" width=\"900\" height=\"585\" /></a></p>\n<p>The left admin seamlessly floats away, as do the metaboxes to the right of and below the editor. The editor itself remains, versus using a modified editor like before.</p>\n<p>When you update to WordPress 4.1, you are triggered with a note about Distraction-free Writing, and now that it’s a decision you only have to make once, I think this feature will finally get the broad use it deserves. It really is much more pleasant to write without everything else around you, to be lost in your thoughts as they make their way to the editor.</p>\n<h3>Twenty Fifteen theme</h3>\n<p><a href=\"https://cloudup.com/cgjoFpPJvYk\"><img src=\"https://cldup.com/RA_QnzIQ8P-2000x2000.png\" alt=\"Screen Shot\" width=\"877\" height=\"651\" /></a></p>\n<p>The Twenty Fifteen theme is the finest work I’ve seen yet of the default theme team. A blogging, and personal, theme — Twenty Fifteen is simple, with beautiful typography, and capable of showcasing blog posts of any format with poise.</p>\n<p>Twenty Fifteen comes in six base color schemes: default (light), dark, yellow, ping, purple, and blue. It also supports WordPress’ background and header image features, and allows you to customize colors from your base selection; Twenty Fifteen can be as quirky as you are.</p>\n<p><a href=\"https://cloudup.com/cFEI4yyaDmU\"><img src=\"https://cldup.com/fRQdHcxeXD-900x900.png\" alt=\"Screen Shot\" width=\"900\" height=\"555\" /></a></p>\n<p>Here’s a link to the <a href=\"http://twentyfifteendemo.wordpress.com/\">default theme demo</a>, as well as it’s <a href=\"https://wordpress.org/themes/twentyfifteen\">new page on WordPress.org</a>.</p>\n<h3>Dozens of languages, available any time</h3>\n<p><a href=\"https://cloudup.com/ckbOnTY71Gq\"><img src=\"https://cldup.com/UqYmETHq8L-900x900.png\" alt=\"Screen Shot\" width=\"901\" height=\"733\" /></a></p>\n<p>WordPress has made tremendous progress for non-English speaking users in the past few releases. With WordPress 4.0, you could choose a language on installation, whereas before it required many more steps. Now the team has gone a step further, so that language can be changed at any time, right from WordPress’ general settings page.</p>\n<p>Given that <a href=\"http://www.poststat.us/understand-wordpress-internationalization-translation/\">a third of WordPress installs are non-English</a> (and if I recall correctly half of new downloads are non-English now), this change further reduces the barrier of language in publishing software, and is an excellent move for the progression of the platform across the world.</p>\n<h3>Recommended plugins</h3>\n<p><a href=\"https://cloudup.com/cQi9LX744H8\"><img src=\"https://cldup.com/r3jaQ2VeCP-900x900.png\" alt=\"Screen Shot\" width=\"900\" height=\"674\" /></a></p>\n<p>I believe recommended plugins is probably the most controversial feature in WordPress 4.1, though it is not without precedent. “Featured” themes have been in the WordPress dashboard for a while now. But with a tab for recommended plugins, now users can see plugin recommendations based on plugins already installed and plugins other sites have installed.</p>\n<p>Recommended plugins are replacing the former popular plugins tab, and is mostly a change in the underlying API for showing the plugins themselves. Since it’s not a manual recommendation, I think this is a good change, and will more accurately help folks find relevant plugins than just listing the most popular plugins in the directory.</p>\n<h3>New template tags and theming tools</h3>\n<p>I’m really looking forward to using some of the new template tags introduced in WordPress 4.1.</p>\n<p>My favorite is <code>get_the_archive_title()</code>. Themers out there all know about the big blob of conditionals in most theme archive templates to spit out the right string based on which archive template it is. Now, there’s a function for that, and it’s fully filterable to boot.</p>\n<p>Descriptions of the new title functions, some new pagination functions, and some particularly nice body class assignment enhancements are well described on <a href=\"https://make.wordpress.org/core/2014/12/04/new-template-tags-in-4-1/\">this Make WordPress post</a> by Konstantin Obenland. There’s also a post about adding theme support to <a href=\"https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/\">let WordPress handle title tags</a>, which is a handy thing.</p>\n<h3>Log out from anywhere</h3>\n<p>A relatively small but nice security feature is the new ability to log out of all installs from a single location. WordPress uses cookies to keep you logged into your install for a period of time. Well, if you ever leave yourself logged in on a computer you don’t trust, you can now log out of all instances easily, from your profile page on an install.</p>\n<p>There is a new button that says “Log Out of All Other Sessions,” and also tells you if you are logged in at more than one location.</p>\n<h3>More improvements to queries</h3>\n<p>I love how much progress has been made on the WordPress query tools in the last couple of years. WordPress 4.1 introduces the ability for a nested query syntax, which makes more complex queries possible for <code>WP_Tax_Query</code>, <code>WP_Date_Query</code>, and <code>WP_Meta_Query</code>. I don’t often call out single individual’s work on something, but Boone Georges <a href=\"https://core.trac.wordpress.org/ticket/29822\">really</a> <a href=\"https://core.trac.wordpress.org/ticket/29738\">slayed</a> <a href=\"https://core.trac.wordpress.org/ticket/29642\">it</a> with the nested queries work. He wrote about it <a href=\"http://teleogistic.net/2014/12/wordpress-4-1-and-me/\">on his blog in detail</a>.</p>\n<h3>More under the hood</h3>\n<p>WordPress 4.1 includes many other under the hood features you should check out on the <a href=\"http://codex.wordpress.org/Version_4.1\">Codex page about the release</a>.</p>\n<h3>More excellent progress for WordPress</h3>\n<p>WordPress is better than ever, and hundreds (or thousands) of people make it so. Great job everyone. Now, go download WordPress 4.1.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Dec 2014 19:12: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:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:44:\"WPTavern: WordPress 4.1 “Dinah” Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=35700\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordpress-4-1-dinah-released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7416:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/dinah.jpg\" rel=\"prettyphoto[35700]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/dinah.jpg?resize=1025%2C502\" alt=\"photo credit: Michael Ochs Archives/Getty Image\" class=\"size-full wp-image-35977\" /></a>photo credit: Michael Ochs Archives/Getty Image\n<p>After nearly four months of development, WordPress 4.1 “Dinah” is <a title=\"https://wordpress.org/news/2014/12/wordpress-4-1-dinah/\" href=\"https://wordpress.org/news/2014/12/wordpress-4-1-dinah/\">available for download</a>. Led by<a href=\"http://wptavern.com/meet-john-blackbourn-wordpress-4-1-release-lead\"> John Blackbourn</a>, 4.1 contains several improvements such as a new default theme, an improved distraction free writing experience, and plugin recommendations.</p>\n<h2>Twenty Fifteen</h2>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/TwentyFifteenDefaultTheme.png\" rel=\"prettyphoto[35700]\"><img class=\"size-full wp-image-35706\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/TwentyFifteenDefaultTheme.png?resize=830%2C518\" alt=\"New Default Theme For 2015\" /></a>New Default Theme For 2015\n<p>Twenty Fifteen is a two-column theme with a focus on content. In sharp contrast to <a title=\"https://wordpress.org/themes/twentyfourteen\" href=\"https://wordpress.org/themes/twentyfourteen\">Twenty Fourteen</a>, Twenty Fifteen is light in color with a left hand sidebar and content in the right column. It’s designed with a mobile first approach and looks great on various screen sizes. Twenty Fifteen looks best when using large, featured images. It also ships with five different color schemes, ranging from dark to pink that are accessible from within the theme customizer.</p>\n<h2>Plugin Recommendations</h2>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/RecommendedPluginsTab.png\" rel=\"prettyphoto[35700]\"><img class=\"size-full wp-image-35318\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/RecommendedPluginsTab.png?resize=1025%2C527\" alt=\"Plugins Recommended To Me Based on Data of Sites with Similar Plugins Installed\" /></a>Plugins Recommended To Me Based on Data of Sites with Similar Plugins Installed\n<p>When you browse to the Add New plugins screen, you’ll see a new Recommended tab. Recommendations are based on data from thousands of WordPress sites about plugins that are commonly used together. It’s similar to an online store’s “people who bought this also bought this” feature. Because of the strict data set used, plugins that are 3-4 years old or older won’t be recommended.</p>\n<h2>Improved Distraction Free Writing</h2>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/DistractionFreeWriting41.png\" rel=\"prettyphoto[35700]\"><img class=\"size-full wp-image-35707\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/DistractionFreeWriting41.png?resize=1025%2C501\" alt=\"Distraction Free Writing in WordPress 4.1\" /></a>Distraction Free Writing in WordPress 4.1\n<p>When you enable Distraction Free Writing mode, the surrounding interface disappears as you type leaving important actions and menu items just a mouse movement away. This mode minimizes distractions without having to go through a clunky transition to access the admin menu or meta boxes. To bring back the menu and meta boxes, move the mouse cursor to the left or right of the editor.</p>\n<h2>Log Out of Every Session With One Button</h2>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/WordPressSessionUI.png\" rel=\"prettyphoto[35700]\"><img class=\"size-full wp-image-35708\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/WordPressSessionUI.png?resize=982%2C357\" alt=\"WordPress Session UI\" /></a>WordPress Session UI\n<p>WordPress 4.1 includes a new Session UI. The UI shows up on the profile page when WordPress detects more than one active session. When pressed, the button logs out of every session except for the active one. This is useful for those times when users might have forgotten to log off from a laptop, phone, or public computer.</p>\n<h2>Inline Image Editing</h2>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/InlineImageEditing.png\" rel=\"prettyphoto[35700]\"><img class=\"size-full wp-image-35709\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/InlineImageEditing.png?resize=681%2C386\" alt=\"Inline Image Editing Tools\" /></a>Inline Image Editing Tools\n<p>When editing an image using the Visual editor, a set of inline editing tools appear above the image. These tools provide a quick and easy way to align an image or access additional editing options.</p>\n<h2>oEmbed Support Added For Vine</h2>\n<p>WordPress 4.1 has<a title=\"http://codex.wordpress.org/Embeds\" href=\"http://codex.wordpress.org/Embeds\"> oEmbed support</a> for <a title=\"https://vine.co\" href=\"https://vine.co\">Vine</a> which hosts short videos that continuously loop. Sharing a Vine is now as easy as copying and pasting the URL into the Visual editor.</p>\n<h2>Choose a Different Language at Any Time</h2>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/SiteLanguageWordPress4.1.png\" rel=\"prettyphoto[35700]\"><img class=\"size-full wp-image-35711\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/SiteLanguageWordPress4.1.png?resize=637%2C450\" alt=\"Site Language Picker in WordPress 4.1\" /></a>Site Language Picker in WordPress 4.1\n<p>You can now choose a language for your site at any time by visiting the General Settings screen. Choosing a different language installs the required <a title=\"http://codex.wordpress.org/WordPress_in_Your_Language\" href=\"http://codex.wordpress.org/WordPress_in_Your_Language\">language pack</a>.</p>\n<h2>Developer Items</h2>\n<p>Metadata, date, and term queries now support <a title=\"https://make.wordpress.org/core/2014/10/20/update-on-query-improvements-in-4-1/\" href=\"https://make.wordpress.org/core/2014/10/20/update-on-query-improvements-in-4-1/\">advanced conditional logic</a>, like nested clauses and multiple operators. There are a couple of <a title=\"https://make.wordpress.org/core/2014/12/04/new-template-tags-in-4-1/\" href=\"https://make.wordpress.org/core/2014/12/04/new-template-tags-in-4-1/\">new Template tags</a> and a major improvement with <a title=\"http://wptavern.com/wordpress-4-1-to-introduce-theme-support-for-the-title-tag\" href=\"http://wptavern.com/wordpress-4-1-to-introduce-theme-support-for-the-title-tag\">Title Tags</a> in 4.1. There have also been several <a href=\"https://make.wordpress.org/core/2014/10/27/toward-a-complete-javascript-api-for-the-customizer/\">improvements to the Customizer API</a>, including contextual panels, sections, and JavaScript templates for controls.</p>\n<h2>4.1 Represents Continued Improvement</h2>\n<p>WordPress 4.1 is the product of dedicated developers and 283 contributors. The ability to choose a language without having to touch a line of code is a great improvement. The default theme is refreshing compared to Twenty Fourteen and users have an entire year to manipulate the design. While some users will see the new Distraction Free Writing mode as a distraction, others will enjoy its convenience.</p>\n<p>What do you think of the new default theme and will you try out the new Distraction Free Writing mode? Let us know what you think of 4.1 in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Dec 2014 18:37:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:68:\"WPTavern: Intergalactic: A Bold Free WordPress Theme from 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=35880\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/intergalactic-a-bold-free-wordpress-theme-from-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2905:\"<p>Despite a global <a href=\"http://rt.com/news/global-space-spending-shrinks-001/\" target=\"_blank\">decrease in public funding for space programs</a>, humans are still reaching for the last frontier through <a href=\"http://www.space.com/24848-science-fiction-space-movies-2014-countdown.html\" target=\"_blank\">film</a>, <a href=\"http://www.radiotimes.com/news/2012-10-24/nasas-voyager-probes-at-35-listen-to-the-music-of-the-planets\" target=\"_blank\">music</a>, and even design. Automattic’s latest free theme release on WordPress.org is a bold new take on the space motif.</p>\n<p><a href=\"https://wordpress.org/themes/intergalactic\" target=\"_blank\">Intergalactic</a> features strong typography with post titles overlaying full-width featured images. The one-column layout is well-suited to a personal blog and the theme has support for all the standard post formats.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/intergalactic-theme.jpg\" rel=\"prettyphoto[35880]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/intergalactic-theme.jpg?resize=660%2C928\" alt=\"intergalactic-theme\" class=\"aligncenter size-full wp-image-35903\" /></a></p>\n<p>Intergalactic also includes support for custom headers, custom backgrounds, and a social links menu. The theme keeps navigation out of sight via a high-contrast slideout menu. The sidebar is 530px wide with plenty of space for longer page titles and wider widgets.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/intergalactic-slide-out-menu.png\" rel=\"prettyphoto[35880]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/intergalactic-slide-out-menu.png?resize=1025%2C357\" alt=\"intergalactic-slide-out-menu\" class=\"aligncenter size-full wp-image-35916\" /></a></p>\n<p>The theme also has built-in styles for right-aligned, left-aligned, and centered pullquotes, which can be easily set in the text editor.</p>\n<pre class=\"brush: xml; light: true; title: ; notranslate\"><blockquote class=\"alignleft\">\n This is a left-aligned blockquote.\n</blockquote></pre>\n<p>Intergalactic’s bold design takes you back to the glory days when space photography was brand new and manned missions put explorers on the moon. It’s been more than 40 years since the Apollo 17 astronauts’ last visit to the lunar surface in 1972, but the idea of space travel remains firmly stuck in the public imagination.</p>\n<p>If you need a new look for your blog and you’re aiming to publish at the speed of light in 2015, the Intergalactic theme is a powerful motivator. Check out the <a href=\"http://intergalacticdemo.wordpress.com/\" target=\"_blank\">live demo</a> on WordPress.com to see it in action. Intergalactic is now available to <a href=\"https://wordpress.org/themes/intergalactic\" target=\"_blank\">download</a> for free from the WordPress.org Themes Directory.</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, 18 Dec 2014 06:19:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:60:\"WPTavern: How to Take Control of The WordPress Heartbeat API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=35865\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/how-to-take-control-of-the-wordpress-heartbeat-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8187:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/HeartbeatControlFeaturedImage.png\" rel=\"prettyphoto[35865]\"><img class=\"size-full wp-image-35888\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/HeartbeatControlFeaturedImage.png?resize=638%2C271\" alt=\"Heartbeat Control Featured Image\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/osseous/11865341393/\">osseous</a> – <a href=\"http://creativecommons.org/licenses/by/2.0/\">cc</a>\n<p>The WordPress <a title=\"http://codex.wordpress.org/Function_Reference/wp_heartbeat_settings\" href=\"http://codex.wordpress.org/Function_Reference/wp_heartbeat_settings\">Heartbeat API, introduced in WordPress 3.6, </a>simulates a pulse and is responsible for revision tracking, session management, and more. The pulse is around 98 Bytes in size, but it can cause performance issues in certain situations.</p>\n<p>If you’ve been notified by your webhost that your account is using too many resources and cite <code>POST /wp-admin/admin-ajax.php</code> as the cause, it’s likely due to the Heartbeat API.</p>\n<h2>How The Heartbeat API Works</h2>\n<p>Inmotion Hosting has an <a title=\"http://www.inmotionhosting.com/support/website/wordpress/heartbeat-ajax-php-usage#heartbeat-in-action\" href=\"http://www.inmotionhosting.com/support/website/wordpress/heartbeat-ajax-php-usage#heartbeat-in-action\">excellent article</a> that explains how the Heartbeat API works. If you monitor server requests while in the post editor, you’ll see <code>POST /wp-admin/admin-ajax.php \"http://example.com/wp-admin/index.php</code> appear every 15 seconds. This is the pulse generated by the API.</p>\n<p>The pulse makes sure you have a persistent connection to the web server and provides a way for developers to trigger events. For example, if the pulse takes 30 seconds or longer to process, WordPress displays a connection error and attempts to reconnect to the server.</p>\n<h2>The Problem</h2>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/PulseExecutionTime.png\" rel=\"prettyphoto[35865]\"><img class=\"size-full wp-image-35883\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/PulseExecutionTime.png?resize=221%2C183\" alt=\"Execution Time\" /></a>Execution Time\n<p>There are several situations in which a pulse is generated either automatically, or by a user. Most of the time pulses are harmless and don’t do anything.</p>\n<p>Each pulse (POST request) executes a PHP script equating to CPU time on the server. In an experiment, InMotion Hosting left the dashboard open for a half hour and noticed <strong>25</strong> PHP script executions that used <strong>5.77</strong> CPU seconds. The small amount of CPU time was used to do nothing.</p>\n<p>The problem is compounded by the fact that each user who has access to the backend of WordPress generates a pulse. As the number of users navigating the WordPress backend simultaneously increases, so does the number of pulses generated from the API.</p>\n<p>If a webhosting provider has strict limits on the number of processes or resources used, you could easily go over the limit.</p>\n<h2>How to Control The Heartbeat API</h2>\n<p><a title=\"https://wordpress.org/plugins/heartbeat-control/\" href=\"https://wordpress.org/plugins/heartbeat-control/\">Heartbeat Control</a>, developed by <a title=\"http://jeffmatson.net/\" href=\"http://jeffmatson.net/\">Jeff Matson</a>, is a new plugin that enables you to control the interval of pulses. After activating the plugin, you’ll find the settings located in <strong>Tools>Heartbeat Control</strong>.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/HeartbeatControlSettings.png\" rel=\"prettyphoto[35865]\"><img class=\"wp-image-35885 size-full\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/HeartbeatControlSettings.png?resize=502%2C258\" alt=\"Heartbeat Control Settings\" /></a>Heartbeat Control Settings\n<p>You can choose to disable the API entirely, only on the dashboard page, or allow it only on the post editing screen. You can also choose the interval when pulses are sent. The choices range from 15-60 seconds with 5 second intervals in between.</p>\n<p>By changing the interval to 60 seconds, pulses are less likely to impact server performance. Several <a title=\"http://www.inmotionhosting.com/support/website/wordpress/heartbeat-ajax-php-usage#comments\" href=\"http://www.inmotionhosting.com/support/website/wordpress/heartbeat-ajax-php-usage#comments\">HostGator customers</a> who use the plugin report they no longer experience suspensions for using too many resources.</p>\n<h2>Why InMotion Hosting Doesn’t Throttle The API by Default</h2>\n<p>If increasing the pulse interval from 15 to 60 seconds increases server performance, why doesn’t InMotion Hosting throttle the API on every webhosting server?</p>\n<p>Matson, who works for InMotion Hosting, says a one size fits all approach doesn’t work. “The reason we don’t do that is because there are some users that require it at the default rate or an even higher frequency. When making server-wide changes, you have to be extremely careful that you do not impact a customer’s site.”</p>\n<p>Matson goes on to say that, “As a host, the number one goal is making customers happy and restricting the normal operation of a user’s site is unacceptable.”</p>\n<h2>How HostGator Almost Deleted WP Tavern</h2>\n<p>I sympathize with those who use HostGator as they have a strict <a title=\"http://support.hostgator.com/articles/pre-sales-policies/rules-terms-of-service/cpu-resource-restriction\" href=\"http://support.hostgator.com/articles/pre-sales-policies/rules-terms-of-service/cpu-resource-restriction\">CPU resource restriction</a>. If pulses from the Heartbeat API cause the CPU to become busy or cause a backup in processes, using 25% of the CPU longer than 90 seconds is easy to do.</p>\n<p>HostGator’s policy for using too many resources is to suspend the account. This makes it impossible to troubleshoot the problem. If you exceed the resource allotment more than five times, the site is removed from the server and your account is banned.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/HostGatorResourcePolicy.png\" rel=\"prettyphoto[35865]\"><img class=\"size-full wp-image-35886\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/HostGatorResourcePolicy.png?resize=503%2C107\" alt=\"HostGator Resource Policy\" /></a>HostGator Resource Policy\n<p>In late 2013, when WP Tavern used HostGator, I experienced first-hand what it’s like to have a website suspended. When I upgraded the Tavern to WordPress 3.6, which introduced the Heartbeat API, I <a title=\"http://wptavern.com/my-wordpress-is-denying-itself-service\" href=\"http://wptavern.com/my-wordpress-is-denying-itself-service\">started to experience problems</a>. The site would routinely lock up and when I viewed the processes tab in cPanel, it looked like a simple process repeated itself, leading to a denial of service.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2013/06/siteoffline.jpg\" rel=\"prettyphoto[35865]\"><img class=\"aligncenter size-full wp-image-7554\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2013/06/siteoffline.jpg?resize=741%2C644\" alt=\"Site Offline Errors\" /></a>I can’t confirm if the Heartbeat API was the culprit but it’s high on my list of suspicions. After suspending the Tavern twice, HostGator informed me that if the site was suspended again, it would be removed from the server without giving me a chance to back it up. Needless to say, I switched hosts immediately.</p>\n<h2>Don’t End Up in a Similar Situation</h2>\n<p>If you’re using a webhosting service with strict resource limits, consider installing Heartbeat Control to limit the number of pulses. Not only will it mean fewer calls to the server, but it may lead to a performance increase as well. Keep a close eye on the resources used and if you come close to maxing out, it’s a sign you need to upgrade to a better plan. Don’t end up in a position where you may lose your site!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Dec 2014 02:19:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Atlanta WordPress Coders Guild: A New Meetup for Designers and Programmers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35847\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/atlanta-wordpress-coders-guild-a-new-meetup-for-designers-and-programmers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7496:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/atlanta.jpg\" rel=\"prettyphoto[35847]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/atlanta.jpg?resize=1022%2C496\" alt=\"photo credit: FrenchKheldar - cc\" class=\"size-full wp-image-35874\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/frenchkheldar/3322197028/\">FrenchKheldar</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>The Atlanta metro area will soon be getting a new type of WordPress meetup, targeted towards programmers and designers. Local organizers <a href=\"http://mikeschinkel.com/\" target=\"_blank\">Mike Schinkel</a> and <a href=\"http://micahwood.me/\" target=\"_blank\">Micah Wood</a> announced the <a href=\"http://www.meetup.com/atlanta-wordpress-coders-guild/\" target=\"_blank\">Atlanta WordPress Coders Guild</a> on Meetup.com and have already attracted 55 members who identify themselves as coders.</p>\n<p>Due to the group’s unique requirements, it is not affiliated with the WordPress Foundation-sponsored <a href=\"https://make.wordpress.org/community/meetups/\" target=\"_blank\">community meetups</a>. In order to become a member, one must be interested in working with technologies such as PHP, MySQL, Apache, Javascript, jQuery, Git, Backbone, Vagrant, Gulp, Grunt, SASS, and of the WordPress API.</p>\n<p>“We are not affiliated with the WordPress Foundation’s Community Meetups initiative because we are not open to WordPress end-users,” Schinkel emphasizes in the meetup’s description. “We are instead a group for serious professionals with a goal of raising the bar for WordPress coder talent in the Southeast and to make it more viable for the major project funders to choose WordPress instead of closed source solutions.”</p>\n<p>Official community meetups have a requirement to have membership open to “all who wish to join, regardless of ability, skill, financial status or any other criteria.” Since the Atlanta WordPress Coders Guild isn’t open to all skill levels, it is running independently. The organizers plan to host workshops centered around best practices expected by clients who spend $100k+ on projects that demand a high level of performance and security.</p>\n<h3>Atlanta’s Fragmented WordPress Community</h3>\n<p>Schinkel has lived in the Atlanta area for several decades and has <a href=\"http://mikeschinkel.com/blog/25-best-practices-for-meetup-organizers/\" target=\"_blank\">organized professional meetups</a> for the past eight years. He’s an accidental connector who became acquainted with many people in the area and has a unique perspective on the Atlanta tech and WordPress communities.</p>\n<p>“We have a really strong tech community backed by education like Georgia Tech and ~10 Fortune 500 companies in the Atlanta area, and tons on technology meetups,” he said. “Lots of Java, .NET, Ruby, Javascript and PHP, and at least 10 large digital agencies with probably up to 1000 agencies if you count the small ones.”</p>\n<p>The startup community is also thriving in the area and Atlanta is experiencing growth across various sectors, including financial, health tech, IT security, and more. Unfortunately, this has not directly translated into a strong WordPress community.</p>\n<p>“The WordPress community, however, is fragmented because of metro Atlanta’s expansive geography, lack of any natural geographic boundaries and no single entity with the clout to really organize a cohesive community,” Schinkel explained. The area has 10 different meetups, many of which fail to attract more than a handful of members on a regular basis.</p>\n<p>The <a href=\"http://www.meetup.com/wordpress-atlanta/\" target=\"_blank\">Atlanta WordPress Users Group</a>, organized by Judi Knight, is the most successful with approximately 1600 members, but Schinkel says those are primarily people willing to travel to a meetup in town. Outer metro Atlanta residents are reluctant to attend.</p>\n<p>“Also, from the perspective of a professional WordPress PHP, MySQL and jQuery coder, those meetups are characterized by really novice end-users,” he said. “Rarely, if ever, is there any significant WordPress coding talent in attendance, and intermediate to advanced topics are never announced or covered.”</p>\n<h3>The Need for More Workshops Focused on Advanced Topics</h3>\n<p>Schinkel believes that the Atlanta WordPress community needs the opportunity to have more advanced workshops and developer-focused meetups. “As far as I can tell the existing successful WordPress meetups all focus on the needs of end-users,” he said. “That’s great, it is what in part has driven the success but WordPress, but it also means that there are no local meetups to help WordPress coders to grow their skills.”</p>\n<p>Schinkel used the term “coder” in the meetup name specifically to filter out those he would classify as developers.</p>\n<blockquote><p>Many people think of themselves as ‘WordPress Developers’ when what they do is install WordPress; select, install and configure a theme; select, install and configure plugins; maybe tweak CSS; and add some page templates with a bit if loop and template tag coding. So we think of those people as ‘Site Builders’ and think the term ‘developer’ is too broadly adopted to have any communicable distinction in the context of WordPress people.</p></blockquote>\n<p>There are a myriad of meetups in Atlanta for WordPress end users who want to learn about using themes and plugins, but virtually no meetups for coders who want to expand their skills. This is why the organizers are spearheading a WordPress coders guild in Atlanta.</p>\n<p>“First and foremost we want to see more Atlanta agencies and internal terms in the larger Atlanta organizations choosing WordPress for their projects,” Schinkel said. “For that to happen there has to be a stronger talent base in Atlanta who are knowledgeable and experienced in WordPress best practices, at least as far as they relate to agency use of WordPress.”</p>\n<p>He anticipates that the group will probably have its first “get to know each other” meetup in January and then start workshops in February. With advanced topics in the spotlight every week, Schinkel hopes that agencies and internal teams that rarely come out to network will be more motivated to attend.</p>\n<p>“We want to create a stronger WP coder community than we currently have in Atlanta, and the one we currently have is really lacking,” he said. “Put it another way, Drupal has a far stronger developer community in Atlanta because of their Drupal meetup and yet Drupal has ~1/10th the marketshare of WordPress. Now that is really sad, don’t you think?”</p>\n<p>Schinkel and Wood have identified a common problem with many community meetups where the topics focus on end user education. While connecting with people of all skill levels is important, more advanced WordPress professionals often become less motivated to attend meetups that don’t include topics that challenge them and help them become better at their work. The <a href=\"http://www.meetup.com/atlanta-wordpress-coders-guild/\" target=\"_blank\">Atlanta WordPress Coders Guild</a> aims to solve this problem with an alternative, non-traditional WordPress meetup.</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, 17 Dec 2014 23:34:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:97:\"WPTavern: VVV-Dashboard Provides an Interface for Managing Varying Vagrant Vagrants Installations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35807\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"http://wptavern.com/vvv-dashboard-provides-an-interface-for-managing-varying-vagrant-vagrants-installations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3392:\"<p><a href=\"https://github.com/leogopal/VVV-Dashboard\" target=\"_blank\">VVV-Dashboard</a> is a new tool that provides an interface for managing your <a href=\"https://github.com/Varying-Vagrant-Vagrants/VVV\" target=\"_blank\">Varying Vagrant Vagrants</a> installations. Inspired by <a href=\"http://wptavern.com/variable-vvv-a-new-vvv-site-creation-wizard-for-wordpress\" target=\"_blank\">Variable VVV</a>, a script that makes it easy to create and delete sites, <a href=\"https://twitter.com/leogopal\" target=\"_blank\">Leo Gopal</a> made VVV-Dashboard to complement it.</p>\n<p>Gopal is a WordPress developer from Cape Town, South Africa. “I installed my first WordPress site seven years ago while in high school and started creating sites for clients ever since. Only recently, after Matt’s <a href=\"http://ma.tt/2014/09/five-for-the-future/\" target=\"_blank\">Five for the Future</a> speech, did I decide to come out and offer what I have to everyone, more freely,” he said. VVV-Dashboard is one of his first public contributions.</p>\n<p>The tool was designed to work with Variable VVV but can be used without it. “Because VVV is very terminal oriented, it’s easy to forget commands when you need them. For example, you might forget to ‘vagrant up –provision’ when working with Variable VVV (and other site creators),” Gopal said. VVV-Dashboard adds a quick reference page inside your vvv.dev site for commands and includes a list of all your Vagrant installs.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/vvv-dashboard.png\" rel=\"prettyphoto[35807]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/vvv-dashboard.png?resize=1025%2C472\" alt=\"vvv-dashboard\" class=\"aligncenter size-full wp-image-35817\" /></a></p>\n<p>The title of the page displays how many VVV sites you have installed on your machine. Each site and its admin are linked, along with a <a href=\"http://www.xdebug.org/docs/profiler\" target=\"_blank\">profiler</a> button that offers a quick overview. In order for the profiler to work, you must have Xdebug turned on.</p>\n<p>Many developers end up with a long list of dev sites, and it can be difficult to remember what sites are active and where they are located. The VVV-Dashboard interface saves you time with a convenient list and might even inspire you to perform a cleanup of sites no longer in use.</p>\n<p>In the next few releases, Gopal plans to include more basic site info in the dashboard, such as whether or not WP_Debug is enabled, an indicator for if Xdebug is on/off, the current active theme, etc. Variable VVV recently added a blueprints feature, which allows you to set up different plugins, themes, mu-plugins, options, or constants that will be installed to a new site you create. Gopal plans to create a few blueprint examples and add them to VVV-Dashboard.</p>\n<p>VVV-Dashboard is licensed under the GPL V2. It adds a friendly layer between you and your VVV sites to make management more convenient and efficient. Check out the project on <a href=\"https://github.com/leogopal/VVV-Dashboard\" target=\"_blank\">GitHub</a> where you’ll find complete installation instructions. If you have any tips on how to improve the project, make sure to <a href=\"https://github.com/leogopal/VVV-Dashboard/issues/new\" target=\"_blank\">leave your feedback</a> for the developer.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Dec 2014 20:01: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: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:49:\"WPTavern: ManageWP Releases Plugin Discovery Tool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=35747\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wptavern.com/managewp-releases-plugin-discovery-tool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5361:\"<p>The <a title=\"https://wordpress.org/plugins/\" href=\"https://wordpress.org/plugins/\">WordPress plugin directory</a> has nearly 35k plugins and discovering new ones that have been tested and downloaded a few thousand times is difficult. Users can browse the directory for newest, recently updated, most popular, and highest rated plugins. With the exception of the <a title=\"https://wordpress.org/plugins/browse/updated/\" href=\"https://wordpress.org/plugins/browse/updated/\">recently updated</a> category, there’s no way to discover plugins in the middle of the pack. A new <a title=\"https://managewp.org/plugins/best\" href=\"https://managewp.org/plugins/best\">plugin discovery tool</a> by ManageWP, attempts to solve the problem.</p>\n<h2>Algorithm Based</h2>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/ManageWPBestNewPlugins.png\" rel=\"prettyphoto[35747]\"><img class=\"size-full wp-image-35794\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/ManageWPBestNewPlugins.png?resize=925%2C663\" alt=\"Best New Plugins\" /></a>Best New Plugins Page\n<p>The front page of <a title=\"https://managewp.org/plugins/best\" href=\"https://managewp.org/plugins/best\">ManageWP.org/plugins</a> displays the best new plugins under 100k downloads. The plugins are determined using an algorithm that takes into account plugin quality and acceleration of growth. A plugin’s quality is determined using seven metrics:</p>\n<ul>\n<li>Last Updated</li>\n<li>WordPress Compatibility</li>\n<li>Support</li>\n<li>Rating</li>\n<li>Plugin Popularity</li>\n<li>Author Popularity</li>\n<li>Other plugins from the same author</li>\n</ul>\n<p>Using a combination of metrics, ManageWP is able to display a constantly evolving list of <a title=\"https://managewp.org/plugins/rising\" href=\"https://managewp.org/plugins/rising\"><em>rising stars</em></a>. Placing emphasis on a plugin’s compatibility with WordPress and when it was last updated might motivate plugin authors to keep these fields updated.</p>\n<h2>Comparing Plugins</h2>\n<p>If you’re curious to see how plugins compare to each other, check out the <a title=\"https://managewp.org/#comparePlugins\" href=\"https://managewp.org/#comparePlugins\">plugin comparison section</a> of the site. Simply choose two different plugins and hit the compare button. The comparison displays each plugin’s statistics with a download chart at the bottom. At the moment, you’re limited to comparing only two plugins at the same time, but there are plans to allow for more in the future.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/ManageWPPluginComparison.png\" rel=\"prettyphoto[35747]\"><img class=\"size-full wp-image-35793\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/ManageWPPluginComparison.png?resize=915%2C493\" alt=\"Plugin Comparisons\" /></a>Plugin Comparisons\n<h2>Plugin Awards</h2>\n<p>Awards are a quick way to determine how well a plugin is doing in specific categories. For example, <a title=\"https://managewp.org/plugins/details/wordpress-seo\" href=\"https://managewp.org/plugins/details/wordpress-seo\">WordPress SEO</a> by Team Yoast, has a number of awards for being the most downloaded and highest rated in multiple categories. I think it would be beneficial if this area was extended to highlight more ranks like top ten, top five, and number one.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/PluginAwards.png\" rel=\"prettyphoto[35747]\"><img class=\"size-full wp-image-35797\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/PluginAwards.png?resize=599%2C559\" alt=\"ManageWP Plugin Awards\" /></a>ManageWP Plugin Awards\n<h2>Future Improvements</h2>\n<p>ManageWP founder, Vladimir Prelovac, says he’s not finished with the site. In <a title=\"https://managewp.com/blog\" href=\"https://managewp.com/blog\">the announcement</a>, he shares a couple of ideas on what he’d like to see in the next iteration.</p>\n<ul>\n<li>Simpler plugin comparison, allow multiple plugins compared at once.</li>\n<li>Include <a href=\"https://wpvulndb.com/\">WP Vulnerability Database</a> security data to plugin details page and Plugin Quality score.</li>\n<li>Allow plugin authors to ‘claim’ their pages. This will allow all sorts of activity like adding the links to their premium support, answering Q&A</li>\n<li>Open everything via an API so everyone can use the engine and its data</li>\n</ul>\n<p>The WP Vulnerability Database will be a nice enhancement, especially if you can see how many vulnerability reports a plugin has. Something to keep in mind is that ManageWP/Plugins is utilizing the <a title=\"http://codex.wordpress.org/WordPress.org_API\" href=\"http://codex.wordpress.org/WordPress.org_API\">WordPress.org Plugins API,</a> which limits the types of data it’s able to work with.</p>\n<h2>A Plugin Directory Without The Plugins</h2>\n<p>I love the idea behind <a title=\"https://managewp.org/plugins\" href=\"https://managewp.org/plugins\">ManageWP/Plugins</a> because it fills a void created by the plugin directory. It’s essentially a sub-section of the directory without the plugins. When I look for plugins to review, the directory leaves me little choice between one that’s popular or brand new. ManageWP/Plugins gives me an opportunity to discover them before they reach global popularity.</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, 17 Dec 2014 05:58:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: WordPress Accessibility Team Is Mobilizing to Make Accessibility Required for WordPress.org Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=35570\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"http://wptavern.com/wordpress-accessibility-team-is-mobilizing-to-make-accessibility-required-for-wordpress-org-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4365:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/05/guided-road.jpg\" rel=\"prettyphoto[35570]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/05/guided-road.jpg?resize=900%2C421\" alt=\"guided-road\" class=\"aligncenter size-full wp-image-22575\" /></a></p>\n<p>Throughout the first half of this month, the WordPress Accessibility team has been working together with the Theme Review Team to discuss the <a href=\"https://make.wordpress.org/accessibility/2014/12/04/theme-accessibility-meeting-notes/\" target=\"_blank\">possibility of requiring the accessibility-ready tag</a> for themes hosted on WordPress.org. The team will need to create an official proposal to submit to the Theme Review Team in order to make this happen.</p>\n<p>In preparation, the Accessibility team is increasing efforts to educate theme authors on accessibility best practices. Joe Dolson published a post with <a href=\"https://make.wordpress.org/themes/2014/12/15/three-easy-tips-for-accessible-theming/\" target=\"_blank\">tips for making WordPress themes accessible</a>, which includes basic instructions for making themes work with a keyboard, creating event triggers as accessible controls, and adding supporting text for images.</p>\n<p>The Accessibility team also created a <a href=\"https://github.com/wpaccessibility/\" target=\"_blank\">GitHub repository</a> for sharing WordPress-specific code examples for accessibility and plans to add resources in the near future. The theme handbook and reviewer’s handbook will potentially need to be reworked in order to account for the new guidelines. “The goal is for those documents to explicitly correlate to the theme accessibility guidelines, so that theme authors have specific guidance on what to do to meet those requirements,” Dolson said at a recent meeting.</p>\n<p>The Accessibility team hopes to announcing new guidelines for theme developers in April 2015, which would then be required as of November 2015. Once the guidelines are finalized for both required and recommended items, the Accessibility team will also need to train the Theme Review Team on reviewing for accessibility.</p>\n<p>For most traditional WordPress sites, the active theme is the face of the website, and accessibility-ready themes undoubtedly improve the experience of WordPress for users with disabilities. However, making accessibility required for themes is a long and difficult path. The possibility of the requirement already has opposition among Theme Review Team administrators.</p>\n<p>When we <a href=\"http://wptavern.com/wordpress-themes-directory-now-requires-all-themes-to-be-translation-ready\" target=\"_blank\">published</a> about WordPress.org’s newest requirement for themes to be translation-ready, several readers chimed in on the comments to advocate for accessibility to be required. Justin Tadlock, a TRT admin, <a href=\"http://wptavern.com/wordpress-themes-directory-now-requires-all-themes-to-be-translation-ready#comment-61697\" target=\"_blank\">replied</a>, “As an admin of TRT, full compliance with our current accessibility guidelines is something I’d fight to not make a requirement.</p>\n<p>“Unfortunately, making a theme accessible can sometimes mean not respecting a designer’s artistic vision. This is particularly an issue with color contrasts. Anything that would hinder design decisions like this is not something I would support. That’s beyond the scope of what TRT’s role is.”</p>\n<p>Even with more education for theme authors, additional guidelines pose another hurdle to overcome in the rigorous review process. Tadlock believes it would stifle submissions from new theme authors. “Requiring accessibility-ready themes would be such a huge barrier to entry for new theme authors that it would be detrimental to the system.”</p>\n<p>The Accessibility team is highly motivated to push for this new requirement and is currently working on a precise proposal that will be voted on by the Theme Review Team. “The important thing with the proposal is clarity,” Dolson said, recognizing that it could blocked if the two teams are unable to communicate effectively about the issues at stake. The decisions made in the first part of 2015 will determine the immediate future of theme accessibility in the WordPress.org Themes Directory.</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, 16 Dec 2014 21:24:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:38:\"Post Status: Let’s WordSesh together\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.poststat.us/?p=7232\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.poststat.us/lets-wordsesh-together/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1513:\"<p><img class=\"aligncenter size-large wp-image-7233\" src=\"http://www.poststat.us/wp-content/uploads/2014/12/wordsesh-3-752x317.png\" alt=\"wordsesh-3\" width=\"627\" height=\"264\" /></p>\n<p>This weekend, <a href=\"http://wordsesh.org/\">WordSesh</a> 3 will begin. WordSesh is 24 straight hours of live streamed presentations and discussions from a variety of intelligent folks in the WordPress world.</p>\n<p>It starts at 0:00 UTC Saturday, which really means 7:00 p.m. Eastern time on Friday for those of us in America. It’ll run through Saturday evening.</p>\n<p>The <a href=\"http://wordsesh.org/#schedule\">lineup</a> for WordSesh is as good as any WordCamp, and the chat around the past events has been fantastic. Scott Basgaard and his team of volunteers do a great job.</p>\n<p>I’ll be on a WordPress news roundtable at the tail end of WordSesh. On Friday, I’m going to have some news that will help explain my radio silence of late, and will probably spice up the conversation I’m to have with Jeff Chandler (of WP Tavern), Dre Armeda and Brad Williams (of DradCast) and Doc Pop (of Torquemag). I hope you’ll watch.</p>\n<p>Check out all the information on the <a href=\"http://wordsesh.org/\">WordSesh</a> website, follow <a href=\"https://twitter.com/wordsesh\">@WordSesh</a> on Twitter, and RSVP if you’d like to attend. There are already over 600 people signed up. It’s completely free and community supported. I love this event and I’m glad to see it happen again.</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, 16 Dec 2014 19:43: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:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:96:\"WPTavern: Jetpack 3.3 Introduces New Centralized Dashboard for Managing Multiple WordPress Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35724\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"http://wptavern.com/jetpack-3-3-introduces-new-centralized-dashboard-for-managing-multiple-wordpress-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3553:\"<p>Jetpack 3.3 is now available. The highlight of this release is the new centralized site dashboard feature that allows users to manage multiple Jetpack-connected WordPress sites and WordPress.com sites from one location in WordPress.com.</p>\n<p>The new dashboard is mobile friendly and includes the <a href=\"http://wptavern.com/jetpack-3-2-introduces-centralized-posting-from-wordpress-com\" target=\"_blank\">centralized posting feature that was introduced in Jetpack 3.2</a>. It also allows users to see all of their sites listed together and perform a number of housekeeping actions:</p>\n<ul>\n<li><strong>Plugin management:</strong> Turn plugins on or off with one click — per site or in bulk.</li>\n<li><strong>Initiate plugin updates:</strong> Update plugins for a single site or all sites in bulk.</li>\n<li><strong>Automatic updates:</strong> Turn on auto-updates for any plugin on a per-site basis or in bulk.</li>\n</ul>\n<p>Jetpack 3.3 is required in order to use the plugin management features, so you’ll need to update at least one of your sites to check it out. You also need to activate Jetpack’s JSON API feature and ensure that the “Allow remote actions” setting is enabled.</p>\n<p>To view all the plugins you have installed, visit <a href=\"https://wordpress.com/plugins\" target=\"_blank\">WordPress.com/Plugins</a>. When you click through a plugin, you’ll find a short description of it and a list of the sites where you have it installed.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/jetpack-plugin-management.jpg\" rel=\"prettyphoto[35724]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/jetpack-plugin-management.jpg?resize=980%2C482\" alt=\"jetpack-plugin-management\" class=\"aligncenter size-full wp-image-35735\" /></a></p>\n<p>WordPress.com’s one dashboard to rule them all is now in direct competition with services like <a href=\"https://managewp.com/\" target=\"_blank\">ManageWP</a>, <a href=\"https://wpremote.com/\" target=\"_blank\">WP Remote</a>, <a href=\"http://infinitewp.com/\" target=\"_blank\">InfiniteWP</a>, and several others that provide centralized site management.</p>\n<p>As WordPress has become an increasingly popular solution for building websites, developers are often responsible for more sites than they can safely keep track of for updates. Centralized dashboard management is critical for scaling maintenance capabilities. It comes as no surprise that WordPress.com is getting its hook into self-hosted sites by moving to support centralized site management via Jetpack.</p>\n<p>In addition to the new centralized dashboard, Jetpack 3.3 also brings many other enhancements to the plugin:</p>\n<ul>\n<li>Adds responsive video support to BuddyPress</li>\n<li>Custom Content Types: Added ‘order’ and ‘orderby’ options to portfolio shortcode</li>\n<li>Display notice when Jetpack Development Mode is on</li>\n<li>Compatibility with Twenty Fifteen</li>\n<li>Likes: Updated the code to accept arbitrary CPTs</li>\n<li>Related Posts: Allow filter by post_format</li>\n<li>Sharing: add new jetpack_sharing_counts filter for option to turn off sharing counts</li>\n<li>Sharing: Use the Site Logo Theme Tool and the Site Icon as fallbacks for image tags</li>\n</ul>\n<p>The 3.3 release also adds several filters that allow developers to further customize Jetpack’s behavior. Check out the <a href=\"https://wordpress.org/plugins/jetpack/changelog/\" target=\"_blank\">changelog</a> for the full list of enhancements and 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:\"Tue, 16 Dec 2014 18:24: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: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:97:\"WPTavern: 100,000+ WordPress Sites Compromised Using the Slider Revolution Security Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=35668\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"http://wptavern.com/100000-wordpress-sites-compromised-using-the-slider-revolution-security-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3280:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/security.jpg\" rel=\"prettyphoto[35668]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/security.jpg?resize=1024%2C487\" alt=\"photo credit: Ravages - cc\" class=\"size-full wp-image-27206\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/ravages/6731739485/\">Ravages</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>Over the weekend, the security team at Sucuri <a href=\"http://blog.sucuri.net/2014/12/soaksoak-malware-compromises-100000-wordpress-websites.html\" target=\"_blank\">discovered</a> that more than 100,000 WordPress sites have been hit with the SoakSoak.ru malware campaign. This campaign has resulted in more than 11,000 domains being blacklisted by Google.</p>\n<p>SoakSoak modifies the wp-includes/template-loader.php file in order to inject Javascript, which contains the malware, into every page on compromised sites. You can check to see if your site is affected by using Sucuri’s free <a href=\"http://sitecheck.sucuri.net/\" target=\"_blank\">SiteCheck scanner</a>.</p>\n<p>After researching the compromised sites, Sucuri found that SoakSoak’s vehicle of attack is the <a href=\"http://wptavern.com/critical-security-vulnerability-found-in-wordpress-slider-revolution-plugin-immediate-update-advised\" target=\"_blank\">critical security vulnerability that was discovered in the Slider Revolution plugin</a> and made public in September. At that time, Envato identified more than <a href=\"http://wptavern.com/1000-wordpress-themes-on-envato-market-potentially-affected-by-revolution-slider-security-vulnerability\" target=\"_blank\">1,000 themes sold through its marketplace that were potentially affected</a> by this particular vulnerability.</p>\n<p>The Slider Revolution issue, though silently patched in February, has been actively exploited since its disclosure. Many WordPress site administrators have not updated their copies of the Slider Revolution plugin to the patched version, leaving their sites open to compromise. Since the plugin is packaged with many themes sold through Themeforest, site owners are not always aware that they are vulnerable.</p>\n<p>According to the report from Sucuri, the SoakSoak attack first scans sites to locate the vulnerable file within the Slider Revolution plugin in order to gain access to the wp-config.php file. If successful, the intruder then attempts to upload a malicious theme to the site, followed by injecting the <a href=\"http://labs.sucuri.net/db/malware/backdoor-phpfilesman02\" target=\"_blank\">Filesman backdoor</a> into the website. The attacker then injects another backdoor in order to modify the swfobject.js file to inject malware that redirects visitors to soaksoak.ru.</p>\n<p>This malware attack is particularly difficult to clean up after. If your site has been compromised, you cannot simply remove the infected files. The backdoors will also need to be addressed, as well as the Slider Revolution vulnerabilities. Sucuri advises stopping malicious attacks through a firewall. If your site or one of your clients’ sites is using the Slider Revolution plugin, it is imperative that you check to see if you are affected and update your site and plugins immediately.</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, 15 Dec 2014 22:42:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:83:\"WPTavern: Pippin Williamson on Building a Community Around Your Open Source Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=35573\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/pippin-williamson-on-building-a-community-around-your-open-source-project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10938:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/pippin-williamson.jpg\" rel=\"prettyphoto[35573]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/pippin-williamson.jpg?resize=800%2C393\" alt=\"photo credit: inQbation\" class=\"size-full wp-image-35588\" /></a>photo credit: <a href=\"http://www.inqbation.com/photos-of-wordpress-wordcamp-miami-2014/\">inQbation</a>\n<p>When <a href=\"https://twitter.com/pippinsplugins\" target=\"_blank\">Pippin Williamson</a> launched <a href=\"https://easydigitaldownloads.com/\" target=\"_blank\">Easy Digital Downloads</a> in early 2012, he could not have predicted the success that the open source project is experiencing today. The core plugin is approaching half a million downloads and recently passed 100 <a href=\"https://github.com/easydigitaldownloads/Easy-Digital-Downloads/graphs/contributors\" target=\"_blank\">contributors</a> on GitHub. It provides the foundation for a profitable commercial marketplace of more than 190 extensions authored by the EDD community.</p>\n<h3>The Birth of Easy Digital Downloads</h3>\n<p>As is the case with many entrepreneurs, Williamson discovered one of his best ideas while solving one of his own problems. He had become an avid plugin developer long before EDD was in the picture. “I wanted a better way to sell WordPress plugins I was creating through my own site,” he said. “I had been using the Code Canyon marketplace from Envato for a while and had toyed with a few of the other e-commerce plugins, but I wanted something a bit different.” Williamson had no idea that EDD would soon become his full-time job.</p>\n<blockquote><p>When a project starts out that way, it’s really hard to guesstimate what the future holds for it. As I continued building on the plugin and making more generalized features that had a wider audience than just my site, it became apparent pretty quickly that others were looking for some of the same things. The project was started in March and by November of the same year, I really started to consider the prospect of it becoming a full-time job for me.</p></blockquote>\n<p>Williamson was inspired by Jigoshop’s and WooCommerce’s successes with the “extensions marketplace” business model. “As an outsider, it seemed as though the extensions model was working well for them, so I thought, ‘Why not?’ It seemed like a good fit. Early on though I had no idea that we would reach more than 150 extensions in so short a time.”</p>\n<p>He built the first couple of extensions for himself, including the Stripe integration. “Those first extensions were really the ones that proved building a marketplace around EDD wasn’t an utterly insane idea. Mostly insane but plausible.”</p>\n<h3>Extensibility Has a Direct Correlation to Profitability</h3>\n<p>Easy Digital Downloads is well known for having a codebase that is easy to extend and friendly to developers. Williamson built this into the project out of principle from the early days of EDD, not knowing how vital extensibility would become further down the road.</p>\n<p>“It definitely started as a core philosophy but became a fundamental requirement as the project grew. EDD wouldn’t be even half as successful as it is now if it weren’t for the extensibility,” he said. “There are still severe pain points in terms of our extensibility, but they are being worked on for future releases. A commitment to always making the plugin more and more extensible is one of the things that has really helped us along the way.”</p>\n<p>Extensibility is the backbone of the EDD marketplace, and it’s paying off for Williamson and the project as a whole. On an average day, the core EDD plugin sees 400-1000 downloads. “The revenue of the project has grown consistently since first launching two and a half years ago,” Williamson said. “In its first year, we saw steady growth, but nothing amazing by any means. It was enough to tell me there was potential for much, much more.”</p>\n<p>In 2012, Williamson reports that the project pulled in $25,000 in extension sales, with one fifth of this paid out to third party developers for extension sales. Over the course of 2013, EDD grew its monthly revenue from ~$2,000 per month up to nearly $16,000 per month. Williamson finished that year with ~$190,000 in sales and paid out nearly $64,000 in commissions to third party developers.</p>\n<p>“And now, just as we are wrapping up 2014, we have seen more than $456,000 in sales and have generated more than $200,000 in commissions for third party developers,” Williamson said. “In 2015 these numbers are expected to grow, just as they have for the last two years. To say we’re excited for the future would be to put it lightly.”</p>\n<h3>Attracting and Keeping a Community of Contributors</h3>\n<p>Without EDD’s large community of contributors, the project’s success would have been severely limited. EDD seems to have an organic way of attracting and keeping contributors. Williamson attributes this to three key aspects of the community surrounding the project:</p>\n<ul>\n<li><strong>We work hard to always try and make new contributors few welcome.</strong> No one should ever be told (even indirectly) to go away when they are trying to give back to a project. By being open to criticism and suggestions from the community, and working to ensure the community feels encouraged to speak up, we have gained a lot of long-time contributors, simply because they didn’t feel like their suggestions were lost in a dark abyss of nothingness or intentionally ignored. When people feel welcomed, they tend to stick around.</li>\n<li><strong>Every suggestion gets an answer of some kind. Period.</strong> We strive to never leave a support ticket or github issue unanswered. Even if the answer is “no”, we still answer it. When people are ignored, they leave, so we never ignore anyone. Period.</li>\n<li><strong>We have actively asked people to help out on the project.</strong> There are tons of people out there ready, willing, and wanting to help; sometimes all it takes is an invitation.</li>\n</ul>\n<p>Williamson doesn’t think that any of these efforts are unique to EDD, but they have been the most important factors for growing and keeping a large contributor base. He aims to make sure every single contributor gets an answer to their suggestions, no matter how small the contribution or bug report. “If someone that is brand new to the project feels they have been ignored, how likely are they to ever come back? I think we see this a lot with WordPress core contributors,” he said.</p>\n<p>“There are hundreds of tickets on trac that have gone unanswered from new contributors, and I suspect a huge percentage of those people have decided to move on and not contribute since they felt ignored. <strong>It doesn’t matter if someone is actually ignored; it matters that they feel they were ignored.</strong>”</p>\n<p>In order to maintain a good follow-up process, Williamson has streamlined development of the core plugin through its GitHub repository. New contributors who want to get involved with extension or theme development also have access to a private Trello board where they can connect with other developers.</p>\n<h3>Advice for New Open Source Project Leaders</h3>\n<p>When reflecting on the early days of EDD, Williamson has a few regrets and encourages developers to think about the future when it comes to plugin architecture. “There is one major architectural change I would make, and that is the use of custom tables for storing data,” he said.</p>\n<p>“We opted out of using custom tables from day one, and that was a mistake. Not properly leveraging custom tables that had the exact database schema that we needed actually made it dramatically more work for us in the long run. We’ve had to jump through a lot of hoops to build advanced queries for solid store reporting.”</p>\n<p>This mistake has made it difficult to build EDD in a way that will scale the plugin up to a larger user base on larger websites, as needed. Williamson and contributors continue to find ways to deal with it but it is still costing the team a great deal more effort.</p>\n<p>On the community aspect of the project, he has a few simple tips for open source project leaders who want to attract a decent base of contributors.</p>\n<ul>\n<li>Be nice.</li>\n<li>Respond to everyone.</li>\n<li>Make it publicly known that you want contributions.</li>\n<li>Do what you can to make it easy (hint: asking people to email patches is not making it easy.)</li>\n<li>Be very open to criticism.</li>\n<li>Work hard to build an awesome product, as that alone will attract a certain number of interested in contributors.</li>\n</ul>\n<p>Holding to these principles has made Easy Digital Downloads a resounding success, as well as an inspirational example for WordPress plugin developers. Williamson hopes to expand operations to include a hosted version of the plugin, but doesn’t yet have a roadmap for how that will play out.</p>\n<p>“I would like to see a hosted version be available within the next year or two. We haven’t officially decided if we will offer one or if we will seek partnering with an agency or other group, but I’d love to see it come about,” he said. If he’s able to launch a hosted version, Williamson will have the opportunity to tap into a whole new demographic of customers, many of whom are likely not developers.</p>\n<p>“I’ve never run a hosted service before so it will be a whole new experience for me with a whole new set of challenges,” he said. Williamson counts the strong EDD community as one of his assets in pursuing this new venture:</p>\n<blockquote><p>One advantage that I feel we will have, however, is the rapid development pace that having a strong community of contributors affords us. As we iterate quickly on the self-hosted version, those same changes will be able to be applied to a hosted version. It will also be able to go in reverse: as we test out new features in a hosted version, we can apply those same changes upstream to the self-hosted version. Much like WordPress.org and WordPress.com.</p></blockquote>\n<p>With a large number of people building extensions for the project, and a regular stream of contributions and bug fixes, Williamson and EDD are uniquely prepared to support a hosted version. The success of <a href=\"https://easydigitaldownloads.com/\" target=\"_blank\">Easy Digital Downloads</a> demonstrates the value of building a strong community around your open source project. With the right cultivation and a healthy community, any quality project can become more profitable and prepared for the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Dec 2014 20:19:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:78:\"WPTavern: The Majority of Shark Tank Contestants Use WordPress and WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=35540\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://wptavern.com/the-majority-of-shark-tank-contestants-use-wordpress-and-woocommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2055:\"<p>Have you ever wondered what CMS and eCommerce system <a title=\"http://en.wikipedia.org/wiki/Shark_Tank\" href=\"http://en.wikipedia.org/wiki/Shark_Tank\">Shark Tank</a> contestants use? WP Engine used <a title=\"http://builtwith.com/\" href=\"http://builtwith.com/\">BuiltWith</a> and <a title=\"http://wpengine.com/2014/12/03/shark-tank-cms-infographic/\" href=\"http://wpengine.com/2014/12/03/shark-tank-cms-infographic/\">looked at the websites</a> of each contestant appearing on the show between seasons 1-5. They also manually investigated each site to determine some of the more complex setups. Factors WP Engine looked for include: if the site was still active, site-wide SSL implementation, and what kind of eCommerce solutions are being used. Here are a few highlights from the infographic.</p>\n<p>WordPress is the most popular platform, followed by Shopify and Magento. One of the most disappointing discoveries is that out of 341 websites, only 39 have SSL support. SSL is important because it provides a level of encryption between you and the server. It also protects customer information which is extremely important if you’re going to sell things online.</p>\n<p>For over a year, Magento was the eCommerce system of choice, but it’s now in second place. WooCommerce is now the most popular eCommerce system used by Shark Tank contestants. This makes sense since WordPress is the most popular platform and WooCommere is built to be used with WordPress.</p>\n<p>Check out the rest of the data in the image below and let us know if any of the data surprises you. The image is over 1mb in size so it might take a little while to load.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/WPEngine_SharkTank_Infographic-V2.png\" rel=\"prettyphoto[35540]\"><img class=\"wp-image-35639 size-full\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/WPEngine_SharkTank_Infographic-V2.png?resize=1025%2C7993\" alt=\"WPEngine Shark Tank Infographic\" /></a>Infographic Created By <a href=\"http://www.wpengine.com\">WP Engine</a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Dec 2014 20:15:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:56:\"WPTavern: Google Earth API to Retire December 12th, 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=35615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wptavern.com/google-earth-api-to-retire-december-12th-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:2380:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/GoogleEarthAPIFeaturedImage.png\" rel=\"prettyphoto[35615]\"><img class=\"size-full wp-image-35621\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/GoogleEarthAPIFeaturedImage.png?resize=634%2C211\" alt=\"Google Earth API Featured Image\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/21177199@N03/2567692977/\">Ludovico Cera</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>For over six years, the <a title=\"https://developers.google.com/earth/documentation/index\" href=\"https://developers.google.com/earth/documentation/index\">Google Earth API</a> has enabled countless developers to build 3D mapping applications in the browser. Those days are over as Google <a title=\"http://googlegeodevelopers.blogspot.com/2014/12/announcing-deprecation-of-google-earth.html\" href=\"http://googlegeodevelopers.blogspot.com/2014/12/announcing-deprecation-of-google-earth.html\">announced on its developer blog</a> that the API is deprecated and will officially retire December 12th, 2015.</p>\n<p>The Google Earth API is built on the <a href=\"http://en.wikipedia.org/wiki/NPAPI\">NPAPI plugin framework</a> which <a title=\"http://blog.chromium.org/2014/11/the-final-countdown-for-npapi.html\" href=\"http://blog.chromium.org/2014/11/the-final-countdown-for-npapi.html\">Chrome</a> and <a title=\"https://blog.mozilla.org/security/2014/02/28/update-on-plugin-activation/\" href=\"https://blog.mozilla.org/security/2014/02/28/update-on-plugin-activation/\">Firefox</a> no longer support due to security reasons. Over the past six years, the API has experienced dwindling support across multiple platforms, especially on mobile. It’s worth noting that Google Earth is not going away; only its API is being retired.</p>\n<p>A <a title=\"https://wordpress.org/plugins/search.php?q=google+earth\" href=\"https://wordpress.org/plugins/search.php?q=google+earth\">quick search</a> of the WordPress plugin directory for Google Earth shows at least three pages of results. However, several of the plugins look like they use Google Maps instead of Google Earth. If using an external API, most authors put the information in the plugin’s description. If you’re using a plugin that uses the API, please get in touch with the author and let them know it’s no longer supported.</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, 15 Dec 2014 18:33:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:85:\"WPTavern: BuddyPress, bbPress, and GlotPress Development Campaign is Now Fully Funded\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=34940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/buddypress-bbpress-and-glotpress-development-campaign-is-now-fully-funded\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4263:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/jjj.jpg\" rel=\"prettyphoto[34940]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/jjj.jpg?resize=1025%2C499\" alt=\"jjj\" class=\"aligncenter size-full wp-image-33407\" /></a></p>\n<p>John James Jacoby’s crowd-funding <a href=\"https://www.indiegogo.com/projects/buddypress-bbpress-glotpress-development#home\" target=\"_blank\">campaign for development on WordPress’ sister projects</a> is now closed and fully funded at $51,500. For the first six months of 2015, he will be working full-time to push the BuddyPress, bbPress, and GlotPress projects forward.</p>\n<p>Jacoby is essentially pioneering a new way of working as an open source developer funded by the community. There’s no prescription for how to tackle each project’s goals, but working remotely in the past has uniquely prepared him for this opportunity.</p>\n<p>“Previous experience working mostly independently and remotely certainly doesn’t hurt, particularly for things like consistent communication and maintaining momentum,” he said. “It will be nice to get back into the swing of posting public status updates and more strictly planning out my days and weeks again. I appreciate the freedom I’ve had since July, but being completely without structure can be risky, too.”</p>\n<p>Jacoby anticipates splitting his time equally between BuddyPress, bbPress, and GlotPress. “In my imagination, fairly evenly in priority order for a few of the long standing issues that have been prohibiting enhancements to WordPress.org, specifically for the Rosetta sites,” he said. “GlotPress will require a little more time for me to start being helpful, so I’ll likely try to focus on the BuddyPress and bbPress queue first.”</p>\n<p>What will a typical day look like for Jacoby when he starts working full-time on the sister projects? He plans to be involved in every aspect, from writing code to mentoring to adding codex contributions.</p>\n<blockquote><p>I think a typical day will look like a cup of coffee, reading Trac and Slack, providing feedback and mentorship, and shepherding as much activity as I can. That might mean committing patches and doing feature development, increasing unit test coverage and working on the codex, or helping with tools to enable others to contribute easier. There is no shortage of things to do, and I’ll be looking at ways to multiply my efforts to get the maximum value out of the time I have.</p></blockquote>\n<p>If the development project is successful, other developers may be inspired to create similar campaigns. Jacoby isn’t the only one with the capability to make a strong impact on these projects. He believes that there are many others who would be able to do that same.</p>\n<blockquote><p>I really hope people look at this campaign as something they can try, too. Stephen Edgar has been absolutely killing it all across .org, so removing that barrier for him is a priority of mine. Mathieu Viet keeps putting out comprehensive BuddyPress concepts that could make their way into core with just a bit more free time and focus. Ryan McCue already volunteers a huge amount of time; imagine if he was 100% focused. </p>\n<p>Matt Gross (currently at 10up) is such a fast learner and can really crank stuff out quickly. Alison Barrett (also currently at 10up) is the same way; crazy fast at learning and implementing new things. I’d love to work with either of them on the bb’s again. A few of these individuals may not require outside funding, but it’s an interesting idea to use it as an option to reduce an employer’s monetary burden.</p></blockquote>\n<p>Working full-time on open source community projects without distraction, while still paying the bills, is a rare opportunity that Jacoby intends to maximize. If all goes as planned, the first half of 2015 will bring about the removal of the projects’ most pressing hindrances. The success of Jacoby’s campaign demonstrates that the WordPress community believes in the potential of BuddyPress, bbPress, and GlotPress enough to invest in a trustworthy developer to make dedicated 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, 12 Dec 2014 22:01: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WPTavern: A Newbie’s Guide to bbPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35431\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/a-newbies-guide-to-bbpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7392:\"<p>If you’re brand new to <a title=\"http://bbpress.org/\" href=\"http://bbpress.org/\">bbPress</a>, you may not know about some of the ways it can be extended beyond being a simple forum. Additional functionality can be added with plugins, its output can be manipulated through CSS, and development is easy to keep up with. Even though bbPress has a <a title=\"https://codex.bbpress.org/getting-started-with-bbpress/\" href=\"https://codex.bbpress.org/getting-started-with-bbpress/\">getting started</a> guide available, I came up with my own mini guide. Here are some tips to get you started on building a bbPress forum.</p>\n<h2>Where to Find Plugins</h2>\n<p>bbPress is a plugin that was designed to be extended by other plugins. Once installed and configured, simply browse the plugin directory from the backend of WordPress and search for bbPress. There are at least 314 plugins that show up in the search results, not including the ones hosted on Github.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressPlugins.png\" rel=\"prettyphoto[35431]\"><img class=\"size-full wp-image-35455\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressPlugins.png?resize=1025%2C526\" alt=\"bbPress Plugins in The WordPress Plugin Directory\" /></a>bbPress Plugins in The WordPress Plugin Directory\n<p>Even though bbPress.org has a <a title=\"https://bbpress.org/plugins/\" href=\"https://bbpress.org/plugins/\">section dedicated to plugins</a>, it’s essentially an alternative to browsing the WordPress plugin directory. Instead of being able to view all of the plugins available, the pages only list bbPress specific plugins.</p>\n<p>Similar to WordPress, bbPress <a title=\"http://codex.bbpress.org/feature-plugins-tracking/\" href=\"http://codex.bbpress.org/feature-plugins-tracking/\">has a list of feature plugins</a> that may one day, be merged into core. The list contains plugins that offer features found in most forum software out of the box, so it’s a good place to start when adding features. Pay close attention to the <strong>Last Updated:</strong> information as I encountered a lot of plugins that haven’t been updated in over 2 years.</p>\n<h2>Altering The Look and Feel</h2>\n<p>bbPress comes with built-in theme support where all required elements such as front-end editing are included. If a WordPress theme doesn’t have support for the various elements that make up bbPress, you’ll still be able to use it. The built-in support makes it compatible with nearly every WordPress theme. However, I strongly encourage you to use a theme that is bbPress compatible as it almost always looks better than the default.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressCompatibleThemes.png\" rel=\"prettyphoto[35431]\"><img class=\"size-full wp-image-35467\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressCompatibleThemes.png?resize=1025%2C810\" alt=\"Free bbPress Compatible Themes\" /></a>Free bbPress Compatible Themes\n<p>A <a title=\"https://wordpress.org/themes/search.php?q=bbPress\" href=\"https://wordpress.org/themes/search.php?q=bbPress\">search of the theme directory</a> indicates four pages of free WordPress themes that are explicitly compatible with bbPress. If you’d simply like to override the default markup to give it a custom look, check out <a title=\"https://codex.bbpress.org/theme-compatibility/\" href=\"https://codex.bbpress.org/theme-compatibility/\">this Codex article</a>.</p>\n<h2>How to Keep up With Development</h2>\n<p>While WordPress releases three major versions a year, bbPress averages two a year. So far in 2014, there have been no major versions released. Compared to WordPress, bbPress development occurs at a slower pace due to a smaller number of people contributing and spending time on the project. Not only does this make it easy to keep up with changes, it increases the opportunity to influence the project.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressDevelopment.png\" rel=\"prettyphoto[35431]\"><img class=\"size-full wp-image-35469\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressDevelopment.png?resize=946%2C691\" alt=\"bbPress Development\" /></a>bbPress Development\n<p>bbPress uses <a title=\"https://bbpress.trac.wordpress.org/timeline\" href=\"https://bbpress.trac.wordpress.org/timeline\">Trac for development</a> where user’s can submit bug reports and patches. If you use <a title=\"https://slack.com/\" href=\"https://slack.com/\">Slack</a>, you can join the #bbPress channel where core developers and contributors hang out. This is a great way to get in touch with people and communicate in real-time.</p>\n<h2>Where to Get Support</h2>\n<p>The best way to get support is through the official <a title=\"https://bbpress.org/forums/\" href=\"https://bbpress.org/forums/\">bbPress forum</a>. While not as active as the WordPress support forum, there’s still a good amount of activity that takes place. It’s also monitored by all of the core developers.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressSupport.png\" rel=\"prettyphoto[35431]\"><img class=\"size-full wp-image-35517\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressSupport.png?resize=986%2C575\" alt=\"bbPress Support Forum\" /></a>bbPress Support Forum\n<p>The bbPress support forums follow the same rules and guidelines set forth by the WordPress support forums. There are two documents you should read to familiarize yourself to how it works. <a href=\"https://codex.wordpress.org/Using_the_Support_Forums\">Using the Support Forum</a> and the <a href=\"https://codex.wordpress.org/Forum_Welcome\">Forum Welcome message</a>.</p>\n<h2>bbPress Nomenclature</h2>\n<p>bbPress has a set of nomenclature that is different from forum software you may have used in the past. This small guide explains what each term means.</p>\n<ul>\n<li><strong>Forums</strong> – Are segments of the main forum similar to categories.</li>\n<li><strong>Topics</strong> – Topics are created within forums, they are the issues that are being discussed.</li>\n<li><strong>Replies</strong> – Replies are made to topics, this is the actual discussion.</li>\n<li><strong>Voices</strong> – Voices represent the number of individuals participating in a conversation</li>\n</ul>\n<h2>The Next Six Months</h2>\n<p>Although development has come to a crawl in recent months, it’s encouraging that John James Jacoby <a title=\"https://www.indiegogo.com/projects/buddypress-bbpress-glotpress-development\" href=\"https://www.indiegogo.com/projects/buddypress-bbpress-glotpress-development\">successfully reached his crowd funding goal</a> as bbPress will likely experience a surge in development and community based contributions over the next six months. Hopefully, the next six months are among the project’s brightest.</p>\n<h2>Codex Volunteer</h2>\n<p>The documentation and organization of documents on the bbPress.org website leaves a lot to be desired. Several links point to placeholders or the incorrect pages. I’m working with the team as a Codex volunteer to try to clean up the mess so others can benefit by finding the information they need.</p>\n<p>This guide is a Cliff’s Notes version of what’s available on bbPress.org. I hope it helps you as it did me when putting it 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:\"Fri, 12 Dec 2014 20:32:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:68:\"WPTavern: Variable VVV: A New VVV Site Creation Wizard for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=35501\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/variable-vvv-a-new-vvv-site-creation-wizard-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4804:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/vagrant.png\" rel=\"prettyphoto[35501]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/vagrant.png?resize=1025%2C463\" alt=\"vagrant\" class=\"aligncenter size-full wp-image-21435\" /></a></p>\n<p><a href=\"http://bradparbs.com/\" target=\"_blank\">Brad Parbs</a> and his colleagues at <a href=\"http://webdevstudios.com/\" target=\"_blank\">WebDevStudios</a> have created a new tool for the thousands of developers out there who utilize <a href=\"https://github.com/Varying-Vagrant-Vagrants/VVV\" target=\"_blank\">Varying Vagrant Vagrants</a> for WordPress development. As Vagrant development environments are a daily staple of work life at WDS, the team needed a faster way for setting up new WordPress sites with VVV.</p>\n<p><a href=\"https://github.com/bradp/vv\" target=\"_blank\">Variable VVV</a> is their solution, a script that automates the creation and deletion of new WordPress sites using VVV. The script is based on Alison Barrett’s <a href=\"http://wptavern.com/vvv-site-wizard-automates-the-creation-and-deletion-of-wordpress-development-sites\" target=\"_blank\">VVV Site Wizard</a>.</p>\n<p>“The original site wizard hasn’t been updated in about half a year. I’ve designed this to be a drop-in replacement,” Parbs told the Tavern. “All the flags and commands from vvv-site-wizard function 100% the same, so you can just install this and start using it exactly the same.” Anyone who has used the VVV Site Wizard in the past will be comfortable using Variable VVV right away.</p>\n<p>The new script has a few additional features beyond the original VVV Site Wizard, including the following:</p>\n<ul>\n<li>The ability to pass vagrant command through to VVV</li>\n<li>An easier way to set your VVV installation path</li>\n<li>The ability to clone a git-repo as wp-content</li>\n<li>The ability to set more installation options</li>\n</ul>\n<p>While creating the script, Parbs went through the issues list at the vvv-site-wizard repository and fixed a number of issues. He sees Variable VVV as the spiritual successor to the original tool and has designed it to be a bit easier to use. He noted that it takes just 1/3 the time to type the commands and the command results have also been vastly improved. “One example is the <code>list</code> command to show you all sites. With vvv-site-wizard, it is a plain list of site names. <code>vv list</code> will show you a colorized output, along with URLs and marking VVV defaults,” Parbs explained.</p>\n<p>The WebDevStudios team has an extensive roadmap of features for future implementation. Parbs is most excited about the idea of “blueprints,” which would offer the ability to install themes and plugins while setting up a new site.</p>\n<blockquote><p>A blueprint would define a list of plugins, themes, mu-plugins, and various site options. When installing, you could grab that blueprint and it would set it all up. I’m planning on letting you grab from Github, WP.org, a zip file link, etc. I’ve <a href=\"https://github.com/bradp/vv/issues/5\" target=\"_blank\">outlined the idea</a> on GitHub. You’d setup multiple blueprints, and when you do an install, you could grab a blueprint and use that. For example, an ‘ecommerce’ blueprint might install WooCommerce, some other plugins, and _s, or whatever you like.</p></blockquote>\n<p>As the VVV Site Wizard doesn’t seem to be maintained anymore, Parbs plans to keep Variable VVV going and has also outlined a number of other enhancements in the project’s <a href=\"https://github.com/bradp/vv/issues\" target=\"_blank\">issues queue</a>:</p>\n<ul>\n<li>Enable vv to auto-update itself</li>\n<li>Add deployment capability</li>\n<li>Delete site database during removal</li>\n<li>Add option to add dummy content when creating site</li>\n<li>Allow overriding of /htdocs install location</li>\n</ul>\n<p>Parbs plans to add anything that will make developers’ lives easier at WebDevStudios, but he is also open to suggestions. “I’ve built the script to be extremely easy to add new functionality, so implementing features people request will be as easy as possible,” he said.</p>\n<p>The script is now ready for public use. “Over the past few days, a few people here at WebDevStudios have been beta-testing it, and its really solid,” Parbs said. <a href=\"https://github.com/bradp/vv\" target=\"_blank\">Variable VVV</a> is now publicly available on GitHub for anyone who wants to use it or contribute back to the project. If you test the script, make sure to leave your feedback and suggestions in the project’s issues list, as WebDevStudios plans to consistently maintain and extend the tool to make it better.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Dec 2014 19:47:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:77:\"WPTavern: Idea Factory: A Frontend Submission and Voting System for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=35416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/idea-factory-a-frontend-submission-and-voting-system-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4173:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/idea-factory.jpg\" rel=\"prettyphoto[35416]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/idea-factory.jpg?resize=631%2C300\" alt=\"idea-factory\" class=\"aligncenter size-full wp-image-35420\" /></a></p>\n<p>One of the oldest and simplest ways of accessing public opinion is through an up/down voting system. When offered in a controlled setting where everyone has the chance to vote, the system causes the best ideas to float to the top.</p>\n<p><a href=\"https://wordpress.org/plugins/idea-factory/\" target=\"_blank\">Idea Factory</a> is a plugin designed to make it easy for WordPress administrators to set up a voting system where users can submit new ideas from the frontend. The plugin was created by <a href=\"http://nickhaskins.co/\" target=\"_blank\">Nick Haskins</a>, author of the <a href=\"https://wordpress.org/plugins/aesop-story-engine/\" target=\"_blank\">Aesop Story Engine</a>.</p>\n<p><strong>“Idea Factory was born out of necessity, and the frustration of the lack of plugins that did exactly what I wanted it to do,”</strong> Haskins wrote in the plugin’s description. His implementation is simple but built to be extensible, offering developers a number of <a href=\"https://github.com/bearded-avenger/idea-factory/wiki\" target=\"_blank\">filters, hooks, and actions</a>. Idea Factory features the following:</p>\n<ul>\n<li>AJAX powered front-end submission and voting</li>\n<li>Voting is limited to logged-in users</li>\n<li>1 vote allowed per user per idea</li>\n<li>Emails the admin with notification of a new submission</li>\n<li>Extensible with hooks and actions on events</li>\n<li>More ideas loaded with AJAX on front-end</li>\n<li>Mobile friendly</li>\n</ul>\n<p>Logged-in users can enter new ideas via a modal submission box. The plugin creates an Idea custom post type and data is stored in post_meta and user_meta tables.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/idea-submit.png\" rel=\"prettyphoto[35416]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/idea-submit.png?resize=900%2C783\" alt=\"idea-submit\" class=\"aligncenter size-full wp-image-35452\" /></a></p>\n<p>Ideas are displayed at yoursite.com/ideas. Users can only vote once on each idea before they are locked out. Up votes push ideas to the top and down votes send ideas further down the list.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/ideas.png\" rel=\"prettyphoto[35416]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/ideas.png?resize=1025%2C537\" alt=\"ideas\" class=\"aligncenter size-full wp-image-35432\" /></a></p>\n<p>The design is generic enough to drop nicely into any theme, but you can further customize it by copying the file from the plugin’s /template-ideas/ directory into your theme. Idea Factory’s settings also allow you to disable the core CSS file from loading so that you can take full control.</p>\n<p>Each idea and its description can be edited in the admin. If you have a highly active voting board, you may want to turn off email notifications for new submissions. The settings also include an option to hold all new ideas as drafts to be approved before publishing.</p>\n<p>After testing Idea Factory, I was impressed with how easy it was to set up and use. Both idea creation and voting are anonymous, but it might be nice to have an option to display users for each. However, one of the best things about Idea Factory is that it maintains a limited set of features in favor of keeping the plugin lean and extensible.</p>\n<p>An idea voting system can help community managers or developers get a better idea of where to invest their time and how to prioritize new features. It’s a quick way to take the temperature of your user base, because it allows them to freely express their ideas and participate in voting up the best ones. It’s also far less time-consuming than conducting a survey. Check out <a href=\"https://wordpress.org/plugins/idea-factory/\" target=\"_blank\">Idea Factory on WordPress.org</a> for a solid, simple way to bring new ideas to light.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Dec 2014 07:03:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:73:\"WPTavern: WPWeekly Episode 174 – What Would it Take to Lose The Throne?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35424&preview_id=35424\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wptavern.com/wpweekly-episode-174-what-would-it-take-to-lose-the-throne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3205:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\" title=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss what it would take for WordPress to lose its dominant market share position. We both agree that WordPress isn’t going anywhere soon but it’s something to be mindful of.</p>\n<p>We share our thoughts on the recommended plugins tab coming in WordPress 4.1 and whether or not it will help users discover new plugins. Last but not least, we discuss Google’s attempt to simplify reCAPTCHAs by replacing distorted text with a check box.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/what-would-it-take-for-wordpress-to-lose-its-dominance\" title=\"http://wptavern.com/what-would-it-take-for-wordpress-to-lose-its-dominance\">What Would it Take For WordPress to Lose its Dominance?</a><br />\n<a href=\"http://wptavern.com/googles-new-recaptcha-api-replaces-distorted-text-with-a-checkbox\" title=\"http://wptavern.com/googles-new-recaptcha-api-replaces-distorted-text-with-a-checkbox\">Google’s New reCAPTCHA API Replaces Distorted Text with a Checkbox</a><br />\n<a href=\"http://wptavern.com/wordpress-4-1-to-introduce-plugin-recommendations\" title=\"http://wptavern.com/wordpress-4-1-to-introduce-plugin-recommendations\">WordPress 4.1 To Introduce Plugin Recommendations</a><br />\n<a href=\"http://wptavern.com/nrelate-will-shutdown-its-service-december-31st\" title=\"http://wptavern.com/nrelate-will-shutdown-its-service-december-31st\">nRelate Will Shutdown Its Service December 31st</a><br />\n<a href=\"http://wptavern.com/manage-multiple-wordpress-sites-with-wpdash-now-in-beta\" title=\"http://wptavern.com/manage-multiple-wordpress-sites-with-wpdash-now-in-beta\">Manage Multiple WordPress Sites with WPDASH, Now in Beta</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"http://storyftw.com/\" title=\"http://storyftw.com/\">StoryFTW</a> by Patrick Shanahan, is a simple swipe based story engine that allows you to use any kind of media imaginable to create your own dynamic slide by slide story. The review is based on an Alpha copy as the plugin is not publicly available yet.</p>\n<p><a href=\"https://wordpress.org/plugins/test-user-role/\" title=\"https://wordpress.org/plugins/test-user-role/\">Test User Role</a> allows you to quickly test other user roles from a super admin account to see what other users experience.</p>\n<p><a href=\"https://wordpress.org/plugins/grid/\" title=\"https://wordpress.org/plugins/grid/\">Grid</a> is a container based landing page editor.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 17th 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 #174:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Dec 2014 21:13:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:52:\"Akismet: Akismet 3.0.4 Plugin for WordPress Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1750\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2014/12/11/akismet-3-0-4-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:1113:\"<p>Version 3.0.4 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>This update adds better compatibility with Apache 2.4, allows <code>https</code> author URLs to be removed from comments, removes the “Check for Spam” button from the “Trash” and “Approved” queues, and allows for automatic API key configuration when Jetpack is installed and connected to a WordPress.com account.</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/1750/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1750/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1750&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:\"Thu, 11 Dec 2014 18:44:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:84:\"WPTavern: WordPress Themes Directory Now Requires All Themes to be Translation-Ready\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://wptavern.com/wordpress-themes-directory-now-requires-all-themes-to-be-translation-ready\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4048:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/globe.jpg\" rel=\"prettyphoto[35363]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/globe.jpg?resize=1024%2C499\" alt=\"photo credit: . Entrer dans le rêve - cc\" class=\"size-full wp-image-29134\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/tranbina/4765484383/\">. Entrer dans le rêve</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>WordPress made great strides in 2014 towards improving internationalization for the global community. <a href=\"http://wptavern.com/wordpress-4-0-benny-now-available-for-download\" target=\"_blank\">WordPress 4.0</a> streamlined language management in the admin and brought language selection to the installation process.</p>\n<p>In the <a href=\"http://wptavern.com/matt-mullenwegs-state-of-the-word-highlights-internationalization-mobile-and-new-tools-for-wordpress-contributors\" target=\"_blank\">State of the Word</a> address this year, Matt Mullenweg highlighted the importance of internationalization to the project when he said, <strong>“If WordPress is going to be truly global, truly inclusive, it has to be fully available for other languages.”</strong> He also announced that fully localized plugin and theme directories will be available in the admin as of 4.1.</p>\n<p>This week the WordPress Theme Review Team <a href=\"https://make.wordpress.org/themes/2014/12/09/theme-review-team-weekly-notes-the-logs-are-3/\" target=\"_blank\">updated its guidelines</a> to require all new theme submissions to be translation-ready. Theme authors submitting new themes to the official directory must ensure that all text strings are translatable. This also applies to any updates to existing themes.</p>\n<h3>Tips for Making Your Theme Translation-Ready</h3>\n<p>The WordPress Theme Review Handbook doesn’t yet contain a section with information about preparing themes for translation. However, you can find all the basics on <a href=\"https://developer.wordpress.org/themes/functionality/internationalization/\" target=\"_blank\">how to internationalize a theme</a> in the WordPress Theme Developer Handbook, which is still a work in progress.</p>\n<p>The internationalization section also links to a number of videos and tutorials in its resources section. Many of these will be helpful in walking theme developers through the process of preparing themes for translation:</p>\n<ul>\n<li><a href=\"http://www.gnu.org/software/gettext/manual/html_node/\" target=\"_blank\">GNU gettext utilities</a></li>\n<li><a href=\"https://www.youtube.com/watch?v=fJfqgrzjEis\" target=\"_blank\">i18n: Preparing Your WordPress Theme for the World</a></li>\n<li><a href=\"http://wordpress.tv/2014/02/26/samuel-otto-wood-on-internationalization-plugins-and-themes-for-the-whole-world/\" target=\"_blank\">Samuel “Otto” Wood: On Internationalization: Plugins and Themes for the Whole World</a></li>\n<li><a href=\"https://pippinsplugins.com/use-wp_localize_script-it-is-awesome/\" target=\"_blank\">Use wp_localize_script, It Is Awesome</a></li>\n<li><a href=\"http://wordpress.tv/2009/11/14/ze-fontainhas-i18n-nyc09/\" target=\"_blank\">Zé Fontainhas: Lost in Translation—i18n and WordPress</a></li>\n<li><a href=\"http://ottopress.com/2012/internationalization-youre-probably-doing-it-wrong/\" target=\"_blank\">Internationalization: You’re Probably Doing It Wrong</a></li>\n</ul>\n<p>If a WordPress theme isn’t translatable, then the site it is running on is limited to the theme author’s language. If you invest your time and hard work into creating a WordPress theme, why not make sure that it’s able to be used all over the world?</p>\n<p>The new requirement from the Theme Review team is a major milestone in expanding WordPress’ global reach. The official themes directory is often the first place that self-hosted WordPress users look when shopping for themes. The new translation-ready requirement will help ensure that WordPress.org’s vast library of themes are ready for global use.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Dec 2014 18:34: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: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:64:\"WPTavern: A New User’s Experience Installing and Using bbPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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-new-users-experience-installing-and-using-bbpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8214:\"<p>bbPress is a <a title=\"https://bbpress.org/about/the-story/\" href=\"https://bbpress.org/about/the-story/\">10 year old project</a> that’s supposed to make it easy to attach a forum to WordPress. On the day after Christmas in 2004, Matt Mullenweg spent an entire weekend coding an alternative to <a title=\"http://minibb.net/\" href=\"http://minibb.net/\">miniBB</a>, from the ground up that at the time, powered the WordPress support forums. bbPress was stand-alone software until 2011, when the <a title=\"http://wptavern.com/bbpress-2-0-stable-now-available\" href=\"http://wptavern.com/bbpress-2-0-stable-now-available\">release of 2.0</a> transformed it into a WordPress plugin,</p>\n<p>Over the years, I’ve kept a close eye on bbPress but I’ve never used it for a project of my own. Since I’m only a new user once, I decided to document my experience of configuring and using it for the first time.</p>\n<h2>Activation and Configuration</h2>\n<p>Locating bbPress is easy as it usually shows up as a Featured Plugin on the Add New plugin screen. Once activated, a welcome screen displays information on what’s new, credits, and a link at the bottom to visit the forum settings.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressActivated.png\" rel=\"prettyphoto[35320]\"><img class=\"size-full wp-image-35359\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressActivated.png?resize=1025%2C697\" alt=\"bbPress Welcome Screen After Activation\" /></a>bbPress Welcome Screen After Activation\n<p>When visiting the forum settings screen, I’m presented with a list of options with checkboxes and numbers. While there are not a lot of things to configure, I think a better presentation of the various options would be to split each major section into a tab of its own. Although it was my choice to visit the forum settings from the Welcome screen, I think the Welcome screen is a good place to use Admin Pointers to help new users create a new topic, forum, etc. I don’t understand why the Welcome screen has a link to forum settings since a new install won’t have anything to configure.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressOptions.png\" rel=\"prettyphoto[35320]\"><img class=\"size-full wp-image-35360\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressOptions.png?resize=765%2C888\" alt=\"bbPress Forum Settings Screen\" /></a>bbPress Forum Settings Screen\n<p>While on the forum settings screen, I’m not sure what it is I’m supposed to configure in order for the forum to display on the frontend. At this point, I visit the <a title=\"http://codex.bbpress.org/\" href=\"http://codex.bbpress.org/\">Documentation section</a> of bbPress.org and locate a <a title=\"https://codex.bbpress.org/getting-started/\" href=\"https://codex.bbpress.org/getting-started/\">Getting Started</a> guide. It turns out, the guide is of no use to me or anyone else for that matter.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/GettingStartedToNowhere.png\" rel=\"prettyphoto[35320]\"><img class=\"size-full wp-image-35361\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/GettingStartedToNowhere.png?resize=986%2C499\" alt=\"Getting Started To Nowhere\" /></a>Getting Started To Nowhere\n<p>The left hand sidebar has a list of related links which point to several different articles on user roles, conditional tags, and functions. It took some effort on my part, but I finally found the article on <a title=\"https://codex.bbpress.org/getting-started-with-bbpress/\" href=\"https://codex.bbpress.org/getting-started-with-bbpress/\">Getting Started with bbPress</a>. This page should be linked to from the <a title=\"http://codex.bbpress.org/\" href=\"http://codex.bbpress.org/\">Documentation main page</a> for the Getting Started link. This simple change will save users time and frustration.</p>\n<h2>Creating Forums</h2>\n<p>Using the Getting Started guide, I created my first forum. Since forums are Custom Post Types, the forum editor looks similar to the Post Editor. It would be nice if hints displayed above each field so users understand which part of the forum they’re connected to. For example, the title field should have a hint that says “Name of the forum” and above the editor, text that says, “A description of the forum”. Some of the items on the Forum creation screen make sense but it shouldn’t be assumed the user knows what each field corresponds to.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/CreatingAForumInbbPress.png\" rel=\"prettyphoto[35320]\"><img class=\"size-full wp-image-35362\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/CreatingAForumInbbPress.png?resize=889%2C584\" alt=\"Creating a Forum in bbPress\" /></a>Creating a Forum in bbPress\n<p>There are two different types of forums, <strong>forum</strong> and <strong>category</strong>. Forums contain topics and can be the parent of other forums. Categories can only contain forums and are primarily used as a method of organization. The nomenclature used is enough to make anyone’s head spin.</p>\n<h2>Creating Topics</h2>\n<p>After creating a forum, I moved on to create a topic. Topics are similar to typical forum posts. Topics are one of the three <a title=\"https://codex.wordpress.org/Post_Types#Custom_Types\" href=\"https://codex.wordpress.org/Post_Types#Custom_Types\">Custom Post Types </a>created by bbPress, which means the Topic editor uses the same interface you’d see when writing a post. Similar to creating forums, I’d like to see the fields labeled for consistency. Creating topics from the backend of WordPress is fairly easy after creating the first forum.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressTopicCreated.png\" rel=\"prettyphoto[35320]\"><img class=\"size-full wp-image-35365\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/bbPressTopicCreated.png?resize=898%2C668\" alt=\"bbPress Topic Created From The Backend of WordPress\" /></a>bbPress Topic Created From The Backend of WordPress\n<p> </p>\n<h2>The Frontend of bbPress</h2>\n<p>Everything up to this point has been managed from the backend of WordPress. I’ve created a category, forum, and topic. It’s time to see how bbPress works on the frontend. Replying to a topic is straight forward. A form is supplied with quick tag support so visitors can easily style text. After hitting the submit button, the page reloads and the reply is shown. Sometimes, replies don’t show up immediately because they’re moderated by Akismet.</p>\n<p> </p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/ReplyingToATopic.png\" rel=\"prettyphoto[35320]\"><img class=\"size-full wp-image-35368\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/ReplyingToATopic.png?resize=684%2C795\" alt=\"Replying to a Topic on The Frontend of bbPress\" /></a>Replying to a Topic on The Frontend of bbPress\n<p>Once I got a handle for how bbPress is structured and what categories, forums, topics, and replies look like, I went back to the Forum Settings page.</p>\n<h2>Not Easy Enough</h2>\n<p>bbPress is a plugin, and because of that, I expect to be able to turn it on and have everything ready to go. As you can see from my experience, it doesn’t always work out that way, especially when using a theme that doesn’t support it out of the box. The <a title=\"https://codex.bbpress.org/getting-started-with-bbpress/\" href=\"https://codex.bbpress.org/getting-started-with-bbpress/\">Getting Started</a> guide is important information on understanding how to configure bbPress. Without it, I’d be lost in the dark.</p>\n<p>My initial experience is rough around the edges and at times frustrating, as I couldn’t easily find the help I needed. I can only imagine how many others have gone through the same experience. Hopefully, a few changes will be made to bbPress and its website to create a smoother new user experience.</p>\n<p>If you’ve recently installed or used bbPress for the first time, tell us about your experience in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Dec 2014 04:52: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: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:76:\"WPTavern: Change Post Types with the Post Type Switcher Plugin for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=35093\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/change-post-types-with-the-post-type-switcher-plugin-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4408:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/train-switch.jpg\" rel=\"prettyphoto[35093]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/train-switch.jpg?resize=1024%2C492\" alt=\"photo credit: contemplative imaging - cc\" class=\"size-full wp-image-35340\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/thomas-merton/4334175428/\">contemplative imaging</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>When WordPress 3.0 introduced the ability for developers to register their own <a href=\"http://codex.wordpress.org/Post_Types#Custom_Post_Types\" target=\"_blank\">custom post types</a>, the software became far more flexible for use as a content management system. This was a major turning point for WordPress, as it gave developers a standard way to structure custom content with core-supported features.</p>\n<p>Four years later, custom post types are so commonly used that folks occasionally need a way to switch a post from one type to another. A site admin may want to change how content is structured and presented, and switching content to a new post type can be a huge time saver in some instances.</p>\n<p>The <a href=\"https://wordpress.org/plugins/post-type-switcher/\" target=\"_blank\">Post Type Switcher</a> plugin, authored by <a href=\"http://jaco.by/\" target=\"_blank\">John James Jacoby</a>, was created for exactly this purpose. It’s one of those plugins that you may not have ever known about until you’re on the hunt to find a way to convert a post from one type to another.</p>\n<p>The plugin adds a simple post type dropdown to the post editor, which allows you to reassign any post to a new post type.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/post-type-switcher.jpg\" rel=\"prettyphoto[35093]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/post-type-switcher.jpg?resize=772%2C250\" alt=\"post-type-switcher\" class=\"aligncenter size-full wp-image-35321\" /></a></p>\n<p>The handy thing is that Post Type Switcher can convert nearly every combination of posts, pages, attachments, custom post types, etc:</p>\n<ul>\n<li>Page to Post</li>\n<li>Post to Page</li>\n<li>Page to Attachment</li>\n<li>Post to Custom</li>\n</ul>\n<p>What happens when you change a post to a different type? Only the <code>\'post_type\'</code> property of a post is changed. Categories, tags, and custom taxonomies all remain untouched. Featured images remain in place. The post’s URL will change to whatever the new post type uses. For example, if you change a regular post to a testimonial post type that uses /testimonial/ in the URL, your newly converted post will follow the pattern of its new post type.</p>\n<p>The old post URL should 404 so that you can use a plugin to redirect to the new URL or add some custom rewrite rules to your .htaccess file. While testing the plugin with different post types, I only encountered one instance where a plugin didn’t properly 404 the original post, but most of the time you won’t have an issue with this.</p>\n<p>Jacoby has purposely excluded invisible post types, such as revisions, menus, etc., but you can filter <code>\'pts_post_type_filter\'</code> to change how this works if you need access to more post types.</p>\n<p><a href=\"https://profiles.wordpress.org/beatpanda/\" target=\"_blank\">Matthew Gerring</a>, a contributor to the plugin, helped to add bulk editing so that you can select all posts in a certain type and convert them to a new type with one quick action.</p>\n<p>Post Type Switcher is very useful if you started out putting content in regular posts but now want to move it into a portfolio plugin or testimonial plugin. Or perhaps you’ve been running bbPress on your site and want to extract a few of the most active posts to become regular blog posts instead. Another common use might be to convert a bunch of posts to pages in order to create a static reference section for your site. This plugin makes all of that possible.</p>\n<p>If you’re planning to use the plugin, make sure to test your post type switches in a development environment first. It’s also a good idea to backup your live site before making drastic changes to content. You can find <a href=\"https://wordpress.org/plugins/post-type-switcher/\" target=\"_blank\">Post Type Switcher</a> in the WordPress.org Plugin Directory.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Dec 2014 22:13:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: BuddyPress 2.2 to Add Custom Post Type Support to the Activity Stream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35081\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://wptavern.com/buddypress-2-2-to-add-custom-post-type-support-to-the-activity-stream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3692:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/buddypress-wall.jpg\" rel=\"prettyphoto[35081]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/buddypress-wall.jpg?resize=1018%2C458\" alt=\"buddypress-wall\" class=\"aligncenter size-full wp-image-20901\" /></a></p>\n<p>BuddyPress 2.2 is shaping up to be an exciting release, packed full of new features for developers. <a href=\"http://wptavern.com/buddypress-2-2-will-add-support-for-composer\" target=\"_blank\">Support for Composer</a> will be included in 2.2, as well as <a href=\"http://wptavern.com/buddypress-2-2-on-track-to-provide-a-basic-member-type-api\" target=\"_blank\">a basic member type API</a>, which will allow developers to create different user types.</p>\n<p>The upcoming 2.2 release will also introduce the ability for new activity items to be generated when content is created by registered post types. This is a feature that already exists within the BuddyPress’ blogs component and will be extended to include custom post types that declare support for it. Developers will be able to add support for CPTs with one simple line of code:</p>\n<pre class=\"brush: php; light: true; title: ; notranslate\">add_post_type_support( \'book\', \'buddypress-activity\' );</pre>\n<p>This will publish updates to the activity stream for the post type that you specify, using generic strings. The BuddyPress <a href=\"https://codex.buddypress.org/plugindev/post-types-activities/#adding-the-buddypress-support-and-specific-labels-at-post-type-registration\" target=\"_blank\">codex</a> has already been updated to show examples for how you can get more control over the activity attributes when you register the post type.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/cpt-activity.png\" rel=\"prettyphoto[35081]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/cpt-activity.png?resize=1025%2C326\" alt=\"cpt-activity\" class=\"aligncenter size-full wp-image-35302\" /></a></p>\n<p>“This update is about the <a href=\"https://buddypress.trac.wordpress.org/ticket/5669\" target=\"_blank\">first step</a> of it: ease the implementation of tracking the published post type items into the Activity stream,” BuddyPress core developer Mathieu Viet explained in the <a href=\"https://bpdevel.wordpress.com/2014/12/04/about-post-types-and-buddypress-activities/\" target=\"_blank\">announcement</a> on the BP development blog.</p>\n<p>When post type support is added to the activity stream, you will also be able to sort the new items via the activity dropdown filters. This filter is available on the frontend and in the backend.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/activity-dropdown.png\" rel=\"prettyphoto[35081]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/activity-dropdown.png?resize=1025%2C366\" alt=\"activity-dropdown\" class=\"aligncenter size-full wp-image-35299\" /></a></p>\n<p>These improvements are all recent additions to BuddyPress trunk. If you want to test 2.2 alpha, <a href=\"https://buddypress.org/download/\" target=\"_blank\">checkout BuddyPress trunk</a> via SVN or <a href=\"https://buddypress.trac.wordpress.org/browser/trunk\" target=\"_blank\">download the zip file</a>. Activate it and then add support for a custom post type that is active on your BuddyPress test site.</p>\n<p>The <a href=\"https://buddypress.trac.wordpress.org/ticket/3460\" target=\"_blank\">ticket</a> that houses the discussion on this issue has been open for three years. BuddyPress 2.2 finally answers this request and gives plugin developers a beautifully simple implementation for adding post type support to the activity stream.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Dec 2014 07:28:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"WPTavern: New Plugin Adds Google’s No CAPTCHA reCAPTCHA to WordPress Login, Comment, and Registration 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=35201\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"http://wptavern.com/new-plugin-adds-googles-no-captcha-recaptcha-to-wordpress-login-comment-and-registration-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3643:\"<p>Several plugins are starting to spring up in the WordPress Plugin Directory to bring Google’s new No Captcha reCAPTCHA to WordPress forms. With public hatred for CAPTCHAs at an all-time high, Google finally put its efforts into redesigning the experience, <a href=\"http://wptavern.com/googles-new-recaptcha-api-replaces-distorted-text-with-a-checkbox\" target=\"_blank\">replacing the distorted text with a simple checkbox</a>.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/nocaptcha.gif\" rel=\"prettyphoto[35201]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/nocaptcha.gif?resize=616%2C164\" alt=\"photo credit: Google Online Security Blog\" class=\"size-full wp-image-34870\" /></a>photo credit: <a href=\"http://googleonlinesecurity.blogspot.com/2014/12/are-you-robot-introducing-no-captcha.html\">Google Online Security Blog</a>\n<p>WordPress developers have been quick to take advantage of the new No CAPTCHA API to add it to WordPress forms. So far, the <a href=\"https://wordpress.org/plugins/no-captcha-recaptcha/\" target=\"_blank\">No CAPTCHA reCAPTCHA</a> plugin, created by Nigerian web developer <a href=\"http://w3guy.com/\" target=\"_blank\">Agbonghama Collins</a>, provides the most flexibility for specifying the forms where you want to add the protection.</p>\n<ul>\n<li>Option to activate CAPTCHA in either login, registration, comment or combination of two or all</li>\n<li>Choose a theme for the CAPTCHA (light or dark)</li>\n<li>Auto-detects the user’s language</li>\n</ul>\n<p>Once activated and configured, you’ll see the new reCAPTCHA added on the frontend:</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/recaptcha-frontend.png\" rel=\"prettyphoto[35201]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/recaptcha-frontend.png?resize=359%2C459\" alt=\"recaptcha-frontend\" class=\"aligncenter size-full wp-image-35276\" /></a></p>\n<p>The plugin is easy to configure – simply paste in your Google reCAPTCHA keys on the settings page:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/recaptcha-keys.png\" rel=\"prettyphoto[35201]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/recaptcha-keys.png?resize=665%2C365\" alt=\"recaptcha-keys\" class=\"aligncenter size-full wp-image-35272\" /></a></p>\n<p>Select the login, registration, or comment forms, or any combination thereof, for adding No Captcha reCAPTCHA protection.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/select-form.png\" rel=\"prettyphoto[35201]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/select-form.png?resize=725%2C324\" alt=\"select-form\" class=\"aligncenter size-full wp-image-35275\" /></a></p>\n<p>Further down the page you have the option to force the plugin to use a specific language via a dropdown, or leave it on auto-detect. You can also set a custom error message for when the user fails to solve the CAPTCHA and select a theme for the CAPTCHA display.</p>\n<p>I tested the plugin and it works as advertised to add the new No Captcha reCAPTCHA. I discovered that it is not compatible with the Jetpack Comment module, so you’ll want to uncheck that box for comments if you’re using it. The <a href=\"https://wordpress.org/plugins/no-captcha-recaptcha/\" target=\"_blank\">No CAPTCHA reCAPTCHA</a> plugin is available for free from WordPress.org. It’s not yet known whether Google will create an official implementation for WordPress, but in the meantime, this plugin makes it easy to add reCAPTCHA to the WordPress forms that are the most vulnerable to spam.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Dec 2014 23:09:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:56:\"WPTavern: Barry Kooij Adopts The Download Monitor 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=35263\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/barry-kooji-adopts-the-download-monitor-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:1987:\"<p>Developed by <a title=\"http://mikejolley.com/\" href=\"http://mikejolley.com/\">Mike Jolley</a>, <a title=\"https://wordpress.org/plugins/download-monitor/\" href=\"https://wordpress.org/plugins/download-monitor/\">Download Monitor</a> is an eight year old plugin with over 600k downloads. Download Monitor provides an interface for uploading and managing downloadable files including support for multiple versions, inserting download links into posts, and logging downloads.</p>\n<blockquote><p>It has been rewritten 4 times, seen well over 100 releases, and been downloaded 600,000 times. The latest ‘v1’ reboot has been praised and I often receive nice comments from users even though development has slowed of late.</p></blockquote>\n<p>Due to time constraints, Jolley placed Download Monitor up for adoption. <a title=\"http://www.barrykooij.com/\" href=\"http://www.barrykooij.com\">Barry Kooij</a>, a coworker of Jolley’s, adopted the plugin. Kooij is already working on the next version and users should see an update soon. Regarding the plugin’s future, Jolley states, “I’m really excited about its future and I’m happy that Download Monitor is in safe hands.”</p>\n<h2>How to Put a Plugin up For Adoption</h2>\n<p>The Download Monitor plugin has a happy ending but there are several plugins that are abandoned every year. If you’re thinking about abandoning your plugin, consider <a title=\"http://wptavern.com/adopt-me-plugin-tag-is-now-in-use-on-wordpress-org\" href=\"http://wptavern.com/adopt-me-plugin-tag-is-now-in-use-on-wordpress-org\">putting it up for adoption</a> instead.</p>\n<p>When a plugin author adds the ‘<a title=\"https://wordpress.org/plugins/tags/adopt-me\" href=\"https://wordpress.org/plugins/tags/adopt-me\">adopt-me</a>‘ tag, it shows up in a list of other plugins using the same tag. Currently, there are 19 plugins available for adoption. Simply get in touch with the author and ask if you can take over development.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Dec 2014 22:36:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:57:\"WPTavern: Coen Jacobs on Using The Right Tool For The Job\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35239\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wptavern.com/coen-jacobs-on-using-the-right-tool-for-the-job\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1397:\"<p>Coen Jacobs, who works as a backend developer, published a short video explaining why he doesn’t <a title=\"http://coenjacobs.me/why-not-full-time-wordpress-anymore/\" href=\"http://coenjacobs.me/why-not-full-time-wordpress-anymore/\">work with WordPress</a> full-time anymore. It’s not that he doesn’t like the project but rather, he’s gained a fresh perspective since stepping outside of the WordPress bubble.</p>\n<p><span class=\"embed-youtube\"></span></p>\n<blockquote><p>WordPress used to be the holy grail for me, I made everything with WordPress, even things that weren’t really suitable to be built on WordPress. I was an absolute fanboy who used WordPress for everything.</p></blockquote>\n<p>WordPress <a title=\"http://wptavern.com/what-would-it-take-for-wordpress-to-lose-its-dominance\" href=\"http://wptavern.com/what-would-it-take-for-wordpress-to-lose-its-dominance\">isn’t going away anytime soon</a> but it’s a risky move to place all your eggs in one basket.</p>\n<p>Instead of using WordPress for everything, he’s now using the best framework or tool for the job. I think this is a key lesson that a lot of WordPress developers need to be reminded of from time to time. WordPress is capable of handling a lot of different types of websites but it’s not suitable for every project.<em> Use the right tool for the job.<br />\n</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Dec 2014 21:14:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:75:\"WPTavern: WP Stagecoach to Bring 1-Click Staging Sites to WordPress in 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=32476\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://wptavern.com/wp-stagecoach-to-bring-1-click-staging-sites-to-wordpress-in-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:3816:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/wp-stagecoach.jpg\" rel=\"prettyphoto[32476]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/wp-stagecoach.jpg?resize=683%2C298\" alt=\"wp-stagecoach\" class=\"aligncenter size-full wp-image-35226\" /></a></p>\n<p><a href=\"https://wpstagecoach.com\" target=\"_blank\">WP Stagecoach</a> has been in beta for the past few months and the team behind it is busy planning for an official launch in early 2015. The startup, created by Jonathan Kay, came in second, behind <a href=\"http://wpcurve.com/\" title=\"WP Curve\" target=\"_blank\">WP Curve</a>, in the first round of <a href=\"http://mattreport.com/episode-1-wordpress-startup-challenge/\" target=\"_blank\">Matt Report’s WordPress Startup Challenge</a>.</p>\n<p>The new service aims to create the most convenient way to stage a WordPress site, with 1-click copying from production to staging and 1-click to merge the changes back into the live site. WP Stagecoach offers a plugin that hooks your site up to the service with an API key. Staging sites are hosted on WP Stagecoach’s servers.</p>\n<p>The beta version of the service currently includes the following features:</p>\n<ul>\n<li>Create a staging copy of your live site with one click.</li>\n<li>Copy changes from your staging site back to your live site.</li>\n<li>Choose which changes to import. You can import some or all of your file changes, and/or your database changes.</li>\n<li>Password-protect your staging site.</li>\n<li>Staging site runs on WP Stagecoach’s server – no need to set up hosting for your staging site.</li>\n<li>Revert file changes if importing from your staging site doesn’t go as expected.</li>\n<li>Staging sites can be accessed via SSL-encryption</li>\n</ul>\n<p>After testing the beta on a simple blog, I found that the build process took several minutes. Once the site is created, you’ll be given SFTP/FTP login credentials and URL for your staging site. The site that WP Stagecoach creates is instantly public, which has me worried about duplicate content. If you use the service, you’ll want to log in and install a maintenance plugin to hide the staging site from the public.</p>\n<p>If an import gets interrupted, the plugin can pick up where it left off, which is helpful for larger sites. It also includes an advanced debug mode for tracking down problems.</p>\n<p>All of the staging sites are hosted on a standard LAMP stack, and users will not be able to reproduce their exact hosting environment with the service when it launches. For many people, the stack will be similar enough to their host and will cause no issues. However, if you are running on a more customized hosting environment, WP Stagecoach will likely not be suitable for creating your staging site.</p>\n<p>WP Stagecoach has plans to make it possible for users to create a staging site on their own servers, but this feature will be further down the road. When the team is able to add this, it will make the product a much more versatile tool for WordPress developers.</p>\n<p>At the moment, the service is very promising and offers a highly convenient way to create a staging site for a simple WordPress site on a standard LAMP stack. Those with a more customized server environment will have to look elsewhere for the time being. If the tool adapts to become more flexible, it will be better positioned to reach a larger audience with a wide range of hosting environments.</p>\n<p>WP Stagecoach pricing will be $12/month or $99/year for basic support. The beta is free and the team plans to add a few updates before the official launch. If you want to test the service, sign up on <a href=\"http://wptavern.com/ https://wpstagecoach.com/pricing/\" target=\"_blank\">wpstagecoach.com</a> to download the 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:\"Tue, 09 Dec 2014 18:48:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:83:\"WPTavern: CEO and Envato Co-founder Collis Ta’eed On The First 6 Months of Envato\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35192\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/ceo-and-envato-co-founder-collis-taeed-on-the-first-6-months-of-envato\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2233:\"<p>Earlier this year, CEO and <a title=\"http://www.envato.com/\" href=\"http://www.envato.com/\">Envato</a> Co-founder, Collis Ta’eed, spoke at <a title=\"http://thesunrise.co/\" href=\"http://thesunrise.co/\">The Sunrise conference</a> in Sydney, Australia. The Sunrise is a conference where founders of Australia’s iconic startups describe the early years of their business. The presentation is 15 minutes in length with 30 minutes dedicated to questions.</p>\n<p>There’s a lot of great information in the presentation, especially if you’re running a bootstrapped business. I also admire Ta’eed’s delivery as he comes off as a straight shooter. He reminds me of myself when I tried to launch a business several years ago.</p>\n<h2>Presentation Highlights</h2>\n<p>Envato began as a stock Flash template marketplace called Flash Den. Flash Den was eventually renamed to Active Den due to Adobe owning the trademarks associated with Flash.</p>\n<p>Envato started with $30k and is still a bootstrapped company. Ta’eed receives numerous offers every year from venture capitalists looking to invest in Envato. So far, he has not accepted any outside funding.</p>\n<p><a title=\"http://appstorm.net/\" href=\"http://appstorm.net/\">AppStorm</a> was the precursor to the Apple App Store. Before Ta’eed could turn AppStorm into an app marketplace, Apple released the App Store crushing his idea.</p>\n<p>At 32:26, Ta’eed is asked how he came up with the name Envato. He bought it from <a title=\"https://www.brandbucket.com/\" href=\"https://www.brandbucket.com/\">Brandbucket</a> for $1k.</p>\n<p>At 38:50, Ta’eed is asked to describe how massive the Envato marketplace is. His response, “We sell something every 6 seconds, we sell a million WordPress theme per year, and we have the largest stock music marketplace by volume with a million tracks licensed each year.”</p>\n<p>At 42:52, Ta’eed is asked about Envato’s relationship to WordPress. He admits to the licensing challenges and mentions that, when Envato started selling WordPress themes, he didn’t know what the GPL was. He describes the relationship as symbiotic.</p>\n<p><span class=\"embed-youtube\"></span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Dec 2014 02:35:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:66:\"WPTavern: Manage Multiple WordPress Sites with WPDASH, Now in Beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=27624\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wptavern.com/manage-multiple-wordpress-sites-with-wpdash-now-in-beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2721:\"<p><a href=\"http://en.wpdash.io/\" target=\"_blank\">WPDASH</a> is a new service that launched in beta today, created by a group of WordPress developers in Poland. It joins the ranks of <a href=\"https://managewp.com/\" target=\"_blank\">ManageWP</a>, <a href=\"https://wpremote.com/\" target=\"_blank\">WP Remote</a>, <a href=\"http://infinitewp.com/\" target=\"_blank\">InfiniteWP</a>, and a handful of others that provide a centralized WordPress dashboard for managing multiple sites.</p>\n<p>With the popularity of WordPress on the rise, many users have more than one site in operation. Those who work in development often have hundreds, if not thousands, of WordPress sites to look after, all of which require regular plugin and theme updates.</p>\n<p>The automatic background updates introduced in <a href=\"http://wptavern.com/wordpress-3-7-released-wordpress-now-updates-itself\" target=\"_blank\">WordPress 3.7</a> certainly ease the burden of maintenance for many WordPress agencies, but centralized dashboards are becoming critical for successfully managing backups, site uptime, and updates to themes and plugins for multiple installations.</p>\n<p>WPDASH is entering beta with an impressive array of features for managing sites, including the following:</p>\n<ul>\n<li>Add and modify posts and comments</li>\n<li>Install themes and plugins</li>\n<li>One-click updates</li>\n<li>Generate reports</li>\n<li>Create manual and automatic backups</li>\n<li>Monitor server uptime and user browsing habits</li>\n<li>Monitor accessibility of linked pages and inbound link statistics</li>\n<li>Two-factor authentication with Rublon</li>\n</ul>\n<p>Here’s a look at an example WPDASH overview of activity across all of your WordPress sites:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/wp-dash.jpg\" rel=\"prettyphoto[27624]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/wp-dash.jpg?resize=720%2C772\" alt=\"wp-dash\" class=\"aligncenter size-full wp-image-35166\" /></a></p>\n<p>WPDASH also includes a number of advanced SEO-related features, such as integration with third-party tools for keyword monitoring and analytics services.</p>\n<p>Since the beta period is just now starting, we’ll be monitoring users’ experiences to see how reliable the service is. WPDASH has not yet detailed its pricing, because the team is still ironing out features that will be added before launch. Beta testers have the opportunity to vote from the Features tab in the dashboard for new features that will be implemented.</p>\n<p>If you’re curious about the new service and want to join in the testing period, you can sign up for free at <a href=\"http://en.wpdash.io/\" target=\"_blank\">WPDASH.io</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Dec 2014 21:29:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:56:\"WPTavern: Add an Auto Reply to Your Jetpack Contact Form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35098\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/add-an-auto-reply-to-your-jetpack-contact-form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4227:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/paper-airplaine.jpg\" rel=\"prettyphoto[35098]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/paper-airplaine.jpg?resize=1025%2C495\" alt=\"paper-airplaine\" class=\"aligncenter size-full wp-image-35147\" /></a></p>\n<p><a href=\"https://wordpress.org/plugins/jetpack/\" target=\"_blank\">Jetpack</a> has been downloaded more than 13 million times. The <a href=\"http://jetpack.me/support/contact-form/\" target=\"_blank\">Contact Form</a> module is one of its most popular features, as nearly every site requires a way for visitors to get in touch. The module is reliable and easy to use but fairly basic in terms of features.</p>\n<p>Fortunately, Jetpack makes it easy for you to extend its features with a plugin. <a href=\"http://www.hughlashbrooke.com/\" target=\"_blank\">Hugh Lashbrooke</a>, who has authored more than a dozen plugins hosted on WordPress.org, has just released <a href=\"https://wordpress.org/plugins/jetpack-contact-form-auto-reply/\" target=\"_blank\">Jetpack Contact Form Auto Reply</a> to make it easy for site admins to issue an automatic message in response to a contact form submission.</p>\n<p>The plugin adds a new Auto Reply sub-menu item under the Jetpack menu, with settings for two useful features:</p>\n<ul>\n<li>Craft a custom reply message using the WordPress WYSIWYG editor</li>\n<li>Set a unique from name and address for auto replies</li>\n</ul>\n<p>You can even add rich text or images to the custom reply message, which makes it easy to brand your communications for your company or organization.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/auto-reply.png\" rel=\"prettyphoto[35098]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/auto-reply.png?resize=1025%2C401\" alt=\"auto-reply\" class=\"aligncenter size-full wp-image-35107\" /></a></p>\n<p>The auto reply message could be something as simple as “We have received your request and will contact you shortly.” Or perhaps it’s a holiday and you want to update the auto reply to notify people of any delays in response time, i.e. “We will be out of the office until January 3, 2015.” This plugin provides an easy way to do that in the WordPress admin, without having to set up an auto-responder in your email.</p>\n<p>Lashbrooke originally created the plugin for his own use, because he was receiving numerous messages from people asking for support for his plugins hosted on WordPress.org and WooThemes.com. His custom auto reply message is designed to help point people to the appropriate forum, in case they contacted him for support-related questions.</p>\n<p>After testing the plugin, I can confirm that it works as advertised. The only tricky part is the last setting on the page, which calls for the label of the field in the contact form that contains the email address to use for the auto reply. You have to correctly identify this label or it won’t send. In my case the label was ‘Email,’ which is likely to be a common one.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/auto-reply-email-settings.png\" rel=\"prettyphoto[35098]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/auto-reply-email-settings.png?resize=1025%2C279\" alt=\"auto-reply-email-settings\" class=\"aligncenter size-full wp-image-35108\" /></a></p>\n<p>While an auto reply might seem redundant, since Jetpack already displays a confirmation of the message sending successfully, that extra note in your visitor’s inbox can be reassuring, especially since it allows them to reply to the email if necessary. You can never underestimate the importance of communication in a customer’s decision-making process.</p>\n<p>Jetpack Contact Form Auto Reply is a handy add-on for the millions of Jetpack users out there who use the Contact Form module. <a href=\"https://wordpress.org/plugins/jetpack-contact-form-auto-reply/\" target=\"_blank\">Download</a> it from WordPress.org. If you’d like to contribute to make it better, feel free to fork the plugin on <a href=\"https://github.com/hlashbrooke/Jetpack-Contact-Form-Auto-Reply\" target=\"_blank\">GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Dec 2014 18:15:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: What Would it Take For WordPress to Lose its Dominance?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=35076\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/what-would-it-take-for-wordpress-to-lose-its-dominance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3448:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/ThroneFeaturedImage.png\" rel=\"prettyphoto[35076]\"><img class=\"size-full wp-image-35085\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/ThroneFeaturedImage.png?resize=634%2C285\" alt=\"Throne Featured Image\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/pasukaru76/9223676618/\">pasukaru76</a> – <a href=\"http://creativecommons.org/licenses/by/2.0/\">cc</a>\n<p>WordPress is 11 years old and used on over 20% of the web. Its popularity is made up of many facets including, the community, themes and plugins. In the realm of open source content management systems, nothing comes close to what WordPress has accomplished. Although it’s the market leader, its dominance won’t last forever.</p>\n<p>Mike Johnston of CMS Critic asks, “<a title=\"http://www.cmscritic.com/what-it-will-take-to-dethrone-wordpress/\" href=\"http://www.cmscritic.com/what-it-will-take-to-dethrone-wordpress/\">What It Will Take to Dethrone WordPress?</a>” In the article, Johnston explains why WordPress is on top and why Ghost is on the right path to possibly achieving similar success.</p>\n<blockquote><p>We’ve seen some successful upstarts come out of the wood work to try to take a piece of the pie and some are doing quite well in gaining momentum. One particular contender that comes to mind is Ghost.</p></blockquote>\n<p>While Ghost is doing well in its own right, <a title=\"http://wptavern.com/why-wordpress-doesnt-need-to-fear-ghost-yet\" href=\"http://wptavern.com/why-wordpress-doesnt-need-to-fear-ghost-yet\">I don’t think</a> it will knock on WordPress’ door anytime soon. Johnston lists four things contenders must do in order to dethrone WordPress.</p>\n<ol>\n<li>Focus on marketing to developers</li>\n<li>Offer a migration path</li>\n<li>Offer hosted and self hosted options</li>\n<li>Build up a community</li>\n</ol>\n<p>The four steps he lists are a good start, but it’s going to take a lot more than that to take a chunk out of WordPress’ market share. In 2009, I <a title=\"http://wptavern.com/six-ways-in-which-wordpress-could-die\" href=\"http://wptavern.com/six-ways-in-which-wordpress-could-die\">outlined six ways</a> WordPress could die and named <a title=\"http://www.habariproject.org/en/\" href=\"http://www.habariproject.org/en/\">Habari</a> as a viable competitor. Five years later, WordPress is bigger than ever and no one seems to remember the Habari project.</p>\n<h2>A Combination of Factors</h2>\n<p>I don’t think any <em>one thing</em> will put WordPress in second place. Instead, a combination of factors would likely need to take place. In no particular order, here are a couple of things that might lead to the project’s demise.</p>\n<ol>\n<li>Project leadership routinely ignores the majority.</li>\n<li>It becomes a large, bloated, legacy project that blocks innovation.</li>\n<li>A competing CMS comes along that does everything WordPress does, except better.</li>\n<li>The community in mass disappears or loses interest in favor of a competing product.</li>\n<li>A huge scandal takes place involving Automattic, the WordPress Foundation and those close to the project.</li>\n</ol>\n<p>I doubt any of these things will happen and WordPress will continue to be the market leader for at least the next 10 years. What risks or series of events do you think would lead to WordPress losing its dominance?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Dec 2014 05:35:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"WPTavern: Minnow: A Free Minimalist Blogging Theme from 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=34709\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wptavern.com/minnow-a-free-minimalist-blogging-theme-from-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2517:\"<p><a href=\"https://wordpress.org/themes/minnow\" title=\"Minnow\" target=\"_blank\">Minnow</a> is a beautiful, ultra-minimalist blogging theme from Automattic that just landed in the WordPress.org directory this week, bringing the company’s total free theme contributions to 54. It was designed by <a href=\"http://choycedesign.com/\" target=\"_blank\">Mel Choyce</a>, co-author of the popular <a href=\"http://wptavern.com/flounder-a-free-wordpress-theme-with-colorful-post-formats\" target=\"_blank\">Flounder</a> theme.</p>\n<p>Minnow features a single-column blog homepage, with a prominent social links menu at the top. The theme has support for all the standard post formats, with unique grey icons for each. The post meta design is tastefully simple and understated so that your content stays in focus.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/minnow.png\" rel=\"prettyphoto[34709]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/minnow.png?resize=1025%2C993\" alt=\"minnow\" class=\"aligncenter size-full wp-image-34912\" /></a></p>\n<p>Quotes, galleries, asides, etc. are all uniquely represented with subtle variations. Minnow also includes matching styles for threaded comments.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/quote.jpg\" rel=\"prettyphoto[34709]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/quote.jpg?resize=860%2C340\" alt=\"quote\" class=\"aligncenter size-full wp-image-35063\" /></a></p>\n<p>The theme has just a handful of customization options for changing the background image and/or color. It’s the type of theme that you can activate and have it looking like the demo in under two minutes.</p>\n<p>The theme is mobile friendly, and the 660px main content area sizes down gracefully for mobile devices. Minnow also includes a slide-out sidebar widget area. The primary navigation menu is pinned to the top of the sidebar, above any widgets.</p>\n<p>Check out the <a href=\"http://minnowdemo.wordpress.com/\" target=\"_blank\">live demo</a> to see Minnow in action. You’ll have to install the theme on your site in order to see the slide-out sidebar and navigation menu, as it is currently omitted in the demo.</p>\n<p>If you’re looking to jump start your blog for the upcoming new year, Minnow is an excellent choice. The clean design offers visitors a pleasant reading experience. <a href=\"https://wordpress.org/themes/minnow\" target=\"_blank\">Download</a> it for free from WordPress.org.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Dec 2014 21:41:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:82:\"WPTavern: Roots Starter Theme for WordPress Will Become Framework Agnostic in 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=35007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/roots-starter-theme-for-wordpress-will-become-framework-agnostic-in-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:4399:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/roots.jpg\" rel=\"prettyphoto[35007]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/roots.jpg?resize=1024%2C477\" alt=\"photo credit: Buzz Hoffman - cc\" class=\"size-full wp-image-35036\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/buzzhoffman/3673683967/\">Buzz Hoffman</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>Major changes are coming to the <a href=\"http://roots.io/\" target=\"_blank\">Roots</a> starter theme for WordPress. Roots has appealed mainly to developers, because it incorporates modern build tools into its workflow. The theme was first released in 2011 and now counts more than 70 contributors to the project.</p>\n<p>Roots currently utilizes HTML5 Boilerplate, Bootstrap, Grunt, and Bower in the starter theme but will will soon be moving to Gulp. The project’s GitHub repo has a <a href=\"https://github.com/roots/roots/pull/1138\" target=\"_blank\">Gulp branch</a> with the relevant discussion and commits.</p>\n<p><strong>“Gulp is faster, has nicer configuration files, allows us to easily compile both Less and Sass to the same stylesheet, and more,”</strong> Roots creator <a href=\"http://benword.com/\" target=\"_blank\">Ben Word</a> said, regarding the upcoming changes.</p>\n<p>This will also include an update to Roots’ asset pipeline, which will allow theme developers to take CSS and JS from WordPress plugins and have it compiled into the single CSS and single JS files that the theme builds. The <a href=\"https://github.com/roots/roots/pull/1215\" target=\"_blank\">new asset pipeline</a> brings changes to project folders, removes differences between dev and production tasks, and adds a JSON-based asset pipeline.</p>\n<h3>Build a Roots-based Theme Using Any Framework</h3>\n<p>Additionally, the starter theme will be moving away from including <a href=\"http://getbootstrap.com/\" target=\"_blank\">Bootstrap</a> in order to become framework agnostic. “We’re going to have a Yeoman generator that will allow you to build a Roots based theme however you want,” Word said. “You’ll be able to pick from any framework, Bootstrap, Bootstrap Sass, Foundation, and more.”</p>\n<p>While Bootstrap still has a very large user base, the Roots community has shown more interest in other frameworks such as <a href=\"http://semantic-ui.com/\" target=\"_blank\">Semantic UI</a> and <a href=\"https://developers.google.com/web/starter-kit/\" target=\"_blank\">Google’s Web Starter Kit</a>.</p>\n<p>“A lot of people over the years have expressed that they like Roots, but don’t like Bootstrap,” Word explained. “We’ve even seen some forks pop up (Roots Foundation, for instance) to accommodate other frameworks. By becoming framework agnostic, the starter theme should be able to appeal to a wider audience.”</p>\n<p>Word and his team plan to have the generator ready for the public in the first quarter of 2015 and are currently working to incorporate work from other Yeoman generators.</p>\n<p>Last year, the Roots community introduced <a href=\"http://roots.io/wordpress-stack/\" target=\"_blank\">Bedrock</a>, a modern WordPress stack that uses Composer for managing WordPress along with Capistrano for deployment. Bedrock can be used with any theme. Since its launch, the project has struggled with branding issues. When all the new changes are merged into Roots’ master branch, Word plans to rename the starter theme and keep Roots as the organization name.</p>\n<p>The Roots starter theme has always had a somewhat narrow audience due to the fact that it has a steeper learning curve than other starter themes. Making the change to be platform agnostic should open it up for more theme developers, but it will continue to cater primarily to those who are interested in using build scripts.</p>\n<p>“Roots has been at a point where you can’t use it if you’re not using npm, Bower, and Grunt, and we’ve completely stopped supporting users who don’t want to adapt to the better workflow we’ve created,” Word said. “I struggled in the past with choosing to support the average Joe WordPress developer or to push for WordPress devs to learn tools that make them better at their job. Workflow efficiency is definitely the ultimate goal.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Dec 2014 18:06:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:57:\"WPTavern: nRelate Will Shutdown Its Service December 31st\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=34995\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wptavern.com/nrelate-will-shutdown-its-service-december-31st\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3942:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/QikShutdownFeaturedImage.png\" rel=\"prettyphoto[34995]\"><img class=\"size-full wp-image-19708\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/QikShutdownFeaturedImage.png?resize=639%2C200\" alt=\"Qik Shuts Down Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/slimjim/2772087916/\">slimmer_jimmer</a> – <a href=\"http://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a>\n<p>The content recommendation service <a title=\"http://nrelate.com\" href=\"http://nrelate.com\">nRelate</a>, <a title=\"http://nrelate.com/content/2014/12/01/farewell/\" href=\"http://nrelate.com/content/2014/12/01/farewell/\">announced</a> it will shut down its service December 31st. Launched in 2009, nRelate has provided billions of recommendations to over 100k sites. The service is shifting its assets to support its internal reference-style content properties. If you use nRelate, there is a <a title=\"http://nrelate.com/farewell-faqs/\" href=\"http://nrelate.com/farewell-faqs/\">farewell FAQ</a> available which has instructions on what to do.</p>\n<h2>YARPP and Jetpack Related Posts as Alternatives</h2>\n<p>There are three alternatives that come to mind with regards to related posts, <a title=\"https://wordpress.org/plugins/yet-another-related-posts-plugin/\" href=\"https://wordpress.org/plugins/yet-another-related-posts-plugin/\">YARPP</a>, <a title=\"https://wordpress.org/plugins/related-posts-for-wp/\" href=\"https://wordpress.org/plugins/related-posts-for-wp/\">Related Posts for WordPress</a>, and <a title=\"http://jetpack.me/support/related-posts/\" href=\"http://jetpack.me/support/related-posts/\">Jetpack Related Posts</a>. For several years, I used YARPP on WP Tavern to handle related posts and it performed flawlessly. However, at one point, it gave me performance problems because of the resources used on a shared webhosting server. The webhosting provider at the time pointed out that YARPP was taking up too many resources on the server. If you have a limited amount of posts or a beefy server, YARPP is a great alternative because it offers a variety of ways to display related posts.</p>\n<p>After encountering performance problems, I decided to go without related posts. <a title=\"http://wptavern.com/jetpack-2-9-introduces-multisite-support-and-related-posts-module\" href=\"http://wptavern.com/jetpack-2-9-introduces-multisite-support-and-related-posts-module\">Jetpack 2.9</a> released in early 2014, contained a new module called <a title=\"http://jetpack.me/support/related-posts/\" href=\"http://jetpack.me/support/related-posts/\">related posts</a>. Unlike YARPP, all of the processing and server resources were used on Automattic’s servers instead of my own and eliminated my performance issues with related posts. Keep in mind that when you use the Jetpack Related Posts module, the content is mirrored on WordPress.com for indexing and processing.</p>\n<p>Another thing to keep in mind is that the module will use the featured image attached to a post in the module. If a featured image is not detected, it uses the first image in the post which may or may not be optimal. You might also see a mix of related posts with and without images.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/JetpackRelatedPostsWithoutAnImage.png\" rel=\"prettyphoto[34995]\"><img class=\"size-full wp-image-34999\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/JetpackRelatedPostsWithoutAnImage.png?resize=679%2C266\" alt=\"Related Post Without an Image\" /></a>Related Post Without an Image\n<p>I’m of the mindset that if you can offload the processing required to determine post relationships, then do it. We’ve used the Jetpack Related Posts module on the Tavern for some time and haven’t experienced any issues. It’s also pretty good at being somewhat relevant. What do you use to handle related posts?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Dec 2014 07:52:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"WPTavern: Easily Show When WooCommerce Items Are New, On Sale, or Sold Out With Woo Stickers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=34989\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"http://wptavern.com/easily-show-when-woocommerce-items-are-new-on-sale-or-sold-out-with-woo-stickers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1706:\"<p>If you run a WooCommerce store with a lot of products and want a nice way to tell customers whether an item is new, on sale, or sold out, check out the <a title=\"https://wordpress.org/plugins/woo-stickers-by-webline/\" href=\"https://wordpress.org/plugins/woo-stickers-by-webline/\">Woo Stickers</a> plugin by Webline. Created by <a title=\"http://www.weblineindia.com/\" href=\"http://www.weblineindia.com/\">Webline India</a>, Woo Stickers makes it easy to provide visual cues on products. Stickers indicate whether a product is new, for sale, or sold out and comes in two styles, ribbon and round.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/StickerStyles.png\" rel=\"prettyphoto[34989]\"><img class=\"size-full wp-image-34990\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/StickerStyles.png?resize=779%2C484\" alt=\"Notification Stickers and Styles\" /></a>Notification Stickers and Styles\n<p>The plugin’s settings are modular in that you can configure stickers to display for some products while not appearing for others.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/WooStickersSettings.png\" rel=\"prettyphoto[34989]\"><img class=\"size-full wp-image-34991\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/WooStickersSettings.png?resize=1025%2C361\" alt=\"Woo Sticker Settings\" /></a>Woo Sticker Settings\n<p>Woo Stickers uses image sprites so they should look fine for most WooCommerce store designs. Perhaps in the future, the plugin author can provide the ability to control the sprite and font colors for maximum theme compatibility. I tested the plugin in WordPress 4.0.1 and WooCommerce 2.2.8 and experienced no problems.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Dec 2014 04:44:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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: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:72:\"WPTavern: Five Beers: A Free AJAX-Powered Child Theme for Twenty Fifteen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=34677\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/five-beers-an-ajax-powered-child-theme-for-twenty-fifteen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4184:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/five-beers-featured.jpg\" rel=\"prettyphoto[34677]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/five-beers-featured.jpg?resize=1024%2C505\" alt=\"photo credit: rchlnwnhm - cc\" class=\"size-full wp-image-34985\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/68442586@N02/13240338454/\">rchlnwnhm</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>WordPress 4.1 hasn’t yet been officially released, but child themes for the new <a href=\"http://twentyfifteendemo.wordpress.com/\" title=\"Twenty Fifteen demo\" target=\"_blank\">Twenty Fifteen</a> default theme are already popping up. The minimalist, blog-focused theme has so far been well received and users are already eagerly testing it out.</p>\n<p>WordPress developer <a href=\"https://github.com/chrismccoy\" target=\"_blank\">Chris McCoy</a> has created a Twenty Fifteen child theme with a unique twist. At first glance, <a href=\"https://github.com/chrismccoy/fivebeers\" target=\"_blank\">Five Beers</a> appears to be a colorless variation of the default theme, but under the hood you’ll find a set of powerful AJAX additions.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/five-beers.jpg\" rel=\"prettyphoto[34677]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/five-beers.jpg?resize=971%2C468\" alt=\"five-beers\" class=\"aligncenter size-full wp-image-34711\" /></a></p>\n<p>One of the most impressive features is the way Five Beers handles media display. It incorporates the <a href=\"http://stripjs.com/\" target=\"_blank\">Strip.js</a> lightbox to slide images and videos out from the side of the page. You can see a live example of it on the <a href=\"http://fivebeers.net/\" target=\"_blank\">Five Beers demo site</a>.</p>\n<p>The child theme includes all of the customization options of Twenty Fifteen plus several extra features:</p>\n<ul>\n<li>AJAX Live Search (still working out the bugs)</li>\n<li>AJAX comments</li>\n<li>AJAX archives</li>\n<li>AJAX A-Z Alphabet post loading</li>\n<li>AJAX infinite scrolling with SEO as a factor</li>\n<li>Custom tag page listed by letter</li>\n<li>Lightbox to adapt to galleries and video oEmbeds</li>\n<li>Unlimited widget area creation</li>\n</ul>\n<p>Additionally, when you publish a YouTube or Vimeo link, the theme will use the cover image (click to play) as the featured image. If no featured image is set, Five Beers will use a default click to play thumbnail.</p>\n<p>Building all of this functionality into the theme is a bit unorthodox, as most theme authors would opt to put these items into separate plugins. I asked McCoy why he opted to do it this way. “I’m trying to keep all functionality as the theme, because I prefer not to use a plugin if I don’t need to,” he said. If you use the theme, you could opt to use McCoy’s <a href=\"https://github.com/chrismccoy/strip\" target=\"_blank\">Strip Lightbox plugin</a> instead and then simply remove the include in the functions file for the lightbox.php file.</p>\n<p>Ultimately, it’s a theme McCoy built for himself one night while having five different brands of beer, hence the unique name. I’d like to see each piece of functionality pulled out and supported as a separate plugin, but this isn’t something he intends to do. McCoy originally planned to create it just for himself but will be adding more features next week.</p>\n<p>This child theme is particularly useful if you want to highlight your archived content by including alphabetical sorting and live search, making it easy for users to discover content as they are typing.</p>\n<p>Five Beers currently requires WordPress 4.1 Beta 1+ to use until 4.1 is officially released. The WordPress 4.1 project schedule has the release targeted for the week of December 8. McCoy does not plan to add the theme to WordPress.org, as the <a href=\"http://stripjs.com/license\" target=\"_blank\">Strip.js licensing</a> is not supported in the official directory. You can download the Five Beers theme for free on <a href=\"https://github.com/chrismccoy/fivebeers\" 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:\"Thu, 04 Dec 2014 22:48:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:67:\"WPTavern: How to Find the Number of Feedly Subscribers to 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=34466\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/how-to-find-the-number-of-feedly-subscribers-to-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5050:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/feedly.jpg\" rel=\"prettyphoto[34466]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/feedly.jpg?resize=1025%2C443\" alt=\"feedly\" class=\"aligncenter size-full wp-image-34964\" /></a></p>\n<p>When Google Reader was laid to rest on July 1, 2013, many users flocked to <a href=\"http://feedly.com/\" target=\"_blank\">Feedly</a>, one of the most popular alternatives. Even if you don’t use Feedly, it’s likely that many of your blog’s readers do. Therefore, if you want a true picture of the number of your RSS subscribers, digging into Feedly’s numbers should be part of your research.</p>\n<h3>Find Your Feedly Subscriber Count on Mobile</h3>\n<p>Feedly’s UI is notorious for being less than intuitive and <a href=\"http://blog.feedly.com/feedly-tutorial-v1/\" target=\"_blank\">confusing to navigate</a>. If you poke around, you can find a rough number of your subscribers. If you’re using a mobile device, simply search for your blog (even if you’re already subscribed), in the top search bar and it will display a rough count.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/feedly-mobile.jpg\" rel=\"prettyphoto[34466]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/feedly-mobile.jpg?resize=402%2C500\" alt=\"feedly-mobile\" class=\"aligncenter size-large wp-image-34933\" /></a></p>\n<h3>Find Your Feedly Subscriber Count in the Web App</h3>\n<p>If you’re looking for your subscriber count in the web app, click your site in the left sidebar among your subscriptions and then look for your total subscribers under the title.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/feedly-web-app.png\" rel=\"prettyphoto[34466]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/feedly-web-app.png?resize=1025%2C762\" alt=\"feedly-web-app\" class=\"aligncenter size-full wp-image-34942\" /></a></p>\n<p>That’s not too difficult, but what if you want to know the actual count of your Feedly subscribers? After all, there’s quite a difference between 3,001 and 3,999, especially when you are looking at setting goals. Once you pass 2,000, it seems that Feedly resorts to fuzzy rounding to the nearest thousand instead of reporting actual figures.</p>\n<h3>Feedly Insight Plugin for WordPress</h3>\n<p>WordPress sites can install a plugin called <a href=\"https://wordpress.org/plugins/feedly-insight/\" target=\"_blank\">Feedly Insight</a> to get an exact subscriber count. It utilizes the <a href=\"http://developer.feedly.com/\" target=\"_blank\">Feedly Cloud API</a> to tap into more exact data about your feed(s). Once you install the plugin, you’ll notice that it adds its own top level menu where you can click on the “Feedly Insight” submenu item. Scroll down to the search bar and enter your URL. It will return a few interesting stats, including languages and an exact subscriber count.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/feedly-insight.jpg\" rel=\"prettyphoto[34466]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/feedly-insight.jpg?resize=828%2C725\" alt=\"feedly-insight\" class=\"aligncenter size-full wp-image-34953\" /></a></p>\n<p>You can also search your competitors’ URLs in order to see how well they’re doing at attracting subscribers. After performing your research, you can keep the plugin if you want to keep track of your Feedly stats via its dashboard widget, or you can uninstall it and check back again later.</p>\n<p>Having a full picture of RSS subscribers is important for publishers who want to tailor their content to appear better in feed readers. For example, if you find that you have a large number of Feedly subscribers, you will want to make sure that each post appears with an image. Feedly doesn’t have the ability to fetch your featured image. Instead, it grabs the first image displayed within your post to show as the thumbnail in its reader. If your post has no images, it will show a blank as the thumbnail, which isn’t ideal. Adding an image to each post will help you to avoid this.</p>\n<p>You can also <a href=\"https://docs.google.com/forms/d/1jmkC6avpJQgdQhuKd2wN0PSYeBzKQ3KQzJEF8F9vZy8/viewform\" target=\"_blank\">claim your own Feedly hashtag</a> using this Google form, which allows you to have more control over what people find when they search for your brand or your #name.</p>\n<p>If you’re a publisher, you cannot ignore Feedly, even if you’re not a fan of the product. Feed readers are still going strong and Feedly seems to be leading the pack after Google Reader died. If you have never checked to find out how many people are reading your blog through Feedly, you may be surprised. To get a rough idea, just log into the app. The <a href=\"https://wordpress.org/plugins/feedly-insight/\" target=\"_blank\">Feedly Insight</a> plugin offers a more detailed look and an easier way to monitor your stats.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Dec 2014 21:59:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:27:\"Matt: Performance As Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=44539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2014/12/performance-as-design/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"<p><a href=\"http://bradfrost.com/blog/post/performance-as-design/\">Performance As Design</a>, by Brad Frost. Great thoughts and links. Performance is going to be a big focus for me in 2015.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Dec 2014 15:50:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: WPWeekly Episode 173 – Interview With Happy Joe Founder, James Dalman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=34905&preview_id=34905\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wpweekly-episode-173-interview-with-happy-joe-founder-james-dalman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3352:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\" title=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss the news of the week and interview the founder of <a href=\"http://www.happyjoe.org/\" title=\"http://www.happyjoe.org/\">HappyJoe.org</a>, James Dalman. Happy Joe is a 501 c3 non-profit organization that helps U.S. veterans with entrepreneurship and employment opportunities.</p>\n<p>Dalman shares what inspired him to create the organization and the role WordPress plays in helping veterans secure jobs in the web technology industry.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/wordcamp-maui-hi-set-for-february-13-14th-2015\" title=\"http://wptavern.com/wordcamp-maui-hi-set-for-february-13-14th-2015\">WordCamp Maui, HI Set For February 13-14th, 2015</a><br />\n<a href=\"http://wptavern.com/dawnpatrol-gives-fringe-wordpress-communities-a-voice\" title=\"http://wptavern.com/dawnpatrol-gives-fringe-wordpress-communities-a-voice\">DawnPatrol Gives Fringe WordPress Communities a Voice</a><br />\n<a href=\"http://wptavern.com/jp-bot-the-silent-bot-behind-the-jetpack-module-extraction-plugins\" title=\"http://wptavern.com/jp-bot-the-silent-bot-behind-the-jetpack-module-extraction-plugins\">JP Bot: The Silent Bot Behind the Jetpack Module Extraction Plugins</a><br />\n<a href=\"http://wptavern.com/infinitewp-client-plugin-releases-security-update\" title=\"http://wptavern.com/infinitewp-client-plugin-releases-security-update\">InfiniteWP Client Plugin Releases Security Update</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/before-deleting-the-posts/\" title=\"https://wordpress.org/plugins/before-deleting-the-posts/\">Before deleting the posts</a> backs up posts into an XML file before they’re emptied from the trash. The XML file is stored in the same format same as the Export from WordPress. If you want to restore the post, you can use the WordPress importer.</p>\n<p><a href=\"https://wordpress.org/plugins/gravity-forms-google-analytics-event-tracking/\" title=\"https://wordpress.org/plugins/gravity-forms-google-analytics-event-tracking/\">Gravity Forms Google Analytics Event Tracking</a> provides an easy way to add Google Analytics event tracking to Gravity Forms, allowing you to properly track form submissions as events and conversions within Google Analytics.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-voice-recorder/\" title=\"https://wordpress.org/plugins/wp-voice-recorder/\">WP Voice Recorder</a> allows you to record audio and play it on the frontend of WordPress within a post. It saves the recorded audio file to a Dropbox account instead of saving it to the server.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 10th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #173:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Dec 2014 06:11: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: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:59:\"WPTavern: WordPress 4.1 To Introduce Plugin Recommendations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=34854\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wptavern.com/wordpress-4-1-to-introduce-plugin-recommendations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2176:\"<p>On the Add New plugin page in WordPress 4.0, there are two different tabs to help users discover new plugins: Featured and Popular. What if WordPress could recommend plugins based on the ones you have installed? Thanks to a <a title=\"https://core.trac.wordpress.org/ticket/30337\" href=\"https://core.trac.wordpress.org/ticket/30337\">recent update</a> to the API, users will be able to access a list of recommended plugins in WordPress 4.1.</p>\n<p>The recommendations take into account the plugins you have installed and suggests plugins based on which ones are commonly used together. It’s similar to an e-commerce shopping cart that recommends products other customers have purchased based on what’s in the cart.</p>\n<h2>Recommended Plugins To Get its Own Tab</h2>\n<p>In today’s WordPress 4.1 developer meeting, the group <a title=\"https://wordpress.slack.com/archives/core/p1417641723005178\" href=\"https://wordpress.slack.com/archives/core/p1417641723005178\">reached a consensus</a> to create a new tab for Recommended plugins instead of replacing the Popular tab. I’m in favor of this decision because they each have a different definition. Also, the Popular tab shows which plugins are doing well across the directory. Another benefit to keeping the Popular plugins tab is for fresh installs of WordPress, as it gives users a good foundation to start looking for plugins.</p>\n<p>In my tests, I noticed that some of the plugins recommended to me are 5-8 years old. I’ve reported the behavior to Alex Shiels and it will be addressed before 4.1 ships. If you are testing WordPress 4.1 and come across any oddities with plugin recommendations, please <a title=\"https://core.trac.wordpress.org/ticket/30337\" href=\"https://core.trac.wordpress.org/ticket/30337\">report them</a> in the ticket.</p>\n<p>The Recommended plugins tab exposes new and useful plugins to users instead of limiting them to the Featured and Popular categories. Since recommendations are based on actual data, they should get better as time goes on. Do you think a recommended plugins page is a useful addition to the plugin discovery process? Let us know in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Dec 2014 23:33:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:78:\"WPTavern: Google’s New reCAPTCHA API Replaces Distorted Text with a Checkbox\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=34808\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://wptavern.com/googles-new-recaptcha-api-replaces-distorted-text-with-a-checkbox\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3708:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/recaptcha.png\" rel=\"prettyphoto[34808]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/recaptcha.png?resize=365%2C109\" alt=\"recaptcha\" class=\"alignright size-full wp-image-34867\" /></a>For the past several years, Google’s <a href=\"https://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a> has verified a user’s humanity by forcing you to decipher warped, nonsensical text. reCAPTCHA’s method of protecting websites from spam has long put the burden on the user to prove that he is not an abusive bot.</p>\n<p>This is all about to change as a result of Google’s most <a href=\"http://googleonlinesecurity.blogspot.com/2014/04/street-view-and-recaptcha-technology.html\" target=\"_blank\">recent research</a>, which indicates that smart bots are able to solve even the most distorted text puzzles with more than 99% accuracy. Since the CAPTCHA puzzles are often infuriating to humans and ineffective at stopping bots, Google put its efforts toward developing a better user experience.</p>\n<p>Today, Vinay Shet, Google’s Product Manager for reCAPTCHA, <a href=\"http://googleonlinesecurity.blogspot.com/2014/12/are-you-robot-introducing-no-captcha.html\" target=\"_blank\">announced</a> a new API called “No CAPTCHA reCAPTCHA.” This API utilizes an Advanced Risk Analysis engine that is capable of discerning between users and bots. The best part is that the interface has been simplified to a checkbox, a vast improvement over reCAPTCHA’s alphabet soup scramble.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/nocaptcha.gif\" rel=\"prettyphoto[34808]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/nocaptcha.gif?resize=616%2C164\" alt=\"photo credit: Google Online Security Blog\" class=\"size-full wp-image-34870\" /></a>photo credit: <a href=\"http://googleonlinesecurity.blogspot.com/2014/12/are-you-robot-introducing-no-captcha.html\">Google Online Security Blog</a>\n<p>WordPress.org is already using the new “No CAPTCHA reCAPTCHA” API and, according to the announcement, is providing users with a faster registration experience:</p>\n<blockquote><p>Early adopters, like <a href=\"https://support.snapchat.com/login2?next=/\" target=\"_blank\">Snapchat</a>, <a href=\"https://wordpress.org/support/register.php\" target=\"_blank\">WordPress</a>, <a href=\"https://www.humblebundle.com/\" target=\"_blank\">Humble Bundle</a>, and several others are already seeing great results with this new API. For example, in the last week, more than 60% of WordPress’ traffic and more than 80% of Humble Bundle’s traffic on reCAPTCHA encountered the No CAPTCHA experience—users got to these sites faster.</p></blockquote>\n<p>Several dozen WordPress <a href=\"https://wordpress.org/plugins/search.php?q=reCAPTCHA\" target=\"_blank\">plugins integrate reCAPTCHA</a> in one way or another to protect sites from bad bots. Plugins that integrate the new “No CAPTCHA reCAPTCHA” API will allow many users to pass through by simply checking a box. However, it does provide a fallback to the scrambled letters in cases where the Advanced Risk Analysis engine isn’t able to confidently assume that a user is human.</p>\n<p>A cursory examination of the changelogs on several reCAPTCHA plugins shows that plugin authors have not yet updated their extensions to indicate compatibility with the new API. Given that the user experience of the checkbox is far superior to distorted letters, we’re likely to see more developers take advantage of reCAPTCHA’s new API in the coming days. Does the new API make you more likely to use reCAPTCHA?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Dec 2014 21:57:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:53:\"WPTavern: Salvador, Brazil to Host Its First 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:28:\"http://wptavern.com/?p=34811\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wptavern.com/salvador-brazil-to-host-its-first-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5911:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/wordcamp-salvador.jpg\" rel=\"prettyphoto[34811]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/wordcamp-salvador.jpg?resize=912%2C422\" alt=\"wordcamp-salvador\" class=\"aligncenter size-full wp-image-34823\" /></a></p>\n<p>The very first <a href=\"http://2014.salvador.wordcamp.org/\" target=\"_blank\">WordCamp Salvador</a> is set to take place in Brazil this weekend on December 6th, bringing together approximately 160 attendees who are excited about connecting through WordPress. The more developed south and southeast regions of Brazil have had WordCamps in the past, but WordCamp Salvador will be the first in the northeast.</p>\n<p>Co-organizer <a href=\"https://profiles.wordpress.org/leobaiano/\" target=\"_blank\">Leo Baiano</a> is the founder of Salvador’s first WordPress meetup group and has been instrumental in growing the local community over the past year. He discovered WordPress nine years ago, which led him to get involved in fostering his local community.</p>\n<p>“The idea of holding WordCamp Salvador was born in early 2014. Many people have left the city to work in more technologically advanced cities like Sao Paulo and Rio de Janeiro, where there are many events happening and more companies value employees,” he said. Baiano became determined to bring WordCamp to Salvador. “I did not want to leave the city that I love to participate in important events and be valued as a professional; I prefer to fight to make things better here,” he said.</p>\n<p>When Baiano started the <a href=\"http://www.meetup.com/wpsalvador/\" target=\"_blank\">WP Salvador/Bahia meetup group</a>, he focused on bringing people together for small events with lectures on basic topics, as well as social gatherings. They hosted approximately 10 meetups before sending in an application to start organizing a WordCamp.</p>\n<p>“Without the meetups and the local community support, it would be almost impossible to make this WordCamp happen,” he said. “Now I have a team of five local co-organizers and lots of others willing to volunteer at the event.” Baiano also received help from friends who organized previous WordCamps as well as support from the <a href=\"http://guwp.org/\" target=\"_blank\">WordPress Brazil User Group</a>.</p>\n<h3>WP Salvador Meetup Group Helps Seniors Learn WordPress</h3>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/wp-salvador-seniors.jpeg\" rel=\"prettyphoto[34811]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/wp-salvador-seniors.jpeg?resize=660%2C362\" alt=\"wp-salvador-seniors\" class=\"aligncenter size-full wp-image-34834\" /></a></p>\n<p>One of the unique things about the local WordPress community in Salvador is its desire to work together to help more people benefit from the software.</p>\n<p>“Local Brazilian communities are all similar in essence, but what differentiates the Salvador community from others is the willingness we all have to get the group together and work on related projects,” Baiano said.</p>\n<p>“An example of that is this work we just started with this elderly group. Other group members already showed interest in running some workshops for them, without any financial return, just for the pleasure of working together.” The meetup group partnered with UNEB (State University of Bahia) and the UATI, a support unit for seniors.</p>\n<p>“We are teaching seniors how to create blogs with WordPress, and update and promote their blogs. This is a wonderful initiative because these seniors are looking for an occupation, something to pass the time, and they are very smart and interested in the lecture,” Baiano said.</p>\n<p>“I was surprised by their enthusiasm, all the time asking questions and wanting to learn more about it. In 2015 we will begin a series of workshops where this group of seniors will learn how to create a WordPress blog, how to produce content, basic SEO techniques such as promoting posts on social networks, how to increase the audience of the blog by interacting with readers and other blogs in the same niche.”</p>\n<h3>WordCamp Salvador Signifies an Important Milestone for the Local Community</h3>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/wp-salvador-meetup.jpg\" rel=\"prettyphoto[34811]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/wp-salvador-meetup.jpg?resize=1025%2C589\" alt=\"wp-salvador-meetup\" class=\"aligncenter size-full wp-image-34845\" /></a></p>\n<p>The local WordPress community in Salvador is just starting to take off, as meetup members gather around collaborative projects like the initiative to help seniors with WordPress. WordCamp Salvador will be an important milestone for solidifying the community.</p>\n<p>“My hope for this WordCamp is that it allows the community to grow even more, resulting in more people attending our future meetups and inspiring new collaborative projects,” Baiano said.</p>\n<p>“The event happening this year is very important if you take into account the momentum of the digital market in the city of Salvador right now. It’s a special moment, where many other groups have begun to organize and get together. The WordCamp will help foster future debates and help the market grow as a whole.”</p>\n<p>Baiano reports that current registered attendees are comprised of 75% locals and 24% from other regions in Brazil. He hopes that the WordCamp will connect local members to the wider WordPress community.</p>\n<p>“We are here to stay and we are available to help the WordPress community,” he said. “We hope to encourage our members to start contributing and engaging more in the global community, by helping on the official forums, translations, and on WordPress core.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Dec 2014 19:52:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:80:\"WPTavern: jMonkeyEngine Migrates Community Site Away From BuddyPress and bbPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=34733\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/jmonkeyengine-migrates-community-site-away-from-buddypress-and-bbpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9072:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/MigrationFeaturedImage.png\" rel=\"prettyphoto[34733]\"><img class=\"size-full wp-image-34786\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/MigrationFeaturedImage.png?resize=637%2C239\" alt=\"Migration Featured Image\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/karenapricot/1225579130/\">Karen Apricot New Orleans</a> – <a href=\"http://creativecommons.org/licenses/by-sa/2.0/\">cc</a>\n<p><a title=\"http://jmonkeyengine.org/\" href=\"http://jmonkeyengine.org/\">jMonkeyEngine</a> is a <a href=\"http://en.wikipedia.org/wiki/Game_engine\" target=\"_blank\">game engine</a> made for developers who want to create 3D games following modern technology standards. The framework is programmed entirely in <a href=\"http://en.wikipedia.org/wiki/Java_%28programming_language%29\">Java</a> aimed at wide accessibility and quick deployment to desktop, web, and mobile platforms. Established in 2003, the jMonkeyEngine community forum has gone through at least four migrations.</p>\n<p>phpBB → SMF → BuddyPress Forum → bbPress 2.0 → Discourse.</p>\n<p>In late October, the jMonkeyEngine community hub went offline. When the site came back online, the team discovered performance issues. Due to performance reasons and a change in philosophy, the <a title=\"http://hub.jmonkeyengine.org/\" href=\"http://hub.jmonkeyengine.org/\">jMonkeyEngine project</a> is migrating its community and forum from <a title=\"http://hub.jmonkeyengine.org/2014/11/we-will-be-moving-soon/\" href=\"http://hub.jmonkeyengine.org/2014/11/we-will-be-moving-soon/\">BuddyPress and bbPress to Discourse</a>. This marks the fifth different forum migration in 10 years.</p>\n<h2>Why BuddyPress and bbPress Were Initially Chosen to Run The Community Hub</h2>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png\" rel=\"prettyphoto[34733]\"><img class=\"alignright wp-image-30655 size-medium\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png?resize=300%2C142\" alt=\"buddypress-logo-blue\" /></a>In a <a title=\"blog.erlend.sh/foundation-redefined-going-back-to-specialised-applications/\" href=\"http://wptavern.com/blog.erlend.sh/foundation-redefined-going-back-to-specialised-applications/\">post announcing</a> the change, jMonkeyEngine Community Manager, Erlend Sogge Heggen, cites the biggest mistake he made is using the forum component bundled with BuddyPress. In his grand vision for the site in 2010, Heggen envisioned the community site to have the following features:</p>\n<ul>\n<li>Forums</li>\n<li>Social</li>\n<li>Galleries</li>\n<li>Wikis</li>\n<li>Files</li>\n<li>Advanced user profiles</li>\n<li>Unified search</li>\n</ul>\n<p>BuddyPress was chosen because it offers many of these features out of the box and integrates seamlessly with WordPress user tables. Over time, two particular problems arose.</p>\n<ol>\n<li>No one on the community management team would touch the BuddyPress code because of its complexity.</li>\n<li>Even though BuddyPress has the features Heggen wants, it doesn’t do any of them particularly well.</li>\n</ol>\n<p>This brought about the realization that his community didn’t care for the galleries, wikis, or the advanced user profiles. Heggen says it’s the forum user’s cared about most, “So now we were stuck with a sub-par forum that everyone used, and a bunch of other sub-par features that no one used. In pursuit of the all-encompassing solution, I had downgraded the heart and soul of our website, and by extension our community: The forum.”</p>\n<h2>Separate Software For Specific Tasks</h2>\n<p>Heggen says they’ll continue to use WordPress for now, but only for blogging. “The only users WordPress will handle is our small team of authors; it really isn’t designed well for anything other than administrative use anyhow.”</p>\n<p>Instead of using software that fulfills multiple purposes, Heggen will use software specific to the task at hand and use APIs to bridge them together. “In the age of JSON APIs and SPAs, you don’t need that ‘one foundation to rule them all.\'”</p>\n<h2>When is bbPress The Right Choice?</h2>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/06/bbpress.png\" rel=\"prettyphoto[34733]\"><img class=\"aligncenter size-large wp-image-24338\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/06/bbpress.png?resize=500%2C184\" alt=\"bbpress\" /></a></p>\n<p>jMonkeyEngine has determined that BuddyPress and bbPress are no longer the right choice to build its community on. In a <a title=\"http://blog.erlend.sh/when-is-bbpress-the-right-choice/\" href=\"http://blog.erlend.sh/when-is-bbpress-the-right-choice/\">follow up post</a>, Heggen asks, is bbPress even right for anyone? According to Heggen, the custom post type is a lie and the project never gets the attention it deserves. “It’s under the official WordPress umbrella, but it’s not part of their product strategy, so in effect it’s just another plugin developed by hobbyists in their spare time.”</p>\n<p>Unlike bbPress, <a title=\"http://www.discourse.org/\" href=\"http://www.discourse.org/\">Discourse</a> has a team of paid developers working full-time to create the best community engagement/discussion software on the web. In less than two years, it looks and feels light-years beyond what bbPress offers. It’s worth noting that, like bbPress, Discourse is <a title=\"http://www.discourse.org/faq/#license\" href=\"http://www.discourse.org/faq/#license\">GPLv2 licensed</a>.</p>\n<p>Heggen recommends using bbPress only if it’s going to be a small subset of the site’s entire offering but says, “You should strongly reconsider whether it’s worth having a forum at all, because in my honest opinion a forum is an ‘all or nothing’ sort of deal. It’s either a key component of your website, or it’s going to become a graveyard quicker than you can say ‘Welcome to our community!\'”</p>\n<h2>Still Hopeful For bbPress’ Future</h2>\n<p>Despite moving the jMonkeyEngine community off of bbPress to Discourse and his gripes about the project, Heggen believes it can still be a viable competitor, “I still firmly believe in bbPress as a competitor to the likes of Muut and Disqus. It hasn’t lived up to its potential yet, but with a full-time developer, it very well could.”</p>\n<p>If John James Jacoby’s <a title=\"http://wptavern.com/john-james-jacoby-launches-indiegogo-campaign-to-fund-buddypress-bbpress-and-glotpress-development\" href=\"http://wptavern.com/john-james-jacoby-launches-indiegogo-campaign-to-fund-buddypress-bbpress-and-glotpress-development\">Indiegogo campaign</a> is successful, there will be at least one paid full-time developer to work on both bbPress and BuddyPress for the next six months. With nine days left, he still needs over $5,700 to reach his goal.</p>\n<h2>Community Engagement Crossroads</h2>\n<p>Automattic, the WordPress project, and bbPress are at a crossroad. The comment system in WordPress leaves a <a title=\"http://www.poststat.us/wordpress-comments/\" href=\"http://www.poststat.us/wordpress-comments/\">lot to be desired</a> and could use some serious improvements. Meanwhile, Automattic is sitting on a dormant <a title=\"http://intensedebate.com/\" href=\"http://intensedebate.com/\">commenting service</a> that hasn’t made any progress in years. bbPress development continues at a snail’s pace since it doesn’t have a committed team of developers and there are no signs of improvement on the horizon, outside of Jacoby’s campaign.</p>\n<p>One of my favorite quotes from Matt Mullenweg is from 2008, when Automattic acquired IntenseDebate. In <a title=\"http://ma.tt/2008/09/intense-debate-goes-automattic/\" href=\"http://ma.tt/2008/09/intense-debate-goes-automattic/\">the announcement</a>, Mullenweg said the following:</p>\n<blockquote><p>Long-term, I think that comments are the most crucial interaction point for blogs, and an area that deserves a lot of investment and innovation. Comments really haven’t changed in a decade, and it’s time to spice things up a little.</p></blockquote>\n<p>I realize 2008 was a different time on the web, but in six years, I’ve seen very little innovation with comments. Instead, large sites are <a title=\"http://www.top5seo.co.uk/copyblogger-comments/\" href=\"http://www.top5seo.co.uk/copyblogger-comments/\">shutting them off</a> or moving to third-party services such as Disqus and <a title=\"http://web.livefyre.com/comments/\" href=\"http://web.livefyre.com/comments/\">Livefyre</a>. Jetpack Comments isn’t the solution because it’s just an iframe that is not easily extendable by other plugins.</p>\n<p>I don’t know what the answer is to having a great community engagement/discussion experience in WordPress but Jetpack Comments, bbPress, IntenseDebate, and the native comment system isn’t cutting it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Dec 2014 06:57:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WPTavern: InfiniteWP Client Plugin Releases Security Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=34791\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wptavern.com/infinitewp-client-plugin-releases-security-update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1789:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/InfiniteWPBannerHeader.png\" rel=\"prettyphoto[34791]\"><img class=\"aligncenter size-large wp-image-34792\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/InfiniteWPBannerHeader.png?resize=500%2C160\" alt=\"InfiniteWP Banner Header\" /></a>If you use the <a title=\"https://wordpress.org/plugins/iwp-client/\" href=\"https://wordpress.org/plugins/iwp-client/\">InfiniteWP Client</a> plugin, log into your sites and check for updates. According <a title=\"http://blog.sucuri.net/2014/12/security-advisory-high-severity-infinitewp-client-wordpress-plugin.html\" href=\"http://blog.sucuri.net/2014/12/security-advisory-high-severity-infinitewp-client-wordpress-plugin.html\">to Sucuri</a>, versions under 1.3.8 are susceptible to a privilege escalation attack as well as a potential Object Injection Vulnerability. InfiniteWP Client is used to communicate to the <a title=\"http://infinitewp.com/\" href=\"http://infinitewp.com/\">Infinite WP</a> service to manage WordPress sites remotely.</p>\n<p>A malicious individual can use the vulnerability to disable a website by putting it into maintenance mode. If an attacker knows the site’s administrator username, they can force the site to display malicious content. Once the site is in maintenance mode, the following items can be injected into the site.</p>\n<ul>\n<li>Javascript or iframe malware.</li>\n<li>Spam links</li>\n<li>Defacement messages (the infamous “hacked by” type of attack)</li>\n</ul>\n<p>You’re strongly encouraged to update the plugin as soon as possible. The patched version is 1.3.8 and <a title=\"https://wordpress.org/plugins/iwp-client/\" href=\"https://wordpress.org/plugins/iwp-client/\">is available</a> on the WordPress plugin directory.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Dec 2014 01:23:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: Add Wedding Registry Links to WordPress with the Bean Registry 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=34692\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://wptavern.com/add-wedding-registry-links-to-wordpress-with-the-bean-registry-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:3103:\"<p>Wedding themes are a highly niche market for what is oftentimes a once-in-a-lifetime event. Consequently, plugins that extend these themes for wedding-specific functionality are not as common as plugins for portfolios, testimonials, recipes, etc. If you develop wedding themes, you may want to check out <a href=\"http://themebeans.com/plugins/bean-registry/\" target=\"_blank\">Bean Registry</a>, a new free plugin created by the folks at <a href=\"http://themebeans.com/\" target=\"_blank\">ThemeBeans</a>.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/registry-plugin.jpg\" rel=\"prettyphoto[34692]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/registry-plugin.jpg?resize=1025%2C660\" alt=\"registry-plugin\" class=\"aligncenter size-full wp-image-34760\" /></a></p>\n<p>Adding links to registries is a common request for wedding themes, but it usually requires pasting a block of code into a page or hunting down logos and trying to size them to look nice with the theme. Bean Registry offers an attractive and convenient way to place and link store logos within the WordPress post editor.</p>\n<p>Once installed, the plugin adds a new button to the visual editor where the user can select from a dropdown list of the most common stores where people register.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/registry-shortcode.jpg\" rel=\"prettyphoto[34692]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/registry-shortcode.jpg?resize=750%2C595\" alt=\"registry-shortcode\" class=\"aligncenter size-full wp-image-34756\" /></a></p>\n<p>This will automatically insert the correct shortcode and the user can then paste the registry link into the URL attribute.</p>\n<p>The resulting display on the frontend will look different, depending on what theme you’re using. The example below is from an unmodified version of Twenty Fifteen.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/registry-frontend.jpg\" rel=\"prettyphoto[34692]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/registry-frontend.jpg?resize=901%2C646\" alt=\"registry-frontend\" class=\"aligncenter size-full wp-image-34757\" /></a></p>\n<p>ThemeBeans developed the plugin for use with its new Emma wedding theme, which includes a <a href=\"http://demo.themebeans.com/?theme=Emma\" target=\"_blank\">live demo</a> of Bean Registry in action. Because it was created for a wedding theme, the 18 stores currently included in the plugin mostly cater to weddings. After receiving some initial feedback, ThemeBeans plans to add more baby stores to the list. Future versions of the plugin will make it more flexible for use with baby showers and announcements.</p>\n<p>The Bean Registry plugin could be a handy tool for WordPress theme developers who want to include support for it in their wedding themes. Instead of trying to build registry listings from scratch, the plugin can be styled to match your theme. <a href=\"http://themebeans.com/plugins/bean-registry/\" target=\"_blank\">Download</a> it for free from ThemeBeans.com.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Dec 2014 00:08:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"WPTavern: WP Engine Sponsors John James Jacoby to Work on HHVM Compatibility with BuddyPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=34700\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"http://wptavern.com/wp-engine-sponsors-john-james-jacoby-to-work-on-hhvm-compatibility-with-buddypress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4384:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/wp-engine.jpg\" rel=\"prettyphoto[34700]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/wp-engine.jpg?resize=1025%2C427\" alt=\"wp-engine\" class=\"aligncenter size-full wp-image-34106\" /></a></p>\n<p>WP Engine <a href=\"http://wpengine.com/2014/12/02/labs-sponsors-buddypress-hhvm-compatability/\" target=\"_blank\">announced</a> today that the company will be sponsoring John James Jacoby to work on HHVM compatibility for BuddyPress. Mercury, the host’s new <a href=\"http://wptavern.com/wp-engine-partners-with-10up-to-launch-enterprise-hhvm-wordpress-hosting-platform\" target=\"_blank\">enterprise HHVM WordPress hosting platform</a>, debuted last month with initial benchmarks indicating performance improvements of up to 600%.</p>\n<p>Jacoby is the project lead for BuddyPress and a former employee of <a href=\"http://10up.com/\" target=\"_blank\">10up</a>, the agency WP Engine partnered with to build Mercury. He also recently created an <a href=\"http://wptavern.com/hhvm-for-varying-vagrant-vagrants-wordpress-development-on-speed\" target=\"_blank\">HHVM configuration for Varying Vagrant Vagrants</a>, which makes it easy to test WordPress on HHVM in a local development environment.</p>\n<h3>Taking a Chance on BuddyPress</h3>\n<p>WP Engine is sponsoring the HHVM + BuddyPress compatibility work as part of its <a href=\"http://wpengine.com/labs\" target=\"_blank\">Labs project</a>, headed up by Tomas Puig. Labs is a separate team within the company that works on new technologies and open source contribution. “Right now we can’t even load test BuddyPress without it breaking,” Puig said.</p>\n<p>Why is WP Engine prioritizing BuddyPress compatibility with HHVM? The company is taking a chance on WordPress’ premier social networking plugin and, if successful, will become the fastest hosting platform available for running BuddyPress.</p>\n<p>“We saw such a surge of interest when we announced Mercury. We don’t have a lot of BuddyPress customers,” Puig told the Tavern. “But I think if we get BuddyPress performing well for HHVM, then people will want to use it even more. Also, core and bbPress work great with HHVM so we felt the third project should too, so everyone can benefit.” The technical objectives of the compatibility effort are to get BuddyPress working at parity with how it currently runs on PHP-FPM.</p>\n<p>“In my mind i’d love to see the major WP projects work with it,” Puig said. “If we see a 3-8x improvement in speed, it’s going help everyone trying to deploy BuddyPress. Also, I think more people will use it if it’s easier to support high user loads.”</p>\n<p>Puig did not have immediate access to the number of WP Engine customers currently running BuddyPress, but he said the company will continue with the investment regardless of small usage numbers. “Technology, once it’s a performant, great option, will get adopted,” he said. “But once the main body of work and the tests are built it gets much easier to keep that way moving forward.”</p>\n<p>WP Engine is engaging the Facebook team on the effort as well, as there might be things in HHVM that are preventing it from being compatible with BuddyPress. The company contracted Jacoby to work on the project for the month of December, before he gets started on the new year with his <a href=\"http://wptavern.com/john-james-jacoby-launches-indiegogo-campaign-to-fund-buddypress-bbpress-and-glotpress-development\" target=\"_blank\">BuddyPress, bbPress, and GlotPress development</a>. “It’s a bit unknown how much code needs to change to make it HHVM compliant, so we wanted the person who is the most familiar with the code base,” Puig said.</p>\n<p>WP Engine sponsoring Jacoby to work on this initiative benefits the open source BuddyPress plugin in a couple of major ways. In addition to supporting the project lead in working with the software, the HHVM compatibility project also ensures the future of BuddyPress working with modern technologies. Many believe that HHVM is going to revolutionize PHP, which means that hosting companies will soon be rushing to adopt it. Investing in BuddyPress compatibility with HHVM now means that the plugin won’t be left in the dust.</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, 02 Dec 2014 22:28:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:79:\"WPTavern: How to Send a Quick Email With an Attachment From The WordPress Admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=34682\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://wptavern.com/how-to-send-a-quick-email-with-an-attachment-from-the-wordpress-admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2150:\"<p>If you’d like to be able to send a quick email from the backend of WordPress, the <a title=\"https://wordpress.org/plugins/quick-mail/\" href=\"https://wordpress.org/plugins/quick-mail/\">Quick Mail</a> plugin developed by <a title=\"http://wheredidmybraingo.com\" href=\"http://wheredidmybraingo.com\">Mitchell D. Miller</a>, may be the answer. Once activated, you’ll see a Quick Mail link in the Tools Menu. Using the form, you can send a quick email to an individual with the ability to attach <strong>one</strong> item.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/QuickMailForm.png\" rel=\"prettyphoto[34682]\"><img class=\"size-full wp-image-34684\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/QuickMailForm.png?resize=902%2C673\" alt=\"The Quick Mail Email Form\" /></a>The Quick Mail Email Form\n<p>Quick Mail sends emails as plain-text, including URLs. The text in the Message field is sanitized using the <a title=\"http://codex.wordpress.org/Function_Reference/sanitize_text_field\" href=\"http://codex.wordpress.org/Function_Reference/sanitize_text_field\">sanitize_text_field</a> function. Quick Mail is limited to those who have the capability to publish posts. Those who do not have the necessary capabilities will not see <strong>Quick Mail</strong> as an option in the Tools Menu. Mitchell says it has been tested with WordPress 4.0.1, PHP 5.4, and 5.5. There are no PHP errors or warnings with <a title=\"enables debug mode throughout WordPress\" href=\"http://codex.wordpress.org/WP_DEBUG\">WP_DEBUG</a> turned on.</p>\n<p>I tested the plugin and found it works as advertised. One thing I don’t understand is the yellow background. I feel it’s unnecessary but not a deal breaker. Unlike using an address book, you need to know the exact email address you’re going to send to. Something I think would be useful is the ability to select a registered user as the recipient via a drop down menu.</p>\n<p>Other than that, the plugin lives up to its name as a quick way to send an email with an attachment. What other situations can you think of where this plugin would come in handy?</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, 02 Dec 2014 04:18:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 18 Dec 2014 22:31:16 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"251030\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 18 Dec 2014 22:15: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:\"20141218192608\";}','no'),(156,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1418985077','no'),(157,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1418941877','no'),(158,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1418985077','no'),(159,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Dec 2014 22:11: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"15@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2141@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Google Analytics by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2316@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:36:\"23862@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Your WordPress, Streamlined.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:35:\"8321@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast's WordPress SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:36:\"29860@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"12073@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"132@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"arnee\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"18101@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"21738@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"The easiest, most effective way to secure WordPress in seconds.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Chris Wiegman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:34:\"UpdraftPlus Backup and Restoration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/updraftplus/#post-38058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 21 May 2012 15:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"38058@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"David Anderson\";s: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: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:35:\"1169@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 10 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: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:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"50539@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:19:\"Broken Link Checker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/broken-link-checker/#post-2441\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2007 21: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2441@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Janis Elsts\";s: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:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29832@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 18 Dec 2014 22:31:17 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Thu, 18 Dec 2014 22:46:52 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Thu, 18 Dec 2014 22:11:52 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20141218192608\";}','no'),(160,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1418985077','no'),(161,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1418941877','no'),(162,'_transient_timeout_plugin_slugs','1419113728','no'),(163,'_transient_plugin_slugs','a:8:{i:0;s:41:\"amazon-s3-and-cloudfront/wordpress-s3.php\";i:1;s:43:\"amazon-web-services/amazon-web-services.php\";i:2;s:21:\"meta-box/meta-box.php\";i:3;s:33:\"phila.gov-customization/index.php\";i:4;s:43:\"restrict-categories/restrict-categories.php\";i:5;s:28:\"swiftype-search/swiftype.php\";i:6;s:41:\"wordpress-importer/wordpress-importer.php\";i:7;s:53:\"wpfront-user-role-editor/wpfront-user-role-editor.php\";}','no'),(164,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1418985077','no'),(165,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2014/12/dinah/\'>WordPress 4.1 “Dinah”</a> <span class=\"rss-date\">December 18, 2014</span><div class=\"rssSummary\">Version 4.1 of WordPress, named “Dinah” in honor of jazz singer Dinah Washington, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style. Introducing Twenty Fifteen Our newest default theme, Twenty Fifteen, is […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wptavern.com/critical-git-vulnerability-patched-update-your-git-clients-immediately\'>WPTavern: Critical Git Vulnerability Patched: Update Your Git Clients Immediately</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/export-your-wordpress-blog-to-jekyll-with-one-click\'>WPTavern: Export Your WordPress Blog to Jekyll with One Click</a></li><li><a class=\'rsswidget\' href=\'http://www.poststat.us/wordpress-4-1-dinah/\'>Post Status: WordPress 4.1, “Dinah”</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/jetpack/\' class=\'dashboard-news-plugin-link\'>Jetpack by WordPress.com</a> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=jetpack&_wpnonce=c99efeb5ee&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Jetpack by WordPress.com\'>Install</a>)</span></li></ul></div>','no'),(166,'tantan_wordpress_s3','a:8:{s:31:\"update_meta_with_region_session\";a:1:{s:6:\"status\";i:1;}s:6:\"bucket\";s:5:\"phila\";s:10:\"cloudfront\";s:0:\"\";s:13:\"object-prefix\";s:0:\"\";s:10:\"copy-to-s3\";s:1:\"1\";s:13:\"serve-from-s3\";s:1:\"1\";s:17:\"remove-local-file\";s:1:\"1\";s:9:\"force-ssl\";s:1:\"1\";}','yes'),(167,'_site_transient_timeout_theme_roots','1419029122','yes'),(168,'_site_transient_theme_roots','a:1:{s:15:\"phila.gov-theme\";s:7:\"/themes\";}','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (3,1,'2014-12-03 17:04:39','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-03 17:04:39','0000-00-00 00:00:00','',0,'http://localhost:19102/?p=3',0,'post','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `name` (`name`),
KEY `slug` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(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','wp350_media,wp360_revisions,wp360_locks,wp390_widgets'),(13,1,'show_welcome_panel','0'),(14,1,'session_tokens','a:1:{s:64:\"de4c655b814e05149d27229df177706b82d95a946b0eb3c2e1984c30b483dfc5\";a:4:{s:10:\"expiration\";i:1419114673;s:2:\"ip\";s:8:\"10.0.3.1\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36\";s:5:\"login\";i:1418941873;}}'),(15,1,'wp_dashboard_quick_press_last_post_id','3'),(16,1,'wp_user-settings','libraryContent=browse'),(17,1,'wp_user-settings-time','1419027318');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(64) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BXZRDTT9rY9mb4X3Ahd3.qeXrBZ8yX.','admin','[email protected]','','2014-12-03 17:04:27','',0,'admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2014-12-19 22:16:13