-
Notifications
You must be signed in to change notification settings - Fork 6
/
backup.sql
381 lines (334 loc) · 522 KB
/
backup.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
-- MySQL dump 10.13 Distrib 5.5.38, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: wordpress
-- ------------------------------------------------------
-- Server version 5.5.38-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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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 COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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 */;
INSERT INTO `wp_comments` VALUES (1,1,'Mr WordPress','','https://wordpress.org/','','2015-05-11 07:44:17','2015-05-11 07:44:17','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=623 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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://46.101.48.242','yes'),(2,'home','http://46.101.48.242','yes'),(3,'blogname','Jeo Test','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','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','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'gzipcompression','0','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'advanced_edit','0','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','0','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','','no'),(41,'template','jeo','yes'),(42,'stylesheet','jeo','yes'),(43,'comment_whitelist','1','yes'),(44,'blacklist_keys','','no'),(45,'comment_registration','0','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','31535','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','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:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:0:{}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','0','yes'),(85,'page_on_front','0','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','31535','yes'),(89,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(90,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(91,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(92,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(93,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:4:\"post\";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:7:\"general\";N;s:10:\"front_page\";N;s:13:\"array_version\";i:3;}','yes'),(97,'cron','a:5:{i:1432669440;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:1432669457;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:1432712669;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:1432712680;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(101,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.2.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.2.2\";s:7:\"version\";s:5:\"4.2.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1432631778;s:15:\"version_checked\";s:5:\"4.2.2\";s:12:\"translations\";a:0:{}}','yes'),(103,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1432631779;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.1.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.1.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}}}','yes'),(106,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1432631780;s:7:\"checked\";a:4:{s:3:\"jeo\";s:6:\"0.8.12\";s:13:\"twentyfifteen\";s:3:\"1.2\";s:14:\"twentyfourteen\";s:3:\"1.4\";s:14:\"twentythirteen\";s:3:\"1.5\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),(107,'_transient_random_seed','727238aa04054807d67673a0b26a8e03','yes'),(110,'can_compress_scripts','0','yes'),(128,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1431330272;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(129,'current_theme','JEO','yes'),(130,'theme_mods_jeo','a:1:{i:0;b:0;}','yes'),(131,'theme_switched','','yes'),(132,'rewrite_rules','a:110:{s:6:\"embed$\";s:25:\"index.php?jeo_map_embed=1\";s:7:\"maps/?$\";s:23:\"index.php?post_type=map\";s:37:\"maps/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?post_type=map&feed=$matches[1]\";s:32:\"maps/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?post_type=map&feed=$matches[1]\";s:24:\"maps/page/([0-9]{1,})/?$\";s:41:\"index.php?post_type=map&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:30:\"maps/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"maps/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"maps/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"maps/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"maps/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:23:\"maps/(.+?)/trackback/?$\";s:30:\"index.php?map=$matches[1]&tb=1\";s:43:\"maps/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?map=$matches[1]&feed=$matches[2]\";s:38:\"maps/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?map=$matches[1]&feed=$matches[2]\";s:31:\"maps/(.+?)/page/?([0-9]{1,})/?$\";s:43:\"index.php?map=$matches[1]&paged=$matches[2]\";s:38:\"maps/(.+?)/comment-page-([0-9]{1,})/?$\";s:43:\"index.php?map=$matches[1]&cpage=$matches[2]\";s:23:\"maps/(.+?)(/[0-9]+)?/?$\";s:42:\"index.php?map=$matches[1]&page=$matches[2]\";s:34:\"mapgroup/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"mapgroup/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"mapgroup/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"mapgroup/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"mapgroup/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"mapgroup/(.+?)/trackback/?$\";s:36:\"index.php?map-group=$matches[1]&tb=1\";s:35:\"mapgroup/(.+?)/page/?([0-9]{1,})/?$\";s:49:\"index.php?map-group=$matches[1]&paged=$matches[2]\";s:42:\"mapgroup/(.+?)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?map-group=$matches[1]&cpage=$matches[2]\";s:27:\"mapgroup/(.+?)(/[0-9]+)?/?$\";s:48:\"index.php?map-group=$matches[1]&page=$matches[2]\";s:39:\"marker-icon/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"marker-icon/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"marker-icon/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"marker-icon/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"marker-icon/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"marker-icon/([^/]+)/trackback/?$\";s:38:\"index.php?marker-icon=$matches[1]&tb=1\";s:40:\"marker-icon/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?marker-icon=$matches[1]&paged=$matches[2]\";s:47:\"marker-icon/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?marker-icon=$matches[1]&cpage=$matches[2]\";s:32:\"marker-icon/([^/]+)(/[0-9]+)?/?$\";s:50:\"index.php?marker-icon=$matches[1]&page=$matches[2]\";s:28:\"marker-icon/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"marker-icon/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"marker-icon/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"marker-icon/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"marker-icon/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$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:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(156,'recently_activated','a:0:{}','yes'),(157,'_site_transient_timeout_available_translations','1431427857','yes'),(158,'_site_transient_available_translations','a:56:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 23:59:50\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-02 03:57:09\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-25 18:55:51\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-07 03:35:18\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-02 22:25:58\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-10 21:13:03\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-28 16:15:15\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-25 13:39:01\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-24 16:03:38\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-04 19:47:01\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.0/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-09 07:24:11\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-09 12:34:46\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-29 17:08:38\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-05 17:37:43\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.0/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 15:20:27\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.5/haz.zip\";s:3:\"iso\";a:1:{i:2;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-05 19:38:26\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-26 14:13:46\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-07 06:15:06\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-09 09:33:07\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-10 09:37:46\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-30 06:14:18\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 22:23:52\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-04 08:01:04\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-11 07:21:46\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-09 10:19:58\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.2.2/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-09 10:15:05\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.5/ps.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ps\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-27 09:25:14\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-27 14:23:25\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-07 07:47:41\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-08 10:26:50\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 16:25:46\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-05 22:47:02\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 16:55:54\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-11 15:48:32\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-29 07:03:07\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 16:45:38\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-28 16:44:31\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-29 06:37:03\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','yes'),(159,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(160,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(161,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(163,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(423,'_transient_timeout_mp_268fa9f9705801d70adea30953825445','1431986636','no'),(424,'_transient_mp_268fa9f9705801d70adea30953825445','{\"type\":\"FeatureCollection\",\"features\":[{\"type\":\"Feature\",\"properties\":{\"id\":\"post-1\",\"postID\":1,\"title\":\"Hello world!\",\"date\":\"05\\/11\\/2015\",\"url\":\"http:\\/\\/46.101.48.242\\/2015\\/05\\/11\\/hello-world\\/\",\"bubble\":\"<small>05\\/11\\/2015<\\/small>\\n<h4>Hello world!<\\/h4>\",\"marker\":null,\"class\":\"post-1 type-post status-publish format-standard hentry category-uncategorized\",\"range_slider_property\":1431330257}}]}','no'),(457,'_site_transient_timeout_browser_dd6692949e0d9294737c50b22227942a','1432623993','yes'),(458,'_site_transient_browser_dd6692949e0d9294737c50b22227942a','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:5:\"8.0.6\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(459,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1432062397','no'),(460,'_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:\"Fri, 08 May 2015 10:20: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:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=4.3-alpha-32508\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.2.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/05/wordpress-4-2-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2015/05/wordpress-4-2-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 May 2015 02:24:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3718\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress 4.2.2 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Version 4.2.2 addresses two security issues: The Genericons icon font package, which is used in a number of popular themes and plugins, contained an HTML file vulnerable to a cross-site […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Samuel Sidler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3194:\"<p>WordPress 4.2.2 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>Version 4.2.2 addresses two security issues:</p>\n<ul>\n<li>The Genericons icon font package, which is used in a number of popular themes and plugins, contained an HTML file vulnerable to a cross-site scripting attack. All affected themes and plugins hosted on <a href=\"https://wordpress.org/\">WordPress.org</a> (including the Twenty Fifteen default theme) have been updated today by the WordPress security team to address this issue by removing this nonessential file. To help protect other Genericons usage, WordPress 4.2.2 proactively scans the wp-content directory for this HTML file and removes it. Reported by Robert Abela of <a href=\"http://netsparker.com\">Netsparker</a>.</li>\n<li>WordPress versions 4.2 and earlier are affected by a <a href=\"https://wordpress.org/news/2015/04/wordpress-4-2-1/\">critical cross-site scripting vulnerability</a>, which could enable anonymous users to compromise a site. WordPress 4.2.2 includes a comprehensive fix for this issue. Reported separately by Rice Adu and Tong Shi.</li>\n</ul>\n<p>The release also includes hardening for a potential cross-site scripting vulnerability when using the visual editor. This issue was reported by Mahadev Subedi.</p>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.2 also contains fixes for 13 bugs from 4.2. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.2\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=32418&stop_rev=32324\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.2.2.</p>\n<p>Thanks to everyone who contributed to 4.2.2:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Mike Adams</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/taka2\">taka2</a>, and <a href=\"https://profiles.wordpress.org/willstedt\">willstedt</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/05/wordpress-4-2-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.2.1 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/04/wordpress-4-2-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2015/04/wordpress-4-2-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Apr 2015 18:34:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3706\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:366:\"WordPress 4.2.1 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. A few hours ago, the WordPress team was made aware of a cross-site scripting vulnerability, which could enable commenters to compromise a site. The vulnerability was discovered by Jouko Pynnönen. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1010:\"<p>WordPress 4.2.1 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>A few hours ago, the WordPress team was made aware of a cross-site scripting vulnerability, which could enable commenters to compromise a site. The vulnerability was discovered by <a href=\"http://klikki.fi/\">Jouko Pynnönen</a>.</p>\n<p>WordPress 4.2.1 has begun to roll out as an automatic background update, for sites that <a href=\"https://wordpress.org/plugins/background-update-tester/\">support</a> those.</p>\n<p>For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=32311&stop_rev=32300\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/04/wordpress-4-2-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:26:\"WordPress 4.2 “Powell”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2015/04/powell/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/04/powell/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Apr 2015 18:35:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3642\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:343:\"Version 4.2 of WordPress, named “Powell” in honor of jazz pianist Bud Powell, is available for download or update in your WordPress dashboard. New features in 4.2 help you communicate and share, globally. An easier way to share content Clip it, edit it, publish it. Get familiar with the new and improved Press This. From […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:29434:\"<p>Version 4.2 of WordPress, named “Powell” in honor of jazz pianist <a href=\"https://en.wikipedia.org/wiki/Bud_Powell\">Bud Powell</a>, is available for <a href=\"https://wordpress.org/download/\">download</a> or update in your WordPress dashboard. New features in 4.2 help you communicate and share, globally.</p>\n<div id=\"v-e9kH4FzP-1\" class=\"video-player\"><embed id=\"v-e9kH4FzP-1-video\" src=\"https://v0.wordpress.com/player.swf?v=1.04&guid=e9kH4FzP&isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" title=\"Introducing WordPress 4.2 "Powell"\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<hr />\n<h2 style=\"text-align: center\">An easier way to share content</h2>\n<p><img class=\"alignnone size-full wp-image-3677\" src=\"https://wordpress.org/news/files/2015/04/4.2-press-this-2.jpg\" alt=\"Press This\" width=\"1000\" height=\"832\" />Clip it, edit it, publish it. Get familiar with the new and improved Press This. From the Tools menu, add Press This to your browser bookmark bar or your mobile device home screen. Once installed you can share your content with lightning speed. Sharing your favorite videos, images, and content has never been this fast or this easy.</p>\n<hr />\n<h2 style=\"text-align: center\">Extended character support</h2>\n<p><img class=\"alignnone size-full wp-image-3676\" src=\"https://wordpress.org/news/files/2015/04/4.2-characters.png\" alt=\"Character support for emoji, special characters\" width=\"1000\" height=\"832\" />Writing in WordPress, whatever your language, just got better. WordPress 4.2 supports a host of new characters out-of-the-box, including native Chinese, Japanese, and Korean characters, musical and mathematical symbols, and hieroglyphs.</p>\n<p>Don’t use any of those characters? You can still have fun — emoji are now available in WordPress! Get creative and decorate your content with <img src=\"https://s.w.org/images/core/emoji/72x72/1f499.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />, <img src=\"https://s.w.org/images/core/emoji/72x72/1f438.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />, <img src=\"https://s.w.org/images/core/emoji/72x72/1f412.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />, <img src=\"https://s.w.org/images/core/emoji/72x72/1f355.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />, and all the many other <a href=\"https://codex.wordpress.org/Emoji\">emoji</a>.</p>\n<hr />\n<div><img class=\"alignright size-medium wp-image-3656\" src=\"https://wordpress.org/news/files/2015/04/4.2-theme-switcher-300x230.png\" alt=\"Customizer theme switcher\" width=\"288\" height=\"221\" /></p>\n<h3>Switch themes in the Customizer</h3>\n<p>Browse and preview your installed themes from the Customizer. Make sure the theme looks great with your content, before it debuts on your site.</p>\n</div>\n<div style=\"clear: both\"></div>\n<div><img class=\"alignright size-medium wp-image-3653\" src=\"https://wordpress.org/news/files/2015/04/4.2-embeds-300x230.png\" alt=\"Tumbr.com oEmbed example\" width=\"288\" height=\"221\" /></p>\n<h3>Even more embeds</h3>\n<p>Paste links from Tumblr.com and Kickstarter and watch them magically appear right in the editor. With every release, your publishing and editing experience get closer together.</p>\n</div>\n<div style=\"clear: both\"></div>\n<div>\n<p><img class=\"alignright size-medium wp-image-3654\" src=\"https://wordpress.org/news/files/2015/04/4.2-plugins-300x230.png\" alt=\"Inline plugin updates\" width=\"288\" height=\"221\" /></p>\n<h3>Streamlined plugin updates</h3>\n<p>Goodbye boring loading screen, hello smooth and simple plugin updates. Click <em>Update Now</em> and watch the magic happen.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<h2 style=\"text-align: center\">Under the Hood</h2>\n<h5>utf8mb4 support</h5>\n<p>Database character encoding has changed from utf8 to utf8mb4, which adds support for a whole range of new 4-byte characters.</p>\n<h5>JavaScript accessibility</h5>\n<p>You can now send audible notifications to screen readers in JavaScript with <code>wp.a11y.speak()</code>. Pass it a string, and an update will be sent to a dedicated ARIA live notifications area.</p>\n<h5>Shared term splitting</h5>\n<p>Terms shared across multiple taxonomies will be split when one of them is updated. Find out more in the <a href=\"https://developer.wordpress.org/plugins/taxonomy/working-with-split-terms-in-wp-4-2/\">Plugin Developer Handbook</a>.</p>\n<h5>Complex query ordering</h5>\n<p><code>WP_Query</code>, <code>WP_Comment_Query</code>, and <code>WP_User_Query</code> now support complex ordering with named meta query clauses.</p>\n<hr />\n<h2 style=\"text-align: center\">The Team</h2>\n<p><a class=\"alignleft\" href=\"https://profiles.wordpress.org/drewapicture\"><img src=\"https://www.gravatar.com/avatar/95c934fa2c3362794bf62ff8c59ada08?d=mm&s=150&r=G\" alt=\"Drew Jaynes\" width=\"90\" height=\"90\" /></a>This release was led by <a href=\"http://werdswords.com\">Drew Jaynes</a>, with the help of these fine individuals. There are 283 contributors with props in this release, a new high. Pull up some Bud Powell on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/mercime\">@mercime</a>, <a href=\"https://profiles.wordpress.org/a5hleyrich\">A5hleyRich</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abhishekfdd\">abhishekfdd</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/alexkingorg\">Alex King</a>, <a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>, <a href=\"https://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/awbauer\">Andrew Bauer</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/norcross\">Andrew Norcross</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ankitgadertcampcom\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/aramzs\">Aram Zucker-Scharff</a>, <a href=\"https://profiles.wordpress.org/arminbraun\">ArminBraun</a>, <a href=\"https://profiles.wordpress.org/ashfame\">Ashfame</a>, <a href=\"https://profiles.wordpress.org/filosofo\">Austin Matzko</a>, <a href=\"https://profiles.wordpress.org/avryl\">avryl</a>, <a href=\"https://profiles.wordpress.org/barrykooij\">Barry Kooij</a>, <a href=\"https://profiles.wordpress.org/beaulebens\">Beau Lebens</a>, <a href=\"https://profiles.wordpress.org/bendoh\">Ben Doherty (Oomph, Inc)</a>, <a href=\"https://profiles.wordpress.org/bananastalktome\">Billy Schneider</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bswatson\">Brian Watson</a>, <a href=\"https://profiles.wordpress.org/calevans\">CalEvans</a>, <a href=\"https://profiles.wordpress.org/carolinegeven\">carolinegeven</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/cdog\">Catalin Dogaru</a>, <a href=\"https://profiles.wordpress.org/chipbennett\">Chip Bennett</a>, <a href=\"https://profiles.wordpress.org/chipx86\">chipx86</a>, <a href=\"https://profiles.wordpress.org/chrico\">ChriCo</a>, <a href=\"https://profiles.wordpress.org/cbaldelomar\">Chris Baldelomar</a>, <a href=\"https://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"https://profiles.wordpress.org/cfoellmann\">Christian Foellmann</a>, <a href=\"https://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/clifgriffin\">Clifton Griffin</a>, <a href=\"https://profiles.wordpress.org/codix\">Code Master</a>, <a href=\"https://profiles.wordpress.org/corphi\">Corphi</a>, <a href=\"https://profiles.wordpress.org/couturefreak\">Courtney Ivey</a>, <a href=\"https://profiles.wordpress.org/craig-ralston\">Craig Ralston</a>, <a href=\"https://profiles.wordpress.org/cweiske\">cweiske</a>, <a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/timersys\">Damian</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/dkotter\">Darin Kotter</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/dmchale\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/davideugenepratt\">davideugenepratt</a>, <a href=\"https://profiles.wordpress.org/davidhamiltron\">davidhamiltron</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/dsmart\">Derek Smart</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipesh.kakadiya</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/doublesharp\">doublesharp</a>, <a href=\"https://profiles.wordpress.org/dzerycz\">DzeryCZ</a>, <a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>, <a href=\"https://profiles.wordpress.org/emazovetskiy\">e.mazovetskiy</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/cais\">Edward Caissie</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elliottcarlson\">elliottcarlson</a>, <a href=\"https://profiles.wordpress.org/enej\">enej</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/evansolomon\">Evan Solomon</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/fhwebcs\">fhwebcs</a>, <a href=\"https://profiles.wordpress.org/floriansimeth\">Florian Simeth</a>, <a href=\"https://profiles.wordpress.org/bueltge\">Frank Bueltge</a>, <a href=\"https://profiles.wordpress.org/frankpw\">Frank P. Walentynowicz</a>, <a href=\"https://profiles.wordpress.org/f-j-kaiser\">Franz Josef Kaiser</a>, <a href=\"https://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geertdd\">Geert De Deckere</a>, <a href=\"https://profiles.wordpress.org/genkisan\">genkisan</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/webord\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"https://profiles.wordpress.org/harishchaudhari\">Harish Chaudhari</a>, <a href=\"https://profiles.wordpress.org/hauvong\">hauvong</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/herbmillerjr\">herbmillerjr</a>, <a href=\"https://profiles.wordpress.org/hew\">Hew</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/horike\">horike</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jacklenox\">Jack Lenox</a>, <a href=\"https://profiles.wordpress.org/jamescollins\">James Collins</a>, <a href=\"https://profiles.wordpress.org/janhenckens\">janhenckens</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">jipmoors</a>, <a href=\"https://profiles.wordpress.org/jartes\">Joan Artes</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/yo-l1982\">Joel Bernerman</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johneckman\">John Eckman</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/jlevandowski\">John Levandowski</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joostdekeijzer\">joost de keijzer</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jcastaneda\">Jose Castaneda</a>, <a href=\"https://profiles.wordpress.org/joshlevinson\">Josh Levinson</a>, <a href=\"https://profiles.wordpress.org/jphase\">jphase</a>, <a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/justincwatt\">Justin Watt</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kevdotbadger\">Kevin Ruscoe</a>, <a href=\"https://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/mindrun\">Leonard</a>, <a href=\"https://profiles.wordpress.org/leopeo\">Leonardo Giacone</a>, <a href=\"https://profiles.wordpress.org/lgladdy\">Liam Gladdy</a>, <a href=\"https://profiles.wordpress.org/maimairel\">maimairel</a>, <a href=\"https://profiles.wordpress.org/mako09\">Mako</a>, <a href=\"https://profiles.wordpress.org/funkatronic\">Manny Fleurmond</a>, <a href=\"https://profiles.wordpress.org/marcelomazza\">marcelomazza</a>, <a href=\"https://profiles.wordpress.org/marcochiesi\">Marco Chiesi</a>, <a href=\"https://profiles.wordpress.org/mkaz\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/nofearinc\">Mario Peshev</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius (Clorith)</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/senff\">Mark Senff</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/mgibbs189\">Matt Gibbs</a>, <a href=\"https://profiles.wordpress.org/sivel\">Matt Martz</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mzak\">Matt Zak</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattheweppelsheimer\">Matthew Eppelsheimer</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/mehulkaklotar\">mehulkaklotar</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/meloniq\">meloniq</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/tw2113\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/thaicloud\">Mike Jordan</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"https://profiles.wordpress.org/mikengarrett\">MikeNGarrett</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"https://profiles.wordpress.org/mmn-o\">mmn-o</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/momdad\">MomDad</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/morpheu5\">Morpheu5</a>, <a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nathan_dawson\">nathan_dawson</a>, <a href=\"https://profiles.wordpress.org/neil_pie\">Neil Pie</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nicnicnicdevos\">nicnicnicdevos</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/ninnypants\">ninnypants</a>, <a href=\"https://profiles.wordpress.org/nitkr\">nitkr</a>, <a href=\"https://profiles.wordpress.org/nunomorgadinho\">Nuno Morgadinho</a>, <a href=\"https://profiles.wordpress.org/originalexe\">OriginalEXE</a>, <a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>, <a href=\"https://profiles.wordpress.org/pathawks\">Pat Hawks</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulschreiber\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/petemall\">Pete Mall</a>, <a href=\"https://profiles.wordpress.org/gungeekatx\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/podpirate\">podpirate</a>, <a href=\"https://profiles.wordpress.org/postpostmodern\">postpostmodern</a>, <a href=\"https://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>, <a href=\"https://profiles.wordpress.org/prasoon2211\">prasoon2211</a>, <a href=\"https://profiles.wordpress.org/cyman\">Primoz Cigler</a>, <a href=\"https://profiles.wordpress.org/r-a-y\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulbhangale\">rahulbhangale</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>, <a href=\"https://profiles.wordpress.org/ravindra-pal-singh\">Ravindra Pal Singh</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/ritteshpatel\">Ritesh Patel</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/rmarks\">Ryan Marks</a>, <a href=\"https://profiles.wordpress.org/sagarjadhav\">sagarjadhav</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samo9789\">samo9789</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sgrant\">Scott Grant</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scottgonzalez\">scott.gonzalez</a>, <a href=\"https://profiles.wordpress.org/greglone\">ScreenfeedFr</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sergejmueller\">Sergej Muller</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sevenspark\">sevenspark</a>, <a href=\"https://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/sippis\">sippis</a>, <a href=\"https://profiles.wordpress.org/slobodanmanic\">Slobodan Manic</a>, <a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevehickeydesign\">stevehickeydesign</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/taka2\">taka2</a>, <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/hissy\">Takuro Hishikawa</a>, <a href=\"https://profiles.wordpress.org/themiked\">theMikeD</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/ipm-frommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tillkruess\">Till</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tiqbiz\">tiqbiz</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tmeister\">tmeister</a>, <a href=\"https://profiles.wordpress.org/tschutter\">Tobias Schutter</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">trishasalas</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/uamv\">UaMV</a>, <a href=\"https://profiles.wordpress.org/desaiuditd\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/sorich87\">Ulrich Sossou</a>, <a href=\"https://profiles.wordpress.org/veritaserum\">Veritaserum</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/volodymyrc\">VolodymyrC</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/welcher\">welcher</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/willstedt\">willstedt</a>, and <a href=\"https://profiles.wordpress.org/wordpressorru\">WordPressor</a>.\n<p style=\"margin-top: 22px\">Special thanks go to <a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a> for producing the release video and <a href=\"http://camikaos.com/\">Cami Kaos</a> for the voice-over.</p>\n<p>Finally, thanks to all of the contributors who provided subtitles for the release video, which at last count had been translated into 30 languages!</p>\n<p><a href=\"https://profiles.wordpress.org/adrianpop\">Adrian Pop</a>, <a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>, <a href=\"https://profiles.wordpress.org/bagerathan\">Bagerathan Sivarajah</a>, <a href=\"https://profiles.wordpress.org/besnik\">Besnik</a>, <a href=\"https://profiles.wordpress.org/bjornjohansen\">Bjørn Johansen</a>, Chantal Coolsma, <a href=\"https://profiles.wordpress.org/cubells\">cubells</a>, Daisuke Takahashi, <a href=\"https://profiles.wordpress.org/dianakc\">Diana K. Cury</a>, <a href=\"https://profiles.wordpress.org/djzone\">DjZoNe</a>, <a href=\"https://profiles.wordpress.org/dyrer\">dyrer</a>, <a href=\"https://profiles.wordpress.org/semblance\">Elzette Roelofse</a>, <a href=\"https://profiles.wordpress.org/wordpress-tr\">Emre Erkan</a>, <a href=\"https://profiles.wordpress.org/fxbenard\">fxbenard</a>, <a href=\"https://profiles.wordpress.org/tacoverdo\">TacoVerdo</a>, <a href=\"https://profiles.wordpress.org/gabriel-reguly\">Gabriel Reguly</a>, <a href=\"https://profiles.wordpress.org/miss_jwo\">Jenny Wong</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/hgmb\">Håvard Grimelid</a>, <a href=\"https://profiles.wordpress.org/intoxstudio\">Joachim Jensen</a>, <a href=\"https://profiles.wordpress.org/jimmyxu\">Jimmy Xu</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/pokeraitis\">Justina</a>, <a href=\"https://profiles.wordpress.org/kenan3008/\">Kenan Dervisevic</a>, <a href=\"https://profiles.wordpress.org/kosvrouvas\">Kostas Vrouvas</a>, <a href=\"https://profiles.wordpress.org/eclare\">Krzysztof Trynkiewicz</a>, <a href=\"https://profiles.wordpress.org/goblindegook\">Luís Rodrigues</a>, <a href=\"https://profiles.wordpress.org/luisrull\">Luis Rull</a>, <a href=\"https://profiles.wordpress.org/culturemark\">Mark Thomas Gazel </a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/matthee\">matthee</a>, <a href=\"https://profiles.wordpress.org/damst\">Mattias Tengblad</a>, Matúš Záhradník, Mayuko Moriyama, <a href=\"https://profiles.wordpress.org/michalvittek\">Michal Vittek</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mrshemek\">MrShemek</a>, <a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/peterhoob\">Peter Holme Obrestad</a>, <a href=\"https://profiles.wordpress.org/petya\">Petya Raykovska</a>, Przemysław Mirota, <a href=\"https://profiles.wordpress.org/qraczek\">qraczek</a>, <a href=\"https://profiles.wordpress.org/bi0xid\">Rafa Poveda</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rasheed\">Rasheed Bydousi</a>, <a href=\"https://profiles.wordpress.org/gwgan\">Rhoslyn Prys</a>, <a href=\"https://profiles.wordpress.org/robee\">Robert Axelsen</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/siobhyb\">Siobhan Bamber</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/tohave\">ک To Have داشتن</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/egalego\">Victor J. Quesada</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly</a>, <a href=\"https://profiles.wordpress.org/xavivars\">Xavi Ivars</a>, <a href=\"https://profiles.wordpress.org/xibe\">Xavier Borderie</a></p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.3!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/news/2015/04/powell/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.1.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/04/wordpress-4-1-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2015/04/wordpress-4-1-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Apr 2015 13:44:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3628\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:383:\"WordPress 4.1.2 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.1.1 and earlier are affected by a critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. This was reported by Cedric Van Bockhaven and fixed by […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3913:\"<p>WordPress 4.1.2 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.1.1 and earlier are affected by a critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. This was reported by <a href=\"https://cedricvb.be\">Cedric Van Bockhaven</a> and fixed by <a href=\"http://pento.net/\">Gary Pendergast</a>, <a href=\"http://blogwaffe.com/\">Mike Adams</a>, and <a href=\"http://nacin.com/\">Andrew Nacin</a> of the WordPress security team.</p>\n<p>We also fixed three other security issues:</p>\n<ul>\n<li>In WordPress 4.1 and higher, files with invalid or unsafe names could be uploaded. Discovered by <a href=\"http://HSASec.de\">Michael Kapfer and Sebastian Kraemer of HSASec</a>.</li>\n<li>In WordPress 3.9 and higher, a very limited cross-site scripting vulnerability could be used as part of a social engineering attack. Discovered by <a href=\"http://zoczus.blogspot.com/\">Jakub Zoczek</a>.</li>\n<li>Some plugins were vulnerable to an SQL injection vulnerability. Discovered by Ben Bidner of the WordPress security team.</li>\n</ul>\n<p>We also made four hardening changes, discovered by <a href=\"http://codesymphony.co/\">J.D. Grimes</a>, Divyesh Prajapati, <a href=\"http://www.allancollins.net/\">Allan Collins</a>, <a href=\"https://sucuri.net/\">Marc-Alexandre Montpas</a> and <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>.</p>\n<p>We appreciated the <a href=\"https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/\">responsible disclosure</a> of these issues directly to our security team. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.1.2\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.1?rev=32234&stop_rev=32144\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.1.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.1.2.</p>\n<p>Thanks to everyone who contributed to 4.1.2: <a href=\"https://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a>, <a href=\"https://profiles.wordpress.org/boonbgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/DrewAPicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, and <a href=\"https://profiles.wordpress.org/mdawaffe\">Mike Adams</a>.</p>\n<p>A number of plugins also released security fixes yesterday. Keep everything updated to stay secure. If you’re a plugin author, please read <a href=\"https://make.wordpress.org/plugins/2015/04/20/fixing-add_query_arg-and-remove_query_arg-usage/\">this post</a> to confirm that your plugin is not affected by the same issue. Thank you to all of the plugin authors who worked closely with our security team to ensure a coordinated response.</p>\n<p><em>Already testing WordPress 4.2? The third release candidate is now available (<a href=\"https://wordpress.org/wordpress-4.2-RC3.zip\">zip</a>) and it contains these fixes. For more on 4.2, see <a href=\"https://wordpress.org/news/2015/04/wordpress-4-2-release-candidate/\">the RC 1 announcement post</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/04/wordpress-4-1-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:31:\"WordPress 4.2 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2015/04/wordpress-4-2-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2015/04/wordpress-4-2-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Apr 2015 19:07:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3609\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:334:\"The release candidate for WordPress 4.2 is now available. We’ve made more than 140 changes since releasing Beta 4 a week and a half ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.2 on Wednesday, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Drew Jaynes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2328:\"<p>The release candidate for WordPress 4.2 is now available.</p>\n<p>We’ve made more than <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=32136&stop_rev=31996&limit=100\">140 changes</a> since releasing Beta 4 a week and a half ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.2 on <strong>Wednesday, April 22</strong>, but we need your help to get there.</p>\n<p>If you haven’t tested 4.2 yet, now is the time! (Please though, not on your live site unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.2 RC1, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.2-RC1.zip\">download the release candidate here</a> (zip). </p>\n<p>For more information about what’s new in version 4.2, check out the <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2015/04/wordpress-4-2-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.2 and update your plugin’s <em>Tested up to</em> version in the readme to 4.2 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href=\"https://make.wordpress.org/core/\">follow along the core development blog</a>, where we’ll continue to post <a href=\"https://make.wordpress.org/core/tag/4-2-dev-notes/\">notes for developers</a> for 4.2.</p>\n<p><em>Im-Press-ive saving</em><br />\n<em>Achievement unlocked: RC</em><br />\n<em>Release here we come</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2015/04/wordpress-4-2-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Improvements to WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/04/improvements-to-wordpress-org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wordpress.org/news/2015/04/improvements-to-wordpress-org/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 04 Apr 2015 20:19:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Meta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3494\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:335:\"If you visit WordPress.org regularly you might have noticed some changes around the place. If you don’t, now’s the time to check them out! We’ve been working hard to improve the site to make it more useful to everyone, both developers and users, and we hope you like what we’ve done. New Theme and Plugin Directories […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Samuel Sidler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5551:\"<p>If you visit WordPress.org regularly you might have noticed some changes around the place. If you don’t, now’s the time to check them out! We’ve been working hard to improve the site to make it more useful to everyone, both developers and users, and we hope you like what we’ve done.</p>\n<h2>New Theme and Plugin Directories</h2>\n<p>Since WordPress 3.8, you’ve been enjoying improved theme management in your WordPress admin, and in WordPress 4.0 plugin management was refined. We’ve brought these experiences from your admin and re-created them right here on WordPress.org.</p>\n<h3>Theme Directory</h3>\n<p>The <a href=\"https://wordpress.org/themes/\">Theme Directory</a> has a better browsing experience, with handy tabs where you can view featured, popular, and the latest themes. As with the theme experience in your admin, you can use the feature filter to browse for just the right theme for your WordPress website.</p>\n<p><img class=\"alignnone size-large wp-image-3572\" src=\"https://wordpress.org/news/files/2015/04/theme-directory-1024x768.png\" alt=\"theme-directory\" width=\"692\" height=\"519\" /></p>\n<p>Click on a theme to get more information about it, including shiny screenshots, ratings, and statistics.</p>\n<p><img class=\"alignnone size-large wp-image-3573\" src=\"https://wordpress.org/news/files/2015/04/theme-directory-individual-1024x768.png\" alt=\"theme-directory-individual\" width=\"692\" height=\"519\" /></p>\n<p>Konstantin Obenland <a href=\"https://make.wordpress.org/meta/2015/03/10/new-theme-directory/\">posted a good overview</a> of everything involved with the theme directory overhaul and followed up with <a href=\"https://make.wordpress.org/meta/2015/03/31/theme-directory-stats/\">a post on improved statistics</a>.</p>\n<h3>Plugin Directory</h3>\n<p>The <a href=\"https://wordpress.org/plugins/\">Plugin Directory</a> has a brand new theme that mirrors the experience in your WordPress admin, with a more visual experience, and better search and statistics.</p>\n<p><img class=\"alignnone size-large wp-image-3594\" src=\"https://wordpress.org/news/files/2015/04/plugin-directory-1024x768.png\" alt=\"plugin-directory\" width=\"692\" height=\"519\" /></p>\n<p>As well as a facelift, there are some great new features for you to play around with:</p>\n<ul>\n<li>Favorites – when you’re logged in to you WordPress.org account, this page gives you direct access to the plugins that you have favorited.</li>\n<li>Beta Testing – try out plugins where developers are experimenting with new features for WordPress.</li>\n<li>Search by plugin author – you can search for a plugin author using their username.</li>\n<li>Better statistics – listings now display the number of active installs so you can see how many people are actually using a plugin.</li>\n</ul>\n<p>An <a href=\"https://make.wordpress.org/meta/2015/03/04/new-plugin-directory-theme/\">overview of the new theme</a> was posted by Scott Reilly.</p>\n<h2>Better Statistics</h2>\n<p>We’ve made huge improvements to <a href=\"https://wordpress.org/about/stats/\">our statistics</a>. This gives us more useful information about the WordPress versions people are using, their PHP version, and their MySQL version.</p>\n<p>Already these new statistics have provided us with useful insights into WordPress usage.</p>\n<ul>\n<li>More than 43% of all sites are running the latest version of WordPress. Previously, we thought only 10% of sites were up-to-date. By excluding sites that are no longer online we were able to improve these statistics.</li>\n<li>We were able to clear up the data around WordPress 3.0, bringing it more in line with expectations. This anomaly was a by-product of spammers.</li>\n<li>Only 15.9% of sites are using PHP 5.2, which is better than we thought.</li>\n</ul>\n<p>Over the coming months we’ll be able to use these statistics to bring you new tools and improvements, and to make more informed decisions across the board. Read <a href=\"https://make.wordpress.org/meta/2015/03/01/major-update-to-our-version-stats-for-php-mysql-and-wordpress/\">Andrew Nacin’s post about these changes</a> for more background.</p>\n<h2>Thanks!</h2>\n<p>Thanks to everyone who contributed to the theme directory redesign, the plugin directory refresh, and improved statistics: <a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>, <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/mj12982\">Jan Cavan Boulas</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/BrashRebel\">Kyle Maurer</a>, <a href=\"https://profiles.wordpress.org/matveb\">Matías Ventura</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/nataliemac\">Natalie MacLees</a>, <a href=\"https://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/Otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan McKeown</a>.</p>\n<p>If you want to help out or follow along with future WordPress.org projects, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/meta/\">meta development blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2015/04/improvements-to-wordpress-org/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.2 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/04/wordpress-4-2-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/04/wordpress-4-2-beta-4/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Apr 2015 13:05:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3566\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 4.2 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Drew Jaynes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2694:\"<p>WordPress 4.2 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.2-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.2, check out the <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/\">Beta 3</a> blog posts. Some of the changes in Beta 4 include:</p>\n<ul>\n<li>Incrementally improved the experience when <strong>accessing the Customizer on mobile</strong>. Please test on your mobile devices and let us know if anything seems wonky.</li>\n<li>Added the ability to make <strong>admin notices dismissible</strong>. Plugin and theme authors: adding <code>.notice</code> and <code>.is-dismissible</code> as adjacent classes to your notice containers should automatically make them dismissible. Please test.</li>\n<li>Fixed some reported issues with <strong>backward-compatibility issues</strong> caused by the modularization of core JS files.</li>\n<li>Removed the <strong>ability to swipe the admin menu open and closed</strong> on touch devices due to reports of some issues with built-in history navigation on certain platforms.</li>\n<li>Improved <strong>accessibility of the WordPress admin</strong> by adding landmark roles. Screen reader users: please test in any core admin screens.</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=31996&stop_rev=31902&limit=100\">more than 90 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.2\">everything we’ve fixed</a>.</p>\n<p><em>Dismiss notices</em><br />\n<em>Customizer on mobile</em><br />\n<em>RC nearly here</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/04/wordpress-4-2-beta-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.2 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Mar 2015 18:32: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:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3522\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 4.2 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Drew Jaynes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2986:\"<p>WordPress 4.2 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.2-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.2, check out the <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/\">Beta 2</a> blog posts. Some of the changes in Beta 3 include:</p>\n<ul>\n<li>Removed <strong>Shiny Installs</strong> functionality due to concerns about the activation workflow. Please test the remaining “Shiny Updates” functionality from both the Plugins > Add New and Plugins screens to ensure in-line updating still works as well as before.</li>\n<li>Fixed an issue with the <strong>Comments Quick Edit</strong> layout breaking on smaller screens. Please test on your mobile devices.</li>\n<li>Improved <strong>accessibility of login screen errors</strong>. Screen reader users: please let us know if you encounter any issues.</li>\n<li>Refined the <strong>emoji compatibility</strong> script to only load on the front- and back-end if the browser requires it. If you’re using a legacy web browser, please test.</li>\n<li>Fixed several issues in <strong>Press This</strong> with inserted images being improperly linked to locations other than the source site. Go ahead, “press” a site with images on the page and tell us if the image links aren’t working as you’d expect.</li>\n<li>Standardized the <strong>time display format</strong> in a variety of admin screens, switching to 24-hour notation where a.m. or p.m. are not specified. Please let us know if you notice you notice anything amiss!</li>\n<li><strong>Various other bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=31901&stop_rev=31835&limit=100\">more than 65 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.2\">everything we’ve fixed</a>.</p>\n<p><em>Emoji loader</em><br />\n<em>“Shiny Updates” still stand firm</em><br />\n<em>Beta 3, please test!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.2 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Mar 2015 19:30:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3498\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 4.2 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Drew Jaynes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2326:\"<p>WordPress 4.2 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.2-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.2, <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/\">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Added support for entering FTP and SSH credentials when <strong>updating plugins in-place</strong>. FTP and SSH users, please test!</li>\n<li><strong>Improved cross-browser support for emoji</strong> throughout WordPress. If you’re using an older web browser, please tell us if you have problems using emoji.</li>\n<li>Further <strong>refined Press This authoring</strong> with auto-embedded media and better content scanning. We’d love to know how auto-embeds work for you.</li>\n<li>Added a constructor and improved method consistency in <code>WP_Comment_Query</code>. Developers: if you’re extending <code>WP_Comment_Query</code>, please let us know if you run into any issues.</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=31834&stop_rev=31763&limit=100\">more than 70 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.2\">everything we’ve fixed</a>.</p>\n<p><em>Test some emoji</em><br />\n<em>FTP and SSH</em><br />\n<em>Let’s “Press” some embeds!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.2 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Mar 2015 23:22: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3446\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.2 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Drew Jaynes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4275:\"<p>WordPress 4.2 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.2-beta1.zip\">download the beta here</a> (zip).</p>\n<p>4.2 is due out next month, but to get there, we need your help testing what we’ve been working on:</p>\n<ul>\n<li><strong>Press This</strong> has been completely revamped to make sharing content from around the web easier than ever. The new workflow is mobile friendly, and we’d love for you to try it out on all of your devices. Navigate to the Tools screen in your WordPress backend to get started (<a href=\"https://core.trac.wordpress.org/ticket/31373\">#31373</a>). </li>\n<li><strong>Browsing and switching installed themes</strong> has been added to the Customizer to make switching faster and more convenient. We’re especially interested to know if this helps streamline the process of setting up your site (<a href=\"https://core.trac.wordpress.org/ticket/31303\">#31303</a>).</li>\n<li>The workflow for <strong>updating and installing plugins</strong> just got more intuitive with the ability to install or update in-place from the Plugins screens. Try it out and let us know what you think! (<a href=\"https://core.trac.wordpress.org/ticket/29820\">#29820</a>)</li>\n<li>If you felt like <strong>emoji</strong> were starkly missing from your content toolbox, worry no more. We’ve added emoji support nearly everywhere, even post slugs <img src=\"https://s.w.org/images/core/emoji/72x72/1f44d.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> (<a href=\"https://core.trac.wordpress.org/ticket/31242\">#31242</a>).</li>\n</ul>\n<p><strong>Developers</strong>: There have been a lot of changes for you to test as well, including:</p>\n<ul>\n<li><strong>Taxonomy Roadmap:</strong> Terms shared across multiple taxonomies will <a href=\"https://make.wordpress.org/core/2015/02/16/taxonomy-term-splitting-in-4-2-a-developer-guide/\">now be split</a> into separate terms when one of them is updated. Please let us know if you hit any snags (<a href=\"https://core.trac.wordpress.org/ticket/5809/\">#5809</a>).</li>\n<li>New <code>wp.a11y.speak()</code> functionality helps your JavaScript talk to screen readers to better inform impaired users what’s happening on-screen. Try it out in your plugin or theme and let us know if you notice any adverse affects (<a href=\"https://core.trac.wordpress.org/ticket/31368/\">#31368</a>).</li>\n<li>Named clause support has been added to <code>WP_Query</code>, <code>WP_Comment_Query</code>, and <code>WP_User_Query</code>, allowing specific <code>meta_query</code> clauses to be used with <code>orderby</code>. If you have any complex queries, please test them (<a href=\"https://core.trac.wordpress.org/ticket/31045/\">#31045</a>, <a href=\"https://core.trac.wordpress.org/ticket/31265/\">#31265</a>).</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.2, <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.2\">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Press This: switch a theme</em><br />\n<em>Save time installing plugins</em><br />\n<em>Testing makes us</em> <img src=\"https://s.w.org/images/core/emoji/72x72/1f603.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s: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:\"Tue, 19 May 2015 07:06:36 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:10:\"x-pingback\";s:37:\"https://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Fri, 08 May 2015 10:20:09 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20130911040210\";}','no'),(461,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1432062397','no'),(462,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1432019197','no'),(463,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1432062398','no'),(464,'_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:38:\"Matt: How to Get Yourself to Do Things\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45054\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://ma.tt/2015/05/how-to-get-yourself-to-do-things/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:227:\"<p><a href=\"http://www.raptitude.com/2015/03/how-to-get-yourself-to-do-things/\">How to Get Yourself to Do Things</a>. Hat tip: <a href=\"https://alexjgustafson.wordpress.com/2015/04/04/ignore-stuff-and-do-a-thing/\">Alex</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 May 2015 05:16:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WPTavern: A WordPress Veteran’s Take on DrupalCon LA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43963\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wptavern.com/a-wordpress-veterans-take-on-drupalcon-la\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5746:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/MendelKurland.jpg\"><img class=\"alignright size-thumbnail wp-image-43970\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/MendelKurland.jpg?resize=150%2C150\" alt=\"Mendel Kurland\" /></a>This post was contributed by guest author <a href=\"https://mendel.me/\">Mendel Kurland</a>. Kurland is GoDaddy’s evangelist who travels to WordCamps and is the interface between various open source communities and GoDaddy.</p>\n<p>In the following post, Kurland shares his experience attending <a href=\"https://events.drupal.org/losangeles2015\">DrupalCon Los Angeles</a>, a large conference devoted to <a href=\"https://www.drupal.org/\">Drupal</a>.</p>\n<hr />\n<p>As I flew from DrupalCon Los Angeles, CA to <a href=\"https://mendel.me/events/wordcamp/wordcamp-maine-2015/\">WordCamp Maine</a>, I thought a lot about what the Drupal and WordPress communities could learn from each other. <a href=\"https://wordpress.org/\">WordPress</a> and Drupal are two community-built platforms and each community is powerful. We stand to learn a lot from each other, because<a href=\"https://mendel.me/articles/business/why-all-open-source-projects-matter/\"> all open source projects matter</a>.</p>\n<p>With an eye toward looking for the similarities, rather than the differences, both WordPress and Drupal are working to overcome similar obstacles including, brand recognition, threat mitigation, adoption, onboarding, contribution, the list goes on. So why did I go to <a href=\"https://events.drupal.org/losangeles2015\">DrupalCon LA</a>? To learn and give back to another community that’s steeped in collaborative culture.</p>\n<h2>The Experience</h2>\n<p>Thousands of people attended <a href=\"https://mendel.me/events/drupalcon/drupalcon-la/\">DrupalCon in Los Angeles</a> this year. It’s massive and the layout is similar to a large developer conference. There are sessions centered on technical, as well as business topics, and usually lively question and answer opportunities after each session. There’s a coder lounge, a contribution room, and a huge emphasis on contributing to coding sprints for the next release of Drupal, Drupal 8.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/DrupalConLA.png\"><img class=\"size-full wp-image-43971\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/DrupalConLA.png?resize=1024%2C683\" alt=\"DrupalCon LA\" /></a>Photo via <a href=\"https://mendel.me/events/drupalcon/drupalcon-la/#jp-carousel-16491\">Mendel</a>\n<h2>Leveling and Onboarding</h2>\n<p>Prior to the conference, DrupalCon had summits to help gather community members around a particular vertical or topic such as, higher education, community, business, and training sessions to help level-up skills based on experience.</p>\n<p>The theme of organizing around common interests is strong throughout the entire conference with<a href=\"https://events.drupal.org/losangeles2015/bofs/2015-05-12\"> birds of a feather sessions</a> and<a href=\"https://events.drupal.org/losangeles2015/events\"> topical social gatherings</a> with topics like,<a href=\"https://events.drupal.org/losangeles2015/women-drupal\"> women in Drupal</a> and<a href=\"https://events.drupal.org/losangeles2015/first-time-attendee-social\"> first time attendees</a>. When it comes to mobilizing around interest groups, Drupal does a brilliant job.</p>\n<h2>Comparing WordPress and Drupal</h2>\n<p>I’ve met a higher proportion of people who work on enterprise sites at DrupalCons and a higher proportion of people who work on small business sites at DrupalCamps, local conferences similar to WordCamps. There are some important lessons, however, that I took away from the Drupal community.</p>\n<h2><b>Lessons and Questions from DrupalCon</b></h2>\n<ul>\n<li>Onboarding starts with education. The Drupal community puts an emphasis on training at just about every event while only a handful of WordCamps offer a <strong>Foundation Friday</strong> or some other local onboarding event.</li>\n<li>Building community means valuing the same things and aligning along common interests. BoF (Birds of a Feather) sessions are a part of Drupal and other technical community conferences. There are certainly people with specific interests related to performance, security, women in WordPress, WP-CLI, etc. Should the WordPress community offer BoF sessions at WordCamps? Or are the existing <strong>tracks</strong> that many WordCamps offer enough?</li>\n<li>Networking with those who work in a similar vertical is important. Just as Drupal holds summits for particular verticals, the WordPress community is beginning to do the same with things like, <a href=\"https://miami.wordcamp.org/2015/announcing-buddycamp-miami-2015/\">BuddyCamp at WordCamp Miami</a>, <a href=\"http://conf.woocommerce.com/\">WooConf</a> (e-commerce), <a href=\"http://pressnomics.com/\">Pressnomics</a> (business), <a href=\"http://prestigeconf.com/\">Prestige</a> (business), <a href=\"https://loopconf.io/\">LoopConf</a> (developer). Can more be done at WordCamps?</li>\n</ul>\n<h2>It’s OK to Love Drupal Too</h2>\n<p>If you’re reading this article on the Tavern, you’re likely a WordPress loyalist. I love WordPress, and it’s also <strong>ok to love Drupal</strong>. They are both tools in an open source toolbox that we all share. The beauty of our opportunity as developers, designers, and creative professionals is our ability to create awesome things in a million different ways.</p>\n<p>In going to DrupalCon, it was refreshing for me to take a second to see the web development industry from another perspective. I’d love to hear your perspective in the comments <a href=\"https://twitter.com/ifyouwillit\">and on Twitter</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 May 2015 01:53:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Community, Translation, and Wapuu: How Japan is Shaping WordPress History\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43605\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/community-translation-and-wapuu-how-japan-is-shaping-wordpress-history\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16717:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wcsf-2014-japanese-community.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wcsf-2014-japanese-community.jpg?resize=1025%2C523\" alt=\"Japanese WordPress community representatives at WordCamp San Francisco 2014\" class=\"size-full wp-image-43923\" /></a>Japanese WordPress community representatives at WordCamp San Francisco 2014\n<p>Japanese WordPress users were some of the earliest to see the project’s potential and help bring the software to the non-English speaking world. At the end of 2003, just six months after Matt Mullenweg and Mike Little <a href=\"http://ma.tt/2003/01/the-blogging-software-dilemma/\" target=\"_blank\">decided to fork b2</a>, a Japanese version of WordPress was available.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/WordPress-ME.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/WordPress-ME.jpg?resize=748%2C299\" alt=\"WordPress-ME\" class=\"aligncenter size-full wp-image-43607\" /></a></p>\n<p>The version was originally called “WordPress ME” and was maintained by a user called <a href=\"https://profiles.wordpress.org/otsukare/\" target=\"_blank\">Otsukare</a>, whose <a href=\"http://web.archive.org/web/20040802092512/http://wordpress.xwd.jp/\" target=\"_blank\">translation notes</a> indicate that he believed WordPress would become “convenient and increasingly easy to use in the future.” This Japanese version corresponded with <a href=\"https://wordpress.org/news/2003/10/072-final-version-available/\" target=\"_blank\">WordPress 0.72</a>, as WordPress wouldn’t have internationalization support until version 1.2.</p>\n<p>Otsukare was instrumental in demonstrating the demand for translation for all languages with the popularity of his <a href=\"https://wordpress.org/support/topic/localization-help-needed\" target=\"_blank\">multilingual fork of WordPress</a>, which allowed easy modification via the use of a language file. It is rumored that this multilingual edition, along with discussions on the WordPress ME fourms, was influential in bringing <a href=\"https://codex.wordpress.org/Plugin_API/Filter_Reference/gettext\" target=\"_blank\">gettext</a> into WordPress.</p>\n<h2>Growing the Japanese WordPress Community Through Local Meetups</h2>\n<p>Over the past 11 years, local Japanese WordPress communities have grown steadily. <a href=\"https://profiles.wordpress.org/Nao\" target=\"_blank\">Naoko Takano</a>, who has been involved with the local community since 2003, attributes that growth to <a href=\"http://www.slideshare.net/naokomc/wordcamp-europe2013\" target=\"_blank\">consistent translation and a reliable release workflow</a>, managed by a dedicated Japanese package team.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/japanese-package-team.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/japanese-package-team.jpg?resize=625%2C247\" alt=\"japanese-package-team\" class=\"aligncenter size-full wp-image-43918\" /></a></p>\n<p>An organized system around translation and documentation were two key ingredients that helped germinate the early Japanese WordPress community, but local meetups were ultimately the catalyst for its massive growth.</p>\n<p><a href=\"https://www.flickr.com/search/?tags=wordcamptokyo2008\" target=\"_blank\">The first WordCamp Tokyo</a> was held in 2008 with 60 attendees. <a href=\"https://tokyo.wordcamp.org/\" target=\"_blank\">WordCamp Tokyo</a> today now pulls in 1200 – 1400 people, according to co-organizer <a href=\"https://profiles.wordpress.org/shinichin\" target=\"_blank\">Shinichi Nishikawa</a>. This event is larger than past editions of WordCamps Europe and San Francisco.</p>\n<p>Nishikawa reports that over the past seven years, Japan has hosted 15 WordCamps in Tokyo, Kyoto, Fukuoka, Yokohama Nagoyo, Kobe, and Osaka. <a href=\"https://kansai.wordcamp.org/2014/\" target=\"_blank\">WordCamp Kansai</a>, held in the Western part of the country, was organized by WordBench members of that area, including Shiga, Kyoto, Osaka, Hyogo, Nara and Wakayama.</p>\n<p>Regional WordPress groups in Japan are organized on <a href=\"http://WordBench.org\" target=\"_blank\">WordBench.org</a>, a site that allows users to find, join, and create a meetup. The site was <a href=\"http://wordpress.tv/2009/04/30/wordcamp-tokyo-2009-takayuki-miyoshi-introducing-wordpress-regional-community-wordbench/\" target=\"_blank\">created in 2009 by Takayuki Miyoshi</a>, the author of <a href=\"https://wordpress.org/plugins/contact-form-7/\" target=\"_blank\">Contact Form 7</a>, one of WordPress’ most popular plugins. WordBench has been running on BuddyPress for the past six years and was originally built on RC1 of the plugin.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/wordbench.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/wordbench.png?resize=1025%2C672\" alt=\"wordbench\" class=\"aligncenter size-full wp-image-43929\" /></a></p>\n<p>The site currently lists 48 local groups throughout Japan, named for their cities, i.e. WordBench Tokyo, WordBench Osaka, WordBench Kawasaki. Members and organizers use the site to post about upcoming events and recaps of meetups recently held in various locations. The site serves to keep Japan’s local communities connected and inspired.</p>\n<h2>Japan’s Unique WordPress Meetups and the Importance of Wapuu</h2>\n<p>In addition to the regional WordBench groups, interest-based meetups are also common in the Japanese WordPress community. In this format, members meet around different interests outside of WordPress, such as cooking or photography. For example, the <a href=\"https://shashinbu.wordpress.com/\" target=\"_blank\">WordPhotoclub</a> meetup gathers together to go on walks and take photos. Members’ <a href=\"http://8bitodyssey.com/archives/1547\" target=\"_blank\">photos</a> were printed and displayed at WordCamp Tokyo 2012.</p>\n<p><a href=\"http://takamorry.com/article/20130209_wordcrab.html\" target=\"_blank\">WordCrab</a> is another example of one of Japan’s unique WordPress meetups. Members from all over from Japan gather in the Fukui prefecture, where they combine WordPress sessions with a giant <a href=\"https://www.flickr.com/search/?q=wordcrab&l=commderiv&ss=0&ct=0&mt=all&w=all&adv=1\" target=\"_blank\">crab party</a> where everyone feasts upon the region’s renowned crabs.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/wordcrab.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/wordcrab.jpg?resize=1025%2C586\" alt=\"photo credit: WordCrab meetup\" class=\"size-full wp-image-43936\" /></a>photo credit: <a href=\"https://www.flickr.com/search/?q=wordcrab&l=commderiv&ss=0&ct=0&mt=all&w=all&adv=1\">WordCrab meetup</a>\n<p>The <a href=\"http://2014onsen.wbsendai.com/\" target=\"_blank\">Word温泉 (WordOnsen) meetup</a> is centered around the enjoyment of hot springs. Members gather in Fukushima and stay at a hotel where they have WordPress sessions and a party night.</p>\n<p>“In meetups we started doing more things than just learning WordPress,” community organizer Shinichi Nishikawa said. “We get friends together and go for a walk and eat lunch/dinner together.</p>\n<p>“I think this a really good way to make the community stronger. <span class=\"pullquote alignleft\">People are talented in different things and by doing something together, other than WordPress, people can show their talents.</span> And of course, it’s fun.”</p>\n<p>Japan’s holistic approach to meetups incorporates various aspects of life and relationships, as opposed to simply centering around improving WordPress technical skill. As a result, members become more connected and meetups are highly personalized. That’s where Wapuu enters the picture to bring special meaning to each group.</p>\n<p><a href=\"https://ja.wordpress.org/about-wp-ja/wapuu/\" target=\"_blank\">Wapuu</a>, the official mascot character of WordPress, was designed by Kazuko Kaneuchi in 2011. It’s <a href=\"https://github.com/jawordpressorg/wapuu\" target=\"_blank\">distributed under the GPLv2 or later</a> and can be modified by anyone to add more personality to the character.</p>\n<p>“Thanks to the freedom of the GPL, there have been many <a href=\"http://jawordpressorg.github.io/wapuu/\" target=\"_blank\">forked versions of Wapuu</a>,” Nishikawa said. “All local Wapuus are created by someone who belongs to each local community and they hold something that represents where they are from.”</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/local-wapuu.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/local-wapuu.jpg?resize=627%2C349\" alt=\"photo credit: Naoko Takano - WordPress History\" class=\"size-full wp-image-43943\" /></a>photo credit:<br />Naoko Takano – <a href=\"http://www.slideshare.net/naokomc/wordpress-history-21925968/42\">WordPress History</a>\n<p>Wapuu is so well-loved that the creature ends up making its way onto <a href=\"https://www.flickr.com/photos/odysseygate/8509556933/\" target=\"_blank\">swag</a>, cakes, and nail and coffee art at Japanese WordPress events.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wapuu-everywhere.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wapuu-everywhere.jpg?resize=1025%2C703\" alt=\"photo credit: Naoko Takano - Learnings from Growing Local WordPress Communities\" class=\"size-full wp-image-43945\" /></a>photo credit:<br />Naoko Takano – <a href=\"http://www.slideshare.net/naokomc/wordcamp-europe2013/47\">Learnings from Growing Local WordPress Communities</a>\n<p>The name “Wapuu” was given to the mascot by a users’ poll. “Japanese people pronounce WordPress as ‘WAADOPURESU,\'” Nishikawa said. “Wapuu sounds like an abbreviation of WAADOPURESU, taking ‘Wa’ and ‘Pu’ from it.”</p>\n<p>Modifications of the mascot have recently started popping up at WordCamps outside of Japan. <a href=\"http://wptavern.com/scott-evans-on-designing-the-punk-wapuu-for-wordcamp-london-2015\" target=\"_blank\">WordCamp London’s wapuunk</a> was so popular that it inspired WordCamp Philly and <a href=\"http://wptavern.com/meet-wapuujlo-official-mascot-of-wordcamp-belgrade\" target=\"_blank\">WordCamp Belgrade</a> to create their own unique modifications to the character.</p>\n<p>For whatever reason, Wapuu seems to have a special power to bring people together, regardless of culture or location. WordPress has the Japanese community to thank for its unique open source contribution to meetup branding.</p>\n<h2>The Challenges of Contributing to WordPress Across the Language Barrier</h2>\n<p>Despite having a large WordPress community thriving in Japan, with many of the <a href=\"http://www.sailor.co.jp/\" target=\"_blank\">top</a> <a href=\"http://womens.marathon-festival.com/2014/\" target=\"_blank\">websites</a> <a href=\"http://tasukeaijapan.jp/\" target=\"_blank\">built</a> on the <a href=\"http://www.kurashi-no-techo.co.jp/\" target=\"_blank\">software</a>, Japanese developers have a difficult time contributing back to core.</p>\n<p>“Language is the biggest barrier,” Nishikawa told the Tavern. “There are many good developers in Japan (and in other countries) who don’t speak English. Most of them can read documentation but joining in the conversation in tickets and on Slack is a different thing.</p>\n<p>“In my opinion, there is English for native speakers and English for international people, and they are different,” he explained.</p>\n<p>“It’s difficult to say how different they are, but for us who are not native, ambiguous words, abbreviations like ‘FWIW,’ jokes, and slang are difficult,” Nishikawa said. “Sometimes nesting a long sentence in another long sentence by using ‘that,’ ‘which,’ and ‘including’ is difficult.”</p>\n<p>He explained that overcoming the language barrier is more than simply learning English; it also includes the hurdle of trying to understand the abbreviations and expressions that are infused by the culture around native English speakers.</p>\n<p>“People would say that you can understand because it’s code, but if we look at the conversations in tickets, the surrounding discussion often concerns more than just the code,” he said.</p>\n<p>“Non-English speaking developers are trying to learn English, but it would be good if people in the ticket / Slack would keep in mind that there are people who don’t share the context or culture behind the words they write,” Nishikawa suggested.</p>\n<p>“If we make the words and expressions easier to understand, someone who understands 80% will have the opportunity to understand nearly 100%.”</p>\n<p>However, Nishikawa is unsure of whether or not it is productive to request these kinds of changes, given that communication can never really be separated from culture.</p>\n<p>“Maybe more welcoming atmosphere needed?” he said. “On the other hand, I know that the discussions include a great deal of context and many cultural things. It’s a place for communication, too. So, I don’t know if it’s right to say that something needs to change.</p>\n<p>“Additionally, there are many talented developers who don’t understand English at all and I have no idea what can be done for them,” he said.</p>\n<p>Nishikawa said that he felt much more connected to the community after attending WordCamp San Francisco and the following summit and contributor day.</p>\n<p>“Even for developers who didn’t speak English, we had translators and discussed things, looked at the code and shared the WordPress projects they are working on,” he said. “After these face-to-face conversations, developers are more relaxed and motivated to work in the <a href=\"https://make.wordpress.org/\" target=\"_blank\">core Make project</a>. Inviting developers to meetups/camps in the English world or inviting core contributors travel and join local contribution days will be a big trigger to involve more people.”</p>\n<h2>The Future of WordPress in Japan</h2>\n<p>Nishikawa believes that WordPress has a bright future in Japan, thanks to the efforts of Otsukare, Naoko Takano, Takayuki Miyoshi and all the plugin developers, Tenpura (the author of <a href=\"https://wordpress.org/plugins/wp-multibyte-patch/\" target=\"_blank\">WP Multibyte Patch</a> plugin), bloggers, community organizers, an army of dedicated translators and more.</p>\n<p>He is hopeful that positive experiences for developers at global meetups like WCSF will help the Japanese WordPress community find ways to contribute back to core and other projects.</p>\n<p>“There have been a few people who had contributed separately, but now I feel there is a small groove of people who are more interested in contribution,” he said.</p>\n<p>“For the community, we hope that the activeness of the Japanese community will be exported to other Asian (and global) communities, especially with Wapuu or the unique “more-than-learning” style of meetups.”</p>\n<p>He also believes the future of WordPress in Japan will be brighter with the internationalization improvements that are continually being added to core.</p>\n<p>“For the users, when everything is translatable, people are happier. If WordPress can become more mobile friendly, it will be used more by young people. When the WP-API is in core, there will be more diverse apps available.”</p>\n<p>Nishikawa has had such a positive experience organizing WordPress community events in Japan that he is now active in growing the community in Thailand.</p>\n<p>“We now have meetups twice per month in Bangkok for developers/users/designers. We don’t have ‘session-oriented meetups’ anymore but we try to have casual talks every time, where everyone can speak in their own languages. Translation is more than welcome but we don’t want to rely on someone.”</p>\n<p>As Japan’s community-oriented approach to learning has paid off with highly active meetup groups and some of the largest WordCamps on the globe, Nishikawa is hoping to bring his experience to Thailand and help organize a WordCamp Bangkok in the near future.</p>\n<p>“Community has made my life/job much more exciting and fun,” he said. “Many things will differ culture by culture but the core value of community should be the same everywhere.”</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, 18 May 2015 21:26:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:30:\"Matt: 2 Chocolate Chip Cookies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45056\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://ma.tt/2015/05/2-chocolate-chip-cookies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:494:\"<blockquote><p>Sometimes, you just want 2 chocolate chip cookies. This happens to me all of the time. I want a super indulgent, rich and buttery chocolate chip cookie, but don’t want to make the whole 36 of them which I’d inevitably inhale over about the same amount of hours.</p></blockquote>\n<p><a href=\"http://www.inthiskitchen.com/2014/05/21/just-2-chocolate-chip-cookies-single-serving-recipe/\">Ever wondered a good recipe to make just 2 chocolate chip cookies</a>? Now you know.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 May 2015 06:35:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:23:\"Matt: Silk Road, Part 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45063\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/05/silk-road-part-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:435:\"<p>As <a href=\"http://ma.tt/2015/05/untold-silk-road/\">promised a few weeks ago</a>, a new installment of the Wired Silk Road story is out and I wanted to share it, <a href=\"http://www.wired.com/2015/05/silk-road-2/\">The Untold Story of Silk Road, Part 2: The Fall</a>. This one is actually a lot more normal, with some surprisingly simple breaks leading to the downfall of Ross, but there’s an interesting twist at the end.</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, 16 May 2015 17:14:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:27:\"Matt: Memorable Musk Quotes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://ma.tt/2015/05/memorable-musk-quotes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:224:\"<p><a href=\"http://www.washingtonpost.com/blogs/innovations/wp/2015/05/11/the-22-most-memorable-quotes-from-the-new-elon-musk-book-ranked/\">The 22 most memorable quotes from the new Elon Musk book, ranked</a>. Hilarious.</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, 16 May 2015 06:14:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: Display Your Contributions to WordPress With the WP Contributions 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=43823\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/display-your-contributions-to-wordpress-with-the-wp-contributions-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:4327:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/WPContributionsFeaturedImage.png\"><img class=\"aligncenter size-full wp-image-43884\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/WPContributionsFeaturedImage.png?resize=748%2C239\" alt=\"WPContributionsFeaturedImage\" /></a><a href=\"https://wordpress.org/plugins/wp-contributions/\">WP Contributions</a> is a new plugin by Dustin Filippini, Damon Cook, and WebDevStudios that displays WordPress contributions via widgets. Widgets included are:</p>\n<ul>\n<li>Contributions to the Codex</li>\n<li>WordPress Core Contributions</li>\n<li>Featured Plugin</li>\n<li>Featured Theme</li>\n</ul>\n<p>Once activated, browse to Appearance > Widgets to access the new widgets. You’ll need to know your username for WordPress trac and the Codex to display your contributions. Keep in mind that the core contributions widget only list tickets that are closed and you received props for.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/WPContributionsCoreWidget.png\"><img class=\"size-full wp-image-43880\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/WPContributionsCoreWidget.png?resize=342%2C272\" alt=\"WP Core Contributions Widget\" /></a>WP Core Contributions Widget\n<p>The Codex contributions widget displays the most recent articles you’ve edited along with a link to see more.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/WPContributionsCodexWidget.png\"><img class=\"size-full wp-image-43881\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/WPContributionsCodexWidget.png?resize=330%2C296\" alt=\"Codex Contributions Widget\" /></a>Codex Contributions Widget\n<p>The theme and plugin widgets use the slug of the theme and plugin you want to feature. You can only feature one theme or plugin at a time unless you use multiple widgets. The featured plugin widget displays a thumbnail of the plugin’s header image, author name, version, description, average rating, total downloads, and when it was last updated.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/WPContributionPluginWidget.png\"><img class=\"size-full wp-image-43882\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/WPContributionPluginWidget.png?resize=331%2C438\" alt=\"WP Contribution Plugin Widget\" /></a>WP Contribution Plugin Widget\n<p>The featured theme widget displays a small preview of the theme, a short description, average rating, author, current version, total downloads, and when it was last updated.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/WPContribThemeWidget.png\"><img class=\"size-full wp-image-43883\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/WPContribThemeWidget.png?resize=379%2C707\" alt=\"Featured Theme Widget\" /></a>Featured Theme Widget\n<p>Even though the plugin and theme widgets are meant to be used to showcase your own work, they’re great for featuring any plugin or theme you’d like people to know about. WP Contributions comes with a series of <a href=\"https://wordpress.org/plugins/wp-contributions/faq/\">template tags</a> for those who want more control over how the information is displayed.</p>\n<p>One thing I’d like to see in a future version is short code support. This way, users could create a WP Contributions page on their site with easy to use short codes. It’s not supported now, but Filippini informs me that a future version will include the ability to display badges attached to a WordPress.org user profile.</p>\n<p>As WordPress <a href=\"http://w3techs.com/\">continues to increase in marketshare</a>, the ability to show how much you’ve contributed to the project is a huge resume booster, especially if you can say your code runs on millions of sites. In early 2014, WordPress made substantial <a href=\"http://wptavern.com/wordpress-org-profile-redesign-is-live\">improvements to user profiles</a> but there’s no easy way to display those contributions to a wider audience.</p>\n<p>WP Contributions does a decent job filling the void and is available for free on the WordPress.org plugin directory. I tested <a href=\"https://wordpress.org/plugins/wp-contributions/\">WP Contributions</a> on WordPress 4.2.2 and it works without any 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, 15 May 2015 23:28:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: Lasso Frontend Editing Plugin for WordPress Now Available on GitHub\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43852\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://wptavern.com/lasso-frontend-editing-plugin-for-wordpress-now-available-on-github\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4698:\"<p>WordPress developer Nick Haskins is hoping to revolutionize the way users publish content with <a href=\"https://lasso.is/\" target=\"_blank\">Lasso</a>, his commercial front-end editing plugin. Lasso is sold through his storefront and is also in use on <a href=\"https://story.am/\" target=\"_blank\">Story.am</a>, the hosted platform for <a href=\"http://wptavern.com/?s=Aesop+Story+Engine\" target=\"_blank\">Aesop Story Engine</a>. Haskins recently <a href=\"http://wptavern.com/story-am-relaunches-now-100-free\" target=\"_blank\">made accounts on Story.am available for free</a> in hopes of garnering more feedback on the Lasso editing experience.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/building-with-lasso.gif\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/building-with-lasso.gif?resize=900%2C618\" alt=\"building-with-lasso\" class=\"aligncenter size-full wp-image-43867\" /></a></p>\n<p>As of today, <a href=\"https://github.com/AesopInteractive/lasso\" target=\"_blank\">Lasso is now available on GitHub</a> for developers and users to test and offer feedback/contribution.</p>\n<p>“This decision was several months in the making,” Haskins told the Tavern. “It included conversations with developers who have their commercially sold code publicly available, as well as A/B testing our presence to verify that the move would be both beneficial to the plugin, as well as the user base that it’s attracting.”</p>\n<p>Making the code public is a calculated risk, which he hopes will not damage sales of the plugin but rather increase its visibility. Haskins recently published a <a href=\"http://aesopinteractive.com/jan-april-2015-report/\" target=\"_blank\">financial transparency report</a> on his 15 month old company, which indicates that Aesop Interactive is on track to double its revenue in 2015 based on numbers from January – April. Sales of the Lasso product totaled $4,408.36.</p>\n<p>As the plugin is open source, you are free to use it anywhere, but Haskins notes that support will only be offered to customers:</p>\n<blockquote><p>If you have a suggestion, a bug report, or a patch for an issue, feel free to submit it here. We do ask, however, that if you are using the plugin on a live site that you please purchase a valid license from the website. We cannot provide support to anyone who does not hold a valid license key.</p></blockquote>\n<p>“I decided to make it public today after I was invited in to collaborate on another publicly available commercially sold plugin,” he said. “I just needed a final excuse, and that was it.”</p>\n<p>Haskins is not the first developer to make a commercial WordPress product available on GitHub for contribution. Earlier this year, the folks behind GravityView decided to <a href=\"http://wptavern.com/gravityview-is-now-public-on-github\" target=\"_blank\">make their plugin public on GitHub</a> after being inspired by a <a href=\"https://mattreport.com/interview-matt-mullenweg/\" target=\"_blank\">discussion between Matt Medeiros and Matt Mullenweg</a> on ubiquity vs. scarcity as it relates to WordPress product businesses:</p>\n<blockquote><p>The one pattern I see most right now that I think is not sustainable is, and it’s because it’s the easiest thing to do, is businesses that are built on a scarcity – the thing not being widely available. If you think about some of the coolest successes so far in WordPress, the Gravity Forms, some of the theme businesses, they are inherently predicated on the fact that you have to pay to access them.</p>\n<p>I’ve always been a fan of businesses that grow with ubiquity, that become more powerful the more ubiquitous they are, more valuable. WordPress itself is one of these. Akismet is one of these. Jetpack is certainly one of those.</p></blockquote>\n<p>This approach brings up the question of whether or not a commercial plugin developer can run a successful business while giving the code away for free on GitHub. A select few are finding that the benefits of community contribution and feedback outweigh the risk.</p>\n<p>Haskin’s frontend editing plugin is a prime candidate to explore this approach, as this type of plugin was created for users of all technical skill levels. Customers interested in this functionality are less likely to be comfortable installing and updating plugins from GitHub. If you’ve been eager to try Lasso but couldn’t get past the <a href=\"https://lasso.is/pricing/\" target=\"_blank\">$129 price tag</a>, now is your opportunity to <a href=\"https://github.com/AesopInteractive/lasso\" target=\"_blank\">download the plugin</a> and put it through the paces.</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, 15 May 2015 20:22:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:68:\"WPTavern: SiteGround is Organizing Bulgaria’s First PHP Conference\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43825\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/siteground-is-organizing-bulgarias-first-php-conference\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2849:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/bulgaria-php-conference.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/bulgaria-php-conference.jpg?resize=670%2C287\" alt=\"bulgaria-php-conference\" class=\"aligncenter size-full wp-image-43829\" /></a></p>\n<p><a href=\"https://www.siteground.com\" target=\"_blank\">SiteGround</a> is organizing the first ever <a href=\"http://www.bgphp.org/\" target=\"_blank\">PHP conference to be held in Sofia, Bulgaria</a>, September 25-27, 2015. The company is headquartered in Sofia and its Head of Development, Mihail Irintchev, has been working hard to develop the local PHP community with the eventual goal of hosting a global PHP event.</p>\n<p>Irintchev founded the Bulgaria PHP user group two years ago, which meets regularly in the SiteGround offices in Sofia. The meetups have grown steadily, inspiring him to approach the SiteGround management team about working together to host a PHP conference.</p>\n<p>“We see value in making it possible for developers from Bulgaria and the region to meet and learn from some of the most prominent minds in the global PHP community,” SiteGround representative Reneta Tsankova said. “It is also an opportunity for our region to once again be recognized as a place with strong IT potential and lots of development talent.”</p>\n<p>The speaker lineup for the event has been finalized and includes leaders in PHP community (Michelangelo van Dam, Sebastian Bergman, Cal Evans, Adam Culp, and more), as well as some influencers from both the WordPress and Drupal communities, including Mario Peshev and Larry Garfield.</p>\n<p>Bulgaria PHP Conference will be a three day event that includes one training day and two conference days. All of the sessions will be conducted in English, as the event is pulling in speakers and attendees from Bulgaria, the Balkans, and other parts of the world.</p>\n<p><a href=\"https://automattic.com/\" target=\"_blank\">Automattic</a> is now a confirmed <a href=\"http://www.bgphp.org/sponsors/\" target=\"_blank\">sponsor</a>, along with Mandrill, Shopware, SiteGround, and others. The sponsors make it possible for organizers to keep the event accessible to as many attendees as possible with lower <a href=\"http://www.bgphp.org/tickets/\" target=\"_blank\">ticket</a> prices. The earlybird price for the conference pass is just 65 euro.</p>\n<p>Sofia hosted <a href=\"http://wptavern.com/wordpress-beyond-boundaries-a-recap-of-wordcamp-europe-2014\" target=\"_blank\">WordCamp Europe 2014</a> and the city is home to a vibrant IT community. If you’re looking to expand your PHP skills and connect with other passionate developers, the <a href=\"http://www.bgphp.org/\" target=\"_blank\">Bulgaria PHP Conference</a> is one you’ll want to consider adding to your calendar for September.</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, 15 May 2015 18:15:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:18:\"Matt: Trojan Emoji\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45050\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://ma.tt/2015/05/trojan-emoji/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:588:\"<blockquote><p>Andrew Nacin, lead developer of WordPress, just finished a talk at Loopconf, where he talked about a series of related WordPress security fixes that spanned two years, with the final fix included into WordPress core under the guise of Emoji support.</p></blockquote>\n<p><a href=\"https://poststatus.com/the-trojan-emoji/\">Post Status has a good look at some of the really deep security work that has been going on in WordPress lately</a>. There will always be more problems, but we’re getting to the point where the problems (and the fixes) are often quite subtle.</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, 15 May 2015 06:06:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:77:\"WPTavern: Beer Directory: A WordPress Plugin for Brewers and Beer Aficionados\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43140\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/beer-directory-a-wordpress-plugin-for-brewers-and-beer-aficionados\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4464:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/beer.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/beer.jpg?resize=869%2C415\" alt=\"beer\" class=\"aligncenter size-full wp-image-43810\" /></a></p>\n<p>Craft beer and WordPress are a magical combination. Both cultures are built on some of the same values, like sharing knowledge and open sourcing happiness. With the explosion of the craft beer scene over the past few years, many new <a href=\"http://wptavern.com/30-beautiful-brewery-websites-built-with-wordpress\" target=\"_blank\">breweries are opting to build their websites on top of WordPress</a>. When you’re bootstrapping a new brewery, the last thing you need to spend money on is proprietary software.</p>\n<p>The WordPress community has many free and open source tools that developers can use to build a beer-centered website. <a href=\"https://wordpress.org/plugins/beer-directory/\" target=\"_blank\">Beer Directory</a> is a new plugin released this year by Jami Gibbs, founder of <a href=\"https://rescuethemes.com/\" target=\"_blank\">Rescue Themes</a>. She created it to support beer listings on her commercial <a href=\"http://themeforest.net/item/brewery-a-wordpress-theme-for-beer-makers/full_screen_preview/10941216\" target=\"_blank\">Brewery</a> theme.</p>\n<p>Beer Directory gives you an easy way to enter beers and their details in the admin. It allows you to categorize and group beers, enter details, and display listings via a configurable shortcode. The post type includes fields for ABV, IBU, OG, FG, SRM/Color, Malts, Hops, and Yeast.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/beer-profile.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/beer-profile.jpg?resize=1025%2C797\" alt=\"beer-profile\" class=\"aligncenter size-full wp-image-43790\" /></a></p>\n<p>I tested the plugin by adding the details from a <a href=\"https://www.brewtoad.com/recipes/put-the-blueberries-in-the-basket\" target=\"_blank\">blueberry sour beer recipe</a>. The output for an individual listing on the frontend will look something like this, depending on your active theme:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/beer-listing.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/beer-listing.jpg?resize=626%2C872\" alt=\"beer-listing\" class=\"aligncenter size-full wp-image-43791\" /></a></p>\n<p>The plugin includes a shortcode for listing an individual beer: <code>[beer id=\"17\"]</code> and one for displaying all listings: <code>[beer]</code>. The shortcodes can be configured by count, category, id, and any of the WordPress <a href=\"http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters\" target=\"_blank\">Order & Orderby Parameters</a>. Beer posts also include support for a featured image.</p>\n<p>Be advised that this is not a beer recipe plugin, so there’s no easy way to enter your hop schedule, amounts for fermentables, temperatures, etc. Beer Directory was created purely for listing beers on the frontend with a few key details. If you need to enter beer recipes, the <a href=\"http://wptavern.com/how-to-share-beer-recipes-in-wordpress\" target=\"_blank\">BeerXML Shortcode plugin</a>, created by <a href=\"https://twitter.com/derekspringer\" target=\"_blank\">Derek Springer</a>, is a more suitable option.</p>\n<p>The Beer Directory plugin is perfect for home brewers, professional breweries, or even beer enthusiasts who want to maintain a personal library of beers they enjoy. With this data saved in a custom post type, it will be transferable no matter how many times you change your WordPress theme. In addition to keeping track of your beers, the admin listing allows you to easily search and sort your library.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/beer-in-the-admin.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/beer-in-the-admin.jpg?resize=1025%2C344\" alt=\"beer-in-the-admin\" class=\"aligncenter size-full wp-image-43807\" /></a></p>\n<p>After testing the plugin, I can confirm that it works as advertised. <a href=\"https://wordpress.org/plugins/beer-directory/\" target=\"_blank\">Beer Directory</a> is fully translatable and available for free on WordPress.org. If you want to contribute to development, the plugin can also be found on <a href=\"https://github.com/RescueThemes/beer-directory\" target=\"_blank\">GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 May 2015 01:31: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: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:72:\"WPTavern: cPanel’s Site Software Addon Disables WordPress Auto Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43609\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wptavern.com/cpanels-site-software-addon-disables-wordpress-auto-updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8988:\"<p>A little more than two months ago, Derek Munson, who goes by the username <a href=\"https://wordpress.org/support/profile/drumology2001\">Drumology2001 </a>published a <a href=\"https://wordpress.org/support/topic/wp-updates-not-showing-latest-wp-version-available?replies=34\">thread</a> in the WordPress.org support forums. While performing maintenance on several WordPress sites on his virtual private server, Munson discovered a number of them running outdated versions. Versions ranged from 3.9 to 4.1 with at least one site using WordPress 3.9.2.</p>\n<blockquote><p>I’m used to seeing the ‘nag’ at the top of the screen that lets me know there’s a newer version available. I am not seeing that on any of these sites which aren’t on the newest version (4.1.1). When I go to Dashboard > Updates and click ‘Check Again’ to force a manual check, it’s still acting as though everything is up to date when it’s clearly not.</p></blockquote>\n<p>Initially, Munson thought All in One WP Security and Firewall <a href=\"https://wordpress.org/support/topic/blocking-wp-core-file-updates\">was blocking update notifications</a>. <a href=\"https://wordpress.org/support/profile/mbrsolution\">Mbrsolution</a>, the plugin’s main developer, confirmed that it doesn’t block update notifications. After completing a number of troubleshooting techniques suggested by volunteers on the WordPress support forum, Munson installed <a href=\"https://wordpress.org/plugins/wordfence/\">Wordfence Security</a>, a WordPress security plugin.</p>\n<p>One of Wordfence’s noteworthy features is its scanner. It compares clean WordPress core files to those on the server and notifies the user if it detects a difference. Results of the scan shows three files had been changed.</p>\n<p><strong>wp-admin/includes/update.php</strong><br />\n<strong>wp-admin/update-core.php</strong><br />\n<strong>wp-admin/includes/class-wp-upgrader.php</strong></p>\n<p>These files were only changed on WordPress sites that were installed using cPanel’s Site Software addon.</p>\n<p><strong>WordPress’</strong> update.php file.<br />\n<code>function get_core_updates( $options = array() ) { $options = array_merge( array( \'available\' => true, \'dismissed\' => false ), $options ); $dismissed = get_site_option( \'dismissed_update_core\' );</code></p>\n<p><strong>cPanel’s</strong> update.php file.<br />\n<code>function get_core_updates( $options = array() ) { # cPanel override: Disable all core updates to prevent conflict with cPAddons. return false; $options = array_merge( array( \'available\' => true, \'dismissed\' => false ), $options );</code></p>\n<p><strong>WordPress’</strong> update-core.php file.<br />\n<code>function core_upgrade_preamble() { global $wp_version, $required_php_version, $required_mysql_version; $updates = get_core_updates();</code></p>\n<p><strong>cPanel’s</strong> update-core.php file.<br />\n<code>function core_upgrade_preamble() { # cPanel override: Do not display the current or the latest version, because we\'ve disabled updates. return; global $wp_version, $required_php_version, $required_mysql_version; $updates = get_core_updates();</code></p>\n<p><strong>WordPress’</strong> class-wp-upgrader.php file.<br />\n<code>public function is_disabled() { // Background updates are disabled if you don\'t want file changes. if ( defined( \'DISALLOW_FILE_MODS\' ) && DISALLOW_FILE_MODS ) return true;</code></p>\n<p><strong>cPanel’s</strong> class-wp-upgrader.php file.<br />\n<code>public function is_disabled() { return true; // Force this functionality to disabled because it is incompatible with cPAddons. // Background updates are disabled if you don\'t want file changes. if ( defined( \'DISALLOW_FILE_MODS\' ) && DISALLOW_FILE_MODS ) return true;</code></p>\n<p>The code added by cPanel disables core WordPress updates, update notifications, and automatic background updates to point releases. Once Munson restored these files to their original version, automatic updates and notifications worked properly.</p>\n<h2>cPanel and cPAddons</h2>\n<p>Those who manage dedicated servers or virtual private servers with cPanel have the ability to use cPAddons. According to <a href=\"https://documentation.cpanel.net/display/1148Docs/Install+cPAddons\">cPanel documentation</a>, “Addons are applications that work with cPanel to perform functions for your users’ websites. Examples of these applications include bulletin boards, online shopping carts, and blogs.”</p>\n<h2>Open Dialogue With cPanel</h2>\n<p>George Stephanis, a WordPress core contributor and lead developer of Jetpack publicly called out cPanel’s actions as a bad practice.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">Wait, seriously? <a href=\"https://twitter.com/cPanel\">@cPanel</a> is hacking WordPress core to prevent updates? I\'m kinda dumbfounded by how bad of an idea this is. <a href=\"https://twitter.com/hashtag/donthackcore?src=hash\">#donthackcore</a></p>\n<p>— George Stephanis (@daljo628) <a href=\"https://twitter.com/daljo628/status/597794481329590272\">May 11, 2015</a></p></blockquote>\n<p></p>\n<p>A representative of cPanel saw the tweet and responded that they’d like to receive more information.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/daljo628\">@daljo628</a> re: <a href=\"https://twitter.com/cPanel\">@cPanel</a> w/ <a href=\"https://twitter.com/WordPress\">@WordPress</a> we would like to get more info from you can you provide a email? Or email into sales @ cpanel dot net^MR</p>\n<p>— cPanel Cares (@cpanelcares) <a href=\"https://twitter.com/cpanelcares/status/597886956945711107\">May 11, 2015</a></p></blockquote>\n<p></p>\n<p>Stephanis <a href=\"http://stephanis.info/2015/05/14/please-dont-hack-core/\">engaged in a lengthy conversation</a> with cPanel representatives explaining why it’s a bad idea to disable core updates. cPanel disables WordPress’ native update system because it could cause conflicts with cPanel’s Site Software version of WordPress.</p>\n<blockquote><p>We generally release the latest version of WordPress within 1 to 5 days of the latest WordPress update. At a minimum, server administrators are informed each night of all Site Software applications that need updated. It is up to users to configure their notifications within cPanel to receive such updates.</p>\n<p>The way our cPAddons tool tracks software is not compatible with the way WordPress updates, hence why we disable the auto-updates so we can track it through cPAddons.</p></blockquote>\n<p>cPanel goes on to explain how updates are handled for software installed using its Site Software cPAddon.</p>\n<ul>\n<li>Whenever WP releases a maintenance build that addresses security concerns, we react very quickly to get our software updated to be available to customers.</li>\n<li>By default, we define that software managed/installed through cPAddons is automatically updated when a new update is available.</li>\n<li>Based on the above information, if the server administrator leaves the defaults enabled, once WP introduces a maintenance release that corrects security concerns and we’ve tested and updated our source for it, customers will receive the release automatically.</li>\n<li>If the server administrator decides to disable automatic software updates, the end-user and systems administrator will still receive notifications that their installation is out of date accompanied with steps on how to update their application.</li>\n</ul>\n<p>By default, software installed by cPanel is configured to update automatically but some of Munson’s sites didn’t update. He also didn’t receive update notifications for those sites. cPanel believes there is something wrong with Munson’s server configuration and pledged to contact him to find out more information.</p>\n<blockquote><p>Based upon what Drumology2001 reported on the forum, it appears something is amiss on that server. We’d love to examine that server to determine why WordPress updates were not available to the user.</p>\n<p>Based upon the fuzzy dates used on the forum and compared with our internal records, the 4.1.1 update was available to the Site Software system prior to the initial post. We’ll reach out to him to determine whether there is anything we can do there.</p></blockquote>\n<h2>Receptive to Change</h2>\n<p>The good news is that cPanel is responsive and willing to make any necessary changes to improve the update process. Considering how many webhosting companies offer customers the ability to install WordPress with a one-click installer, it’s important that sites receive updates as soon as possible.</p>\n<p>If you installed WordPress through cPanel’s one-click installer, check to make sure your site is running WordPress 4.2.2 which is the latest stable version.</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, 14 May 2015 19:45:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: All Sessions from LoopConf Now Available on YouTube\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43528\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/all-sessions-from-loopconf-now-available-on-youtube\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4590:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/loopconf-2015.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/loopconf-2015.jpg?resize=1016%2C506\" alt=\"photo credit: LoopConf\" class=\"size-full wp-image-43769\" /></a>photo credit: <a href=\"https://twitter.com/loopconf/status/598233226407088128/photo/1\">LoopConf</a>\n<p><a href=\"https://loopconf.io/\" target=\"_blank\">LoopConf</a>, a new WordPress conference created for developers, was held in Las Vegas last week with a world-class lineup of speakers. The event was such a success that the organization team is already planning for 2016.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/hashtag/loopconf?src=hash\">#loopconf</a> 2016?! We’ve committed to year 2 and are already making plans! Get on the super early interest list here: <a href=\"http://t.co/23y5pL4qWv\">http://t.co/23y5pL4qWv</a></p>\n<p>— LoopConf (@loopconf) <a href=\"https://twitter.com/loopconf/status/598620705605844992\">May 13, 2015</a></p></blockquote>\n<p></p>\n<p>Attendees were impressed with the professional planning of the event, speaker selection, and the quality of the venue.</p>\n<p>“I’m going to say, with emphasis, what I think everyone is probably thinking: LoopConf is what you wish most WordCamps were,” Speaker and attendee John James Jacoby said in his <a href=\"http://jaco.by/2015/05/14/loopconf/\" target=\"_blank\">writeup</a>.</p>\n<p>“I like that WordCamps are casual and inviting, and I like that conferences like <a href=\"http://loopconf.io/\" target=\"_blank\">LoopConf</a> and the <a href=\"http://vip.wordpress.com/\" target=\"_blank\">WordPress.com VIP Workshop</a> strive to achieve something more professional. I think there will be some WordCamps that try to upgrade themselves to compete, and others that will purposely stay intimate and niche,” Jacoby predicted.</p>\n<p>The entire <a href=\"http://www.woothemes.com/2015/05/woothemes-loopconf/\" target=\"_blank\">WooCommerce development team was also in attendance at LoopConf</a> and <a href=\"https://twitter.com/BFTrick\" target=\"_blank\">Patrick Rauland</a> found interacting with other developers from the community to be the highlight.</p>\n<p>“The biggest takeaway that I got from Loop was that conferences are about people,” he said. “Not that cheesy networking where you try to meet as many people as possible. It’s about meeting people and really getting to know them.”</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/loopconf-party.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/loopconf-party.jpg?resize=1016%2C632\" alt=\"LoopConf attendees at the SiteGround party - credit: LoopConf\" class=\"size-full wp-image-43771\" /></a>LoopConf attendees at the SiteGround party – credit: <a href=\"https://twitter.com/loopconf/status/598237685518499842/photo/1\">LoopConf</a>\n<p>Those who could not attend may have missed out on the networking, but videos for all of the sessions are now <a href=\"https://www.youtube.com/channel/UCAwOVsWiMdlz6snWRF2HdSQ\" target=\"_blank\">available on YouTube</a>. One favorite session among attendees was Andrew Nacin’s presentation on <a href=\"https://www.youtube.com/watch?v=yQaRUEwEKxE\" target=\"_blank\">The Anatomy of a Critical Security Bug</a>, during which he revealed that the Emoji support added in WordPress 4.2 was also part of a larger plan to fix a <a href=\"https://poststatus.com/the-trojan-emoji/\" target=\"_blank\">two-year old security vulnerability</a>.</p>\n<p>Attendees also enjoyed <a href=\"https://ghost.org/\" target=\"_blank\">Ghost</a> founder John O’Nolan’s session on <a href=\"https://www.youtube.com/watch?v=9p3nT4ujUk8\" target=\"_blank\">The Economics of Open Source</a>, Ryan McCue’s “<a href=\"https://www.youtube.com/watch?v=DyTeLjsopC4\" target=\"_blank\">How to Build a REST API for 23 Percent of the Web</a>,” and Google engineer Ilya Grigorik’s <a href=\"https://www.youtube.com/watch?v=CceyqktMoRw\" target=\"_blank\">Performance Guide RAIL</a> keynote presentation. If you have some free time to devote to improving your development knowledge, the LoopConf videos make up a small library of advanced learning on a variety technical topics.</p>\n<p>LoopConf attracted 210 attendees as a brand new WordPress event this year. Glowing accounts of its professional handling are likely to increase attendees next year. LoopConf 2016 is already in the planning stages, but the location is yet to be decided.</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, 14 May 2015 19:05:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:76:\"WPTavern: WPWeekly Episode 192 – Infinite Possibilities With Dan Griffiths\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43747&preview_id=43747\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/wpweekly-episode-192-infinite-possibilities-with-dan-griffiths\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3306:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"https://profiles.wordpress.org/section214/\">Dan Griffiths</a>, founder of <a href=\"https://section214.com/\">Section214</a>. We spend the first half of the show learning about Griffiths’ interest in technology at a young age.</p>\n<p>Once out of the military, Griffiths experienced difficulties finding a job. He discovered Easy Digital Downloads and explains how working on a ticket and creating an API led to getting a job offer from <a href=\"https://pippinsplugins.com/\">Pippin Williamson</a>. Since accepting the job offer, Griffiths has <a href=\"https://profiles.wordpress.org/section214/#content-plugins\">published 22 plugins</a> to the WordPress plugin directory and has attended several WordCamps.</p>\n<p>Later in the show, we discuss <a href=\"http://wptavern.com/dan-griffiths-launches-175k-crowdfunding-campaign-to-build-hostpress\">HostPress</a>, an open-source, extensible server control panel built on top of WordPress. He describes his motivation behind the project and why he thinks webhosts need a better solution. Near the end of the interview, Griffiths shares his thoughts on the WP REST API that will eventually be added to WordPress and what it means for the project’s future.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://heropress.com/heros-are-found-in-unexpected-places/\">Heroes Are Found In Unexpected Places </a><br />\n<a href=\"http://wptavern.com/wordpress-4-3-to-focus-on-mobile-experience-admin-ui-better-passwords-and-customizer-improvements\">WordPress 4.3 to Focus on Mobile Experience, Admin UI, Better Passwords, and Customizer Improvements</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/wp-rollback/\">WP Rollback</a> lets you quickly and easily rollback any theme or plugin from WordPress.org to any previous or newer version. It works just like the plugin updater, except you’re rolling backward or forward to a specific version. Be sure to read our <a href=\"http://wptavern.com/wp-rollback-provides-basic-versioning-for-wordpress-org-plugins-and-themes\">review of WP Rollback</a> on the Tavern.</p>\n<p><a href=\"https://wordpress.org/plugins/linkedin-oauth/\">Linkedin_Oauth</a> allows users to login and register into WordPress using their LinkedIn account.</p>\n<p><a href=\"https://wordpress.org/plugins/strong-password-generator/\">Strong Password Generator</a> created by <a href=\"https://profiles.wordpress.org/fjarrett/\">Frankie Jarrett</a>, encourages the use of strong passwords by helping users generate them easily.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 20th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #192:</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, 14 May 2015 07:19:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Wearable Gadgets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45048\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/05/wearable-gadgets/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:351:\"<p><a href=\"http://www.washingtonpost.com/sf/national/2015/05/09/the-revolution-will-be-digitized/\">Wearable gadgets portend vast health, research and privacy consequences</a>, the Washington Post takes on the quantified self. I’m in the medium end of this, I track pretty much everything that’s easy, but no blood / hormone tests yet.</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, 14 May 2015 05:04:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: WP Engine Rolls Out WP-CLI Support to Select Partners for Beta Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43693\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wp-engine-rolls-out-wp-cli-support-to-select-partners-for-beta-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3885:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/wp-engine.jpg\"><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><a href=\"http://wpengine.com/\" target=\"_blank\">WP Engine</a> is currently beta testing <a href=\"http://wp-cli.org/\" target=\"_blank\">WP-CLI</a> support with approximately 200 select partners. Those who serve clients that host with the company are eager to see it rolled out to more customers, as WP-CLI has become an indispensable part of many WordPress developers’ workflow.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">WP-CLI on <a href=\"https://twitter.com/wpengine\">@wpengine</a>! From the entire WordPress Community, THANK YOU!!!!!</p>\n<p>— Brad Williams (@williamsba) <a href=\"https://twitter.com/williamsba/status/598526319253663744\">May 13, 2015</a></p></blockquote>\n<p></p>\n<p>“We find that with technical products it’s often better to roll out to development partners who we have a prior working relationship with, to get candid feedback from highly technical folks, and thus build a better product before rolling to a wider audience,” founder <a href=\"http://blog.asmartbear.com/\" target=\"_blank\">Jason Cohen</a> told the Tavern.</p>\n<p>There is no set timeframe for beta, but Cohen said that the plan is to offer WP-CLI support to all customers on all plans.</p>\n<p>“Our timeframe for exiting beta is like one of the rules of Fight Club: ‘The beta goes on for as long as it has to,\'” he said. “If everything is smooth and few issues arise, we can roll faster, but if we find things we want to fix, it will take longer. <span class=\"pullquote alignleft\">The main thing is to release high quality product, not to release it as quickly as possible.</span>”</p>\n<p>Many other hosting companies that cater to WordPress customers, such as Bluehost, SiteGround, and Site5, have had <a href=\"http://wptavern.com/hosting-companies-that-have-wp-cli-pre-installed\" target=\"_blank\">WP-CLI pre-installed</a> for years, which makes it curious that WP Engine has taken so long to add support for it. Cohen says that it’s trickier when you plan to offer it to all customers.</p>\n<blockquote><p>Some of our competitors offer WP-CLI only on dedicated plans, not on shared plans, whereas we offer it on all plans. An example of why it’s tricker: there are security implications (e.g. when running system commands outside of the PHP sandbox, which many WP-CLI commands do) in a multi-tenant system that are less of a concern in a dedicated system. We wanted to take the time to get all that right.</p></blockquote>\n<p>Cohen said that it wasn’t hard to come to the decision to support WP-CLI but WP Engine has been concurrently working on launching other technical tools. Most recently, the company has been focusing on polishing <a href=\"http://wptavern.com/wp-engine-partners-with-10up-to-launch-enterprise-hhvm-wordpress-hosting-platform\" target=\"_blank\">Mercury</a>, its enterprise HHVM hosting platform, which launched last year.</p>\n<p>“We’ve been building and releasing features that no one else has,” Cohen said. “So, sometimes we’re first-out with a feature, and sometimes not. That seems natural in a market with a dozen good competitors, all innovating in the space.”</p>\n<p>Development partners who have been granted access to WP-CLI during the beta period can find a <a href=\"http://wpengine.com/support/known-issues-in-wp-cli-in-user-portal/\" target=\"_blank\">list of known issues</a> in the WP Engine documentation, which includes a list of commands that are currently not supported. Documentation will be updated throughout the beta period to reflect progress on issues reported by testers.</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, 13 May 2015 23:51: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: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:84:\"WPTavern: WP Rollback Provides Basic Versioning for WordPress.org Plugins and Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43696\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wp-rollback-provides-basic-versioning-for-wordpress-org-plugins-and-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4615:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/undo-button.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/undo-button.jpg?resize=1025%2C506\" alt=\"The undo key from a computer keyboard\" class=\"size-full wp-image-43721\" /></a>The undo key from a computer keyboard\n<p>Despite the recent proliferation of plugins that add git-based version control to WordPress, your average user does not require a full-blown version control system as part of regular site management. Developers can certainly benefit from tools like <a href=\"http://wptavern.com/free-revisr-plugin-offers-git-management-for-wordpress\" target=\"_blank\">Revisr</a> and <a href=\"http://wptavern.com/gitium-provides-automatic-git-version-control-and-deployment-for-wordpress-plugins-and-themes\" target=\"_blank\">Gitium</a> for managing projects with Git, but the vast majority of WordPress users are more likely to benefit from a simple “undo” button for mistakes or bad updates.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-rollback/\" target=\"_blank\">WP Rollback</a> is a new plugin that brings the concept of an “undo” button to updates for plugins and themes hosted on WordPress.org. It allows users to easily rollback to any previous (or newer) version without the hassle of manually downloading files.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback.jpg?resize=925%2C228\" alt=\"wp-rollback\" class=\"aligncenter size-full wp-image-43711\" /></a></p>\n<p>Clicking the Rollback link will take the user to a screen where he can select from a list of previous versions or update to newer ones.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback-versions-screen.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback-versions-screen.jpg?resize=576%2C437\" alt=\"wp-rollback-versions-screen\" class=\"aligncenter size-full wp-image-43712\" /></a></p>\n<p>WP Rollback uses WordPress’ native plugin updater to revert to previous versions.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback-update.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback-update.jpg?resize=556%2C304\" alt=\"wp-rollback-update\" class=\"aligncenter size-full wp-image-43714\" /></a></p>\n<p>While using older versions of themes/plugins is not generally encouraged, there are times when it’s unavoidable. For example, some plugin authors routinely push out buggy updates, seemingly without having run any tests on them, and then rely on their users to discover and report the problems. It can sometimes be 24 – 72 hours before the author has the chance to push out a fix to the buggy update. WP Rollback allows users to quickly revert to the previous working version of the plugin.</p>\n<p>As themes hosted on WordPress.org <a href=\"http://wptavern.com/do-wordpress-org-themes-need-a-changelog\" target=\"_blank\">do not yet have change logs</a>, there may be times when a user updates to a new version of a theme where the author has made some major changes to the markup and/or styles. Without a changelog, the user has no idea what is included in the update or how it might impact a child theme or plugin’s output. WP Rollback gives you the ability to test a theme update and quickly rollback if necessary until you’ve had the chance to get your site ready.</p>\n<p>Most WordPress users do not have a development environment in place for putting software updates to the test before rolling them out. They simply expect updates to work, but there will always be those rare instances of unforeseen conflicts and bugs. Having WP Rollback in place should help users to be less wary about taking updates, since they know they can easily rollback if something goes wrong.</p>\n<p><a href=\"https://wordimpress.com/\" target=\"_blank\">WordImpress</a>, the folks behind WP Rollback as well as the new <a href=\"http://wptavern.com/give-a-new-free-donations-plugin-for-wordpress\" target=\"_blank\">Give plugin</a>, encourages users to backup their sites before performing plugin/theme updates or reverts. Ideally, you would test any changes in a development environment first to ensure that everything works as planned. <a href=\"https://wordpress.org/plugins/wp-rollback/\" target=\"_blank\">WP Rollback</a> is available for free on WordPress.org and <a href=\"https://github.com/WordImpress/WP-Rollback/wiki\" target=\"_blank\">documentation can be found on GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 May 2015 19:34:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:24:\"Matt: Advanced Hindsight\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45039\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://ma.tt/2015/05/advanced-hindsight/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:612:\"<blockquote><p>Beginning with the 2015 academic year, the Center for Advanced Hindsight (CAH) at Duke University will invite promising startups to join its behavioral lab and leverage academic research in their business models. The Center is housed within the Social Science Research Institute at Duke University and is led by Professor Dan Ariely, Professor of Psychology and Behavioral Economics at Duke University.</p></blockquote>\n<p><a href=\"http://danariely.com/2015/05/08/announcing-cah-startup-lab/\">This is a pretty awesome opportunity for entrepreneurs</a>, I hope a reader of this blog pursues 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, 13 May 2015 04:19:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: Major Changes to WordPress.org Guidelines Should Have a Request for Comments Time Period\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43595\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://wptavern.com/major-wordpress-org-guideline-changes-should-have-a-request-for-comments-time-period\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7603:\"<p>For the last three years, the <a href=\"https://make.wordpress.org/themes/\">WordPress Theme Review Team</a> has tried to encourage theme authors to adopt the Theme Customizer. In April, the decision was made by the TRT to no longer encourage, but <a href=\"https://make.wordpress.org/themes/2015/04/22/details-on-the-new-theme-settings-customizer-guideline/\">require</a> all theme options to be in the customizer. Although the decision was three years in the making, the community didn’t have an opportunity to provide feedback until <strong>after</strong> the requirement was put in place.</p>\n<h2>The Timeline</h2>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/EstimatedReadingTimeFeaturedImage.png\"><img class=\"size-full wp-image-25719\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/EstimatedReadingTimeFeaturedImage.png?resize=639%2C200\" alt=\"Estimated Reading Time Featured Image\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/eyesplash/8467316141/\">Eyesplash – let’s feel the heat</a> – <a href=\"http://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a>\n<p>Those who follow the official <a href=\"https://make.wordpress.org/themes/\">TRT blog</a> likely saw the writing on the wall. With the <a href=\"https://wordpress.org/news/2012/06/green/\">release of WordPress 3.4</a> in 2012, which introduced the theme customizer, the TRT held discussions on <a href=\"https://make.wordpress.org/themes/2012/05/08/proposed-wordpress-3-4-guidelines-revisions/\">proposed changes</a> to the theme review guidelines. One of the proposed changes <strong>recommended</strong> theme options be incorporated into the theme customizer. Of particular interest is <a href=\"https://make.wordpress.org/themes/2012/05/08/proposed-wordpress-3-4-guidelines-revisions/#comment-19516\">a conversation</a> between Justin Tadlock and Chip Bennett on whether or not the customizer should be recommended so early.</p>\n<p>In November of 2014, the team <a href=\"https://make.wordpress.org/themes/2014/11/04/todays-meeting-agenda-ive-gone-back-all-comments/\">held a meeting</a> to discuss modifications to the theme review guidelines. Up until this point, theme authors were allowed to create theme options in one of three ways, Theme Customizer, Settings API, or with custom options pages using the Theme Mods API.</p>\n<p>During the meeting, <a href=\"https://wordpress.slack.com/archives/themereview/p1415124589001969\">Tadlock suggested</a> that the team should <strong>strongly recommend</strong> theme authors to use the customizer. Members in attendance agreed and the theme review guidelines changed to <a href=\"https://make.wordpress.org/themes/2014/04/03/wordpress-3-9-guidelines-revision-proposal-round-2/\">strongly recommend</a> theme options be placed into the customizer.</p>\n<p>A few days after the meeting, Tadlock published a post asking <a href=\"https://make.wordpress.org/themes/2014/11/11/how-do-we-solve-the-theme-options-problem/\">how do we solve the theme options problem</a>? He highlights the lack of educational resources on the customizer as one of the major culprits of its slow adoption.</p>\n<blockquote><p>One of the things I’ve always hoped the TRT would become is more of an educational team. I firmly believe that if we didn’t have to spend so much time dealing with theme options, we could spend more time on educating in other areas of the dev/design.</p>\n<p>I’m writing this post because I believe this to be the biggest hangup with themes today. It’s the hardest part of the review process. It’s also one of the most critical because theme options means potential security issues.</p></blockquote>\n<p>The post opened up a dialogue to discuss ways of dealing with several issues related to getting developers to adopt and use the customizer. Bennett <a href=\"https://make.wordpress.org/themes/2014/11/24/understanding-the-apis-related-to-theme-options/\">published a post a few days later</a> that explained APIs related to theme options. It was later followed up by Tadlock with a post on <a href=\"https://make.wordpress.org/themes/2014/11/26/customizer-theme-mods-api-or-settings-api/\">choosing Theme Mods API or Settings API</a>.</p>\n<h2>The Vote</h2>\n<p>Fast forward to April 2015, the team <a href=\"https://wordpress.slack.com/archives/themereview/p1429639190005379\">held a meeting</a> and unanimously agreed to require theme authors to place theme options into the customizer. A day later, <a href=\"https://make.wordpress.org/themes/2015/04/22/details-on-the-new-theme-settings-customizer-guideline/\">Tadlock explained</a> why the change was made and how the team came to its decision.</p>\n<blockquote><p>First, I want to say that the team did not take this decision lightly nor did we make it quickly. In fact, this has been an ongoing discussion for nearly 3 years (since the customizer was first introduced in core). Many of us had originally hoped that we could take a more organic approach to this and allow theme authors to naturally make the switch on their own given enough time.</p></blockquote>\n<p>The decision created a <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options#comments\">passionate, lengthy conversation</a> with several people chiming in <em>after the fact</em> on WP Tavern.</p>\n<h2>A Request for Comments Period</h2>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/03/FutureOfCommentingFeaturedImage.png\"><img class=\"size-full wp-image-18515\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/03/FutureOfCommentingFeaturedImage.png?resize=638%2C200\" alt=\"Future Of Commenting Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/marcwathieu/2945514734/\">Marc Wathieu</a> – <a href=\"http://creativecommons.org/licenses/by-nc/2.0/\">cc</a>\n<p>On the TRT blog, there are several blog posts that encourage feedback, especially on guideline proposals. In this instance however, feedback, concerns, and criticism weren’t encouraged until after the decision was made.</p>\n<p>The TRT usually <a href=\"https://make.wordpress.org/themes/2015/04/13/weekly-meeting-agenda-this-week-weve-got-our-2/\">publishes an agenda</a> that highlights what topics will be discussed during the meeting. An agenda was published for the April 14th meeting but not for the April 21st meeting. This means only those in attendance were able to voice an opinion and vote on the issue, as there was no advance notice.</p>\n<p>I understand the team has discussed this change for the last three years, but I would like to have seen a request for comments period for at least a month on the TRT blog.</p>\n<p>This way, people could comment on the decision before it was implemented. The team could have controlled the conversation, provided a more accessible way of participating in the discussion versus Slack, and heard legitimate concerns from theme developers.</p>\n<p>I hope major changes like this in the future are addressed in a way where the public can be more involved. The notion that concerned parties should have been in Slack during the meeting to voice concerns before the decision was made is unacceptable. People have things to do and while I think Slack is easier to use than IRC, a blog post with a comment form is accessible to a lot more people.</p>\n<p>An RFC period doesn’t make sense for a lot of what takes place in the world of WordPress development but a change that affects current, past, and future themes in the directory is a great example of where it does makes sense.</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, 12 May 2015 22:10:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Customizer Theme Resizer Plugin Offers Live Previews of Your Site on Mobile Devices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43599\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://wptavern.com/customizer-theme-resizer-plugin-offers-live-previews-of-your-site-on-mobile-devices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3729:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-theme-resizer.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-theme-resizer.jpg?resize=650%2C300\" alt=\"customizer-theme-resizer\" class=\"aligncenter size-full wp-image-43646\" /></a></p>\n<p>Contributors on the <a href=\"http://wptavern.com/wordpress-4-3-to-focus-on-mobile-experience-admin-ui-better-passwords-and-customizer-improvements\" target=\"_blank\">upcoming WordPress 4.3 release</a> are moving full speed ahead with plans to improve the experience of using the customizer. They’re also exploring ways to re-architect it to make way for feature plugins that would bring in additional functionality.</p>\n<p>WordPress core contributors have continually demonstrated a commitment to improving the customizer to make it better for everyone, and the Theme Developer Handbook was recently <a href=\"http://wptavern.com/wordpress-theme-developer-handbook-updated-with-comprehensive-guide-to-the-customizer-api\" target=\"_blank\">updated with a comprehensive guide to using the Customizer API</a>. Plugin developers are also finding new ways to <a href=\"https://wordpress.org/plugins/tags/customizer\" target=\"_blank\">extend the customizer</a> to support the increasing number of users who depend on it for live previews.</p>\n<p><a href=\"https://wordpress.org/plugins/customizer-theme-resizer/\" target=\"_blank\">Customizer Theme Resizer</a> is a new plugin that is immensely useful for previewing your site on various mobile devices while adjusting options in the customizer. The plugin was created by Japanese web developer <a href=\"https://profiles.wordpress.org/webnist/\" target=\"_blank\">Tatsuki Ohta</a>, who has 10 other extensions listed in the official directory. It allows you to review your design for responsiveness without having to leave the customizer panel.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-theme-resizer-screenshot.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-theme-resizer-screenshot.jpg?resize=905%2C561\" alt=\"customizer-theme-resizer-screenshot\" class=\"aligncenter size-full wp-image-43648\" /></a></p>\n<p>Customizer Theme Resizer offers nine preset mobile phone/tablet display options, or you can manually add your own screen dimensions. You can also easily switch between portrait or landscape mode.</p>\n<p>The plugin works seamlessly within the customizer, so you can set it to iPhone 6, for example, and live preview any of your design choices on that device. This is especially helpful when uploading a site logo or a header image if you want to see how those images resize down for devices. It keeps you from having to go back and forth while making adjustments and testing responsiveness on your phone or simulator.</p>\n<p>I tested the plugin and found that it works as advertised. You can see a quick overview of how it works in the video below:</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>As a result of the WordPress.org Theme Review Team’s decision to <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options\" target=\"_blank\">enforce the use of the customizer for theme options</a>, more themes will be moving to support the customizer ahead of the deadline to comply. The Customizer Theme Resizer plugin is a handy tool to use in conjunction with any theme that supports the customizer. Install the <a href=\"https://wordpress.org/plugins/customizer-theme-resizer/\" target=\"_blank\">Customizer Theme Resizer</a> plugin from WordPress.org the next time you want to live preview the mobile-friendliness of your design adjustments.</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, 12 May 2015 21:52:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:71:\"WPTavern: 3 Big Things that Will Happen to WordPress in the Near Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43611\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wptavern.com/3-big-things-that-will-happen-to-wordpress-in-the-near-future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6711:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/petersuhm.jpeg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/petersuhm.jpeg?resize=150%2C150\" alt=\"petersuhm\" class=\"alignright size-thumbnail wp-image-43613\" /></a>This opinion piece was contributed by guest author <a href=\"https://twitter.com/petersuhm\" target=\"_blank\">Peter Suhm</a>. Peter is a web developer from the Land of the Danes. He is the creator of <a href=\"https://wppusher.com/\" target=\"_blank\">WP Pusher</a> and a huge travel addict, bringing his work along with him as he goes.<br />\n </p>\n<hr />\n<h3>Yet another WordPress prophecy</h3>\n<p>Okay, I admit that the title of this post is a bit risky. Honestly, it should probably have been “3 Big Things That I Wholeheartedly Hope Will Happen To WordPress In The Not Too Distant Future”. That being said, I am optimistic by nature, and I actually think these three ideas are realistic scenarios. So in all modesty, and without further ado, here is my take on some of the next big things to happen in the WordPress world in the near future.</p>\n<h1>WordPress Will Have Dependency Management</h1>\n<p>There is no question about it. WordPress needs some sort of dependency management mechanism. We have seen all other fragments of the PHP community, and other languages too, adopt the use of dependency managers. Most likely, WordPress will adopt <a href=\"https://getcomposer.org/\" target=\"_blank\">Composer</a> in some form, either out-of-the-box or by configuration.</p>\n<h3>What is a dependency manager?</h3>\n<p>A dependency manager is a software tool that can resolve and manage the dependencies (other libraries) that a given library requires. In PHP we have Composer. Each PHP library that supports Composer will have a defined set of dependencies that it depends on. The role of Composer is to fetch all these dependencies and make sure they are all compatible with each other.</p>\n<h3>… and why does WordPress need one?</h3>\n<p>WordPress needs one so we do not have to reinvent the wheel every time we want to make a new plugin or theme. Every time we write code for WordPress when we could have used one of the existing PHP packages out there, we are essentially wasting our time. Allowing the use of third-party dependencies allows for much more rapid development and better security. So many security issues in WordPress plugins are the same ones showing up again and again.</p>\n<h3>What does this mean for you?</h3>\n<p>In the short run, for plugin developers, WordPress adopting a dependency manager will mean a huge opportunity for making WordPress specific plugins for all the existing PHP libraries out there. When this happens, we will see hundreds, if not thousands, of plugins that will just be WordPress wrappers around existing libraries. Some of these plugins will end up becoming very popular. So be ready if you are an upcoming plugin author!</p>\n<p>WordPress developers will probably also have to deal with some sort of frontend dependency manager, since, with the <a href=\"http://wp-api.org/\" target=\"_blank\">WP REST API</a>, a lot of things will be revolutionized on the frontend side of things. We will touch more on that in the next section.</p>\n<h1>WordPress Will Be “Just” a Backend</h1>\n<p>This is not my idea, but I am certain this is the way we are moving. With the WP REST API in core, WordPress will essentially be a backend, complete with user management and so forth, for your API-based web application. Themes are going to be JavaScript based and will communicate with WordPress through the API. Plugins will stay mainly PHP, with a dash of JavaScript, just as the backend itself will.</p>\n<p>I believe that a main reason for WordPress’ widespread success is the dashboard. It is extremely user friendly and intuitive. Add to that how simple and easy it is to add 3rd party plugins and themes and you have a winner. Extending core is also really trivial because of all the actions and filters that WordPress has built in. There is no way that the WP REST API is going to change this. It is simply adding an extra layer for frontend developers, and most likely, radically changing how we work with theming.</p>\n<p>A few years ago, I worked as a full time Ruby on Rails developer. For one project, we needed some kind of CMS to manage the content of our Rails app. One of the developers (a hardcore Ruby guy) suggested using the WordPress dashboard as a backend and just build a simple API around it. We never ended up doing that, but imagine how easy that would be to implement had the API been around at the time.</p>\n<h3>What does this mean for you?</h3>\n<p>If you are a WordPress theme developer, this means that in the future you will probably not be a WordPress developer any more. You will “just” be a theme developer. You better up those JavaScript skills before this happens.</p>\n<h1>WordPress Will Become More Decoupled</h1>\n<p>As a result of all this, WordPress will become a lot more decoupled. Obviously, the biggest cut will be between the backend (dashboard and plugins) and the front end (themes). It is also easy to imagine, with an adaptation of Composer, that core itself will become a lot more decoupled. Maybe similar to how the Laravel framework is split up into the Illuminate packages (now we will have to define what “near future” means, though).</p>\n<p>As already mentioned, the main component will be the dashboard. Plugins makes sense to keep as a part of the dashboard, but in the future, they might look more like WordPress-specific Composer packages. It makes sense to keep all this in PHP – of course with a bit of JavaScript here and there.</p>\n<p>Another thing to consider is that if Composer is adopted in the near future, that would naturally mean an upgrade of the minimum required PHP version. That will probably happen very soon, anyways. We might see some sort of frontend plugins as well, but these will be JavaScript and be managed through a frontend dependency management tool.</p>\n<h3>What does this mean for you?</h3>\n<p>This means that if you are a WordPress plugin developer, you can keep writing good old PHP code. No need to jump straight over to NodeJS, yet, but if you are a theme developer, you might want to keep an eye on what those guys are up to.</p>\n<p>It also means that WordPress is going to be much more decoupled and customizable. You will be able to pick the parts you need and skip the rest. If you need something different, you will most likely be able to find an existing PHP package that can do the job. Sounds good, right?</p>\n<p>These are my 5 cents. I am curious to hear what you think. Where is WordPress headed?</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, 12 May 2015 18:15:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:106:\"WPTavern: BuddyPress 2015 Survey Shows Increase in English-Speaking Communities and Commercial Theme Usage\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43531\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"http://wptavern.com/buddypress-2015-survey-shows-increase-in-english-speaking-communities-and-commercial-theme-usage\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6558:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/2015-bp-survey-results.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/2015-bp-survey-results.jpg?resize=1025%2C576\" alt=\"2015-bp-survey-results\" class=\"aligncenter size-full wp-image-43580\" /></a></p>\n<p>The <a href=\"https://buddypress.org/2015/05/2015-buddypress-survey-results/\" target=\"_blank\">BuddyPress 2015 survey results</a> are now available. This year’s survey did not have the same community penetration as <a href=\"http://wptavern.com/7-surprising-results-from-the-2013-buddypress-codex-survey\" target=\"_blank\">2013</a> and <a href=\"https://buddypress.org/2014/03/2014-buddypress-survey-results/\" target=\"_blank\">2014</a>, with 37.5% fewer respondents, but the information is still valuable for gauging how and where people are using the plugin. Volunteers collected feedback from 211 participants in 42 different countries.</p>\n<p>Feedback this year shows a few significant shifts from previous years, especially when it comes to languages used on BuddyPress sites. The top three languages in 2015 are English (69.23%), French (10.26%), and German (7.69%). In <a href=\"http://wptavern.com/7-surprising-results-from-the-2013-buddypress-codex-survey\" target=\"_blank\">2013</a>, language usage was fairly evenly divided between English (56%) and non-English sites.</p>\n<p>On the surface, the language results seem to indicate a shrinking international community, but it may be due to the fact that the survey lost participants from 20 countries captured the previous year.</p>\n<h3>Commercial BuddyPress Themes are on the Rise</h3>\n<p>Results indicate that 34% of community managers and developers surveyed are building BuddyPress sites with commercial WordPress themes that offer custom BP CSS and/or template modifications. That number is up from 26% the previous year, likely due to more BuddyPress themes entering the market.</p>\n<p>Accessing BuddyPress sites via mobile is also slowly on the rise with 63% of respondents reporting that they’ve used a smartphone to access their sites. It’s no surprise that the survey shows mobile responsiveness is one of the most important factors in theme selection.</p>\n<p>Other preferred BuddyPress theme features include compatibility with the latest BP version and a light/fresh design. This preference may be due to kinds of sites that users are building, which remain fairly unchanged from previous years:</p>\n<ul>\n<li>Generic (26.32%)</li>\n<li>Academic (23.31%)</li>\n<li>Artistic (12.03%)</li>\n<li>Sports (11.65%)</li>\n<li>Gaming (10.53%)</li>\n<li>Scientific (8.27%)</li>\n<li>Religious (6.77%)</li>\n<li>Travel (0.75%)</li>\n<li>Health (0.38%)</li>\n</ul>\n<h3>Extended Profiles and Activity Streams Remain the Most Used BuddyPress Components</h3>\n<p>Results show that the most used BuddyPress components are Extended Profiles (71.13%) and Activity Streams (66.49%), followed by User Groups (57.22%). Although Profiles and Activity remain dominant, they are waning slightly from the previous year while Groups are increasing in popularity.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-components-usage.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-components-usage.png?resize=1025%2C881\" alt=\"bp-components-usage\" class=\"aligncenter size-full wp-image-43575\" /></a></p>\n<p>Surprisingly, Friend Connections, which are often associated with social networks, rank quite low on the list of components, trailing Messaging, Notifications, and Account Settings. Site Tracking, a feature used most often with multisite, ranks dead last among components that are always activated at just 8.25%.</p>\n<p>If you take a look at the features on track for <a href=\"http://wptavern.com/buddypress-2-3-beta-1-is-ready-for-testing\" target=\"_blank\">BuddyPress 2.3</a>, the direction of development seems to be trending toward improving the components that users are mostly likely to activate. Last year’s major performance improvements <a href=\"http://wptavern.com/buddypress-2-0-ramps-up-performance-reduces-footprint-by-up-to-75\" target=\"_blank\">reduced BuddyPress’ footprint by up to 75%</a> in many places, especially for sites that rely on activity and member directories.</p>\n<p>The recent additions of the <a href=\"http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api\" target=\"_blank\">Member Types API</a> and upcoming <a href=\"http://wptavern.com/buddypress-2-3-will-improve-avatar-uploads-with-the-new-bp-attachments-api\" target=\"_blank\">Attachments API</a> greatly improve the extensibility of components that BuddyPress site administrators are most frequently using. The survey results confirm that BP core development is being shaped by community feedback and overall the software is improving for those that are actively using it.</p>\n<p>The anonymous comments on the survey provide some critical feedback that indicate it may be time for BuddyPress contributors to reconsider how the software is presented to the world. One respondent feels that the tagline “social networking in a box” is inaccurate, given recent developments in other social networking software:</p>\n<blockquote><p>BuddyPress is some distance behind the features people now expect of modern social networks. OK for school, or small intranet purposes, but to call it ‘social networking in a box’ is slightly stretching reality.</p></blockquote>\n<p>BuddyPress also continues to be somewhat daunting for beginners. Developers can be sold on its extensibility, but your average user trying to set up a social network will have a sharp learning curve when it comes to adding features beyond what is offered in BP core. That frustration, when it comes to extending the software, seems to make its way into users’ opinions of BuddyPress in general.</p>\n<blockquote><p>I’ve been trying to learn BuddyPress for about a year. Setup is super easy. Mods are always a pain. I understand this has to do with community support. Everybody wants answers. Few pitch in to help.</p></blockquote>\n<p>This year’s survey results and user feedback provide BuddyPress core contributors and volunteers with some important ideas to consider for shaping both development and community support in the future. The full results of the survey are <a href=\"https://mercime.github.io/BuddyPress-2015-survey-results/\" target=\"_blank\">available on GitHub</a> with a more detailed breakdown and charts for each question.</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, 11 May 2015 19:31: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: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:35:\"Matt: New Yorker on Marc Andreessen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45044\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://ma.tt/2015/05/new-yorker-on-marc-andreessen/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:371:\"<p>Tad Friend has a <a href=\"http://www.newyorker.com/magazine/2015/05/18/tomorrows-advance-man\">great New Yorker profile of Marc Andreessen</a>, one of my favorite people to debate and talk to (though it happens all too rarely). Check out <a href=\"http://pmarcasays.golaun.ch/\">Pmarca Says</a> if you want to catch up on some of his recent thinking from tweetstorms.</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, 11 May 2015 15:56:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"WPTavern: Gazette: A Free WordPress Magazine 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=43501\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/gazette-a-free-wordpress-magazine-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:3367:\"<p><a href=\"https://theme.wordpress.com/themes/gazette/\" target=\"_blank\">Gazette</a> is a new WordPress magazine theme from the folks at Automattic, designed by <a href=\"http://thomasguillot.com/2015/05/07/new-theme-gazette/\" target=\"_blank\">Thomas Guillot</a>. Since the majority of themes produced for WordPress.com are well-suited to single author blogs, Gazette’s fine-tuned focus on digital publications is a welcome addition to the collection.</p>\n<p>Magazine themes are generally few and far between, because they have to be designed for a constant flow of content with a homepage that allows the reader to quickly scan multiple featured stories. Gazette takes a minimalist approach to the magazine style in that it isn’t cluttered with skinny columns of varying widths, obtrusive advertising slots, etc. It could easily be used for a personal blog or photography site.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-homepage.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-homepage.jpg?resize=1025%2C906\" alt=\"gazette-homepage\" class=\"aligncenter size-full wp-image-43507\" /></a></p>\n<p>As you scroll down the page, the sticky navigation/search bar pins the menu to the top for easy access. Gazette makes a strong impression with fullscreen featured images that display above post and page titles. The content area has been decluttered for readability with post meta pulled out into a separate column.</p>\n<p>Gazette supports image, gallery, video, and link post formats. The theme includes two optional widget areas (the right sidebar and footer), and two custom menus. With Jetpack active, Gazette adds an option to upload your site logo. The plugin also manages the featured content display, along with the related posts functionality seen in the <a href=\"https://gazettedemo.wordpress.com/\" target=\"_blank\">live demo</a>.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-author-bio.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-author-bio.jpg?resize=300%2C282\" alt=\"gazette-author-bio\" class=\"alignright size-medium wp-image-43552\" /></a>Gazette includes a handful of layout and content options in the customizer:</p>\n<ul>\n<li>Display header image on blog index only</li>\n<li>Show author bio on the sidebar of single posts</li>\n<li>Display content in the footer, i.e. basic HTML, links, et.</li>\n</ul>\n<p>Gazette is responsive and maintains its striking visual appeal and readability on mobile devices. The design is similar to popular mobile news apps that display posts with titles overlayed on featured images.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-responsive.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-responsive.jpg?resize=560%2C222\" alt=\"gazette-responsive\" class=\"aligncenter size-full wp-image-43508\" /></a></p>\n<p>Check out the <a href=\"https://gazettedemo.wordpress.com/\" target=\"_blank\">live demo</a> on WordPress.com to see Gazette in action. The theme is not yet available on WordPress.org but should be soon. In the meantime, the zip file for self-hosted sites can be downloaded from the sidebar of the <a href=\"https://theme.wordpress.com/themes/gazette/\" target=\"_blank\">Gazette theme page</a> on WordPress.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:\"Mon, 11 May 2015 06:30: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: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:15:\"Matt: Undercity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45042\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://ma.tt/2015/05/undercity/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:190:\"<p>A great video going underneath the streets of New York, Ninja Turtle Style:</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>Hat tip: <a href=\"http://dentedreality.com.au/\">Beau</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 May 2015 15:47:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:24:\"Matt: Hint Water Founder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45037\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://ma.tt/2015/05/hint-water/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:585:\"<blockquote><p>When Kara Goldin started putting fruit in her water 10 years ago, she had no idea that she had stumbled upon a business idea that would eventually lead to the creation of a new category in the beverage industry, grow to a 40 million dollar company, and help her lose over 25 pounds in the process.</p></blockquote>\n<p>Cool interview with <a href=\"http://www.huffingtonpost.com/anjali-varma/mompreneur-spotlight-foun_b_7198902.html\">Kara Goldin, the founder of Hint Water</a>, which I drink 3-4 of a day and is also an <a href=\"http://audrey.co/\">Audrey</a> company.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 May 2015 03:42: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Post Status: The trojan Emoji\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=12600\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://poststatus.com/the-trojan-emoji/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5500:\"<p>Andrew Nacin just spoke at <a href=\"http://loopconf.io\">Loopconf</a> about the nature of a critical software bug.</p>\n<p></p>\n<h3>No strict mode on WordPress databases</h3>\n<p>At a base level, the problems originated in that WordPress did not enable strict mode for MySQL. If <code>STRICT_ALL_TABLES</code> has been enabled, the security vulnerability that was addressed in WordPress 4.2 would not exist.</p>\n<p>Without strict mode, MySQL allows more flexible inputs, and doesn’t require the same level of precision in what it allows. For example, a long username would just truncate to the maximum allowed characters, versus be rejected.</p>\n<p>Since MySQL can do strange things without strict mode enabled, there are obscure but significant ways for hackers to take advantage.</p>\n<h3>Defining the scope of a vulnerability</h3>\n<p>A vulnerability was disclosed to the WordPress security team about two years ago. At its core, the method for forcing MySQL truncation was by using four-byte characters, and then using tricks to store nefarious code in the database.</p>\n<p>Nacin used an example of inserting two comments in the database with single quotes and attached four-byte characters. MySQL would truncate the four-byte characters on databases using UTF8 (and don’t allow four-byte characters), and a hacker could utilize the truncated comment (or any other field, really) to add a second comment to finish the exploitation.</p>\n<p>The initial vulnerability was fixed in 3.6.1. In 2014, an <a href=\"https://cedricvb.be/post/wordpress-stored-xss-vulnerability-4-1-2/\">new disclosure came in from Cedric Van Bochhaven</a> to note that there was still a vulnerability under particular circumstances.</p>\n<p>After months of work and “tens of thousands of lines of code” for rewrites and tests, the team realized that they needed to check inputs to the database at a base level of WordPress.</p>\n<p>In WordPress 4.2, approximately 1,000 lines of code were inserted into wpdb.php under the guise of Emoji support, but were really for fixing this vulnerability.</p>\n<p><img class=\"aligncenter size-full wp-image-12604\" src=\"https://poststatus.com/wp-content/uploads/2015/05/utf8mb4.png\" alt=\"utf8mb4\" width=\"751\" height=\"520\" /></p>\n<p>The original report identified three requirements for the site to be exposed:</p>\n<ol>\n<li>MySQL truncating everything after a four-byte character</li>\n<li>It’s not exposed when utf8mb4 is enabled</li>\n<li>It’s theme dependent</li>\n</ol>\n<p>It turned out that really only part of number one needed to be true. They discovered, “this could affect any two fields that would be rendered anywhere near each other.”</p>\n<p>Between 11 default database tables and hundreds of fields, basically all parts of WordPress were vulnerable, and core itself also “extensively” relied on non-strict mode functionality.</p>\n<p>Furthermore, they realized that even three-byte characters could cause truncation, if they aren’t valid upon insertion.</p>\n<p>So of the requirements from the original report, most were not actually required.</p>\n<p><img class=\"aligncenter size-full wp-image-12606\" src=\"https://poststatus.com/wp-content/uploads/2015/05/utf8mb4-notreally.png\" alt=\"utf8mb4-notreally\" width=\"745\" height=\"517\" /></p>\n<blockquote><p>“We’re deeper and deeper and deeper into this hole, and we have no idea how to get out.”</p></blockquote>\n<p>The team went back to a discussion from the 3.6.1 vulnerability fix, that does what Nacin calls “preflight checks” that checks many layers of WordPress to ensure allowed data is being inserted.</p>\n<p>Checking allowed character sets was not only on the database and table level, but also on columns and fields. Furthermore, the client, the connection, and the server can have their own character sets.</p>\n<p>Nacin defines the method for checking as both using a scalpel and a sledgehammer.</p>\n<blockquote><p>We need this to work two different ways: with a scalpel via <code>update()</code>, <code>replace()</code>, <code>insert()</code>, and <code>delete()</code>, and with a sledgehammer via write queries via <code>query()</code>.</p></blockquote>\n<h3>Trojan Emoji</h3>\n<p>The code has been in trunk since January, months before the release of 4.2. But it was there under the guise of Emoji support, as “noone had any idea what it did because it was 1,000 lines of the database abstraction layer to just remove invalid characters.”</p>\n<p>Because of how opaque the vulnerability and the corresponding fix were, the team was able to spend a very long time working on and fixing the issue, all without exposing the vulnerability to the general public.</p>\n<p>When 23.9% of the internet uses WordPress, security becomes an even more enormous challenge than in other software. There was an easy fix for this all along: strict mode on MySQL.</p>\n<p>However, it would’ve broken “everything.” Alternatively, exposing a vulnerability to the public without a fix that doesn’t break websites makes the vulnerability that much more powerful. It takes a ridiculous effort for the WordPress core team and security team to ensure practical solutions to keep the WordPress software secure and reliable for millions of users.</p>\n<p>By the way, if you ever find a vulnerability in WordPress or you get really excited about problems like these, you can email [email protected] to get involved.</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, 08 May 2015 20:18:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:27:\"Matt: Where Does Weight Go?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45034\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://ma.tt/2015/05/where-does-weight-go/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:156:\"<p><a href=\"http://mitchkirby.com/2015/04/21/where-does-weight-go/\">When You Lose Weight, Where Does it Go?</a> I’ll be honest that I had no idea.</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, 08 May 2015 13:10:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:23:\"Matt: Slot Machine Tech\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45031\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://ma.tt/2015/05/slot-machine-tech/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:469:\"<p>The Verge: <a href=\"http://www.theverge.com/2015/5/6/8544303/casino-slot-machine-gambling-addiction-psychology-mobile-games\">Slot machines perfected addictive gaming. Now, tech wants their tricks</a>. Includes information from one of my favorite authors <a href=\"http://www.nirandfar.com/\">Nir Eyal</a>, who also <a href=\"http://wordpress.tv/2012/09/03/nir-eyal-automatic-customers-how-to-design-user-habits/\">spoke at WordCamp San Francisco a few years ago</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 May 2015 06:55: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Post Status: How to create better, more accessible WordPress themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=12536\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://poststatus.com/how-to-create-accessible-wordpress-themes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23972:\"<p>This is not the ultimate guide for accessibility. You will not be an accessibility expert after reading this, not even a ninja! But I’d like to share what I have learned about accessibility in WordPress Themes. Hopefully that’ll help someone to build more accessible themes, and we can share ideas of how to make the web better place for all of us.</p>\n<p>I’ve learned most of my knowledge from <a href=\"https://www.joedolson.com/\">Joe Dolson</a> and <a href=\"http://davidakennedy.com/\">David A. Kennedy</a>. They both contribute to the <a href=\"http://make.wordpress.org/accessibility/\">WordPress Accessibility Team</a> and have been kindly answering my questions on Github and Twitter. Our goal is to understand the basics of accessibility and how we can prepare our themes to receive the official <a href=\"https://wordpress.org/themes/tags/accessibility-ready/\">accessibility-ready</a> tag.</p>\n<h3>What is accessibility and why should we care?</h3>\n<p>Web <strong>accessibility means that people can browse the web</strong>, with or without disabilities, using any device they might have. In this article, I mostly concentrate on people with disabilities including visual, auditory, physical, speech, cognitive, and neurological disabilities. We can improve our sites and help such people use, navigate, and interact with them.</p>\n<p><a href=\"https://twitter.com/viljamis\">Viljami Salminen</a> talks about different input methods and performance in his article called <a href=\"http://viljamis.com/blog/2015/the-many-faces-of-the-web/\">The Many Faces of the Web</a>.</p>\n<blockquote><p>On a bigger scale, I mean things like making our websites accessible to everyone. Making them work with different input methods like touch, mouse, keyboard or voice. Making them load and perform fast. Providing everyone access to this vast network of connected things. And if we don’t strive for all of this, what’s the point of working on the web?</p></blockquote>\n<p>If nothing else, you should care about the <a href=\"https://www.youtube.com/watch?v=cpbbuaIA3Ds\">money</a>! <a href=\"https://twitter.com/brad_frost\">Brad Frost</a> nails it in his article about <a href=\"http://bradfrost.com/blog/post/accessibility-and-low-powered-devices/\">accessibility and low-powered devices</a>.</p>\n<blockquote><p>“Do you want to reach more customers?” the answer is always yes. When I ask them “Do you want your experience to load blazingly fast?” the answer is always yes. Both accessibility and performance are invisible aspects of an experience and should be considered even if they aren’t explicit goals of the project.</p>\n<p>There it is. Make efforts to make Web experiences accessible and performant; make money.</p></blockquote>\n<p>Let’s start with the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/\">required</a> parts of the puzzle.</p>\n<h3>.screen-reader-text for hiding text</h3>\n<p>Using <code>.screen-reader-text</code> is actually not required but I’ll use it in several examples. WordPress uses the CSS class <code>.screen-reader-text</code> to handle any HTML output that is <a href=\"https://make.wordpress.org/accessibility/2015/02/09/hiding-text-for-screen-readers-with-wordpress-core/\">targeted at screen readers</a>. The purpose of screen-reader targeted text is to provide <strong>additional context</strong> for links, document structure, or form fields. This is helpful for whoever is using screen readers when browsing the web.</p>\n<p>Since WordPress 4.2, the <code>.screen-reader-text</code> class is used in front-end code also, not just back-end. For example <a href=\"https://codex.wordpress.org/Function_Reference/comments_popup_link\">comments_popup_link()</a> can output something like this by default:</p>\n<p><code>4 Comments<span class=\"screen-reader-text\"> on My article about accessibility</span></code></p>\n<p>Did you notice the <code>.screen-reader-text</code> class? The text <em>on My article about accessibility</em> is supposed to be hidden on screen but readable for screen readers. This provides additional information about what <em>4 Comments</em> stands for and which article we’re talking about.</p>\n<p>If you don’t have .screen-reader-text in your theme’s style.css that’s okay too. Then all users in this scenario would see the entire text (<em>4 Comments on My article about accessibility</em>), but nothing is broken. Naturally there is a plugin for <a href=\"https://wordpress.org/plugins/screen-reader-text-theme-support/\">adding support for .screen-reader-text</a> as well.</p>\n<h4>Add .screen-reader-text in your theme’s style.css</h4>\n<p>The following snippet is the recommended method for adding a screen-reader class in your theme’s styles at the moment. You can also follow <a href=\"https://github.com/Automattic/_s\">the Underscores theme</a> for this and other recommended methods.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>You can style the <code>:focus</code> styles differently but this a solid start.</p>\n<h3>Headings and headings hierarchy structure</h3>\n<p>Headings are important way to navigate your site. They are the first step most screen reader users take when they start to navigate your site. And regular users can also browse the a website more easily when there are structured headings.</p>\n<p>But headings and heading hierarchy structure can be challenging, I certainly have had <a href=\"https://github.com/samikeijonen/kuorinka/issues/18\">issues with headings</a> in my personal experience. Should we use just one H1 element on each page? Can there be more than one H1? What about other headings: H2, H3 and so on?</p>\n<p>With the acceptance of HTML5 standards, there can be more than one H1 on each page, but it’s important to be consistent with your headings hierarchy. Here is example of my blog page headings structure:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>And again for single posts:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>The problem is that the headings hierarchy breaks if a user enters H1 in the article text or mixes headings in the wrong way. Plugins that output markup may also mess with the hierarchy.</p>\n<p>Read more detail info about <a href=\"https://www.joedolson.com/2014/11/headings-hierarchy-problem/\">heading hierarchy structure</a> and be consistent in your theme. And as a writer, think about the hierarchy structure of your theme and try not to break it. <img src=\"https://poststatus.com/wp-includes/images/smilies/simple-smile.png\" alt=\":)\" class=\"wp-smiley\" /></p>\n<h3>ARIA landmark roles</h3>\n<p>Aria landmark roles programmatically identify sections of a page. This helps navigate to various sections of a page for assistive technology users.</p>\n<p>These are the most common roles:</p>\n<ul>\n<li>header: <code>role=\"banner\"</code></li>\n<li>main content: <code>role=\"main\"</code></li>\n<li>sidebars: <code>role=\"complementary\"</code></li>\n<li>footer: <code>role=\"contentinfo\"</code></li>\n<li>search form: <code>role=\"search\"</code></li>\n<li>navigation menus: <code>role=\"navigation\"</code></li>\n</ul>\n<p>If the same role appears more than once on a page, you should provide an ARIA label for that role:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Try not to use too many ARIA landmark roles. Otherwise it wouldn’t be helpful for screen reader users to navigate your site. Ten to fifteen roles is probably a good rule of thumb as a maximum limit.</p>\n<p>Here is a simple example for how your HTML structure could look with ARIA roles:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>An the screenshot from <a href=\"http://accessibility.oit.ncsu.edu/tools/aria-landmark-inspector/\">Aria landmark inspector</a> website:</p>\n<p><a href=\"https://poststatus.com/wp-content/uploads/2015/05/aria-landmark.png\"><img class=\"aligncenter size-large wp-image-12538\" src=\"https://poststatus.com/wp-content/uploads/2015/05/aria-landmark-752x526.png\" alt=\"Aria Landmarks\" width=\"752\" height=\"526\" /></a></p>\n<h3>Link text</h3>\n<p>Imagine your blog archive using ten <em>Read More…</em> links. That’s not very helpful for screen reader users browsing trough your links. In general, avoid repetitive non-contextual text strings.</p>\n<h4>Using the_content() function</h4>\n<p>By default <a href=\"https://codex.wordpress.org/Function_Reference/the_content\"><code>the_content()</code></a> function outputs <em>more&hellip;</em> text when using <!–more–> in post content. Fortunately, you can change this output using the function’s first parameter: <code>$more_link_text</code>. It’s recommended to use the post title for additional context:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>This will output <code>Read more <span class=\"screen-reader-text\">My Article Name</span></code>, not just the repetitive <em>Read More</em>. Note that we’re using class <code>screen-reader-text</code> again, which means that the post title can be hidden (if theme supports it), but screen readers will still read it.</p>\n<h4>Using the_excerpt() function</h4>\n<p>By default <a href=\"https://codex.wordpress.org/Function_Reference/the_excerpt\">the_excerpt()</a> function adds <code>[...]</code> to the end of the excerpt. We can replace with something similar to what we used in <code>the_content</code> example, using the <code>excerpt_more</code> filter.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>That’s more like it. You can change the HTML structure, but you get the general idea how we added post title after the default text.</p>\n<h4>Descriptive link text</h4>\n<p>Try to be descriptive when using link text, and bare urls should not be used as link anchor text.</p>\n<p>Bad example:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Good example:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<h3>Controls</h3>\n<p>Let links be links, buttons be buttons, divs be divs, spans be spans to ensure native keyboard accessibility and interaction with a screen reader. Article <a href=\"http://www.karlgroves.com/2013/05/14/links-are-not-buttons-neither-are-divs-and-spans/\">links are not buttons. Neither are divs and spans</a>.</p>\n<p>All controls must also have text to indicate the nature of the control, but it too can be hidden inside the <code>.screen-reader-class</code>.</p>\n<p>For example, when toggling a menu, the control should be a button, not a link, div or span.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>You can always style the button using CSS. Many theme developers add a font icon indicating the menu, like the commonly named “hamburger menu.” This is a bad way of adding the font icon:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Font icons alone don’t have any meaning for screen readers. In general <a href=\"http://thomasbyttebier.be/blog/the-best-icon-is-a-text-label\">the best icon is a text label</a>.</p>\n<p>Instead you could do this:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Then add the icon font using a pseudo element, such as <code>#nav-toggle::before</code>.</p>\n<p>You can also use the icon font and <code>.screen-reader-text</code> together.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Sighted users will see only the hamburger icon, and screen reader users will now understand that this control is for the menu.</p>\n<h3>Keyboard navigation</h3>\n<p><a href=\"http://themeshaper.com/\">On ThemeShaper</a>, there is fantastic article about <a href=\"http://themeshaper.com/2015/03/12/keyboard-accessibility/\">keyboard accessibility</a>. In short, <strong>users must be able to navigate your site using only a keyboard</strong>. For example people who are blind or have motor disabilities use the keyboard almost exclusively.</p>\n<p>I’d like to challenge you to put your mouse away for a while and test your own website. Can you navigate through links, dropdown menu and form controls using the tab and shift + tab keys? Enter can be used to activate links, buttons, or other interactive elements.</p>\n<h4>:focus is important</h4>\n<p>Note that only links, buttons and form fields can be focused on by default. That’s why I keep noting that we should let links be links and buttons be buttons. Don’t try to replace them with divs or spans. Users should see and elements should have visual effects to notate their state when they navigate your site using a keyboard. This is where :focus steps in.</p>\n<p>This is a poor implementation:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>That disables outline style for all links! This is much better:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Now users have a visual effect — a dotted line around the link — on links when focused. You can style the thin dotted to something else, but do not disable it. Remember that you can of course style buttons using CSS also, for example to change the background on :focus.</p>\n<p>Make sure that colors are not your only method of conveying important information. That will help color blind people to see visual effects.</p>\n<h4>Dropdown menus and keyboard accessibility</h4>\n<p>Have you tried accessing your submenus in a dropdown menu using only keyboard? If you can’t successfully do so, let’s see what we can do about that, starting with the current <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/#keyboard-navigation\">guidelines for navigation menus</a>.</p>\n<ul>\n<li>Fails: Dropdown navigation menus are hidden using <code>display:none;</code> and brought into view on <code>:hover</code></li>\n<li>Passes: Dropdown navigation menus are hidden using <code>position: absolute;</code> and brought into view on <code>:hover </code>and <code>:focus</code>, and are navigable using the <code>tab</code> key</li>\n<li>Better: Dropdown navigation menus are hidden using position: absolute; and brought into view on <code>:hover</code>, <code>:focus</code>, and are navigable using either the <code>tab</code> key or by using the keyboard arrow keys.</li>\n</ul>\n<p>Once again, the <a href=\"http://underscores.me/\">Underscores</a> theme has a good example of dropdown menu markup which is navigable using the <code>tab</code> key. I’ll hope there will be support for arrow keys in near future. I personally use <a href=\"http://responsive-nav.com/\">Responsive Nav</a> as a starting point for accessible, responsive menus.</p>\n<p>We need some Javascript magic for enabling keyboard support for dropdown menus. For reference, checkout this <a href=\"https://github.com/Automattic/_s/blob/master/js/navigation.js\">navigation.js file</a>. This is the basic idea:</p>\n<ul>\n<li>Each time a menu link is focused or blurred, set or remove the <code>.focus</code> class on the menu link. This is done with the <code>toggleFocus()</code> function.</li>\n<li>Add class <code>.focus</code> your stylesheet, where you have <code>:hover</code> styles for the menu.</li>\n<li>You can now navigate your menu and submenus using the <code>tab</code> and <code>Shift + tab</code> key!</li>\n</ul>\n<p>There are some other aspects we should consider for more accessible dropdown menus:</p>\n<ul>\n<li>Use ARIA markup like aria-haspopup=”true” in menu items that have submenus.</li>\n<li>What about touch devices? Have you tried accessing submenus using iPad when menu is in “Desktop” mode? I believe touch support is also coming to the Underscores theme.</li>\n</ul>\n<p>There could be another in-depth article for creating accessible, responsive menus so I’ll move on.</p>\n<h3>Contrasts</h3>\n<p>Color contrast is something we might have to compromise on in our design. We need to provide enough contrast between text and background colors so that it can be read by people with moderately low vision. There are many beautiful themes out there that use for example light grey colors but might not pass the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/#contrasts\">guideline for color contrast</a>.</p>\n<blockquote><p>Theme authors MUST ensure that all background/foreground color contrasts for plain content text are within the level AA contrast ratio (4.5:1) specified in the Web Content Accessibility Guidelines (WCAG) 2.0 for color luminosity.</p></blockquote>\n<p>I test color contrast using Joe Dolson’s <a href=\"https://www.joedolson.com/tools/color-contrast.php\">tester tool</a>. Accessibility doesn’t make your site ugly or boring, that’s always you. <img src=\"https://poststatus.com/wp-includes/images/smilies/simple-smile.png\" alt=\":)\" class=\"wp-smiley\" /> But it does set some preconditions we need to follow. Aaron Jorbin also has a great <a href=\"https://wordpress.tv/2014/07/01/aaron-jorbin-color-theory-for-web-developers/\">talk on color theory and accessibility</a> from WordCamp Chicago 2014.</p>\n<h3>Skip links</h3>\n<p>A website’s primary content is usually not at the top of the page. There can be dropdown menus, header sidebars, search forms or other information before the main content. For keyboard and screen reader users it’s annoying to navigate this extra content over and over again before arriving at the main content. That’s why themes must have skip links, which help to navigate directly to content. The skip link is usually added in the header.php file after the body or first div tag.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Make sure the link is one of the first items on the page and visible when keyboard focus moves to the link. We already did that when we added .screen-reader-text class in our stylesheet.</p>\n<p>Also move focus to the main content area of the page when skip link is activated. I believe there is still a bug in WebKit-based browsers that prevents focus being moved, but once again, <a href=\"https://github.com/Automattic/_s/blob/master/js/skip-link-focus-fix.js\">the Underscores theme has you covered</a> offering a good example.</p>\n<h3>Forms</h3>\n<p>WordPress default comment and search forms are accessible-ready, but be careful if you tweak them. I have made mistakes doing so in the past.</p>\n<p>Hiding the search button using <code>.search-submit { display: none; }</code>. <strong>Do not use this CSS if you want the content to be read by a screen reader.</strong></p>\n<p>A better option is the filter <a href=\"https://codex.wordpress.org/Function_Reference/get_search_form\">get_search_form</a>, and add our now familiar <code>.screen-reader-text</code> class to the search form’s submit button.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>If you use a custom <code>searchform.php</code> in your theme, remember to keep appropriate field labels and do not use only a font icon as the submit button.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>In short from <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/#forms\">the guidelines</a>:</p>\n<blockquote>\n<ul>\n<li>Use form controls that have explicitly associated <code><label></code> elements.</li>\n<li>Create feedback mechanisms (such as via AJAX) that expose responses to screen readers. Look at techniques with ARIA for further information.</li>\n</ul>\n</blockquote>\n<p>Also keep an eye on a <a href=\"https://github.com/wpaccessibility/a11ythemepatterns\">collection of patterns</a> for creating accessible-ready WordPress themes. Like <a href=\"https://github.com/wpaccessibility/a11ythemepatterns/tree/master/comment-form-with-js-aria\">an accessible comment</a> form powered by JavaScript and ARIA.</p>\n<h3>Images and alternative text</h3>\n<p>As a user I’ve failed to add alternative (alt attribute) text to my content images, at least good ones. I promise to improve! You see, blind people of course can’t see your content images. Computers and screen readers can’t determine what the image presents. That’s why there is alt attribute and <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/#images\">guidelines for images</a>.</p>\n<ul>\n<li>If there are images in template markup, like features images, they must utilize the alt attribute. Or provide the end user to enter alt text.</li>\n<li>All decorative images should be added via CSS versus inline. Examples of decorative images are lines for style or background images.</li>\n<li>Note that sometimes an empty alt=”” is <a href=\"http://webaim.org/techniques/alttext/\">the best choice</a>.</li>\n</ul>\n<h3>Media</h3>\n<p>Sliders and carousels must not auto start by default. The same goes for videos and audios. This is mostly plugin territory, but it’s good to mention, especially as the broader web is more and more often auto-playing this content.</p>\n<h3>Not allowed</h3>\n<p>There are couple of things that are <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/#not-allowed\">not allowed</a>.</p>\n<blockquote>\n<ul>\n<li>Any positive tabindex attribute. Negative or zero value tabindex is allowed in specific circumstances (assessed on a case-by-case basis).</li>\n<li>The inclusion of the accesskey attribute.</li>\n<li>Spawning new windows or tabs without warning the user.</li>\n</ul>\n</blockquote>\n<h3>Build accessibility-ready themes</h3>\n<p>We have gone through the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/\">required guidelines</a> for getting the official <a href=\"https://wordpress.org/themes/tags/accessibility-ready/\">accessibility-ready</a> tag in our themes when we submit them to the WordPress theme repository. It wasn’t that bad was it!</p>\n<p>I challenge you to build an accessibility-ready theme when you start your next project. Or look into your current site and start with small steps, like adding better support for keyboard users. I hope this article will help you do that. Let me know in the comments if there are mistakes in the article, you have questions, or you have ideas for part two.</p>\n<p>It doesn’t matter are you building themes for customers, commercial themes for marketplaces or free themes for WordPress.org. We can all improve our skills and create more accessible websites.</p>\n<hr />\n<p><em>About the author: <a href=\"https://poststatus.com/profiles/sami-keijonen/\">Sami Keijonen</a> is a teacher who likes to learn about the web, WordPress, and life. He runs <a href=\"https://foxland.fi/\">Foxland Themes</a>.</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:\"Thu, 07 May 2015 18:59:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sami Keijonen\";s: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:72:\"WPTavern: CampPress: A 2-3 Day Social Experience for Geeks and Creatives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43466\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wptavern.com/camppress-a-2-3-day-social-experience-for-geeks-and-creatives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2591:\"<p>I attend WordCamps on a regular basis and have often joked with attendees as well as organizers that there should be a WordCamp where people camp out. GoDaddy’s WordPress evangelist, Mendel Kurland, is taking it upon himself to turn the joke into reality. He’s in the preliminary stage of <a href=\"https://mendel.me/articles/news/the-hunt-for-a-camppress-venue-is-officially-on/\">planning CampPress</a>.</p>\n<p>CampPress is a 2-3 day social experience for geeks and creatives to disconnect from technology to focus on community and creativity. The event is an adult geek summer camp infused with <a href=\"http://burningman.org/culture/philosophical-center/10-principles/\" target=\"_blank\">burning man values</a> and is not affiliated with GoDaddy. I asked Kurland what his inspiration is to organize such an event.</p>\n<p>“As creative professionals, sometimes we forget to disconnect. CampPress is inspired by the simpler lives we lived as kids, where social interactions and creativity were the hallmarks of great growth experiences. Traditional conferences are incredible at transferring knowledge and skills and creating personal connections. CampPress is about deepening connections between participants and strengthening bonds that encourage collaboration within the community.”</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/CabinCampCampbell.jpg\"><img class=\"size-full wp-image-43469\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/CabinCampCampbell.jpg?resize=1024%2C683\" alt=\"Camp Campbell is a Possible Venue\" /></a>Camp Campbell is a Possible Venue\n<p>Some items will be provided, including, food staples for breakfast, lunch, and dinner along with a preparation area, space to camp, a cabin or RV hookup depending on the final location, and ice for beer. CampPress will also have a Pit of Creativity. Information on what the pit of creativity is for will be published on the official CampPress site at a later date.</p>\n<p>If you’re interested in attending, volunteering, or simply want to stay updated on the event’s progress, <a href=\"http://eepurl.com/blHmE9\">sign up</a> to the updates list. Based on initial reactions in the comments, people are excited to see such an event take place.</p>\n<p>I would love to camp out for a few days with members of the WordPress community and disconnect from technology at the same time. Let us know in the comments if you’re interested in attending such an event. Also, give us your suggestions for venues you think would be a good fit for CampPress.</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, 07 May 2015 16:59:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:73:\"WPTavern: TGM Plugin Activation Library Publishes Roadmap for Version 3.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43432\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wptavern.com/tgm-plugin-activation-library-publishes-roadmap-for-version-3-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5704:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/domino.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/domino.jpg?resize=1020%2C484\" alt=\"photo credit: domino - (license)\" class=\"size-full wp-image-43493\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/31059504@N08/6803420982\">domino</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>This week contributors on the <a href=\"http://tgmpluginactivation.com/\" target=\"_blank\">TGM Plugin Activation</a> (TGMPA) library published a roadmap for the future of the project. TGMPA is widely used by WordPress developers to require and recommend plugins for themes (and other plugins). The library is recommended by Themeforest, CodeCanyon, and the WordPress.org Theme Review Team as an alternative to bundling everything in one theme/plugin.</p>\n<p><a href=\"https://gamajo.com/\" target=\"_blank\">Gary Jones</a> is leading the upcoming 2.5 release, expected in May, with help from fellow lead developer <a href=\"http://twitter.com/jrf_nl\" target=\"_blank\">Juliette Reinders Folmer</a>, to whom he credits most of the recent activity on the project. This release will add support for installing from a GitHub repo source, separate menu items out from under the Appearance menu, add Travis CI support, improve accessibility, and fix a number of bugs.</p>\n<h3>The Future of the TGM Plugin Activation Library</h3>\n<p>The project’s contributors are also planning ahead for this summer’s 3.0 release, which Folmer will lead. This release will be a major turning point for TGMPA and will essentially constitute a complete rewrite.</p>\n<p>The <a href=\"https://github.com/TGMPA/TGM-Plugin-Activation/issues/394\" target=\"_blank\">roadmap for 3.0</a> includes several ambitious items that will likely affect the way developers integrate TGMPA into their projects:</p>\n<ul>\n<li>Multisite compatibility</li>\n<li>Fix conflicting UI messages for usage in themes / plugins</li>\n<li>Improved UI by having the admin page always in the same location</li>\n<li>Updatability of TGMPA independently of the plugin/theme which ships it</li>\n<li>Show dependencies more clearly</li>\n</ul>\n<p>This plan includes an architectural change that would allow for the integration of the <a href=\"https://wordpress.org/plugins/plugin-dependencies/\" target=\"_blank\">Plugin Dependencies</a> (PD) plugin to provide UI for dependency management and cascading deactivation if dependencies are not met.</p>\n<p>According to Jones, the eventual goal is to turn TGMPA into a plugin that can be added to the WordPress.org repository for easier updating:</p>\n<blockquote><p>Some of the logic in the rewrite will be handled by the Plugin Dependencies plugin, and TGMPA itself will be turned into a plugin and added to the WPORG repo so that it can be updated automatically. The TGMPA library will then consist of a bootstrap file, the TGMPA plugin (as a zip) and the PD plugin (as a zip). The bootstrap file will then check if the TGMPA + PD plugins are installed, and if not, install them from the embedded zips.</p></blockquote>\n<p>TGMPA contributors are currently in discussion with representatives from WordPress.org about the possibility of allowing their planned plugin in the official directory. As the plugin has not yet been produced and submitted, it’s still too early to know the outcome of the decision.</p>\n<p>“If we can’t go onto the WordPress.org repo, then we’ll be looking at simply hosting the plugin version on GitHub, and use some (if needed) of the GitHub Updater plugin (or similar) code within the bootstrap file to pull the latest tag from GitHub instead,” Jones said.</p>\n<p>One of the main focuses for version 3.0 is to allow different plugins and themes to use TGMPA without the concern of compatibilities resulting from plugin A including 2.4.1, for example, and plugin B including 2.5.0.</p>\n<p>“The v3 setup should also be able to handle instances of v2 gracefully, and the v2 branch may have a 2.6 release to make the logic for that easier,” Jones said.</p>\n<p>After version 3.0 is released, the project will contain multiple repositories – one for the standard plugin, and one that uses Grunt to pull in files from the plugin repository and zips them up next to the bootstrap file. In anticipation of these changes, contributors have moved the current repository into a new GitHub organization at: <a href=\"https://github.com/TGMPA\" target=\"_blank\">https://github.com/TGMPA</a>.</p>\n<p>As TGMPA does not currently track its usage, it’s difficult to nail down exact numbers for how many theme/plugin developers these changes will impact.</p>\n<p>“I have no idea what sort of numbers of products this entails,” Jones said. “But there is a non-trivial amount of usage that requires us to step up the game in order to provide the exceptional functionality other developers can rely on.”</p>\n<p>TGMPA is a critical tool that many developers in the WordPress ecosystem depend on for managing plugin requirements and recommendations. As theme development continues to move in the direction of separating theme and plugin functionality, TGMPA will play an important role in serving developers who want to structure their projects according to WordPress best practices.</p>\n<p>Getting the new TGMPA plugin included in the WordPress.org plugin directory would be a big win for the project, as it would allow users to update more easily in the future. You can <a href=\"https://twitter.com/tgmpa\" target=\"_blank\">follow TGMPA on Twitter</a> for all the latest news as the team moves into development for version 3.0.</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, 07 May 2015 16:35: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: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:52:\"WPTavern: BuddyPress 2.3 Beta 1 is Ready for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43440\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/buddypress-2-3-beta-1-is-ready-for-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2493:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/bp-featured.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/bp-featured.png?resize=800%2C390\" alt=\"bp-featured\" class=\"aligncenter size-full wp-image-18726\" /></a></p>\n<p>BuddyPress <a href=\"https://buddypress.org/2015/05/buddypress-2-3-0-beta-1/\" target=\"_blank\">2.3 beta 1</a> is now available. Project lead John James Jacoby encouraged site administrators and BP plugin/theme developers to jump in and test the new features.</p>\n<p>One of the highlights in the upcoming release is the new <a href=\"http://wptavern.com/buddypress-2-3-will-improve-avatar-uploads-with-the-new-bp-attachments-api\" target=\"_blank\">Attachments API</a>, which makes it possible for developers to create components that manage uploads. You can see this API in action alongside the newly improved <a href=\"https://buddypress.trac.wordpress.org/ticket/6290/\" target=\"_blank\">avatar upload UI</a>, revamped to include drag-and-drop upload and support for device cameras.</p>\n<p>This release will also ship with <a href=\"http://wptavern.com/buddypress-2-3-will-introduce-companion-stylesheets-for-wordpress-default-themes\" target=\"_blank\">companion stylesheets for WordPress’ latest default themes</a>, Twenty Fifteen and Twenty Fourteen. These stylesheets provide a broad sweep on BP elements to harmonize the appearance of the plugin with the default themes and could use more testing and feedback from the community.</p>\n<p>Jacoby noted a few other important items to test in 2.3 beta 1, including:</p>\n<ul>\n<li><a href=\"https://buddypress.trac.wordpress.org/ticket/6177/\" target=\"_blank\">Blog Post Activity</a> generates better looking excerpts when posts contain images or other embedded media content</li>\n<li><a href=\"https://buddypress.trac.wordpress.org/ticket/6331/\" target=\"_blank\">Star Private Messages</a> allows for improved marking of important inbox messages</li>\n<li>The Member Types API now supports <a href=\"https://buddypress.trac.wordpress.org/ticket/6286\" target=\"_blank\">member-type-specific directories</a></li>\n<li>Continued object and query cache enhancements</li>\n</ul>\n<p>BuddyPress developers and community managers have plenty of time to test their themes and plugins against the upcoming 2.3 release. A release candidate is scheduled for the week of May 12th. The official release is expected to drop May 26th, shortly before the BuddyCamp that will take place at WordCamp Miami 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, 07 May 2015 15:31: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: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:69:\"WPTavern: WPWeekly Episode 191 – Proven Guilty by a Washing Machine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43443&preview_id=43443\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wpweekly-episode-191-proven-guilty-by-a-washing-machine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2901:\"<p>On this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss the news of the week. We inform you of the recent security vulnerability discovered in Jetpack and the Twenty Fifteen theme. We also discuss a new crowdfunding campaign to create a server manager built on top of WordPress called HostPress.</p>\n<p>I shared a personal story of a bad habit I’ve developed in the last two years that’s decreased my reading comprehension. Last but not least, Marcus tells a story from a conference he recently attended where the technology inside of a washing machine contained the evidence needed to convict a murderer.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/xss-vulnerability-in-jetpack-and-the-twenty-fifteen-default-theme-affects-millions-of-wordpress-users\">XSS Vulnerability in Jetpack and the Twenty Fifteen Default Theme Affects Millions of WordPress Users</a><br />\n<a href=\"http://wptavern.com/wordpress-com-suspends-theme-submissions-from-new-sellers\">WordPress.com Suspends Theme Submissions from New Sellers</a><br />\n<a href=\"http://wptavern.com/dan-griffiths-launches-175k-crowdfunding-campaign-to-build-hostpress\">Dan Griffiths Launches $175K Crowdfunding Campaign to Build HostPress</a><br />\n<a href=\"http://wptavern.com/new-plugin-reorders-the-wordpress-admin-menu-using-drag-and-drop\">New Plugin Reorders the WordPress Admin Menu Using Drag-and-Drop</a><br />\n<a href=\"https://jeffc.wordpress.com/2015/05/05/why-am-i-in-a-hurry-to-do-everything/\">Why am I in a Hurry to do Everything?</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/hamburger-menu/\">Hamburger Menu</a> is a side menu that you can add to your site that will be viewed on mobile devices or you can use it to completely replace the main menu on a site.</p>\n<p><a href=\"https://wordpress.org/plugins/rest-console-embed/\">REST Console embed</a> provides a shortcode to embed a REST API console into a page or post. It’s based on Automattic’s WordPress.com console.</p>\n<p><a href=\"https://wordpress.org/plugins/plugin-auditor/\">Plugin Auditor</a> records details of who installed and activated each plugin on your website and why.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 6th 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 #191:</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, 07 May 2015 14:45:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:23:\"Matt: Decades are Short\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://ma.tt/2015/05/decades-are-short/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:352:\"<p>Sam Altman of YCombinator wrote a great post on the occasion of his thirtieth birthday, <a href=\"http://blog.samaltman.com/the-days-are-long-but-the-decades-are-short\">The days are long but the decades are short</a>. There’s a lot of subtlety and nuance in each point, so even if you’ve read it already it’s worth another pass.</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, 07 May 2015 04:05:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:111:\"WPTavern: XSS Vulnerability in Jetpack and the Twenty Fifteen Default Theme Affects Millions of WordPress Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43415\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"http://wptavern.com/xss-vulnerability-in-jetpack-and-the-twenty-fifteen-default-theme-affects-millions-of-wordpress-users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3045:\"<p><a href=\"https://wordpress.org/plugins/jetpack/changelog/\">Jetpack</a> and the <a href=\"https://wordpress.org/themes/twentyfifteen/\">Twenty Fifteen</a> default theme have been updated after a DOM-based Cross-Site Scripting (XSS) vulnerability was discovered. <a href=\"https://blog.sucuri.net/2015/05/jetpack-and-twentyfifteen-vulnerable-to-dom-based-xss-millions-of-wordpress-websites-affected-millions-of-wordpress-websites-affected.html\">According to Sucuri</a>, any plugin or theme that uses <a href=\"http://genericons.com/\">Genericons</a> is vulnerable due to an insecure file included within the package.</p>\n<p>Genericons ships with a file called example.html which is vulnerable to attack from the Document Object Model level or DOM for short. The <a href=\"https://www.owasp.org/index.php/Main_Page\">Open Web Application Security Project</a> defines a DOM based attack as:</p>\n<blockquote><p>DOM Based <a class=\"mw-redirect\" title=\"XSS\" href=\"https://www.owasp.org/index.php/XSS\"> XSS</a> (or as it is called in some texts, ‘type-0 XSS’) is an XSS attack wherein the attack payload is executed as a result of modifying the DOM ‘environment’ in the victim’s browser used by the original client side script, so that the client side code runs in an ‘unexpected’ manner. That is, the page itself (the HTTP response that is) does not change, but the client side code contained in the page executes differently due to the malicious modifications that have occurred in the DOM environment.</p></blockquote>\n<p>The payload for these types of attacks is executed directly in the browser. Even Sucuri’s website firewall is unable to block the attack since it never gets the chance to see it. The company however, has virtually patched the vulnerability.</p>\n<p>Sucuri worked with a number of hosting providers to identify and remove the example.html file from their servers. If you use the following webhosts, you should already be patched as of a week ago.</p>\n<ul>\n<li>GoDaddy</li>\n<li>HostPapa</li>\n<li>DreamHost</li>\n<li>ClickHost</li>\n<li>InMotion</li>\n<li>WPEngine</li>\n<li>Pagely</li>\n<li>Pressable</li>\n<li>Websynthesis</li>\n<li>Site5</li>\n<li>SiteGround</li>\n</ul>\n<p>According to Sucuri, the example.html file was used for debugging and testing purposes but was mistakenly left inside the directory after the project was packaged for production environments. This simple oversight has placed millions of sites at risk as Twenty Fifteen is a default theme that ships with WordPress.</p>\n<p>You should update the Twenty Fifteen theme and Jetpack regardless of which webhost you’re using. You should also remain vigilant and keep an eye out for additional plugin and theme updates. If possible, manually remove example.html from within the Genericons directory.</p>\n<p><em><strong>Update</strong></em></p>\n<p>WordPress 4.2.2 <a href=\"https://wordpress.org/news/2015/05/wordpress-4-2-2/\">is available</a> as a security update that addresses the Genericons issue and contains bug 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:\"Wed, 06 May 2015 18:56:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:59:\"WPTavern: Andrew Nacin on Challenging WordPress Assumptions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=42281\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/andrew-nacin-on-challenging-wordpress-assumptions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1162:\"<p>WordPress lead developer <a href=\"http://nacin.com/\" target=\"_blank\">Andrew Nacin</a> spoke at the <a href=\"http://world2014.phparch.com/\" target=\"_blank\">php[world] 2014</a> conference on “Challenging Your WordPress Assumptions from 2009.” The video was recently published on YouTube and provides an excellent overview of the major ways WordPress has changed over the past six years.</p>\n<p>Nacin explores common assumptions, such as “WordPress is insecure,” “WordPress doesn’t scale,” and “WordPress is not OOP,” among others. Some of these assumptions are false, some are true, some used to be true and others are partially true. If you’re a PHP developer who is new to WordPress or curious about how it’s changed over the years, this presentation will give you a quick 30 minute overview.</p>\n<p>Check out the video embedded below to learn more about WordPress’ philosophy for building user-centered software, its commitment to maintaining backwards compatibility, and how major publishers and companies are using it in innovative ways.</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:\"Wed, 06 May 2015 18:15: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: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:51:\"WPTavern: Inside BuddyBoss with Michael Eisenwasser\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43380\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wptavern.com/inside-buddyboss-with-michael-eisenwasser\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8724:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/buddyboss.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/buddyboss.jpg?resize=1025%2C453\" alt=\"buddyboss\" class=\"aligncenter size-full wp-image-43387\" /></a></p>\n<p>Over the past couple years, <a href=\"http://www.buddyboss.com/\" target=\"_blank\">BuddyBoss</a> has emerged as a leader in the <a href=\"https://buddypress.org/\" target=\"_blank\">BuddyPress</a> products marketplace. Founder Michael Eisenwasser launched the business in 2010 after discovering BuddyPress while building an international job site to help online workers find employment.</p>\n<p>“BuddyPress blew me away,” Eisenwasser said. “It allowed for a sophisticated and fully customizable membership site while still benefiting from the WordPress ecosystem. We launched our online community almost overnight, and a year later 30,000 people were logging in every day and hiring each other.”</p>\n<p>BuddyBoss entered the BuddyPress ecosystem while it was still in its infancy. Eisenwasser saw an opportunity to help other entrepreneurs launch communities by creating products that solved common problems. In addition to the products, his team also offers development for custom requests.</p>\n<p>“I’ve been focusing on BuddyPress for so long now that I sometimes forget you can run WordPress without it,” he said.</p>\n<h3>Growing a Business in a Small Niche</h3>\n<p>As BuddyBoss products are targeted towards a small niche market, hiring has posed a continual challenge for Eisenwasser.</p>\n<p>“A company is only as good as its employees, and our biggest challenge has always been finding the right people to hire,” he said. “We need talented people who can move the company forward, knowing that we’re in a niche market and skilled developers who understand BuddyPress are harder to find.</p>\n<p>“It’s taken us many years to put together our current staff, and even now I still spend a considerable amount of time on hiring and training.”</p>\n<p>The BudddyBoss team is now up to 14 people who collaborate on design, development, support, and marketing. They currently serve several thousand customers, thanks to tremendous growth over the past couple of years.</p>\n<p>“Our revenue is 12.5 times larger today than it was three years ago, and most of that growth has been in the past year,” Eisenwasser said.</p>\n<p>“In the past 6 months, product revenue has grown 5 times larger due to improved product offerings, word of mouth from our customers, and better marketing. When I speak of products, I am combining themes and extensions together.</p>\n<p>“Currently we have several thousand paying customers, with an average checkout order of $130. Many customers purchase two or three products in one order, as we design our themes and plugins to work together for a unified experience,” he said.</p>\n<p>Despite the success of BuddyBoss’ themes and plugins, the company’s time is still divided 50/50 between product support and custom client work.</p>\n<p>“Custom development generates an important part of our revenue, and our product revenue is quickly catching up,” Eisenwasser said.</p>\n<p>“We actually have two teams, each equipped for development, support and maintenance. I personally manage our product team, while my business partner Tom Chedd manages our client team.</p>\n<p>“Many of our clients start as customers, and so when we develop products we’re always thinking about how our clients might use them. I think this has contributed to better products, because we actually use what we build,” he said.</p>\n<h3>Focused, Intentional Product Growth</h3>\n<p>In the early days of BuddyBoss, Eisenwasser took a job managing SongLyrics.com. Although he learned some valuable skills from the position, theme development at BuddyBoss was slow for the first few years.</p>\n<p>As product revenue has grown, BuddyBoss is looking to invest in adding more offerings to the store.</p>\n<p>“We’ve been working hard on assembling a team of talented developers who can help us build more products, however we’d rather spend a couple of months working on a theme than pushing out a bunch of themes fast,” he said.</p>\n<p>Instead of pumping up the BuddyBoss store with a proliferation of products, Eisenwasser and his team have intentionally kept the number of offerings on the smaller side. For years, their primary product was the original <a href=\"http://www.buddyboss.com/product/buddyboss-theme/\" target=\"_blank\">BuddyBoss</a> theme before adding the new <a href=\"http://www.buddyboss.com/product/boss-theme/\" target=\"_blank\">Boss</a> theme this year. Branching out into BuddyPress <a href=\"http://www.buddyboss.com/plugins/\" target=\"_blank\">plugins</a> was also a more recent development.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/boss-1100x760.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/boss-1100x760.jpg?resize=500%2C345\" alt=\"boss-1100x760\" class=\"aligncenter size-large wp-image-43398\" /></a></p>\n<p>“Designing for social networks requires a lot of thought, and we take our time considering every aspect,” Eisenwasser said.</p>\n<p>“Our customers give us all kinds of feedback about what they want, and there are many more themes coming down the road based on what we’ve learned.”</p>\n<h3>Current Landscape of the BuddyPress Theme and Plugin Market</h3>\n<p>Despite the fact that BuddyPress is now an eight-year-old plugin with a solid community of contributors supporting it, the marketplace for BP themes and plugins remains relatively small. Eisenwasser does not believe that the market is large enough to sustain a full-time theme business, but his team is working to expand its audience outside of the traditional WordPress/BuddyPress community.</p>\n<blockquote><p>BuddyPress has an active developer community and it’s been growing every year. Even if there are not enough people building on BuddyPress to sustain a larger theme business today, we can help change that. </p>\n<p>By building quality products we can improve the usability and perception of BuddyPress and encourage other people to come and join the community. <strong>There are many people building social networks every day – the question is whether or not they choose to build them within the BuddyPress ecosystem.</strong></p></blockquote>\n<p>As BuddyPress core cannot encompass all the functionality required by the many varied social networks people want to build, part of making BuddyPress more appealing is providing third-party add-ons that are compelling and reliable. BuddyBoss has started carving out a name for itself with useful plugins that extend the platform to support <a href=\"http://www.buddyboss.com/product/buddyboss-media/\" target=\"_blank\">media uploads</a>, <a href=\"http://www.buddyboss.com/product/buddypress-edit-activity/\" target=\"_blank\">activity editing</a>, <a href=\"http://www.buddyboss.com/product/buddypress-global-search/\" target=\"_blank\">global search</a>, and a Facebook-like <a href=\"http://www.buddyboss.com/product/buddyboss-wall/\" target=\"_blank\">wall</a> functionality.</p>\n<p>“We always envisioned ourselves building both themes and plugins,” Eisenwasser said. “I don’t really see a distinction. To me, we’re building solutions.</p>\n<p>“Layout issues are best solved within themes, and functionality issues are best solved by plugins. All of our products are designed to work together seamlessly, and work great with other themes and plugins too.”</p>\n<p>In the future, Eisenwasser said that BuddyBoss may open up its marketplace to third-party developers, but his primary concern is to maintain the same level of quality that customers have come to expect from BuddyBoss products.</p>\n<p>“For now, we are focusing on the theme market and bringing value / creating solutions for different niches,” he said. “We plan on evolving with the market as we grow. This could eventually require integrating with other platforms and putting more focus on other types of devices.”</p>\n<p>While there are a handful of successful BuddyPress themes on Themeforest, BuddyBoss is arguably the most dominant independent BuddyPress theme development shop at the moment. Eisenwasser’s experience indicates that the landscape of the BuddyPress product market is not yet wide open. Businesses looking to push into this space will need to produce top quality products while simultaneously tilling the soil to expand the WordPress + BuddyPress market in general.</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, 06 May 2015 17:30: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: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:22:\"Matt: Untold Silk Road\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/05/untold-silk-road/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:521:\"<p>This <a href=\"http://www.wired.com/2015/04/silk-road-1/\">Untold Story of Silk Road</a> is pretty amazing writing, a gripping story regardless of the genre (non-fiction, in this case). I can’t wait for the next chapter to come out on May 14. Also when reading about Ross, <a href=\"http://www.wired.com/2015/02/ross-ulbricht-didnt-create-silk-roads-dread-pirate-roberts-guy/\">it’s interesting to keep in mind Vanity Jones who was in many ways the brains behind the operation</a>, and also undiscovered.</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, 06 May 2015 06:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:79:\"WPTavern: Dan Griffiths Launches $175K Crowdfunding Campaign to Build HostPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43256\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/dan-griffiths-launches-175k-crowdfunding-campaign-to-build-hostpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5350:\"<p>When it comes to hosting, there are predominately two choices to manage your account or server; <a href=\"http://www.odin.com/products/plesk/\">Plesk</a> and <a href=\"http://cpanel.com/\">cPanel</a>. Dan Griffiths wants to shake things up by adding a third choice with <a href=\"https://www.indiegogo.com/projects/hostpress-redefining-web-hosting-control-panels\">HostPress</a>. HostPress is an open-source, extensible server control panel built on top of WordPress.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/HostPressLogo.png\"><img class=\"wp-image-43267 size-large\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/HostPressLogo.png?resize=500%2C333\" alt=\"HostPress Logo\" /></a>HostPress Logo\n<p>Griffiths has started an <a href=\"https://www.indiegogo.com/projects/hostpress-redefining-web-hosting-control-panels\">Indiegogo crowdfunding campaign</a> to generate $175k. The money will be used to cover personal expenses, take care of his son, and cover the server fees and salary of an experienced server administrator for one year. cPanel and Plesk have several shortcomings, including:</p>\n<ul>\n<li>Minimum requirements</li>\n<li>Extensibility</li>\n<li>Ease of branding</li>\n<li>Sustainability</li>\n</ul>\n<p>HostPress will have a smaller footprint on servers and customers will be able to brand it with just a few lines of code. By using WordPress, the platform taps into existing development resources which will help it stay on top of security issues.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/HostPressConceptImage.png\"><img class=\"size-full wp-image-43376\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/HostPressConceptImage.png?resize=620%2C467\" alt=\"HostPress Concept Image\" /></a>HostPress Concept Image\n<p>Server managers will be able to extend the platform through an API as well as plugins. HostPress will have a robust set of plugins available to the public, covering the most popular server software at the time of launch.</p>\n<h2>Market Share</h2>\n<p>According to <a href=\"http://builtwith.com/\">BuiltWith</a>, there are more than 4.1 million individual servers running active, licensed cPanel and Plesk installations. Base on this number, Griffiths calculates more than $82M is spent on control panels assuming a $20 per month price tag. Dedicated servers using cPanel, however, cost $45 per month.</p>\n<h2>Funding Specifics</h2>\n<p>The funds generated through the campaign will go to Griffiths, even if it’s not fully funded. However, if the project is fully funded, he expects to ship a beta of the product in June of 2016. He also plans to release the following:</p>\n<ul>\n<li>A modern, open-source, extensible server control panel</li>\n<li>An intuitive (and responsive) interface</li>\n<li>A fully-localized platform (HostPress speaks your language!)</li>\n<li>A platform developers can build on, including the ability to simply rebrand the panel without complex template languages.</li>\n</ul>\n<p>If the project doesn’t reach its funding goal, development will continue but at a slower pace. “The goal is to provide the Internet with an alternative to the clutter and complexity of server management. Even if we don’t become a major contender in this space, the support we do get will put pressure on the existing solutions to up their game,” Griffiths said.</p>\n<h2>Market Demand</h2>\n<p>When asked how much demand he’s witnessed in the hosting space, he replied, “There’s constant demand for fresh blood in the control panel space. Just take a look at a few of the cPanel/Plesk discussions online and you’ll see a lot of people complaining about their various flaws, or looking for a good alternative. In fact, there have been a number of other attempts made over the years, but none have gained traction due to one fatal flaw. They’re all written by engineers, so while the underlying functionality is solid, the interface always sucks.”</p>\n<p>If there is high demand from webhosts and server managers for a solution that’s better than Plesk or cPanel, Griffiths should have no problem reaching his funding goal. To find out what major webhosting companies think of the campaign and if they’ll financially contribute, I contacted GoDaddy and InMotion hosting. Both companies did not respond to my inquiries, despite multiple efforts to contact them.</p>\n<h2>Largest WordPress Crowdfunding Campaign on Record</h2>\n<p>Griffiths isn’t a stranger to the WordPress community’s generosity. Near the end of 2014, he started a <a href=\"http://wptavern.com/wordpress-community-pulls-together-to-help-a-member-in-need\">crowdfunding campaign</a> to raise $2,500. He ended up with nearly three times that amount. In this case however, it’s a product and $175k is a lot of money. If successful, it will be the largest WordPress crowdfunding campaign on record, dwarfing <a href=\"http://wptavern.com/buddypress-bbpress-and-glotpress-development-campaign-is-now-fully-funded\">John James Jacoby’s campaign</a> by $125k.</p>\n<p>HostPress looks like it could be an interesting product but without the financial aid of companies with large pockets, I don’t see how the campaign will reach its funding goal. Let us know your reactions to the campaign in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 May 2015 22:16:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:74:\"WPTavern: New Plugin Reorders the WordPress Admin Menu Using Drag-and-Drop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43236\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wptavern.com/new-plugin-reorders-the-wordpress-admin-menu-using-drag-and-drop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3626:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/reorder-admin-menu.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/reorder-admin-menu.png?resize=1025%2C482\" alt=\"reorder-admin-menu\" class=\"aligncenter size-full wp-image-43336\" /></a></p>\n<p>Every WordPress administrator has different needs when navigating the admin. For example, one may require frequent access to the Posts menu and rarely touch the Appearance menu. Another admininistrator may have a certain custom post type that is accessed more frequently than any other menu item.</p>\n<p>In some cases plugin developers take their liberties placing their menu items at the very top of the admin. Jetpack is a prime example of a plugin that assumes preeminence above Posts, Media, Comments, and other more frequently used publishing items.</p>\n<p><a href=\"https://wordpress.org/plugins/admin-menu-manager/\" target=\"_blank\">Admin Menu Manager</a> is a new plugin that allows you to take control of the admin and order menu items to suit your workflow. The plugin, created by <a href=\"https://spinpress.com/\" target=\"_blank\">Pascal Birchler</a> and the folks at <a href=\"http://required.ch/\" target=\"_blank\">required+</a>, adds a simple drag-and-drop interface for decluttering and reordering menu items.</p>\n<p></p>\n<p>As you can see in the demo, Admin Menu Manager allows you to drag menu items from top level to a sub-menu or pull sub-menus out to top level for easier access. The plugin is unobtrusive and doesn’t require its own settings page.</p>\n<p>“I got the idea for this particular plugin when I stumbled upon a similar one that used a drag and drop interface just for reordering menu items,” Birchler said. After searching for other comparable solutions for the admin, he decided to take it one step further and produce a proof-of-concept. The result was a useful new plugin.</p>\n<p>“I learned that such side projects are great for adapting new technologies and digging deeper into WordPress,” he said. “This is already my third plugin leveraging Backbone.js in my first three months working at required+. Before that I had no idea how to use this library.</p>\n<p>“Also, I now know that the WordPress admin menu can be quite a mess. I mean, there aren’t even unit tests for it. I’ll see how I can change that in core.”</p>\n<p>Birchler said he counts himself lucky that his employer offers him time to work on open source projects. Before he started at required+, the company had no plugins listed on WordPress.org. Now they are up to five after polishing up a few that were lying dormant on GitHub for awhile.</p>\n<p>Version 1 of Admin Menu Manager is <a href=\"https://wordpress.org/plugins/admin-menu-manager/\" target=\"_blank\">now available on WordPress.org</a> and the team is working on adding the following features to version 2:</p>\n<ul>\n<li>Completely remove (and restore) menu items</li>\n<li>Edit existing menu items and their icons</li>\n<li>Add custom items to the admin menu</li>\n</ul>\n<p>In its current state, the plugin is a good option for re-arranging the admin to suit a client’s needs or for simply getting Jetpack and other less-frequently used menus out of your way.</p>\n<p>New users often complain about how confusing the WordPress admin can be, especially when many active plugins are adding their own top-level menus. With the features promised in version 2, <a href=\"https://wordpress.org/plugins/admin-menu-manager/\" target=\"_blank\">Admin Menu Manager</a> has the potential to become a solid tool for decluttering the admin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 May 2015 21:11: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: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:89:\"WPTavern: Themekraft’s Difficult Experience Switching to the WordPress Theme Customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43297\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wptavern.com/themekrafts-difficult-experience-switching-to-the-customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7022:\"<p>Sven Lehnert, CEO of <a href=\"http://themekraft.com/\">Themekraft</a>, published <a href=\"http://themekraft.com/what-it-means-for-us-and-others-to-follow-the-theme-review-guidelines/\">his company’s experience</a> migrating from a custom theme options page to the theme customizer. He describes how difficult it was to move between the two and how it caused user frustration.</p>\n<p>“I’m sorry for the trouble some users are experiencing. We receive positive as well as frustrated feedback and I understand how users feel this way,” Lehnert said.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/CustomThemeOptionsPage.png\"><img class=\"size-full wp-image-43339\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/CustomThemeOptionsPage.png?resize=1025%2C493\" alt=\"Custom Theme Options Page\" /></a>Custom Theme Options Page\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/CustomizerThemeOptions.png\"><img class=\"size-full wp-image-43338\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/CustomizerThemeOptions.png?resize=1025%2C515\" alt=\"Using the Customizer\" /></a>Using the Customizer\n<p>Themekraft is migrating to the customizer because of <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options\">a new requirement</a> that forces themes hosted in the <a href=\"https://wordpress.org/themes/\">WordPress theme directory</a> to use it to build theme options. The requirement has sparked controversy and with 175 comments, is the most discussed article in Tavern history.</p>\n<h2>Consequences of Doing the Right Thing</h2>\n<p>Although Themekraft believes the requirement is the right decision, it’s come at the price of losing users. Lehnert expressed frustration that doing the right thing has caused users to jump ship, “I think it’s really frustrating, that our choice to use the customizer to create better themes has made users switch to a different theme. Our decision to use the customizer has pushed users to Themeforest.</p>\n<p>A lot of users have told us they moved to Themeforest and gave up on themes hosted on WordPress.org. To them, Themeforest does the job of WordPress.org and WordPress.org themes are outdated with limited functionality.”</p>\n<p>Two to three years ago I would have agreed with the opinion that themes in the WordPress theme directory leave a lot to be desired. I’ve read enough <a href=\"http://wptavern.com/tag/free-wordpress-themes\">reviews of great looking free themes</a> that I’ve nearly erased this mindset. I used to discourage users from browsing for themes on the directory, now I encourage them.</p>\n<h2>The Educational Problem</h2>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ChalkboardLearning.png\"><img class=\"size-full wp-image-30030\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ChalkboardLearning.png?resize=640%2C250\" alt=\"Chalkboard Learning\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/signifying/582602054/\">Clint Gardner</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>For years, the WordPress community has <a href=\"https://managewp.com/themes-design-plugins-functionality\">discussed and educated</a> users on why it’s important to separate presentation from functionality. Lehnert thinks it’s something normal users can’t understand, “They want to buy solutions and base their purchasing decisions from a graphical point of view. The separation from design and functionality is not understandable for the normal user.”</p>\n<p>In a <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options#comment-67849\">recent comment on the Tavern</a>, Chip Bennett explains his perspective on the educational part of the problem, “You are absolutely right that the wider (i.e. more than just the developers/insiders/one-percenters) have a very long way to go to educate those users.</p>\n<p>The reality is that, for far too long, commercial Theme developers attempted to add ‘value’ to their Themes by creating Theme+Plugin combinations.”</p>\n<p>There’s been some movement on this front with some theme authors <a href=\"http://wptavern.com/why-wordpress-theme-developers-are-moving-functionality-into-plugins\">moving theme functionality back into plugins</a>.</p>\n<p>Part of the problem is explaining the difference between themes and plugins. If you ask 10 WordPress developers where the line is drawn, you’d likely get at least five different answers. Since plugins can do everything a theme can do, it can easily become a never-ending debate between presentation and functionality.</p>\n<h2>The Balancing Act</h2>\n<p>Creating a WordPress product that balances user and developer needs is tricky. The main impetus for requiring the theme customizer is to provide a standardized experience between all the themes hosted in the directory. It will also help the Theme Review Team review themes more efficiently.</p>\n<p>Lehnert trusts the Theme Review Team’s decision but feels the change is geared towards developers. “I really believe in the WordPress community and I trust there will be a solution to the problem some day. At the moment however, the theme review guidelines only make sense from a developer’s perspective.”</p>\n<p>He suggests that the WordPress theme directory add support for <a href=\"http://wptavern.com/up-to-the-community-to-improve-theme-demo-data\">better theme previews</a> with customizer access. This way, users can see how flexible and customizable a theme is.</p>\n<h2>Food for Thought</h2>\n<p>Based on Lehnert’s experience, there is a perception problem between WordPress.org hosted themes and those on Themeforest. It will be interesting to see if other theme authors and companies have a similar experience when they make the switch.</p>\n<p>It was disheartening to read this statement by Lehnert, “In the case of a theme business, staying outside of the community is easier!” Developers and users have at least one thing in common, they don’t like change, especially when it comes to requirements or guidelines. Developers have always had two choices:</p>\n<ol>\n<li>Abide by the requirements and guidelines to have a plugin or theme hosted on WordPress.org</li>\n<li>Do things on your own terms through your site and GitHub</li>\n</ol>\n<p>Outside of WordPress.org, it’s the wild west. You can use whatever custom options page or framework you want without anyone telling you what to do.</p>\n<p>Theme developers and companies are going to experience growing pains meeting the new requirement, but I think users of themes hosted on WordPress.org will be better off in the long run. They’ll know what to expect thanks to a standardized interface and eventually get used to interacting with the customizer.</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, 05 May 2015 20:45:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:90:\"WPTavern: BuddyPress 2.3 Will Introduce Companion Stylesheets for WordPress Default 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=43120\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/buddypress-2-3-will-introduce-companion-stylesheets-for-wordpress-default-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:4909:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/01/wp-bp.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/01/wp-bp.jpg?resize=1025%2C383\" alt=\"wp-bp\" class=\"aligncenter size-full wp-image-14611\" /></a></p>\n<p>Two years ago, <a href=\"http://codex.buddypress.org/developer/releases/version-1-7/\" target=\"_blank\">BuddyPress 1.7</a> introduced WordPress theme compatibility, which meant that sites no longer required a BuddyPress-specific theme in order to run the plugin. The vast majority of themes that use <a href=\"http://codex.wordpress.org/Theme_Development\" target=\"_blank\">WordPress’ standard template loading</a> should be compatible with BuddyPress.</p>\n<p>However, some themes still need a little help to make the BuddyPress UI elements more harmonious with the rest of the theme. This is the case with the WordPress default themes, which prompted BuddyPress contributors to look into creating a set of companion stylesheets to address any conflicts arising between the plugin and the themes.</p>\n<p><a href=\"https://twitter.com/hnla\" target=\"_blank\">Hugo Ashmore</a>, who is leading the task of creating supporting styles for BuddyPress when activated on the default WordPress themes, summarized the goal on the <a href=\"https://bpdevel.wordpress.com/2015/04/01/companion-styles-task-updates/\" target=\"_blank\">BP development blog</a>:</p>\n<blockquote><p>We discussed and agreed in essence that it would be nice that BP displayed at its best when activated on these default WP themes as they may well be a user’s first impression of BP and first impressions last.</p></blockquote>\n<p>As of BuddyPress 2.3, the plugin will check and enqueue an additional set of styles if either <a href=\"https://buddypress.trac.wordpress.org/ticket/6291\" target=\"_blank\">Twenty Fifteen</a> or <a href=\"https://buddypress.trac.wordpress.org/ticket/6338\" target=\"_blank\">Twenty Fourteen</a> are active on the site. The same process will be used moving forward to support new WordPress default themes as they are released.</p>\n<p>Work on the tickets for these two themes has already been committed to <a href=\"https://buddypress.trac.wordpress.org/browser/trunk\" target=\"_blank\">BP trunk</a> and is on track for inclusion in 2.3. Whereas previously you might have seen messy unordered lists and BP component UI elements in various states of disarray, the new companion stylesheets resolve many of these issues with BP in use on the default themes.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-twenty-fifteen.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-twenty-fifteen.png?resize=1025%2C468\" alt=\"bp-twenty-fifteen\" class=\"aligncenter size-full wp-image-43320\" /></a></p>\n<h3>A New Approach to User Account / Single Group Navigation Menus</h3>\n<p>If you take BuddyPress 2.3-alpha for a spin, you’ll notice that the companion stylesheets take a new approach to the user account and single groups navigation, with the primary object nav now displayed vertically on the left.</p>\n<p>The traditional horizontal nav often causes problems, as plugin developers can dynamically add to this menu, pushing it out to two or more rows of menu items. The vertical menus in the stylesheet eliminate the crowding that you often see in the horizontal user/group navigation.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-user-account-nav.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-user-account-nav.png?resize=1025%2C792\" alt=\"bp-user-account-nav\" class=\"aligncenter size-full wp-image-43323\" /></a></p>\n<p>In the most recent <a href=\"https://bpdevel.wordpress.com/2015/04/29/companion-styles-an-update/\" target=\"_blank\">update</a> on the task, Ashmore requests that users bear in mind it’s “less about theming every aspect as about ensuring a broad sweep on elements to ensure the majority of critical issues are addressed.”</p>\n<p>The primary goal is to make BuddyPress render in a more seamless manner in the default themes. Refined styling to tweak specific BP elements is next on the agenda. If you want to test 2.3-alpha and find that the stylesheets aren’t loading, make sure to add <code>define (\'SCRIPT_DEBUG\', true);</code> to your <em>wp-config.php</em> file if you want to run trunk directly.</p>\n<p>Contributors working on the companion stylesheet tickets <a href=\"https://bpdevel.wordpress.com/2015/04/29/companion-styles-an-update/\" target=\"_blank\">welcome feedback</a> from the community regarding the layout refactoring of the parent theme containers for the BP directories and user account screens, as well as the vertical menu approach. Testing these elements ahead of the BuddyPress 2.3 beta, expected out this week, will help contributors ship more polished stylesheets in the official release at the end of May.</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, 05 May 2015 18:30: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: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:85:\"WPTavern: WordCamp Miami 2015 to Experiment with New Tracks, Tickets Selling Out Fast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=41567\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordcamp-miami-2015-to-experiment-with-new-tracks-tickets-selling-out-fast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4934:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/wcmia-2015.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/wcmia-2015.jpg?resize=750%2C349\" alt=\"wcmia-2015\" class=\"aligncenter size-full wp-image-39447\" /></a></p>\n<p><a href=\"https://miami.wordcamp.org/2015/\" target=\"_blank\">WordCamp Miami</a>, one of the largest and longest running WordPress events in the US, is gearing up to <a href=\"http://wptavern.com/wordcamp-miami-gears-up-for-6th-year-with-new-tracks-and-workshops-planned\" target=\"_blank\">celebrate its 6th year on May 29-31</a>. Last year the event brought together 770 attendees and tickets for 2015 are selling fast.</p>\n<p>“We have sold over 600 tickets, and we see a sell-out on the horizon,” organizer David Bisset told the Tavern. “Our workshops are already almost sold out, and soon the weekend tickets will be as well.”</p>\n<p>WordCamp Miami has adopted a strong educational focus for the event with an expanded array of workshops. On Friday, May 29, the organizers will host a BuddyCamp and a separate Front-End/Theme workshop. As <a href=\"http://wptavern.com/wordcamp-miami-kids-workshop-launches-the-next-generation-of-bloggers\" target=\"_blank\">last year’s kids workshop</a> was a success, organizers are exploring the option of adding a more advanced kids workshop that gets into coding.</p>\n<h3>New “How To” Tracks and Mini-Workshops for Developers</h3>\n<p>Bisset and his team received feedback from last year’s event indicating that attendees are interested in having more advanced developer talks. This year organizers are replacing the user track on Saturday with experimental “How To” tracks.</p>\n<p>“To my knowledge, this is the first time a WordCamp has tried something like this,” Bisset said. “This track will focus on getting things done – almost like a mini-workshop focused on one or two concepts with step by step instructions – steps you can go home that night and do hopefully on your own.” Attendees of these tracks will be able to print out “cheat sheets” of each session and bring them to the conference or refer to them when they get back home.</p>\n<p>The organizers are hand-selecting the speakers and requesting that they format their slides to be a lasting resource for users. Speakers will also move to the Happiness Bar to answer any questions in a non-rushed environment after their sessions are finished.</p>\n<p>For the first time, WordCamp Miami will add an additional developer track on Sunday, which will consist of mini-workshops. In this format, two speakers will be give presentations on a single subject (back-to-back), so attendees will get multiple perspectives on the same subject.</p>\n<p>“For example, Andrea Rennick and Jesse Petersen will start off that Sunday with a ‘Genesis Framework’ mini-workshop,” Bisset said. “Andrea will introduce the basics and concepts while Jesse afterwards will dive into more advanced topics on Genesis. There are also mini-workshops on building WordPress plugins, the WP-API, and more.”</p>\n<p>Organizers are also reaching out to other open source communities to help forge connections across different projects.</p>\n<p>“For the first time, we have a Joomla developer coming to speak on Sunday and talk about Joomla, WordPress, and open source,” Bisset said. “We have been opening our doors to local Joomla and Drupal developers so we are excited about this presentation and hope it’s the start of something bigger for the future.”</p>\n<p>WordCamp Miami is known for its excellent opportunities for networking and will maintain that aspect of the event in 2015.</p>\n<p>“Besides knowledge, networking has always been a key reason why people (local or not from the area) attend WordCamps,” Bisset said. Organizers are tailoring the after-party to be more of a “networking party” where attendees can continue their conversations from the event. Networking parties will take place on Thursday evening, Saturday night, Sunday for social breakfast, and a brief ice cream social Sunday afternoon.</p>\n<p>The new venue, Florida International University, is large enough to accommodate the 800+ attendees expected this year. All of the educational and networking opportunities during the 3.5 day event give attendees an incredible value for their tickets, especially for those who are traveling from a distance.</p>\n<p>WordCamp Miami is an event that traditionally sells out every year and Bisset expects the same for 2015. The workshops will be limited to 100-150 people and tickets are going fast. Check out the event <a href=\"https://miami.wordcamp.org/2015/\" target=\"_blank\">website</a> for more details on the schedule and available <a href=\"https://miami.wordcamp.org/2015/tickets/\" target=\"_blank\">tickets</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, 04 May 2015 21:27:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:32:\"Matt: Macbook & USB-C Review\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://ma.tt/2015/05/macbook-usb-c-review/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5148:\"<p><img class=\"alignright wp-image-45019\" src=\"https://ma.tt/files/2015/05/macbook-481x740.jpg\" alt=\"macbook\" width=\"266\" height=\"409\" />I’ll start by saying I’m writing this on a 12″ Macbook in space grey. The screen, weight, size, and weird keyboard have captured my heart and I’m enjoying using the machine. It has replaced a 15″ Retina Pro as my primary laptop for about 2 weeks now, with most of that being on the road.</p>\n<p>For better and worse, it’s a lot like an iPad — the size and weight feel very natural in your life, and the screen is really gorgeous. It’s also not worth plugging anything into it besides its charging cable. It feels great to open and pick up right where you left off. The speed feels more than adequate for everything I’ve thrown at it so far, though I haven’t tried video editing or photo management outside of the new Apple Photos app. If there was a perfect iPad and keybard combo, it would feel and look like the new Retina Macbook.</p>\n<p>The second thing I’ll say is I wouldn’t recommend this laptop for everybody yet. There are some trade-offs, for example I can get 5-6 hours from the battery but it’s a little shorter than I expected. It’s refreshing to have a computer that’s totally silent with no fan, and I’ve only had a heat warning once when it was sitting in hot direct sunlight for about 20 minutes. I moved into the shade because I was also wilting a bit from the direct LA sun.</p>\n<p>The main reason I’m not sure if I’d recommend this Macbook right is hopefully ephemeral: USB-C. One of the very coolest things about the new Macbook is it charges (quickly) with a new standard called USB 3.1 with a Type-C connector, which is open for anyone to use, is reversible, and I think is going to be the future <a href=\"http://ma.tt/2015/02/usb-history-and-type-c/\">as I’ve written about on this blog before</a>.</p>\n<p><img class=\"aligncenter size-medium wp-image-45021\" src=\"https://ma.tt/files/2015/05/USB-type-C-840x321.jpg\" alt=\"USB-type-C\" width=\"840\" height=\"321\" /></p>\n<p>Today, however, USB-C is bleeding edge. I actually have one other device that uses it, Google’s new Chrome Pixel laptop, but when you search on Amazon for “USB-C” there are almost no results except sketchy or not-in-stock generic things, and Apple doesn’t have any USB-C stuff in stock, even in their stores. (Perhaps related to the general stock issues <a href=\"http://ma.tt/2015/04/apple-loyalty/\">I ended up writing about last time I tried to pen this Macbook review</a>.) I was able to get a cable that had male old USB and male USB-C on Amazon, that was pretty much it. The promise of USB-C is incredible: standard cables for charging everything super-quickly, a battery pack that could charge your phone or laptop, smaller power bricks, a next-gen Thunderbolt display with one cable for all data, display, and charging. You can see and imagine a really perfect ecosystem around USB-C, but it doesn’t exist today. <a href=\"http://9to5mac.com/2015/03/11/belkin-and-google-debut-usb-c-cables-including-low-priced-ethernet-displayport-hdmi-and-micro-usb-adapters/\">Some cool stuff has been announced but isn’t coming until the summer</a>, even <a href=\"http://www.pcworld.com/article/2903292/usb-typec-peripherals-are-on-the-way-and-storage-devices-are-first-up.html\">thumb drives</a>.</p>\n<p>The problem in one sentence: it is impossible to buy a cable, from Apple or otherwise, that let’s you plug an iPhone 6+ into the Macbook. They’ve announced but not shipped (to me at least) an adapter for old USB stuff (Type-A), but the last thing I need in my life is another dongle.</p>\n<p>I thought I would miss this but in practice it has been a surmountable problem. Instead of using my laptop as a battery, I’ve been <a href=\"http://hellomerch.com/collections/wordpress/products/jetpack-battery-pack\">using a battery to recharge miscellaneous electronics on-the-go</a>, and everything else including transferring photos from phone to computer is now happening wirelessly.</p>\n<p><img class=\" wp-image-45023 alignright\" src=\"https://ma.tt/files/2015/05/apple-line-up.jpg\" alt=\"apple-line-up\" width=\"333\" height=\"214\" />I think the most perfect tech combo in the world right now might be a <a href=\"http://ma.tt/2014/10/retina-5k-mac/\">5k iMac at home</a>, an iPhone 6+ as your phone, and the Macbook as an on-the-go device. (The iPad isn’t in my must-have list anymore.) The strengths of each of these products complement each other, and as Apple gets better about the cloud with things like photos, tethering, keychain sync, and continuity it’s really becoming a pleasure to use these products together. I also have an Apple Watch in the mix, but still forming my thoughts on that one.</p>\n<p>The thing I might be most excited about is when some of the new tech in the retina Macbook around the keyboard, screen, trackpad, and battery is applied to their “Pro” series, which will probably be a bit more in my wheelhouse.</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, 04 May 2015 21:25: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: WordPress Theme Developer Handbook Updated with Comprehensive Guide to the Customizer 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=43238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"http://wptavern.com/wordpress-theme-developer-handbook-updated-with-comprehensive-guide-to-the-customizer-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:6375:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/design-studio.jpg\" rel=\"prettyphoto[43238]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/design-studio.jpg?resize=760%2C374\" alt=\"photo credit: Artist\'s Room - (license)\" class=\"size-full wp-image-39730\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/63191453@N00/2650862549\">Artist’s Room</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>The Theme Review Team’s controversial decision to <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options\" target=\"_blank\">require the use of the Customizer API for building theme options</a> unearthed a wave of criticism and concern about the capabilities of the customizer.</p>\n<p>In response to more than <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options#comments\" target=\"_blank\">150 comments</a> debating on the topic, Nick Halsey, who has worked extensively on the feature in WordPress core, stopped by to offer a few words in support of the Theme Review Team’s decision:</p>\n<blockquote><p>Many of the comments here are misinformed or unaware of both the full power of and the future importance of the Customizer. I’ve given an <a href=\"http://celloexpressions.com/blog/the-customizer-is-the-future-for-themes-and-theme-options/\" target=\"_blank\">overview of my perspective on my blog</a>, and while those views don’t directly represent the views of the WordPress project, I can say that most people working on the Customizer in core would agree with my points. Like it or not, the Customizer is here to stay, and ignoring that fact will eventually cause users to turn against you.</p></blockquote>\n<p>Halsey’s post calls for theme developers to re-examine their philosophies when it comes to building complex UI options and stop re-inventing the wheel. He believes the customizer has more creative potential than developers give it credit for.</p>\n<blockquote><p>Complaints about the amount of screen real estate available and the 300px default width show a lack of creativity and resistance for the sake of resistance to change. Start by removing all of the ads, external links, unnecessary branding, unnecessary options, and general clutter. Make your options self-explanatory – if you need a paragraph to describe what it does, it probably shouldn’t be a user-facing option. Do you still have so much UI that the experience is completely unusable? Try an outside-the-box solution, like utilizing the core media modal (header images and core media controls use it), a custom modal (theme details modal in core), or a slide-out panel (widgets in core and eventually menus in core as well).</p></blockquote>\n<p>Prior to the Theme Review Team’s decision, documentation on theme development with the Customizer API was sparse and claims about its wide range of capabilities were difficult to support.</p>\n<p>Resistance from theme developers has WordPress.org contributors scrambling to produce better documentation for using the customizer in themes. Over the weekend, Halsey created a canonical developer tutorial on the <a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/\" target=\"_blank\">Customizer API in the official theme developer handbook</a>.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-api-documentation.png\" rel=\"prettyphoto[43238]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-api-documentation.png?resize=1025%2C605\" alt=\"customizer-api-documentation\" class=\"aligncenter size-full wp-image-43252\" /></a></p>\n<p>This official comprehensive guide includes the following sections and provides detailed examples for each:</p>\n<ul>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#contextual-controls-sections-and-panels\" target=\"_blank\">Contextual Controls, Sections, and Panels</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#using-postmessage-for-improved-setting-previewing\" target=\"_blank\">Using PostMessage For Improved Setting Previewing</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#custom-controls-sections-and-panels\" target=\"_blank\">Custom Controls, Sections, and Panels</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#custom-setting-types\" target=\"_blank\">Custom Setting Types</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#the-customizer-javascript-api\" target=\"_blank\">The Customizer JavaScript API</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#javascriptunderscore-js-rendered-custom-controls\" target=\"_blank\">JavaScript/Underscore.js-Rendered Custom Controls</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#allow-non-administrators-to-access-the-customizer\" target=\"_blank\">Allow Non-administrators to Access the Customizer</a></li>\n</ul>\n<p>Theme Review Team admin Justin Tadlock <a href=\"https://make.wordpress.org/themes/2015/04/22/details-on-the-new-theme-settings-customizer-guideline/\" target=\"_blank\">posted</a> more details clarifying the new WordPress.org guideline and included a list of additional resources for learning more about the customizer.</p>\n<p>Over the weekend, Samuel “Otto” Wood, who has written several customizer articles over the years, wrote a “<a href=\"http://ottopress.com/2015/whats-new-with-the-customizer/\" target=\"_blank\">What’s new with the Customizer</a>” tutorial that explores some of its newer features in depth, including panels, active callbacks, and customizing the customizer.</p>\n<p>With <a href=\"http://wptavern.com/wordpress-4-3-to-focus-on-mobile-experience-admin-ui-better-passwords-and-customizer-improvements\" target=\"_blank\">WordPress 4.3 blazing forward on customizer improvements</a>, now is the time for theme developers to familiarize themselves with the available documentation and tutorials in order to be ready to take full advantage of WordPress’ core-supported method of providing live previews to users.</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, 04 May 2015 16:46:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:31:\"Matt: James Whitcomb Riley Poem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://ma.tt/2015/05/james-whitcomb-riley-poem/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:748:\"<p><a href=\"http://om.co/2015/05/02/loss/\">Via Om</a>, I wanted to share this poem <em>Away</em> by <a href=\"http://www.poemhunter.com/james-whitcomb-riley/poems/\">James Whitcomb Riley</a>:</p>\n<blockquote><p>I cannot say, and I will not say<br />\nThat he is dead. He is just away.<br />\nWith a cheery smile, and a wave of the hand,<br />\nHe has wandered into an unknown land<br />\nAnd left us dreaming how very fair<br />\nIt needs must be, since he lingers there.<br />\nAnd you—oh you, who the wildest yearn<br />\nFor an old-time step, and the glad return,<br />\nThink of him faring on, as dear<br />\nIn the love of There as the love of Here.<br />\nThink of him still as the same. I say,<br />\nHe is not dead—he is just away.</p></blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 May 2015 16:34: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Donncha: Matt’s interview in the SBP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"http://z9.io/?p=89499491\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://z9.io/2015/05/03/matts-interview-in-the-sbp/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:977:\"<p><a href=\"http://i2.wp.com/z9.io/files/2015/05/wpid-20150503_124454.jpg\"><img title=\"20150503_124454.jpg\" class=\"alignnone size-full\" alt=\"image\" src=\"http://i2.wp.com/z9.io/files/2015/05/wpid-20150503_124454.jpg?w=660\" /></a></p>\n<p>Nice to see an interview with Matt in the Sunday Business Post, but they got one thing wrong that Matt is not chilled out about!</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"http://z9.io/2007/02/16/photomatts-net-interview/\" rel=\"bookmark\" title=\"Permanent Link: Photomatt\'s .net interview\">Photomatt's .net interview</a></li><li> <a href=\"http://z9.io/2003/03/24/an-interview-with-mike-davidson-of-espn-part-1/\" rel=\"bookmark\" title=\"Permanent Link: An Interview With Mike Davidson of ESPN (Part 1)\">An Interview With Mike Davidson of ESPN (Part 1)</a></li><li> <a href=\"http://z9.io/2004/07/02/more-on-bush-interview/\" rel=\"bookmark\" title=\"Permanent Link: More On Bush Interview!\">More On Bush Interview!</a></li></ul></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 May 2015 11:48:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s: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:23:\"Matt: RIP Dan, RIP Dave\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45011\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/05/rip-dan-rip-dave/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1238:\"<p>We’ve lost two incredible souls this week: <a href=\"http://recode.net/2015/04/25/google-exec-dan-fredinburg-killed-in-nepal-earthquake/\">first Dan Fredinburg in Nepal</a> and now <a href=\"http://recode.net/2015/05/02/beloved-silicon-valley-entrepreneur-david-goldberg-dies-suddenly/\">Dave Goldberg has unexpectedly passed</a>. I encourage you to Google articles about their lives, <a href=\"http://www.businessinsider.com/the-incredible-life-of-david-goldberg-2015-5\">like this one about Dave Goldberg</a> or <a href=\"http://www.outsideonline.com/1972721/remembering-dan-fredinburg\">this on Dan</a>, because both were unique and incredible individuals. In an example of <a href=\"http://meyerweb.com/eric/thoughts/2014/12/24/inadvertent-algorithmic-cruelty/\">how software can have unintended effect on emotions</a>, I just realized I had a pending friend request on Facebook from Dan, probably years old. <img src=\"http://i1.wp.com/s.ma.tt/blog/wp-includes/images/smilies/frownie.png?w=604\" alt=\":(\" class=\"wp-smiley\" /> Going through a lot of emotions, but a good reminder that life can be fleeting and to make time for friends and those who you love, something both of these men were great at. May they both rest in peace.</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, 02 May 2015 19:46: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Belgrade’s First WordCamp Sells Out, Plans to Double Attendees Next Year\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=42992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/belgrades-first-wordcamp-sells-out-plans-to-double-attendees-next-year\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5298:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wcbelgrade.jpg\" rel=\"prettyphoto[42992]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wcbelgrade.jpg?resize=1025%2C505\" alt=\"photo credit: WordCamp Belgrade\" class=\"size-full wp-image-43216\" /></a>photo credit: <a href=\"http://belgrade.wordcamp.org/2015/wordcamp-belgrade-first-batch-of-photos-wcbg/\">WordCamp Belgrade</a>\n<p>Organizers of the very first WordCamp Belgrade are happy to report that the event was a smashing success. <a href=\"http://wptavern.com/a-glimpse-into-serbias-rapidly-growing-wordpress-community\" target=\"_blank\">Serbia’s rapidly growing WordPress community</a> started just two years ago with local meetups that became larger than some smaller WordCamps.</p>\n<p>“Our road from the first meetup back in April 2013 to the first WordCamp was brilliant,” organizer Milan Ivanović said. “Every WPSerbia meetup had no less than 100 people attending, with at least three speakers each.” Serbia was ready to host its first WordCamp.</p>\n<p>“We were completely sold out about 10 days before the actual event, and it was such a shame that we had to turn down around 50 people who were asking for extra tickets,” Ivanović said. “We were limited by the venue and we couldn’t take more than 180.”</p>\n<p>Attendees represented 13 different countries with the highest numbers from Serbia (73%), Macedonia, Bosnia and Herzegovina, and Croatia. Those who came from other countries were treated to Serbia’s famous hospitality with tours and local cuisine.</p>\n<p>“We dedicated some extra time for people who visited Belgrade for the first time to experience Belgrade and all of its beauties,” Ivanović said.</p>\n<p>“That is why we organized an unofficial after-after party that included a stroll through Belgrade’s main pedestrian street Knez Mihailova, a visit to Belgrade Fortress Kalemegdan, and dinner with true Serbian food and music in the most famous boem street Skadarlija.”</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wordcamp-belgrade-food.jpg\" rel=\"prettyphoto[42992]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wordcamp-belgrade-food.jpg?resize=1025%2C494\" alt=\"photo credit: WordCamp Belgrade\" class=\"size-full wp-image-43219\" /></a>photo credit: <a href=\"http://belgrade.wordcamp.org/2015/wordcamp-belgrade-first-batch-of-photos-wcbg/\">WordCamp Belgrade</a>\n<p>“The food was so good that I was afraid that this WordCamp wouldn’t be remembered by its talks and speakers but by the catering that all of us enjoyed,” he said.</p>\n<p>WordCamp Belgrade 2015 in numbers:</p>\n<ul>\n<li>800+ bottles of refreshment served (on the first day)</li>\n<li>500+ coffees served (on the first day)</li>\n<li>345 Tweets with <a href=\"https://twitter.com/hashtag/wcbg?src=hash\" target=\"_blank\">#wcbg</a></li>\n<li>250 Meals served</li>\n<li>180 Tickets sold</li>\n<li>61 Trello cards</li>\n<li>22 Sponsors</li>\n<li>16 Speaker Applications</li>\n<li>13 Talks / Workshops</li>\n<li>10 Speakers</li>\n<li>9 Volunteers</li>\n<li>8 Days after, all session videos published</li>\n<li>1 Awesome <a href=\"http://wptavern.com/meet-wapuujlo-official-mascot-of-wordcamp-belgrade\" target=\"_blank\">Mascot</a></li>\n</ul>\n<p>Attendees received “<a href=\"http://wptavern.com/meet-wapuujlo-official-mascot-of-wordcamp-belgrade\" target=\"_blank\">Wapuujlo</a>” magnets and stickers to commemorate the event.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/wapuujlo-magnets.jpg\" rel=\"prettyphoto[42992]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/wapuujlo-magnets.jpg?resize=1025%2C437\" alt=\"wapuujlo-magnets\" class=\"aligncenter size-full wp-image-43226\" /></a></p>\n<p>Videos from the WordCamp are already available on <a href=\"https://www.youtube.com/channel/UCNn90HubD28a63SJu07vYZg\" target=\"_blank\">WordPress Serbia’s YouTube account</a> and will soon be uploaded to WordPress.tv as well.</p>\n<p>“As soon as WordCamp Belgrade finished, the first thing I did was start plans for #wcbg2016,” Ivanović said.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wcbelgrade-organizers.jpg\" rel=\"prettyphoto[42992]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wcbelgrade-organizers.jpg?resize=300%2C200\" alt=\"wcbelgrade-organizers\" class=\"alignright size-medium wp-image-43223\" /></a>“The biggest outcome from this event was people asking how they can help organize the next WordCamp Belgrade, offering lots of different kinds of help – from finding new sponsors to offering their organization skills.”</p>\n<p>Ivanović and the organizing team plan to at least double the size of the event next year. They are aiming for 400 attendees and two tracks of speakers.</p>\n<p>“If we manage to organize an event that size, I think that would be an awesome test and a great intro for application to organize WordCamp Europe 2017,” he said.</p>\n<p>Check out more <a href=\"http://belgrade.wordcamp.org/2015/wordcamp-belgrade-first-batch-of-photos-wcbg/\" target=\"_blank\">photos from the event</a> on the WordCamp Belgrade website.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 May 2015 21:04:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 19 May 2015 07:06:37 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"245298\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Tue, 19 May 2015 07:00:14 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20130911040210\";}','no'),(465,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1432062398','no'),(466,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1432019198','no'),(467,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1432062399','no'),(468,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"Tue, 19 May 2015 07:05: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Your WordPress, Streamlined.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast's WordPress SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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: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:35:\"38058@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"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: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:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29832@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:21:\"WPtouch Mobile Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wptouch/#post-5468\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2008 04:58:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"5468@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Make your WordPress website mobile-friendly with just a few clicks.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"BraveNewCode Inc.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:27:\"Black Studio TinyMCE Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Nov 2011 15:06:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"31973@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The visual editor widget 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";s: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:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2082@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:25:\"Google Analytics by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:23:\"MailChimp for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/mailchimp-for-wp/#post-54377\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Jun 2013 17:32:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54377@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"The best MailChimp plugin to get more email subscribers. Easily add MailChimp sign-up forms and sign-up checkboxes to your WordPress site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Danny van Kooten\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:20:\"EWWW Image Optimizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/ewww-image-optimizer/#post-38780\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jun 2012 19:30:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"38780@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"Reduce file sizes for images in WordPress including NextGEN, GRAND FlAGallery and more using lossless/lossy methods and image format conversion.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"nosilver4u\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"50539@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Share Buttons by AddToAny\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins/add-to-any/#post-498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Mar 2007 23:08:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"498@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"Share buttons for WordPress including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"micropat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"SiteOrigin Widgets Bundle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/so-widgets-bundle/#post-67824\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 24 May 2014 14:27:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"67824@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"A collection of all our widgets, neatly bundled into a single 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:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Photo Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/photo-gallery/#post-63299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jan 2014 15:58:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"63299@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"Photo Gallery is an advanced plugin with a list of tools and options for adding and editing images for different views. It is fully responsive.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"webdorado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"ManageWP Worker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/worker/#post-24528\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Feb 2011 13:06: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"24528@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"ManageWP is the ultimate WordPress productivity tool, allowing you to efficiently manage your websites.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Vladimir Prelovac\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"51888@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 12 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"InfiniteWP Client\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/iwp-client/#post-36147\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 26 Mar 2012 04:21:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"36147@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"Install this plugin on unlimited sites and manage them all from a central dashboard.\nThis plugin communicates with your InfiniteWP Admin Panel.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"infinitewp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP User Avatar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wp-user-avatar/#post-48017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 Jan 2013 05:17:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"48017@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Use any image from your WordPress Media Library as a custom user avatar. Add your own Default Avatar.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Bangbay Siboliban\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Duplicator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2011 12:15:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26607@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Cory Lamle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Responsive Lightbox by dFactory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/plugins/responsive-lightbox/#post-55352\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Jul 2013 10:58:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"55352@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"Responsive Lightbox allows users to view larger versions of images and galleries in a lightbox (overlay) effect optimized for mobile devices.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"dFactory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25254@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Contact Form DB\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wordpress.org/plugins/contact-form-7-to-database-extension/#post-19767\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 02 Aug 2010 02:24: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"19767@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"Saves submitted form data to the database. Export the data to a file or use short codes to display it.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Michael Simpson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 19 May 2015 07:06:39 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Thu, 02 Aug 2007 12:45:03 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130911040210\";}','no'),(469,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1432062399','no'),(470,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1432019199','no'),(471,'_transient_timeout_plugin_slugs','1432105599','no'),(472,'_transient_plugin_slugs','a:2:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";}','no'),(473,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1432062399','no'),(474,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2015/05/wordpress-4-2-2/\'>WordPress 4.2.2 Security and Maintenance Release</a> <span class=\"rss-date\">May 7, 2015</span><div class=\"rssSummary\">WordPress 4.2.2 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Version 4.2.2 addresses two security issues: The Genericons icon font package, which is used in a number of popular themes and plugins, contained an HTML file vulnerable to a cross-site […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://ma.tt/2015/05/how-to-get-yourself-to-do-things/\'>Matt: How to Get Yourself to Do Things</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/a-wordpress-veterans-take-on-drupalcon-la\'>WPTavern: A WordPress Veteran’s Take on DrupalCon LA</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/community-translation-and-wapuu-how-japan-is-shaping-wordpress-history\'>WPTavern: Community, Translation, and Wapuu: How Japan is Shaping WordPress History</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/mailchimp-for-wp/\' class=\'dashboard-news-plugin-link\'>MailChimp for WordPress</a> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=mailchimp-for-wp&_wpnonce=ea0bb33e66&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'MailChimp for WordPress\'>Install</a>)</span></li></ul></div>','no'),(521,'_transient_timeout_mp_cc6c925e0ee5505045f2561177b170a8','1432111264','no'),(522,'_transient_mp_cc6c925e0ee5505045f2561177b170a8','{\"type\":\"FeatureCollection\",\"features\":[]}','no'),(541,'_transient_timeout_mp_7ce72746e0e0860dc01ab377569c9bf4','1432141530','no'),(542,'_transient_mp_7ce72746e0e0860dc01ab377569c9bf4','{\"type\":\"FeatureCollection\",\"features\":[]}','no'),(605,'_transient_timeout_mp_e578567f97dc09d8ed67f8d6db8cf390','1432624131','no'),(606,'_transient_mp_e578567f97dc09d8ed67f8d6db8cf390','{\"type\":\"FeatureCollection\",\"features\":[]}','no'),(607,'_transient_timeout_mp_db89a8feda248b8912bf75041ba42489','1432624271','no'),(608,'_transient_mp_db89a8feda248b8912bf75041ba42489','{\"type\":\"FeatureCollection\",\"features\":[]}','no'),(609,'_transient_timeout_mp_0c7e8382c9bc07f84b9bb61fbe372c28','1432624464','no'),(610,'_transient_mp_0c7e8382c9bc07f84b9bb61fbe372c28','{\"type\":\"FeatureCollection\",\"features\":[]}','no'),(613,'_site_transient_timeout_theme_roots','1432633576','yes'),(614,'_site_transient_theme_roots','a:4:{s:3:\"jeo\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";}','yes'),(615,'_transient_timeout_mp_90b23711cc027c4adc3f61f0d859d585','1432642827','no'),(616,'_transient_mp_90b23711cc027c4adc3f61f0d859d585','{\"type\":\"FeatureCollection\",\"features\":[]}','no'),(617,'_transient_timeout_mp_477242d64d320f1ba9b71596d1f2fd14','1432646063','no'),(618,'_transient_mp_477242d64d320f1ba9b71596d1f2fd14','{\"type\":\"FeatureCollection\",\"features\":[]}','no'),(619,'_transient_timeout_mp_cd9d7e77075310b569dceca7abc2a1fb','1432646286','no'),(620,'_transient_mp_cd9d7e77075310b569dceca7abc2a1fb','{\"type\":\"FeatureCollection\",\"features\":[]}','no'),(621,'_transient_timeout_mp_972085f1c057e4a092dafea39e25c261','1432647314','no'),(622,'_transient_mp_972085f1c057e4a092dafea39e25c261','{\"type\":\"FeatureCollection\",\"features\":[]}','no');
/*!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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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 */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,5,'_edit_last','1'),(3,5,'_edit_lock','1432645525:1'),(4,5,'map_data','a:6:{s:6:\"layers\";a:1:{i:0;a:2:{s:4:\"type\";s:6:\"custom\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.d2515a56/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";}}s:8:\"min_zoom\";s:1:\"4\";s:8:\"max_zoom\";s:1:\"8\";s:6:\"center\";a:2:{s:3:\"lat\";s:17:\"29.38217507514529\";s:3:\"lon\";s:17:\"86.66015624999999\";}s:4:\"zoom\";s:1:\"5\";s:10:\"pan_limits\";a:4:{s:4:\"east\";s:12:\"131.30859375\";s:5:\"north\";s:18:\"51.508742458803326\";s:5:\"south\";s:17:\"16.13026201203477\";s:4:\"west\";s:8:\"54.84375\";}}'),(5,5,'map_conf','{\"containerID\":\"map_5\",\"postID\":\"5\",\"layers\":[\"https://{s}.tiles.mapbox.com/v4/thethirdpole.d2515a56/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\"],\"filteringLayers\":{\"switchLayers\":[],\"swapLayers\":[]},\"center\":[29.38217507514529,86.66015624999999],\"zoom\":5,\"minZoom\":4,\"maxZoom\":8,\"panLimits\":[[\"16.13026201203477\",\"54.84375\"],[\"51.508742458803326\",\"131.30859375\"]],\"geocode\":false,\"disableHandlers\":{\"mousewheel\":false},\"legend_full\":false}'),(6,5,'legend','<div class=\'my-legend\'>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span style=\'background:#6bba9d;\'></span>Wetlands</li>\r\n <li><span style=\'background:#98d8e2;\'></span>Glaciers</li>\r\n <li><span style=\'background:#c1c4d8;\'></span>Snow-Covered Areas</li>\r\n </ul>\r\n </div>\r\n</div>\r\n\r\n\r\n<style type=\'text/css\'>\r\n .my-legend .legend-title {\r\n text-align: left;\r\n margin-bottom: 5px;\r\n font-weight: bold;\r\n font-size: 100%;\r\n clear: both;\r\n }\r\n .my-legend .legend-scale ul {\r\n margin: 0;\r\n margin-bottom: 5px;\r\n padding: 0;\r\n float: left;\r\n list-style: none;\r\n }\r\n .my-legend .legend-scale ul li {\r\n font-size: 100%;\r\n list-style: none;\r\n margin-left: 0;\r\n line-height: 18px;\r\n margin-bottom: 2px;\r\n clear: both;\r\n }\r\n .my-legend ul.legend-labels li span {\r\n display: block;\r\n float: left;\r\n height: 16px;\r\n width: 30px;\r\n margin-right: 5px;\r\n margin-left: 0;\r\n border: 1px solid #999;\r\n }\r\n .my-legend .legend-source {\r\n font-size: 100%;\r\n color: #999;\r\n clear: both;\r\n }\r\n .my-legend a {\r\n color: #777;\r\n }\r\n </style>'),(8,8,'_edit_last','1'),(9,8,'_edit_lock','1431722364:1'),(10,8,'map_data','a:6:{s:6:\"layers\";a:3:{i:0;a:2:{s:4:\"type\";s:6:\"custom\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.a6ea5fda/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";}i:1;a:5:{s:5:\"title\";s:15:\"Port Facilities\";s:2:\"id\";s:162:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.port_facilities/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}s:13:\"switch_hidden\";s:1:\"1\";}i:2;a:5:{s:5:\"title\";s:13:\"Cyclone Paths\";s:2:\"id\";s:166:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.cyclone_paths_lines/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}s:13:\"switch_hidden\";s:1:\"1\";}}s:8:\"min_zoom\";s:1:\"4\";s:8:\"max_zoom\";s:1:\"8\";s:6:\"center\";a:2:{s:3:\"lat\";s:18:\"20.385825381874263\";s:3:\"lon\";s:12:\"82.001953125\";}s:4:\"zoom\";s:1:\"4\";s:10:\"pan_limits\";a:4:{s:4:\"east\";s:13:\"121.904296875\";s:5:\"north\";s:17:\"39.30029918615029\";s:5:\"south\";s:19:\"-1.1425024037061522\";s:4:\"west\";s:12:\"42.099609375\";}}'),(11,8,'map_conf','{\"containerID\":\"map_8\",\"postID\":\"8\",\"layers\":[\"https://{s}.tiles.mapbox.com/v4/thethirdpole.a6ea5fda/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.port_facilities/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.cyclone_paths_lines/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"}],\"filteringLayers\":{\"switchLayers\":[{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.port_facilities/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Port Facilities\",\"hidden\":true},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.cyclone_paths_lines/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Cyclone Paths\",\"hidden\":true}],\"swapLayers\":[]},\"center\":[20.385825381874263,82.001953125],\"zoom\":4,\"minZoom\":4,\"maxZoom\":8,\"panLimits\":[[\"-1.1425024037061522\",\"42.099609375\"],[\"39.30029918615029\",\"121.904296875\"]],\"geocode\":false,\"disableHandlers\":{\"mousewheel\":false},\"legend_full\":false}'),(12,8,'legend','<div class=\'my-legend\'>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span style=\'background:#6bba9d;\'></span>Wetlands</li>\r\n <li><span style=\'background:#5f368f;\'></span>Mangroves</li>\r\n <li><span style=\'background:#cab2d6;\'></span>Estuaries</li>\r\n <li><span class=\"point\" style=\'background:#bad735;\'></span>Sea Grass</li>\r\n </ul>\r\n </div>\r\n <div class=\'legend-title\'>Port Facilities</div>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span class=\"point\" style=\'background:#ff7f00;\'></span>Very Small</li>\r\n <li><span class=\"point\" style=\'background:#984ea3;\'></span>Small</li>\r\n <li><span class=\"point\" style=\'background:#4daf4a;\'></span>Medium</li>\r\n <li><span class=\"point\" style=\'background:#377eb8;\'></span>Large</li>\r\n <li><span class=\"point\" style=\'background:#e41a1c;\'></span>Huge</li>\r\n </ul>\r\n </div>\r\n <div class=\'legend-title\'>Cyclone Paths</div>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span class=\"line\" style=\'background:#ffff00;\'></span>1990-1994</li>\r\n <li><span class=\"line\" style=\'background:#ffcc00;\'></span>1995-1999</li>\r\n <li><span class=\"line\" style=\'background:#ff9e00;\'></span>2000-2004</li>\r\n <li><span class=\"line\" style=\'background:#ff6f00;\'></span>2005-2009</li>\r\n <li><span class=\"line\" style=\'background:#ff0000;\'></span>2010-2014</li>\r\n </ul>\r\n </div>\r\n <!--<div class=\'legend-source\'>Source: UNEP, BIG, OBIS, Natural Earth</div>-->\r\n</div>\r\n\r\n\r\n<style type=\'text/css\'>\r\n .my-legend .legend-title {\r\n text-align: left;\r\n margin-bottom: 5px;\r\n font-weight: bold;\r\n font-size: 100%;\r\n clear: both;\r\n }\r\n .my-legend .legend-scale ul {\r\n margin: 0;\r\n margin-bottom: 5px;\r\n padding: 0;\r\n float: left;\r\n list-style: none;\r\n }\r\n .my-legend .legend-scale ul li {\r\n font-size: 100%;\r\n list-style: none;\r\n margin-left: 0;\r\n line-height: 18px;\r\n margin-bottom: 2px;\r\n clear: both;\r\n }\r\n .my-legend ul.legend-labels li span {\r\n display: block;\r\n float: left;\r\n height: 16px;\r\n width: 30px;\r\n margin-right: 5px;\r\n margin-left: 0;\r\n border: 1px solid #999;\r\n }\r\n .my-legend ul.legend-labels li span.point {\r\n width: 8px;\r\n height: 8px;\r\n margin-left: 11px;\r\n margin-top: 4px;\r\n margin-right: 16px;\r\n -webkit-border-radius: 50%;\r\n border-radius: 50%;\r\n }\r\n .my-legend ul.legend-labels li span.line {\r\n border: none;\r\n height: 4px;\r\n margin-top: 7px;\r\n margin-left: 1px;\r\n margin-right: 6px;\r\n }\r\n .my-legend .legend-source {\r\n font-size: 100%;\r\n color: #999;\r\n clear: both;\r\n }\r\n .my-legend a {\r\n color: #777;\r\n }\r\n</style>'),(14,10,'_edit_last','1'),(15,10,'_edit_lock','1432645368:1'),(16,10,'map_data','a:6:{s:6:\"layers\";a:3:{i:0;a:2:{s:4:\"type\";s:6:\"custom\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.6f5a4230/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";}i:1;a:4:{s:5:\"title\";s:13:\"Glacial Lakes\";s:2:\"id\";s:160:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.glacial_lakes/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}}i:2;a:5:{s:5:\"title\";s:15:\"Protected Areas\";s:2:\"id\";s:162:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.protected_areas/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}s:13:\"switch_hidden\";s:1:\"1\";}}s:8:\"min_zoom\";s:1:\"4\";s:8:\"max_zoom\";s:2:\"12\";s:6:\"center\";a:2:{s:3:\"lat\";s:18:\"30.031055426540206\";s:3:\"lon\";s:14:\"86.11083984375\";}s:4:\"zoom\";s:1:\"6\";s:10:\"pan_limits\";a:4:{s:4:\"east\";s:12:\"126.03515625\";s:5:\"north\";s:18:\"47.040182144806664\";s:5:\"south\";s:16:\"9.44906182688142\";s:4:\"west\";s:17:\"46.23046874999999\";}}'),(17,10,'map_conf','{\"containerID\":\"map_10\",\"postID\":\"10\",\"layers\":[\"https://{s}.tiles.mapbox.com/v4/thethirdpole.6f5a4230/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.glacial_lakes/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.protected_areas/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"}],\"filteringLayers\":{\"switchLayers\":[{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.glacial_lakes/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Glacial Lakes\"},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.protected_areas/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Protected Areas\",\"hidden\":true}],\"swapLayers\":[]},\"center\":[30.031055426540206,86.11083984375],\"zoom\":6,\"minZoom\":4,\"maxZoom\":12,\"panLimits\":[[\"9.44906182688142\",\"46.23046874999999\"],[\"47.040182144806664\",\"126.03515625\"]],\"geocode\":false,\"disableHandlers\":{\"mousewheel\":false},\"legend_full\":false}'),(18,10,'legend','<div class=\'my-legend\'>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span style=\'background:#98d8e2;\'></span>Glaciers</li>\r\n <li><span style=\'background:#c1c4d8;\'></span>Snow-Covered Areas</li>\r\n <li><span style=\'background:#2d6c89;\'></span>Glacial Lakes</li>\r\n <li><span style=\'background:#e31a1c;\'></span>Protected Areas</li>\r\n </ul>\r\n </div>\r\n</div>\r\n\r\n\r\n<style type=\'text/css\'>\r\n .my-legend .legend-title {\r\n text-align: left;\r\n margin-bottom: 5px;\r\n font-weight: bold;\r\n font-size: 100%;\r\n clear: both;\r\n }\r\n .my-legend .legend-scale ul {\r\n margin: 0;\r\n margin-bottom: 5px;\r\n padding: 0;\r\n float: left;\r\n list-style: none;\r\n }\r\n .my-legend .legend-scale ul li {\r\n font-size: 100%;\r\n list-style: none;\r\n margin-left: 0;\r\n line-height: 18px;\r\n margin-bottom: 2px;\r\n clear: both;\r\n }\r\n .my-legend ul.legend-labels li span {\r\n display: block;\r\n float: left;\r\n height: 16px;\r\n width: 30px;\r\n margin-right: 5px;\r\n margin-left: 0;\r\n border: 1px solid #999;\r\n }\r\n .my-legend .legend-source {\r\n font-size: 100%;\r\n color: #999;\r\n clear: both;\r\n }\r\n .my-legend a {\r\n color: #777;\r\n }\r\n </style>'),(19,12,'_edit_last','1'),(20,12,'_edit_lock','1432645305:1'),(21,12,'map_data','a:6:{s:6:\"layers\";a:4:{i:0;a:2:{s:4:\"type\";s:6:\"custom\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.40601067/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";}i:1;a:5:{s:5:\"title\";s:11:\"Forest Loss\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.28be3e2b/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}s:13:\"switch_hidden\";s:1:\"1\";}i:2;a:4:{s:5:\"title\";s:12:\"Forma Alerts\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.10646d28/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}}i:3;a:5:{s:5:\"title\";s:15:\"Protected Areas\";s:2:\"id\";s:162:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.protected_areas/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}s:13:\"switch_hidden\";s:1:\"1\";}}s:8:\"min_zoom\";s:1:\"4\";s:8:\"max_zoom\";s:1:\"8\";s:6:\"center\";a:2:{s:3:\"lat\";s:18:\"23.200960808078566\";s:3:\"lon\";s:13:\"89.2529296875\";}s:4:\"zoom\";s:1:\"5\";s:10:\"pan_limits\";a:4:{s:4:\"east\";s:13:\"134.033203125\";s:5:\"north\";s:17:\"40.78054143186031\";s:5:\"south\";s:18:\"0.7909904981540058\";s:4:\"west\";s:12:\"54.228515625\";}}'),(22,12,'map_conf','{\"containerID\":\"map_12\",\"postID\":\"12\",\"layers\":[\"https://{s}.tiles.mapbox.com/v4/thethirdpole.40601067/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.28be3e2b/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.10646d28/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.protected_areas/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"}],\"filteringLayers\":{\"switchLayers\":[{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.28be3e2b/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Forest Loss\",\"hidden\":true},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.10646d28/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Forma Alerts\"},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.protected_areas/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Protected Areas\",\"hidden\":true}],\"swapLayers\":[]},\"center\":[23.200960808078566,89.2529296875],\"zoom\":5,\"minZoom\":4,\"maxZoom\":8,\"panLimits\":[[\"0.7909904981540058\",\"54.228515625\"],[\"40.78054143186031\",\"134.033203125\"]],\"geocode\":false,\"disableHandlers\":{\"mousewheel\":false},\"legend_full\":false}'),(23,12,'legend','<div class=\'my-legend\'>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span style=\'background:#d05c97;\'></span>Forest Change</li>\r\n <li><span style=\'background:#f89b39;\'></span>Forma Alerts</li>\r\n <li><span style=\'background:#e31a1c;\'></span>Protected Areas</li>\r\n </ul>\r\n </div>\r\n</div>\r\n\r\n\r\n<style type=\'text/css\'>\r\n .my-legend .legend-title {\r\n text-align: left;\r\n margin-bottom: 5px;\r\n font-weight: bold;\r\n font-size: 100%;\r\n clear: both;\r\n }\r\n .my-legend .legend-scale ul {\r\n margin: 0;\r\n margin-bottom: 5px;\r\n padding: 0;\r\n float: left;\r\n list-style: none;\r\n }\r\n .my-legend .legend-scale ul li {\r\n font-size: 100%;\r\n list-style: none;\r\n margin-left: 0;\r\n line-height: 18px;\r\n margin-bottom: 2px;\r\n clear: both;\r\n }\r\n .my-legend ul.legend-labels li span {\r\n display: block;\r\n float: left;\r\n height: 16px;\r\n width: 30px;\r\n margin-right: 5px;\r\n margin-left: 0;\r\n border: 1px solid #999;\r\n }\r\n .my-legend .legend-source {\r\n font-size: 100%;\r\n color: #999;\r\n clear: both;\r\n }\r\n .my-legend a {\r\n color: #777;\r\n }\r\n </style>'),(24,13,'_edit_last','1'),(25,13,'_edit_lock','1432110461:1'),(26,13,'map_data','a:7:{s:6:\"layers\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"custom\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.31faf541/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";}i:1;a:5:{s:5:\"title\";s:5:\"Soils\";s:2:\"id\";s:152:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.soils/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:4:\"swap\";}s:13:\"switch_hidden\";s:1:\"1\";}i:2;a:5:{s:5:\"title\";s:10:\"Ecoregions\";s:2:\"id\";s:157:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.ecoregions/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:4:\"swap\";}s:13:\"switch_hidden\";s:1:\"1\";}i:3;a:4:{s:5:\"title\";s:11:\"Settlements\";s:2:\"id\";s:158:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.settlements/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}}i:4;a:5:{s:5:\"title\";s:8:\"Airports\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.airports/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}s:13:\"switch_hidden\";s:1:\"1\";}}s:8:\"min_zoom\";s:1:\"4\";s:8:\"max_zoom\";s:1:\"8\";s:6:\"center\";a:2:{s:3:\"lat\";s:18:\"31.015278981711266\";s:3:\"lon\";s:13:\"87.8466796875\";}s:4:\"zoom\";s:1:\"5\";s:10:\"pan_limits\";a:4:{s:4:\"east\";s:12:\"127.79296875\";s:5:\"north\";s:17:\"47.81315451752768\";s:5:\"south\";s:18:\"10.574222078332806\";s:4:\"west\";s:17:\"47.98828124999999\";}s:18:\"disable_mousewheel\";s:2:\"on\";}'),(27,13,'map_conf','{\"containerID\":\"map_13\",\"postID\":\"13\",\"layers\":[\"https://{s}.tiles.mapbox.com/v4/thethirdpole.31faf541/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.soils/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.ecoregions/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.settlements/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.airports/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"}],\"filteringLayers\":{\"switchLayers\":[{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.settlements/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Settlements\"},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.airports/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Airports\",\"hidden\":true}],\"swapLayers\":[{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.soils/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Soils\"},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.ecoregions/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Ecoregions\"}]},\"center\":[31.015278981711266,87.8466796875],\"zoom\":5,\"minZoom\":4,\"maxZoom\":8,\"panLimits\":[[\"10.574222078332806\",\"47.98828124999999\"],[\"47.81315451752768\",\"127.79296875\"]],\"geocode\":false,\"disableHandlers\":{\"mousewheel\":true},\"legend_full\":false}'),(28,13,'legend','<div class=\'my-legend\'>\r\n <div class=\'legend-title\'>Ecoregions</div>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span style=\'background:#fdbf6f;\'></span>Deserts and xeric shrublands</li>\r\n <li><span style=\'background:#6a3d9a;\'></span>Mangroves</li>\r\n <li><span style=\'background:#ffff99;\'></span>Montane grasslands</li>\r\n <li><span style=\'background:#999;\'></span>Snow, ice, glaciers, and rock</li>\r\n <li><span style=\'background:#33a02c;\'></span>Temperate broadleaf and mixed forests</li>\r\n <li><span style=\'background:#b2df8a;\'></span>Temperate coniferous forests</li>\r\n <li><span style=\'background:#e31a1c;\'></span>Temperate grasslands, savannas, and shrublands</li>\r\n <li><span style=\'background:#cab2d6;\'></span>Tropical and subtropical coniferous forests</li>\r\n <li><span style=\'background:#fb9a99;\'></span>Tropical and subtropical dry broadleaf forests</li>\r\n <li><span style=\'background:#ff7f00;\'></span>Tropical and subtropical grasslands, savannas, and shrublands</li>\r\n <li><span style=\'background:#b15928;\'></span>Tropical and subtropical moist broadleaf forests</li>\r\n </ul>\r\n </div>\r\n <div class=\'legend-title\'>Soils</div>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span style=\'background:#a6cee3;\'></span>A</li>\r\n <li><span style=\'background:#1f78b4;\'></span>B</li>\r\n <li><span style=\'background:#b2df8a;\'></span>C</li>\r\n <li><span style=\'background:#33a02c;\'></span>G</li>\r\n <li><span style=\'background:#b9a66f;\'></span>I</li>\r\n <li><span style=\'background:#e31a1c;\'></span>J</li>\r\n <li><span style=\'background:#ccc;\'></span>K</li>\r\n <li><span style=\'background:#fdbf6f;\'></span>L</li>\r\n <li><span style=\'background:#ff7f00;\'></span>N</li>\r\n <li><span style=\'background:#cab2d6;\'></span>O</li>\r\n <li><span style=\'background:#6a3d9a;\'></span>Q</li>\r\n <li><span style=\'background:#ffff99;\'></span>R</li>\r\n <li><span style=\'background:#b15928;\'></span>V</li>\r\n <li><span style=\'background:#76d4c8;\'></span>W</li>\r\n <li><span style=\'background:#89a257;\'></span>X</li>\r\n <li><span style=\'background:#fb9a99;\'></span>Y</li>\r\n <li><span style=\'background:#d873ba;\'></span>Z</li>\r\n </ul>\r\n </div>\r\n</div>\r\n\r\n\r\n<style type=\'text/css\'>\r\n .my-legend{\r\n max-height: 400px;\r\n overflow: scroll;\r\n }\r\n .my-legend .legend-title {\r\n text-align: left;\r\n margin-bottom: 5px;\r\n font-weight: bold;\r\n font-size: 100%;\r\n clear: both;\r\n }\r\n .my-legend .legend-scale ul {\r\n margin: 0;\r\n margin-bottom: 5px;\r\n padding: 0;\r\n float: left;\r\n list-style: none;\r\n }\r\n .my-legend .legend-scale ul li {\r\n font-size: 100%;\r\n list-style: none;\r\n margin-left: 0;\r\n line-height: 18px;\r\n margin-bottom: 2px;\r\n clear: both;\r\n }\r\n .my-legend ul.legend-labels li span {\r\n display: block;\r\n float: left;\r\n height: 16px;\r\n width: 30px;\r\n margin-right: 5px;\r\n margin-left: 0;\r\n border: 1px solid #999;\r\n }\r\n .my-legend .legend-source {\r\n font-size: 100%;\r\n color: #999;\r\n clear: both;\r\n }\r\n .my-legend a {\r\n color: #777;\r\n }\r\n </style>'),(29,14,'_edit_last','1'),(30,14,'_edit_lock','1432646423:1'),(31,14,'map_data','a:7:{s:6:\"layers\";a:6:{i:0;a:2:{s:4:\"type\";s:6:\"custom\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.6660c119/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";}i:1;a:4:{s:5:\"title\";s:10:\"Landslides\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.6b1f7b53/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:4:\"swap\";}}i:2;a:4:{s:5:\"title\";s:13:\"Cyclone Paths\";s:2:\"id\";s:166:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.cyclone_paths_lines/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:4:\"swap\";}}i:3;a:4:{s:5:\"title\";s:16:\"Floodprone Areas\";s:2:\"id\";s:162:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.floodproneareas/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:4:\"swap\";}}i:4;a:4:{s:5:\"title\";s:5:\"Fires\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.fww3dx9f/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:4:\"swap\";}}i:5;a:4:{s:5:\"title\";s:11:\"Earthquakes\";s:2:\"id\";s:158:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.earthquakes/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:4:\"swap\";}}}s:16:\"swap_first_layer\";s:158:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.earthquakes/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:8:\"min_zoom\";s:1:\"4\";s:8:\"max_zoom\";s:1:\"8\";s:6:\"center\";a:2:{s:3:\"lat\";s:17:\"26.07652055985697\";s:3:\"lon\";s:13:\"87.4951171875\";}s:4:\"zoom\";s:1:\"5\";s:10:\"pan_limits\";a:4:{s:4:\"east\";s:12:\"134.82421875\";s:5:\"north\";s:17:\"38.89103282648849\";s:5:\"south\";s:18:\"-1.669685500986571\";s:4:\"west\";s:11:\"55.01953125\";}}'),(32,14,'map_conf','{\"containerID\":\"map_14\",\"postID\":\"14\",\"layers\":[\"https://{s}.tiles.mapbox.com/v4/thethirdpole.6660c119/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.6b1f7b53/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.cyclone_paths_lines/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.floodproneareas/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.fww3dx9f/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.earthquakes/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"}],\"filteringLayers\":{\"switchLayers\":[],\"swapLayers\":[{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.6b1f7b53/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Landslides\"},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.cyclone_paths_lines/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Cyclone Paths\"},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.floodproneareas/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Floodprone Areas\"},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.fww3dx9f/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Fires\"},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.earthquakes/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Earthquakes\",\"first\":true}]},\"center\":[26.07652055985697,87.4951171875],\"zoom\":5,\"minZoom\":4,\"maxZoom\":8,\"panLimits\":[[\"-1.669685500986571\",\"55.01953125\"],[\"38.89103282648849\",\"134.82421875\"]],\"geocode\":false,\"disableHandlers\":{\"mousewheel\":false},\"legend_full\":false}'),(33,14,'legend','<div class=\'my-legend\'>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span style=\'background:#ff8b27;\'></span>Landslides</li>\r\n <li><span style=\'background:#abd5e5;\'></span>Floodprone Areas</li>\r\n <li><span style=\'background:#f99191;\'></span>Fires</li>\r\n </ul>\r\n </div>\r\n <div class=\'legend-title\'>Earthquake Magnitude</div>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li style=\"line-height: 5px; margin: 0 0 10px 0;\"><span class=\"point\" style=\'background:#BF9D73; width: 5px; height: 5px;\'></span>< 6.5</li>\r\n <li style=\"line-height: 10px; margin: 5px 0;\"><span class=\"point\" style=\'background:#BF9D73; width: 10px; height: 10px;\'></span>6.5 - 6.9</li>\r\n <li style=\"line-height: 15px; margin: 5px 0;\"><span class=\"point\" style=\'background:#BF9D73; width: 15px; height: 15px;\'></span>6.9 - 7.4</li>\r\n <li style=\"line-height: 25px; margin: 5px 0;\"><span class=\"point\" style=\'background:#BF9D73; width: 25px; height: 25px;\'></span>> 7.4</li>\r\n </ul>\r\n </div>\r\n <div class=\'legend-title\'>Cyclone Paths</div>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span class=\"line\" style=\'background:#ffff00;\'></span>1990-1994</li>\r\n <li><span class=\"line\" style=\'background:#ffcc00;\'></span>1995-1999</li>\r\n <li><span class=\"line\" style=\'background:#ff9e00;\'></span>2000-2004</li>\r\n <li><span class=\"line\" style=\'background:#ff6f00;\'></span>2005-2009</li>\r\n <li><span class=\"line\" style=\'background:#ff0000;\'></span>2010-2014</li>\r\n </ul>\r\n </div>\r\n <!--<div class=\'legend-source\'>Source: UNEP, BIG, OBIS, Natural Earth</div>-->\r\n</div>\r\n\r\n\r\n<style type=\'text/css\'>\r\n .my-legend .legend-title {\r\n text-align: left;\r\n margin-bottom: 5px;\r\n font-weight: bold;\r\n font-size: 100%;\r\n clear: both;\r\n }\r\n .my-legend .legend-scale ul {\r\n margin: 0;\r\n margin-bottom: 5px;\r\n padding: 0;\r\n float: left;\r\n list-style: none;\r\n }\r\n .my-legend .legend-scale ul li {\r\n font-size: 100%;\r\n list-style: none;\r\n margin-left: 0;\r\n line-height: 18px;\r\n margin-bottom: 2px;\r\n clear: both;\r\n }\r\n .my-legend ul.legend-labels li span {\r\n display: block;\r\n float: left;\r\n height: 16px;\r\n width: 30px;\r\n margin-right: 5px;\r\n margin-left: 0;\r\n border: 1px solid #999;\r\n }\r\n .my-legend ul.legend-labels li span.point {\r\n -webkit-border-radius: 50%;\r\n border-radius: 50%;\r\n }\r\n .my-legend ul.legend-labels li span.line {\r\n border: none;\r\n height: 4px;\r\n margin-top: 7px;\r\n margin-left: 1px;\r\n margin-right: 6px;\r\n }\r\n .my-legend .legend-source {\r\n font-size: 100%;\r\n color: #999;\r\n clear: both;\r\n }\r\n .my-legend a {\r\n color: #777;\r\n }\r\n</style>'),(35,18,'_edit_last','1'),(36,18,'_edit_lock','1432642743:1'),(37,18,'map_data','a:6:{s:6:\"layers\";a:3:{i:0;a:2:{s:4:\"type\";s:6:\"custom\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.9334be5a/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";}i:1;a:5:{s:5:\"title\";s:28:\"Livestock Production Systems\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.c8394e59/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:4:\"swap\";}s:13:\"switch_hidden\";s:1:\"1\";}i:2;a:5:{s:5:\"title\";s:18:\"Population Density\";s:2:\"id\";s:158:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.pop_density/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:4:\"swap\";}s:13:\"switch_hidden\";s:1:\"1\";}}s:8:\"min_zoom\";s:1:\"4\";s:8:\"max_zoom\";s:1:\"8\";s:6:\"center\";a:2:{s:3:\"lat\";s:18:\"24.206889622398023\";s:3:\"lon\";s:12:\"93.955078125\";}s:4:\"zoom\";s:1:\"5\";s:10:\"pan_limits\";a:4:{s:4:\"east\";s:13:\"133.857421875\";s:5:\"north\";s:17:\"42.42345651793833\";s:5:\"south\";s:17:\"2.986927393334876\";s:4:\"west\";s:12:\"54.052734375\";}}'),(38,18,'map_conf','{\"containerID\":\"map_18\",\"postID\":\"18\",\"layers\":[\"https://{s}.tiles.mapbox.com/v4/thethirdpole.9334be5a/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.c8394e59/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.pop_density/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"}],\"filteringLayers\":{\"switchLayers\":[],\"swapLayers\":[{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.c8394e59/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Livestock Production Systems\"},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.pop_density/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Population Density\"}]},\"center\":[24.206889622398023,93.955078125],\"zoom\":4,\"minZoom\":4,\"maxZoom\":8,\"panLimits\":[[\"2.986927393334876\",\"54.052734375\"],[\"42.42345651793833\",\"133.857421875\"]],\"geocode\":false,\"disableHandlers\":{\"mousewheel\":false},\"legend_full\":false}'),(39,18,'legend','<div class=\'my-legend\'>\r\n <div class=\'legend-title\'>Croplands</div>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span style=\'background:#7fc97f;\'></span>Irrigated: Wheat and Rice Dominant</li>\r\n <li><span style=\'background:#beaed4;\'></span>Irrigated: Mixed Crops 1: Wheat, Rice, Barley, Soybeans</li>\r\n <li><span style=\'background:#fdc086;\'></span>Irrigated: Mixed Crops 2: Corn, Wheat, Rice, Cotton, Orchards</li>\r\n <li><span style=\'background:#ffff99;\'></span>Rainfed: Wheat, Rice, Soybeans, Sugarcane, Corn, Cassava</li>\r\n <li><span style=\'background:#386cb0;\'></span>Rainfed: Wheat and Barley Dominant</li>\r\n <li><span style=\'background:#f0027f;\'></span>Rainfed: Corn and Soybeans Dominant</li>\r\n <li><span style=\'background:#bf5b17;\'></span>Rainfed: Mixed Crops 1: Wheat, Corn, Rice, Barley, Soybeans</li>\r\n <li><span style=\'background:#666666;\'></span>Minor Fractions of Mixed Crops: Wheat, Maize, Rice, Barley, Soybeans</li>\r\n </ul>\r\n </div>\r\n <!--<div class=\'legend-source\'>Source: UNEP, BIG, OBIS, Natural Earth</div>-->\r\n</div>\r\n\r\n\r\n<style type=\'text/css\'>\r\n .my-legend .legend-title {\r\n text-align: left;\r\n margin-bottom: 5px;\r\n font-weight: bold;\r\n font-size: 100%;\r\n clear: both;\r\n }\r\n .my-legend .legend-scale ul {\r\n margin: 0;\r\n margin-bottom: 5px;\r\n padding: 0;\r\n float: left;\r\n list-style: none;\r\n }\r\n .my-legend .legend-scale ul li {\r\n font-size: 100%;\r\n list-style: none;\r\n margin-left: 0;\r\n line-height: 18px;\r\n margin-bottom: 2px;\r\n clear: both;\r\n }\r\n .my-legend ul.legend-labels li span {\r\n display: block;\r\n float: left;\r\n height: 16px;\r\n width: 30px;\r\n margin-right: 5px;\r\n margin-left: 0;\r\n border: 1px solid #999;\r\n }\r\n .my-legend ul.legend-labels li span.point {\r\n width: 8px;\r\n height: 8px;\r\n margin-left: 11px;\r\n margin-top: 4px;\r\n margin-right: 16px;\r\n -webkit-border-radius: 50%;\r\n border-radius: 50%;\r\n }\r\n .my-legend ul.legend-labels li span.line {\r\n border: none;\r\n height: 4px;\r\n margin-top: 7px;\r\n margin-left: 1px;\r\n margin-right: 6px;\r\n }\r\n .my-legend .legend-source {\r\n font-size: 100%;\r\n color: #999;\r\n clear: both;\r\n }\r\n .my-legend a {\r\n color: #777;\r\n }\r\n</style>'),(40,19,'_edit_last','1'),(41,19,'_edit_lock','1432019512:1'),(42,19,'map_data','a:6:{s:6:\"layers\";a:5:{i:0;a:2:{s:4:\"type\";s:6:\"custom\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.2f907956/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";}i:4;a:5:{s:5:\"title\";s:18:\"Population Density\";s:2:\"id\";s:158:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.pop_density/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}s:13:\"switch_hidden\";s:1:\"1\";}i:1;a:5:{s:5:\"title\";s:36:\"Reservoirs and Hydropower Facilities\";s:2:\"id\";s:159:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.dam_hotspots/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}s:13:\"switch_hidden\";s:1:\"1\";}i:2;a:5:{s:5:\"title\";s:7:\"Bridges\";s:2:\"id\";s:154:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.bridges/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}s:13:\"switch_hidden\";s:1:\"1\";}i:3;a:5:{s:5:\"title\";s:6:\"Canals\";s:2:\"id\";s:153:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.Canals/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";s:4:\"type\";s:0:\"\";s:4:\"opts\";a:1:{s:9:\"filtering\";s:6:\"switch\";}s:13:\"switch_hidden\";s:1:\"1\";}}s:8:\"min_zoom\";s:1:\"4\";s:8:\"max_zoom\";s:1:\"8\";s:6:\"center\";a:2:{s:3:\"lat\";s:16:\"25.3241665257384\";s:3:\"lon\";s:13:\"89.7802734375\";}s:4:\"zoom\";s:1:\"5\";s:10:\"pan_limits\";a:4:{s:4:\"east\";s:13:\"131.748046875\";s:5:\"north\";s:17:\"44.84029065139799\";s:5:\"south\";s:17:\"6.315298538330033\";s:4:\"west\";s:12:\"51.943359375\";}}'),(43,19,'map_conf','{\"containerID\":\"map_19\",\"postID\":\"19\",\"layers\":[\"https://{s}.tiles.mapbox.com/v4/thethirdpole.2f907956/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.pop_density/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.dam_hotspots/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.bridges/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"},{\"layerID\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.Canals/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"layerType\":\"\"}],\"filteringLayers\":{\"switchLayers\":[{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.pop_density/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Population Density\",\"hidden\":true},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.dam_hotspots/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Reservoirs and Hydropower Facilities\",\"hidden\":true},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.bridges/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Bridges\",\"hidden\":true},{\"id\":\"https://{s}.tiles.mapbox.com/v4/thethirdpole.Canals/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\",\"title\":\"Canals\",\"hidden\":true}],\"swapLayers\":[]},\"center\":[25.3241665257384,89.7802734375],\"zoom\":5,\"minZoom\":4,\"maxZoom\":8,\"panLimits\":[[\"6.315298538330033\",\"51.943359375\"],[\"44.84029065139799\",\"131.748046875\"]],\"geocode\":false,\"disableHandlers\":{\"mousewheel\":false},\"legend_full\":false}'),(44,19,'legend',''),(46,21,'_edit_last','1'),(47,21,'_edit_lock','1432646731:1'),(48,21,'_oembed_97c779007855ced070cc86c6c367308e','{{unknown}}'),(49,21,'map_data','a:6:{s:6:\"layers\";a:1:{i:0;a:2:{s:4:\"type\";s:6:\"custom\";s:2:\"id\";s:155:\"https://{s}.tiles.mapbox.com/v4/thethirdpole.0f15fe8f/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\";}}s:8:\"min_zoom\";s:1:\"8\";s:8:\"max_zoom\";s:2:\"12\";s:6:\"center\";a:2:{s:3:\"lat\";s:18:\"27.732160709580906\";s:3:\"lon\";s:16:\"85.6549072265625\";}s:4:\"zoom\";s:1:\"9\";s:10:\"pan_limits\";a:4:{s:4:\"east\";s:13:\"88.4619140625\";s:5:\"north\";s:17:\"28.94086176940554\";s:5:\"south\";s:18:\"26.509904531413927\";s:4:\"west\";s:17:\"82.84790039062499\";}}'),(50,21,'map_conf','{\"containerID\":\"map_21\",\"postID\":\"21\",\"layers\":[\"https://{s}.tiles.mapbox.com/v4/thethirdpole.0f15fe8f/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoidGhldGhpcmRwb2xlIiwiYSI6ImNLSWVDcWsifQ.vVx5f1hjIvHBeSpaY3NUkQ\"],\"filteringLayers\":{\"switchLayers\":[],\"swapLayers\":[]},\"center\":[27.732160709580906,85.6549072265625],\"zoom\":9,\"minZoom\":8,\"maxZoom\":12,\"panLimits\":[[\"26.509904531413927\",\"82.84790039062499\"],[\"28.94086176940554\",\"88.4619140625\"]],\"geocode\":false,\"disableHandlers\":{\"mousewheel\":false},\"legend_full\":false}'),(51,21,'legend','<div class=\'my-legend\'>\r\n <div class=\'legend-title\'>Damaged Areas</div>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span style=\'background:#cc4c02;\'></span>> 80%</li>\r\n <li><span style=\'background:#fe9929;\'></span>70-80%</li>\r\n <li><span style=\'background:#fed98e;\'></span>55-70%</li>\r\n <li><span style=\'background:#ffffd4;\'></span>40-55%</li>\r\n </ul>\r\n </div>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span class=\"point\" style=\'background:#ac1111;\'></span>Damaged Dams</li>\r\n <li><span class=\"point\" style=\'background:#999;\'></span>Landslides</li>\r\n <li><span class=\"point\" style=\'background:#065227;\'></span>Potential Valley-Blocking Landslides</li>\r\n <li><span class=\"line\" style=\'background:#065227;\'></span>Valleys with Intense Landslides</li>\r\n </ul>\r\n </div>\r\n <div class=\'legend-title\'>Radio Stations</div>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li style=\"line-height: 5px; margin: 0 0 10px 0;\"><span class=\"point\" style=\'background:#fdbf6f; width: 5px; height: 5px;\'></span>100w</li>\r\n <li style=\"line-height: 8px; margin: 0 0 10px 0;\"><span class=\"point\" style=\'background:#fdbf6f; width: 8px; height: 8px;\'></span>250w</li>\r\n <li style=\"line-height: 10px; margin: 5px 0;\"><span class=\"point\" style=\'background:#fdbf6f; width: 10px; height: 10px;\'></span>500w</li>\r\n <li style=\"line-height: 13px; margin: 5px 0;\"><span class=\"point\" style=\'background:#fdbf6f; width: 13px; height: 13px;\'></span>1000w</li>\r\n <li style=\"line-height: 15px; margin: 5px 0;\"><span class=\"point\" style=\'background:#fdbf6f; width: 15px; height: 15px;\'></span>2000w</li>\r\n \r\n </ul>\r\n </div>\r\n <div class=\'legend-title\'>Nepal Census</div>\r\n <div class=\'legend-scale\'>\r\n <ul class=\'legend-labels\'>\r\n <li><span class=\"line\" style=\'background:#ffff00;\'></span>1990-1994</li>\r\n </ul>\r\n </div>\r\n <!--<div class=\'legend-source\'>Source: UNEP, BIG, OBIS, Natural Earth</div>-->\r\n</div>\r\n\r\n\r\n<style type=\'text/css\'>\r\n .my-legend .legend-title {\r\n text-align: left;\r\n margin-bottom: 5px;\r\n font-weight: bold;\r\n font-size: 100%;\r\n clear: both;\r\n }\r\n .my-legend .legend-scale ul {\r\n margin: 0;\r\n margin-bottom: 5px;\r\n padding: 0;\r\n float: left;\r\n list-style: none;\r\n }\r\n .my-legend .legend-scale ul li {\r\n font-size: 100%;\r\n list-style: none;\r\n margin-left: 0;\r\n line-height: 18px;\r\n margin-bottom: 2px;\r\n clear: both;\r\n }\r\n .my-legend ul.legend-labels li span {\r\n display: block;\r\n float: left;\r\n height: 16px;\r\n width: 30px;\r\n margin-right: 5px;\r\n margin-left: 0;\r\n border: 1px solid #999;\r\n }\r\n .my-legend ul.legend-labels li span.point {\r\n width: 12px;\r\n height: 12px;\r\n margin: 2px 14px 0 9px;\r\n -webkit-border-radius: 50%;\r\n border-radius: 50%;\r\n }\r\n .my-legend ul.legend-labels li span.line {\r\n border: none;\r\n height: 4px;\r\n margin-top: 7px;\r\n margin-left: 1px;\r\n margin-right: 6px;\r\n }\r\n .my-legend .legend-source {\r\n font-size: 100%;\r\n color: #999;\r\n clear: both;\r\n }\r\n .my-legend a {\r\n color: #777;\r\n }\r\n</style>');
/*!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 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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 (1,1,'2015-05-11 07:44:17','2015-05-11 07:44:17','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2015-05-11 07:44:17','2015-05-11 07:44:17','',0,'http://46.101.48.242/?p=1',0,'post','',1),(2,1,'2015-05-11 07:44:17','2015-05-11 07:44:17','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://46.101.48.242/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2015-05-11 07:44:17','2015-05-11 07:44:17','',0,'http://46.101.48.242/?page_id=2',0,'page','',0),(5,1,'2015-05-12 07:53:30','2015-05-12 07:53:30','','Water Cycle','','publish','closed','closed','','water-cycle','','','2015-05-26 13:05:20','2015-05-26 13:05:20','',0,'http://46.101.48.242/?post_type=map&p=5',0,'map','',0),(8,1,'2015-05-15 08:24:44','2015-05-15 08:24:44','','Coasts','','publish','closed','closed','','coasts','','','2015-05-15 20:41:46','2015-05-15 20:41:46','',0,'http://46.101.48.242/?post_type=map&p=8',0,'map','',0),(10,1,'2015-05-15 08:44:41','2015-05-15 08:44:41','','Cryosphere','','publish','closed','closed','','cryosphere','','','2015-05-26 13:04:18','2015-05-26 13:04:18','',0,'http://46.101.48.242/?post_type=map&p=10',0,'map','',0),(12,1,'2015-05-15 09:16:29','2015-05-15 09:16:29','','Forests','','publish','closed','closed','','forests','','','2015-05-19 16:18:57','2015-05-19 16:18:57','',0,'http://46.101.48.242/?post_type=map&p=12',0,'map','',0),(13,1,'2015-05-15 09:29:40','2015-05-15 09:29:40','','Hindu Kush Himalaya','','publish','closed','closed','','hindu-kush-himalaya','','','2015-05-20 08:29:37','2015-05-20 08:29:37','',0,'http://46.101.48.242/?post_type=map&p=13',0,'map','',0),(14,1,'2015-05-15 13:42:27','2015-05-15 13:42:27','','Natural Hazards','','publish','closed','closed','','natural-hazards','','','2015-05-15 14:12:23','2015-05-15 14:12:23','',0,'http://46.101.48.242/?post_type=map&p=14',0,'map','',0),(18,1,'2015-05-15 20:15:06','2015-05-15 20:15:06','','Agricultural','','publish','closed','closed','','agricultural','','','2015-05-26 12:10:55','2015-05-26 12:10:55','',0,'http://46.101.48.242/?post_type=map&p=18',0,'map','',0),(19,1,'2015-05-15 20:39:57','2015-05-15 20:39:57','','Water Infrastructure','','publish','closed','closed','','water-infrastructure','','','2015-05-19 07:13:16','2015-05-19 07:13:16','',0,'http://46.101.48.242/?post_type=map&p=19',0,'map','',0),(20,1,'2015-05-19 07:06:33','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-05-19 07:06:33','0000-00-00 00:00:00','',0,'http://46.101.48.242/?p=20',0,'post','',0),(21,1,'2015-05-19 07:26:24','2015-05-19 07:26:24','','Nepal Earthquake','','publish','closed','closed','','nepal-earthquake','','','2015-05-19 15:00:19','2015-05-19 15:00:19','',0,'http://46.101.48.242/?post_type=map&p=21',0,'map','',0),(22,1,'2015-05-26 13:08:04','2015-05-26 13:08:04','','Natural Hazards','','inherit','open','open','','14-autosave-v1','','','2015-05-26 13:08:04','2015-05-26 13:08:04','',14,'http://46.101.48.242/2015/05/26/14-autosave-v1/',0,'revision','',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=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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 */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0);
/*!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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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,1);
/*!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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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','dave'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp360_locks,wp390_widgets,wp410_dfw'),(13,1,'show_welcome_panel','1'),(14,1,'session_tokens','a:1:{s:64:\"acb99698affeae93c7b6c7394f92c31a103ad9658a11a9cfb162f2691a936e3a\";a:4:{s:10:\"expiration\";i:1432814331;s:2:\"ip\";s:13:\"86.20.219.250\";s:2:\"ua\";s:116:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3\";s:5:\"login\";i:1432641531;}}'),(15,1,'wp_dashboard_quick_press_last_post_id','20'),(16,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(17,1,'metaboxhidden_nav-menus','a:4:{i:0;s:8:\"add-post\";i:1;s:7:\"add-map\";i:2;s:13:\"add-map-group\";i:3;s:12:\"add-post_tag\";}');
/*!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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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,'dave','$P$BbxILsbqLwB/7BII.6kTu0h1k12JFG.','dave','[email protected]','','2015-05-11 07:44:17','',0,'dave');
/*!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 2015-05-26 9:36:28