-
Notifications
You must be signed in to change notification settings - Fork 0
/
banco-de-dados.sql
380 lines (333 loc) · 450 KB
/
banco-de-dados.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
-- MySQL dump 10.13 Distrib 5.5.34, for osx10.6 (i386)
--
-- Host: localhost Database: wp_niteroietal
-- ------------------------------------------------------
-- Server version 5.5.34
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'Mr WordPress','','https://wordpress.org/','','2014-08-05 16:45:34','2014-08-05 16:45:34','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) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=520 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://localhost/niteroi-e-tal','yes'),(2,'blogname','Niterói e Tal','yes'),(3,'blogdescription','um pouco de moda, um pouco de Nikity','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','[email protected]','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','0','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','[email protected]','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','1','yes'),(21,'posts_per_page','10','yes'),(22,'date_format','F j, Y','yes'),(23,'time_format','g:i a','yes'),(24,'links_updated_date_format','F j, Y g:i a','yes'),(25,'comment_moderation','0','yes'),(26,'moderation_notify','1','yes'),(27,'permalink_structure','/%postname%/','yes'),(28,'gzipcompression','0','yes'),(29,'hack_file','0','yes'),(30,'blog_charset','UTF-8','yes'),(31,'moderation_keys','','no'),(32,'active_plugins','a:4:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:33:\"popular-widget/popular-widget.php\";i:2;s:55:\"ultimate-coming-soon-page/ultimate-coming-soon-page.php\";i:3;s:27:\"zilla-likes/zilla-likes.php\";}','yes'),(33,'home','http://localhost/niteroi-e-tal','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','BUZZBLOG-theme','yes'),(42,'stylesheet','BUZZBLOG-theme','yes'),(43,'comment_whitelist','1','yes'),(44,'blacklist_keys','','no'),(45,'comment_registration','0','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','27916','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','1','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','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:7:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:8:\"dropdown\";i:0;s:10:\"dw_include\";i:0;s:9:\"dw_logged\";s:0:\"\";s:9:\"other_ids\";s: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','27916','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:6:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:17:\"recent-comments-2\";i:1;s:14:\"recent-posts-2\";i:2;s:10:\"archives-2\";i:3;s:6:\"meta-2\";}s:15:\"hs_main_sidebar\";a:6:{i:0;s:17:\"social_networks-3\";i:1;s:12:\"categories-2\";i:2;s:16:\"popular-widget-2\";i:3;s:20:\"my_facebook_widget-3\";i:4;s:8:\"search-2\";i:5;s:18:\"instagram-widget-3\";}s:11:\"hs_bottom_1\";a:0:{}s:11:\"hs_bottom_2\";a:0:{}s:17:\"hs_main_slideshow\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(96,'cron','a:5:{i:1408250743;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:1408261560;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:1408293974;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:1408314632;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(105,'_site_transient_timeout_browser_bf3e8a08a61f8742c5ac2d79212e4752','1407861975','yes'),(106,'_site_transient_browser_bf3e8a08a61f8742c5ac2d79212e4752','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"37.0.2062.58\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(108,'can_compress_scripts','1','yes'),(126,'_transient_twentyfourteen_category_count','1','yes'),(127,'_site_transient_timeout_wporg_theme_feature_list','1407268417','yes'),(128,'_site_transient_wporg_theme_feature_list','a:4:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:6:\"Layout\";a:9:{i:0;s:12:\"fixed-layout\";i:1;s:12:\"fluid-layout\";i:2;s:17:\"responsive-layout\";i:3;s:10:\"one-column\";i:4;s:11:\"two-columns\";i:5;s:13:\"three-columns\";i:6;s:12:\"four-columns\";i:7;s:12:\"left-sidebar\";i:8;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:8:\"blavatar\";i:2;s:10:\"buddypress\";i:3;s:17:\"custom-background\";i:4;s:13:\"custom-colors\";i:5;s:13:\"custom-header\";i:6;s:11:\"custom-menu\";i:7;s:12:\"editor-style\";i:8;s:21:\"featured-image-header\";i:9;s:15:\"featured-images\";i:10;s:15:\"flexible-header\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}','yes'),(129,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1408225568;s:7:\"checked\";a:4:{s:14:\"BUZZBLOG-theme\";s:3:\"1.8\";s:14:\"twentyfourteen\";s:3:\"1.1\";s:14:\"twentythirteen\";s:3:\"1.2\";s:12:\"twentytwelve\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),(130,'theme_mods_twentyfourteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1407257772;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(131,'current_theme','BuzzBlog','yes'),(132,'theme_mods_BUZZBLOG-theme','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:11:\"header_menu\";i:2;s:11:\"footer_menu\";i:0;}}','yes'),(133,'theme_switched','','yes'),(134,'optionsframework','a:2:{s:2:\"id\";s:8:\"buzzblog\";s:12:\"knownoptions\";a:1:{i:0;s:8:\"buzzblog\";}}','yes'),(135,'buzzblog','a:98:{s:15:\"body_background\";a:5:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"image\";s:70:\"http://localhost/niteroi-e-tal/wp-content/uploads/2014/08/pattern1.png\";s:6:\"repeat\";s:6:\"repeat\";s:8:\"position\";s:10:\"top center\";s:10:\"attachment\";s:6:\"scroll\";}s:14:\"google_mixed_3\";a:7:{s:4:\"size\";s:4:\"16px\";s:4:\"face\";s:4:\"Lato\";s:9:\"character\";s:5:\"latin\";s:5:\"style\";s:6:\"normal\";s:6:\"weight\";s:3:\"400\";s:10:\"lineheight\";s:4:\"24px\";s:5:\"color\";s:7:\"#525252\";}s:10:\"h1_heading\";a:7:{s:4:\"size\";s:4:\"40px\";s:4:\"face\";s:23:\"playfair_displayregular\";s:9:\"character\";s:5:\"latin\";s:5:\"style\";s:6:\"normal\";s:6:\"weight\";s:3:\"400\";s:10:\"lineheight\";s:4:\"40px\";s:5:\"color\";s:7:\"#222222\";}s:10:\"h2_heading\";a:7:{s:4:\"size\";s:4:\"30px\";s:4:\"face\";s:23:\"playfair_displayregular\";s:9:\"character\";s:5:\"latin\";s:5:\"style\";s:6:\"normal\";s:6:\"weight\";s:3:\"400\";s:10:\"lineheight\";s:4:\"30px\";s:5:\"color\";s:7:\"#222222\";}s:10:\"h3_heading\";a:7:{s:4:\"size\";s:4:\"25px\";s:4:\"face\";s:23:\"playfair_displayregular\";s:9:\"character\";s:5:\"latin\";s:5:\"style\";s:6:\"normal\";s:6:\"weight\";s:3:\"400\";s:10:\"lineheight\";s:4:\"25px\";s:5:\"color\";s:7:\"#222222\";}s:10:\"h4_heading\";a:7:{s:4:\"size\";s:4:\"20px\";s:4:\"face\";s:23:\"playfair_displayregular\";s:9:\"character\";s:5:\"latin\";s:5:\"style\";s:6:\"normal\";s:6:\"weight\";s:3:\"400\";s:10:\"lineheight\";s:4:\"20px\";s:5:\"color\";s:7:\"#222222\";}s:10:\"h5_heading\";a:7:{s:4:\"size\";s:4:\"19px\";s:4:\"face\";s:23:\"playfair_displayregular\";s:9:\"character\";s:5:\"latin\";s:5:\"style\";s:6:\"normal\";s:6:\"weight\";s:3:\"400\";s:10:\"lineheight\";s:4:\"19px\";s:5:\"color\";s:7:\"#222222\";}s:10:\"h6_heading\";a:7:{s:4:\"size\";s:4:\"18px\";s:4:\"face\";s:23:\"playfair_displayregular\";s:9:\"character\";s:5:\"latin\";s:5:\"style\";s:6:\"normal\";s:6:\"weight\";s:3:\"400\";s:10:\"lineheight\";s:4:\"24px\";s:5:\"color\";s:7:\"#222222\";}s:15:\"g_search_box_id\";s:3:\"yes\";s:16:\"g_breadcrumbs_id\";s:3:\"yes\";s:12:\"g_nicescroll\";s:3:\"yes\";s:9:\"hs_import\";s:2:\"no\";s:12:\"header_color\";a:5:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"image\";s:76:\"http://localhost/niteroi-e-tal/wp-content/uploads/2014/08/nitetal_header.jpg\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:13:\"center center\";s:10:\"attachment\";s:5:\"fixed\";}s:13:\"overlay_color\";s:7:\"#ffffff\";s:20:\"overlay_transparency\";s:4:\"0.85\";s:15:\"header_position\";s:12:\"normalheader\";s:23:\"topsearchbtborder_color\";s:7:\"#eeeeee\";s:21:\"topsearchbticon_color\";s:7:\"#e1e1e1\";s:15:\"hs_choose_style\";s:13:\"defined_style\";s:11:\"links_color\";s:7:\"#00e7b4\";s:14:\"subtitle_color\";s:7:\"#00e7b4\";s:12:\"global_color\";s:7:\"#00e7b4\";s:29:\"mainmenu_current_button_color\";s:7:\"#00e7b4\";s:27:\"mainmenu_hover_button_color\";s:7:\"#cccccc\";s:26:\"mainmenu_line_button_color\";s:7:\"#dddddd\";s:27:\"mainmenu_submenu_link_color\";s:7:\"#ffffff\";s:33:\"mainmenu_submenu_hover_link_color\";s:7:\"#222222\";s:29:\"mainmenu_submenu_button_color\";s:7:\"#00e7b4\";s:35:\"mainmenu_submenu_hover_button_color\";s:7:\"#ffffff\";s:10:\"stylesheet\";s:78:\"http://localhost/niteroi-e-tal/wp-content/themes/BUZZBLOG-theme/css/style5.css\";s:10:\"custom_css\";s:0:\"\";s:11:\"logo_margin\";s:2:\"50\";s:9:\"logo_type\";s:9:\"text_logo\";s:15:\"logo_typography\";a:7:{s:4:\"size\";s:4:\"73px\";s:4:\"face\";s:23:\"playfair_displayregular\";s:9:\"character\";s:5:\"latin\";s:5:\"style\";s:6:\"normal\";s:6:\"weight\";s:3:\"400\";s:10:\"lineheight\";s:4:\"45px\";s:5:\"color\";s:7:\"#222222\";}s:8:\"logo_url\";s:0:\"\";s:7:\"favicon\";s:68:\"http://localhost/niteroi-e-tal/wp-content/uploads/2014/08/favico.png\";s:12:\"logo_tagline\";s:3:\"yes\";s:13:\"tagline_color\";s:7:\"#444444\";s:15:\"menu_typography\";a:7:{s:4:\"size\";s:4:\"18px\";s:4:\"face\";s:23:\"playfair_displayregular\";s:9:\"character\";s:5:\"latin\";s:5:\"style\";s:6:\"normal\";s:6:\"weight\";s:3:\"400\";s:10:\"lineheight\";s:4:\"21px\";s:5:\"color\";s:7:\"#222222\";}s:12:\"bgmenu_color\";s:7:\"#ffffff\";s:15:\"lineabove_color\";s:7:\"#eeeeee\";s:18:\"itemsbetween_color\";s:7:\"#d6d6d6\";s:9:\"blog_text\";s:4:\"Blog\";s:8:\"blog_sub\";s:35:\"The place where we write some words\";s:12:\"blog_related\";s:13:\"Related Posts\";s:16:\"blog_author_name\";s:2:\"By\";s:11:\"post_author\";s:3:\"yes\";s:12:\"full_content\";s:5:\"false\";s:12:\"post_sidebar\";s:4:\"true\";s:16:\"blog_sidebar_pos\";s:5:\"right\";s:16:\"masonry_category\";s:5:\"false\";s:13:\"category_name\";s:3:\"yes\";s:13:\"category_word\";s:3:\"yes\";s:18:\"blog_excerpt_count\";s:2:\"55\";s:15:\"post_image_size\";s:5:\"large\";s:17:\"single_image_size\";s:5:\"large\";s:15:\"featured_images\";s:9:\"featured1\";s:9:\"post_meta\";s:4:\"true\";s:12:\"post_excerpt\";s:4:\"true\";s:9:\"post_date\";s:3:\"yes\";s:11:\"date_format\";s:9:\"l, F j, Y\";s:15:\"pagination_type\";s:7:\"paglink\";s:14:\"post_permalink\";s:3:\"yes\";s:13:\"post_category\";s:3:\"yes\";s:8:\"post_tag\";s:3:\"yes\";s:12:\"post_comment\";s:3:\"yes\";s:12:\"related_post\";s:3:\"yes\";s:15:\"readmore_button\";s:3:\"yes\";s:12:\"social_share\";s:4:\"true\";s:7:\"shareon\";s:5:\"false\";s:14:\"facebook_share\";s:4:\"true\";s:13:\"twitter_share\";s:4:\"true\";s:11:\"gplus_share\";s:4:\"true\";s:10:\"digg_share\";s:5:\"false\";s:12:\"reddit_share\";s:5:\"false\";s:14:\"linkedin_share\";s:5:\"false\";s:15:\"pinterest_share\";s:4:\"true\";s:17:\"stumbleupon_share\";s:5:\"false\";s:12:\"tumblr_share\";s:4:\"true\";s:11:\"email_share\";s:4:\"true\";s:12:\"folio_filter\";s:3:\"cat\";s:12:\"items_count2\";s:2:\"12\";s:12:\"items_count3\";s:2:\"12\";s:12:\"items_count4\";s:2:\"12\";s:15:\"gallery_columns\";s:1:\"3\";s:15:\"images_per_page\";s:1:\"6\";s:13:\"gallery_title\";s:3:\"yes\";s:16:\"gallery_category\";s:3:\"yes\";s:19:\"gallery_description\";s:3:\"yes\";s:11:\"footer_text\";s:53:\"Copyrights © 2014 BUZZBLOG. All Rights Reserved.\";s:7:\"ga_code\";s:0:\"\";s:8:\"feed_url\";s:0:\"\";s:11:\"footer_menu\";s:4:\"true\";s:11:\"footer_logo\";s:4:\"true\";s:13:\"footer_lowest\";s:4:\"true\";s:22:\"footer_menu_typography\";a:7:{s:4:\"size\";s:4:\"13px\";s:4:\"face\";s:23:\"playfair_displayregular\";s:9:\"character\";s:5:\"latin\";s:5:\"style\";s:6:\"normal\";s:6:\"weight\";s:3:\"400\";s:10:\"lineheight\";s:4:\"22px\";s:5:\"color\";s:7:\"#667078\";}s:18:\"hs_envato_username\";s:0:\"\";s:16:\"hs_envato_apikey\";s:0:\"\";}','yes'),(136,'wpcf7','a:1:{s:7:\"version\";s:5:\"3.9.1\";}','yes'),(204,'recently_activated','a:1:{s:19:\"akismet/akismet.php\";i:1407536138;}','yes'),(207,'_site_transient_update_plugins','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1408225565;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),(212,'widget_my_facebook_widget','a:3:{i:1;a:0:{}i:3;a:12:{s:5:\"title\";s:0:\"\";s:12:\"facebook_URL\";s:36:\"https://www.facebook.com/curtarioetc\";s:9:\"box_width\";s:5:\"220px\";s:10:\"box_height\";s:4:\"100%\";s:12:\"color_scheme\";s:5:\"light\";s:14:\"display_haeder\";N;s:13:\"display_faces\";s:2:\"on\";s:14:\"display_stream\";N;s:14:\"display_border\";N;s:10:\"dw_include\";i:0;s:9:\"dw_logged\";s:0:\"\";s:9:\"other_ids\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(215,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(216,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(217,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(218,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(219,'widget_zilla_likes_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(220,'widget_social_networks','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:35:{s:5:\"title\";s:0:\"\";s:7:\"twitter\";s:35:\"https://twitter.com/nelson_saldanha\";s:8:\"facebook\";s:36:\"https://www.facebook.com/niteroietal\";s:6:\"flickr\";s:0:\"\";s:3:\"rss\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:9:\"instagram\";s:36:\"http://instagram.com/saldanha_nelson\";s:7:\"youtube\";s:44:\"https://www.youtube.com/user/portadosfundos/\";s:3:\"aim\";s:0:\"\";s:8:\"dribbble\";s:0:\"\";s:10:\"deviantart\";s:0:\"\";s:5:\"gplus\";s:0:\"\";s:9:\"pinterest\";s:39:\"http://www.pinterest.com/nelsonsaldanha\";s:5:\"vimeo\";s:0:\"\";s:9:\"goodreads\";s:0:\"\";s:9:\"bloglovin\";s:0:\"\";s:13:\"twitter_label\";s:0:\"\";s:14:\"facebook_label\";s:0:\"\";s:12:\"flickr_label\";s:0:\"\";s:9:\"rss_label\";s:0:\"\";s:14:\"linkedin_label\";s:0:\"\";s:15:\"instagram_label\";s:0:\"\";s:13:\"youtube_label\";s:0:\"\";s:9:\"aim_label\";s:0:\"\";s:14:\"dribbble_label\";s:0:\"\";s:16:\"deviantart_label\";s:0:\"\";s:11:\"gplus_label\";s:0:\"\";s:15:\"pinterest_label\";s:0:\"\";s:11:\"vimeo_label\";s:0:\"\";s:15:\"goodreads_label\";s:0:\"\";s:15:\"bloglovin_label\";s:0:\"\";s:7:\"display\";s:5:\"icons\";s:10:\"dw_include\";i:0;s:9:\"dw_logged\";s:0:\"\";s:9:\"other_ids\";s:0:\"\";}}','yes'),(221,'widget_ad_125_125-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(222,'widget_my-recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(223,'widget_my_poststypewidget','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:24:{s:14:\"asc_sort_order\";s:0:\"\";s:5:\"thumb\";s:0:\"\";s:13:\"thumb_as_link\";s:0:\"\";s:14:\"excerpt_length\";s:0:\"\";s:7:\"sort_by\";s:4:\"rand\";s:3:\"num\";s:1:\"0\";s:8:\"posttype\";s:0:\"\";s:5:\"title\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:4:\"date\";s:0:\"\";s:11:\"comment_num\";s:0:\"\";s:10:\"show_title\";s:0:\"\";s:15:\"show_title_date\";s:0:\"\";s:7:\"excerpt\";s:0:\"\";s:15:\"excerpt_as_link\";s:0:\"\";s:9:\"more_link\";s:0:\"\";s:15:\"more_link_class\";s:0:\"\";s:14:\"more_link_text\";s:0:\"\";s:11:\"global_link\";s:0:\"\";s:16:\"global_link_href\";s:0:\"\";s:16:\"global_link_text\";s:0:\"\";s:10:\"dw_include\";i:0;s:9:\"dw_logged\";s:0:\"\";s:9:\"other_ids\";s:0:\"\";}}','yes'),(224,'widget_twitter-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(225,'widget_flickr-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(226,'widget_instagram-widget','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:7:{s:5:\"title\";s:0:\"\";s:6:\"userid\";s:8:\"42647346\";s:11:\"accessToken\";s:49:\"42647346.5b9e1e6.9bbdd3d95abd46e393028daddea24b6f\";s:12:\"image_amount\";s:1:\"9\";s:10:\"dw_include\";i:0;s:9:\"dw_logged\";s:0:\"\";s:9:\"other_ids\";s:0:\"\";}}','yes'),(282,'_site_transient_timeout_browser_8091cc2a67dc6c30ea0614efd28bd157','1408381140','yes'),(283,'_site_transient_browser_8091cc2a67dc6c30ea0614efd28bd157','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"37.0.2062.68\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(305,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:2;}}','yes'),(308,'_transient_random_seed','bd2d72345ae6fa84ab280372abdef95a','yes'),(309,'logged_in_key','b[x(i>B7(k]i$^G,:Rt~ rc*7Jl_7fE>e@<]K2u<?*{q+4!d^4M=Ft.n@ff3G,iy','yes'),(310,'logged_in_salt','gKt*)LKCO5T<84lEK*Y%<qGJyf+gP.gGzRyH=KelrT=aDVo2S&w+f.7`dy}}SM$]','yes'),(311,'auth_key','|o@y>$0jZwUAlN^c]y%LQSg=VT[,P$SD%hxg3}0cf3D]mR-tzsWbo3y2K4<~E=MZ','yes'),(312,'auth_salt','`%@WGx?lb-{P`j/.~im-?V]t-tEOnN$UU35yfeWV:bx^KT?Fj`gB Y(7<&TwQ4Xz','yes'),(319,'nonce_key','|:ADV[$C6pnoWU^>SE(adq}Y] 6Q<K)=|`dQC(Iw@3#4V!h_tOak~DDkQ{uV` _`','yes'),(320,'nonce_salt','R3q_=G-9lZf/GeCPAP.4+<.a`(9u[f)nWY<O0 :z}[=r|dKJS$=K)_Z~/;GKZ<{{','yes'),(346,'seedprod_comingsoon_options','a:16:{s:18:\"comingsoon_enabled\";a:1:{i:0;s:1:\"1\";}s:16:\"comingsoon_image\";s:0:\"\";s:19:\"comingsoon_headline\";s:14:\"Niterói e Tal\";s:22:\"comingsoon_description\";s:8:\"Em breve\";s:22:\"comingsoon_mailinglist\";s:4:\"none\";s:29:\"comingsoon_feedburner_address\";s:0:\"\";s:21:\"comingsoon_customhtml\";s:0:\"\";s:26:\"comingsoon_custom_bg_color\";s:7:\"#ffffff\";s:34:\"comingsoon_background_noise_effect\";s:2:\"on\";s:26:\"comingsoon_custom_bg_image\";s:0:\"\";s:21:\"comingsoon_font_color\";s:4:\"gray\";s:29:\"comingsoon_text_shadow_effect\";s:2:\"on\";s:24:\"comingsoon_headline_font\";s:16:\"Playfair+Display\";s:20:\"comingsoon_body_font\";s:7:\"empty_0\";s:21:\"comingsoon_custom_css\";s:84:\"* {text-align: center;}\r\nh1 {margin-top: 150px!important; font-size:50px!important;}\";s:24:\"comingsoon_footer_credit\";s:1:\"0\";}','yes'),(441,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1408097924','no'),(442,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Aug 2014 04:36: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:\"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:42:\"http://wordpress.org/?v=4.0-beta3-20140814\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 3.9.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2014/08/wordpress-3-9-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2014/08/wordpress-3-9-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Aug 2014 19:04:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3269\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:377:\"WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately. This release fixes a possible denial of service issue in PHP’s XML processing, reported by Nir Goldshlager of the Salesforce.com Product Security Team. It was fixed by Michael Adams and Andrew Nacin of the WordPress […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2352:\"<p>WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately.</p>\n<p>This release fixes a possible denial of service issue in PHP’s XML processing, reported by <a href=\"https://twitter.com/nirgoldshlager\">Nir Goldshlager</a> of the Salesforce.com Product Security Team. It was fixed by Michael Adams and Andrew Nacin of the WordPress security team and David Rothstein of the <a href=\"https://www.drupal.org/SA-CORE-2014-004\">Drupal security team</a>. This is the first time our two projects have coordinated joint security releases.</p>\n<p>WordPress 3.9.2 also contains other security changes:</p>\n<ul>\n<li>Fixes a possible but unlikely code execution when processing widgets (WordPress is not affected by default), discovered by <a href=\"http://www.buayacorp.com/\">Alex Concha</a> of the WordPress security team.</li>\n<li>Prevents information disclosure via XML entity attacks in the external GetID3 library, reported by <a href=\"http://onsec.ru/en/\">Ivan Novikov</a> of ONSec.</li>\n<li>Adds protections against brute attacks against CSRF tokens, reported by <a href=\"http://systemoverlord.com/\">David Tomaschik</a> of the Google Security Team.</li>\n<li>Contains some additional security hardening, like preventing cross-site scripting that could be triggered only by administrators.</li>\n</ul>\n<p>We appreciated responsible disclosure of these issues directly to our security team. For more information, see the <a href=\"http://codex.wordpress.org/Version_3.9.2\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/3.9?stop_rev=29383&rev=29411\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 3.9.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.9.2 within 12 hours. (If you are still on WordPress 3.8.3 or 3.7.3, you will also be updated to 3.8.4 or 3.7.4. We don’t support older versions, so please update to 3.9.2 for the latest and greatest.)</p>\n<p>Already testing WordPress 4.0? The third beta is <a href=\"https://wordpress.org/wordpress-4.0-beta3.zip\">now available</a> (zip) and it contains these security fixes.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/08/wordpress-3-9-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.0 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/07/wordpress-4-0-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2014/07/wordpress-4-0-beta-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Jul 2014 21:15:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3261\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:374:\"WordPress 4.0 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). For more of what’s new in version 4.0, check out […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1738:\"<p>WordPress 4.0 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-4.0-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more of what’s new in version 4.0, <a href=\"http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/\">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Further refinements for the the plugin installation and media library experiences.</li>\n<li>Updated TinyMCE, which now includes better indentation for lists and the restoration of the color picker.</li>\n<li>Cookies are now tied to a session internally, so if you have trouble logging in, <a href=\"https://core.trac.wordpress.org/ticket/20276\">#20276</a> may be the culprit.</li>\n<li>Various bug fixes (there were <a href=\"https://core.trac.wordpress.org/log?rev=29228&stop_rev=29060&limit=200\">nearly 170 changes</a> since last week).</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.0\">everything we’ve fixed</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2014/07/wordpress-4-0-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.0 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Jul 2014 10:17:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3248\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.0 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4025:\"<p>WordPress 4.0 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the <a href=\"http://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.0-beta1.zip\">download the beta here</a> (zip).</p>\n<p>4.0 is due out next month, but to get there, we need your help testing what we’ve been working on:</p>\n<ul>\n<li><strong>Previews of <a href=\"http://codex.wordpress.org/Embeds\">embedding via URLs</a></strong> in the visual editor and the “Insert from URL” tab in the media modal. Try pasting a URL (such as a <a href=\"http://wordpress.tv/\">WordPress.tv</a> or YouTube video) onto its own line in the visual editor. (<a href=\"https://core.trac.wordpress.org/ticket/28195\">#28195</a>, <a href=\"https://core.trac.wordpress.org/ticket/15490\">#15490</a>)</li>\n<li>The <strong>Media Library</strong> now has a “grid” view in addition to the existing list view. Clicking on an item takes you into a modal where you can see a larger preview and edit information about that attachment, and you can navigate between items right from the modal without closing it. (<a href=\"https://core.trac.wordpress.org/ticket/24716\">#24716</a>)</li>\n<li>We’re freshening up the <strong>plugin install experience</strong>. You’ll see some early visual changes as well as more information when searching for plugins and viewing details. (<a href=\"https://core.trac.wordpress.org/ticket/28785\">#28785</a>, <a href=\"https://core.trac.wordpress.org/ticket/27440\">#27440</a>)</li>\n<li><strong>Selecting a language</strong> when you run the installation process. (<a href=\"https://core.trac.wordpress.org/ticket/28577\">#28577</a>)</li>\n<li>The <strong>editor</strong> intelligently resizes and its top and bottom bars pin when needed. Browsers don’t like to agree on where to put things like cursors, so if you find a bug here, please also let us know your browser and operating system. (<a href=\"https://core.trac.wordpress.org/ticket/28328\">#28328</a>)</li>\n<li>We’ve made some improvements to how your keyboard and cursor interact with <strong>TinyMCE views</strong> such as the gallery preview. Much like the editor resizing and scrolling improvements, knowing about your setup is particularly important for bug reports here. (<a href=\"https://core.trac.wordpress.org/ticket/28595\">#28595</a>)</li>\n<li><strong>Widgets in the Customizer</strong> are now loaded in a separate panel. (<a href=\"https://core.trac.wordpress.org/ticket/27406\">#27406</a>)</li>\n<li>We’ve also made some changes to some <strong>formatting</strong> functions, so if you see quotes curling in the wrong direction, please file a bug report.</li>\n</ul>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.0\">everything we’ve fixed</a> so far.</p>\n<p><strong>Developers:</strong> Never fear, we haven’t forgotten you. There’s plenty for you, too – more on that in upcoming posts. In the meantime, check out the <a href=\"http://make.wordpress.org/core/2014/07/08/customizer-improvements-in-4-0/#customizer-panels\">API for panels in the Customizer</a>.</p>\n<p>Happy testing!</p>\n<p><em>Plugins, editor</em><br />\n<em>Media, things in between</em><br />\n<em>Please help look for bugs</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 3.9.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2014/05/wordpress-3-9-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2014/05/wordpress-3-9-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 May 2014 18:40:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3241\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:385:\"After three weeks and more than 9 million downloads of WordPress 3.9, we’re pleased to announce that WordPress 3.9.1 is now available. This maintenance release fixes 34 bugs in 3.9, including numerous fixes for multisite networks, customizing widgets while previewing themes, and the updated visual editor. We’ve also made some improvements to the new audio/video […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3077:\"<p>After three weeks and more than 9 million downloads of <a title=\"WordPress 3.9 “Smith”\" href=\"http://wordpress.org/news/2014/04/smith/\">WordPress 3.9</a>, we’re pleased to announce that WordPress 3.9.1 is now available.</p>\n<p>This maintenance release fixes 34 bugs in 3.9, including numerous fixes for multisite networks, customizing widgets while previewing themes, and the updated visual editor. We’ve also made some improvements to the new audio/video playlists feature and made some adjustments to improve performance. For a full list of changes, consult the <a href=\"https://core.trac.wordpress.org/query?milestone=3.9.1\">list of tickets</a> and the <a href=\"https://core.trac.wordpress.org/log/branches/3.9?rev=28353&stop_rev=28154\">changelog</a>.</p>\n<p>If you are one of the millions already running WordPress 3.9, we’ve started rolling out automatic background updates for 3.9.1. For sites <a href=\"http://wordpress.org/plugins/background-update-tester/\">that support them</a>, of course.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.9.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Thanks to all of these fine individuals for contributing to 3.9.1: <a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"http://profiles.wordpress.org/ehg\">Chris Blower</a>, <a href=\"http://profiles.wordpress.org/jupiterwise\">Corey McKrill</a>, <a href=\"http://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/feedmeastraycat\">feedmeastraycat</a>, <a href=\"http://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"http://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/imath\">imath</a>, <a href=\"http://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"http://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/m_i_n\">m_i_n</a>, <a href=\"http://profiles.wordpress.org/clorith\">Marius Jensen</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"http://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, and <a href=\"http://profiles.wordpress.org/westonruter\">Weston Ruter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/05/wordpress-3-9-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 3.9 “Smith”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://wordpress.org/news/2014/04/smith/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.org/news/2014/04/smith/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Apr 2014 18:33:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3154\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:411:\"Version 3.9 of WordPress, named “Smith” in honor of jazz organist Jimmy Smith, is available for download or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love. A smoother media editing experience Improved visual editing The updated visual editor has improved speed, accessibility, and mobile support. You can paste into the […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:23297:\"<p>Version 3.9 of WordPress, named “Smith” in honor of jazz organist <a href=\"http://en.wikipedia.org/wiki/Jimmy_Smith_(musician)\">Jimmy Smith</a>, is available <a href=\"http://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love.</p>\n<embed src=\"//v0.wordpress.com/player.swf?v=1.03\" type=\"application/x-shockwave-flash\" width=\"640\" height=\"360\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\" flashvars=\"guid=sAiXhCfV&isDynamicSeeking=true\" title=\"\"></embed>\n<h2 class=\"about-headline-callout\" style=\"text-align: center\">A smoother media editing experience</h2>\n<div>\n<p><img class=\"alignright wp-image-3168\" src=\"//wordpress.org/news/files/2014/04/editor1-300x233.jpg\" alt=\"editor\" width=\"228\" height=\"177\" /></p>\n<h3>Improved visual editing</h3>\n<p>The updated visual editor has improved speed, accessibility, and mobile support. You can paste into the visual editor from your word processor without wasting time to clean up messy styling. (Yeah, we’re talking about you, Microsoft Word.)</p>\n</div>\n<div style=\"clear: both\"></div>\n<div>\n<p><img class=\"alignright wp-image-3170\" src=\"//wordpress.org/news/files/2014/04/image1-300x233.jpg\" alt=\"image\" width=\"228\" height=\"178\" /></p>\n<h3>Edit images easily</h3>\n<p>With quicker access to crop and rotation tools, it’s now much easier to edit your images while editing posts. You can also scale images directly in the editor to find just the right fit.</p>\n</div>\n<div style=\"clear: both\"></div>\n<div>\n<p><img class=\"alignright wp-image-3187\" src=\"//wordpress.org/news/files/2014/04/dragdrop1-300x233.jpg\" alt=\"dragdrop\" width=\"228\" height=\"178\" /></p>\n<h3>Drag and drop your images</h3>\n<p>Uploading your images is easier than ever. Just grab them from your desktop and drop them in the editor.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<h2 style=\"text-align: center\">Gallery previews</h2>\n<p><img class=\"aligncenter size-full wp-image-3169\" src=\"//wordpress.org/news/files/2014/04/gallery1.jpg\" alt=\"gallery\" width=\"980\" height=\"550\" /></p>\n<p>Galleries display a beautiful grid of images right in the editor, just like they do in your published post.</p>\n<hr />\n<h2 style=\"text-align: center\">Do more with audio and video</h2>\n\n<a href=\'http://wordpress.org/news/files/2014/04/AintMisbehavin.mp3\'>Ain\'t Misbehavin\'</a>\n<a href=\'http://wordpress.org/news/files/2014/04/DavenportBlues.mp3\'>Davenport Blues</a>\n<a href=\'http://wordpress.org/news/files/2014/04/JellyRollMorton-BuddyBoldensBlues.mp3\'>Buddy Bolden\'s Blues</a>\n<a href=\'http://wordpress.org/news/files/2014/04/Johnny_Hodges_Orchestra-Squaty_Roo-1941.mp3\'>Squaty Roo</a>\n<a href=\'http://wordpress.org/news/files/2014/04/Louisiana_Five-Dixie_Blues-1919.mp3\'>Dixie Blues</a>\n<a href=\'http://wordpress.org/news/files/2014/04/WolverineBlues.mp3\'>Wolverine Blues</a>\n\n<p>Images have galleries; now we’ve added simple audio and video playlists, so you can showcase your music and clips.</p>\n<hr />\n<h2 style=\"text-align: center\">Live widget and header previews</h2>\n<div style=\"width: 692px; height: 448px; \" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-3154-1\" width=\"692\" height=\"448\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"//wordpress.org/news/files/2014/04/widgets.mp4?_=1\" /><a href=\"//wordpress.org/news/files/2014/04/widgets.mp4\">//wordpress.org/news/files/2014/04/widgets.mp4</a></video></div>\n<p>Add, edit, and rearrange your site’s widgets right in the theme customizer. No “save and surprise” — preview your changes live and only save them when you’re ready.</p>\n<p>The improved header image tool also lets you upload, crop, and manage headers while customizing your theme.</p>\n<hr />\n<h2 style=\"text-align: center\">Stunning new theme browser</h2>\n<p><img class=\"aligncenter size-full wp-image-3172\" src=\"//wordpress.org/news/files/2014/04/theme1.jpg\" alt=\"theme\" width=\"1003\" height=\"558\" /><br />\nLooking for a new theme should be easy and fun. Lose yourself in the boundless supply of free WordPress.org themes with the beautiful new theme browser.</p>\n<hr />\n<h2 style=\"text-align: center\">The Crew</h2>\n<p>This release was led by <a href=\"http://nacin.com/\">Andrew Nacin</a> and <a href=\"http://www.getsource.net/\">Mike Schroder</a>, with the help of these fine individuals. There are 267 contributors with props in this release, a new high:</p>\n<p><a href=\"http://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/kawauso\">Adam Harley</a>, <a href=\"http://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"http://profiles.wordpress.org/adelval\">adelval</a>, <a href=\"http://profiles.wordpress.org/ajay\">Ajay</a>, <a href=\"http://profiles.wordpress.org/akeda\">Akeda Bagus</a>, <a href=\"http://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"http://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"http://profiles.wordpress.org/aliso\">Alison Barrett</a>, <a href=\"http://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"http://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"http://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/norcross\">Andrew Norcross</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"http://profiles.wordpress.org/andykeith\">Andy Keith</a>, <a href=\"http://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"http://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"http://profiles.wordpress.org/aubreypwd\">Aubrey Portwood</a>, <a href=\"http://profiles.wordpress.org/barry\">Barry</a>, <a href=\"http://profiles.wordpress.org/toszcze\">Bartosz Romanowski</a>, <a href=\"http://profiles.wordpress.org/bassgang\">bassgang</a>, <a href=\"http://profiles.wordpress.org/bcworkz\">bcworkz</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"http://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"http://profiles.wordpress.org/bigdawggi\">bigdawggi</a>, <a href=\"http://profiles.wordpress.org/bobbravo2\">Bob Gregor</a>, <a href=\"http://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"http://profiles.wordpress.org/bradt\">Brad Touesnard</a>, <a href=\"http://profiles.wordpress.org/bradparbs\">bradparbs</a>, <a href=\"http://profiles.wordpress.org/bramd\">bramd</a>, <a href=\"http://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"http://profiles.wordpress.org/brasofilo\">brasofilo</a>, <a href=\"http://profiles.wordpress.org/bravokeyl\">bravokeyl</a>, <a href=\"http://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"http://profiles.wordpress.org/cgaffga\">cgaffga</a>, <a href=\"http://profiles.wordpress.org/chiragswadia\">Chirag Swadia</a>, <a href=\"http://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"http://profiles.wordpress.org/ehg\">Chris Blower</a>, <a href=\"http://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"http://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"http://profiles.wordpress.org/chrisscott\">Chris Scott</a>, <a href=\"http://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"http://profiles.wordpress.org/chrisguitarguy\">chrisguitarguy</a>, <a href=\"http://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"http://profiles.wordpress.org/ciantic\">ciantic</a>, <a href=\"http://profiles.wordpress.org/antorome\">Comparativa de Bancos</a>, <a href=\"http://profiles.wordpress.org/cojennin\">Connor Jennings</a>, <a href=\"http://profiles.wordpress.org/corvannoorloos\">Cor van Noorloos</a>, <a href=\"http://profiles.wordpress.org/corphi\">Corphi</a>, <a href=\"http://profiles.wordpress.org/cramdesign\">cramdesign</a>, <a href=\"http://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"http://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"http://profiles.wordpress.org/dannydehaan\">Danny de Haan</a>, <a href=\"http://profiles.wordpress.org/koop\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/eightface\">Dave Kellam (eightface)</a>, <a href=\"http://profiles.wordpress.org/dpe415\">DaveE</a>, <a href=\"http://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"http://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"http://profiles.wordpress.org/davidmarichal\">David Marichal</a>, <a href=\"http://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"http://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"http://profiles.wordpress.org/drprotocols\">DrProtocols</a>, <a href=\"http://profiles.wordpress.org/dustyf\">Dustin Filippini</a>, <a href=\"http://profiles.wordpress.org/eatingrules\">eatingrules</a>, <a href=\"http://profiles.wordpress.org/plocha\">edik</a>, <a href=\"http://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"http://profiles.wordpress.org/enej\">enej</a>, <a href=\"http://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"http://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/evarlese\">Erica Varlese</a>, <a href=\"http://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"http://profiles.wordpress.org/ejdanderson\">Evan Anderson</a>, <a href=\"http://profiles.wordpress.org/fahmiadib\">Fahmi Adib</a>, <a href=\"http://profiles.wordpress.org/fboender\">fboender</a>, <a href=\"http://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"http://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"http://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"http://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"http://profiles.wordpress.org/genkisan\">genkisan</a>, <a href=\"http://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"http://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"http://profiles.wordpress.org/vancoder\">Grant Mangham</a>, <a href=\"http://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"http://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"http://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"http://profiles.wordpress.org/hanni\">hanni</a>, <a href=\"http://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"http://profiles.wordpress.org/ippetkov\">ippetkov</a>, <a href=\"http://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"http://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"http://profiles.wordpress.org/jackreichert\">Jack Reichert</a>, <a href=\"http://profiles.wordpress.org/_jameslee\">jameslee</a>, <a href=\"http://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"http://profiles.wordpress.org/janrenn\">janrenn</a>, <a href=\"http://profiles.wordpress.org/jaycc\">JayCC</a>, <a href=\"http://profiles.wordpress.org/jeffsebring\">Jeff Sebring</a>, <a href=\"http://profiles.wordpress.org/jenmylo\">Jen Mylo</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"http://profiles.wordpress.org/jayjdk\">Jesper Johansen (jayjdk)</a>, <a href=\"http://profiles.wordpress.org/jnielsendotnet\">jnielsendotnet</a>, <a href=\"http://profiles.wordpress.org/jartes\">Joan Artes</a>, <a href=\"http://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"http://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"http://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"http://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"http://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"http://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/jond3r\">Jonas Bolinder (jond3r)</a>, <a href=\"http://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"http://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"http://profiles.wordpress.org/joshuaabenazer\">Joshua Abenazer</a>, <a href=\"http://profiles.wordpress.org/jstraitiff\">jstraitiff</a>, <a href=\"http://profiles.wordpress.org/juliobox\">Julio Potier</a>, <a href=\"http://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"http://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"http://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"http://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"http://profiles.wordpress.org/kasparsd\">Kaspars</a>, <a href=\"http://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"http://profiles.wordpress.org/kerikae\">kerikae</a>, <a href=\"http://profiles.wordpress.org/kworthington\">Kevin Worthington</a>, <a href=\"http://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"http://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"http://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"http://profiles.wordpress.org/klihelp\">klihelp</a>, <a href=\"http://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"http://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"http://profiles.wordpress.org/drozdz\">Krzysiek Drozdz</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"http://profiles.wordpress.org/lpointet\">lpointet</a>, <a href=\"http://profiles.wordpress.org/ldebrouwer\">Luc De Brouwer</a>, <a href=\"http://profiles.wordpress.org/spmlucas\">Lucas Karpiuk</a>, <a href=\"http://profiles.wordpress.org/lkwdwrd\">Luke Woodward</a>, <a href=\"http://profiles.wordpress.org/mark8barnes\">Mark Barnes</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/marventus\">Marventus</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt (Thomas) Miklic</a>, <a href=\"http://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"http://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"http://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"http://profiles.wordpress.org/mdbitz\">Matthew Denton</a>, <a href=\"http://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"http://profiles.wordpress.org/mattonomics\">mattonomics</a>, <a href=\"http://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"http://profiles.wordpress.org/matveb\">Matías Ventura</a>, <a href=\"http://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"http://profiles.wordpress.org/mcadwell\">mcadwell</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/meloniq\">meloniq</a>, <a href=\"http://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"http://profiles.wordpress.org/michelwppi\">Michel - xiligroup dev</a>, <a href=\"http://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"http://profiles.wordpress.org/gradyetc\">Mike Burns</a>, <a href=\"http://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"http://profiles.wordpress.org/mikemanger\">Mike Manger</a>, <a href=\"http://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"http://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/mikecorkum\">mikecorkum</a>, <a href=\"http://profiles.wordpress.org/mitchoyoshitaka\">mitcho (Michael Yoshitaka Erlewine)</a>, <a href=\"http://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"http://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"http://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"http://profiles.wordpress.org/nendeb55\">nendeb55</a>, <a href=\"http://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"http://profiles.wordpress.org/nicolealleyinteractivecom\">Nicole Arnold</a>, <a href=\"http://profiles.wordpress.org/nikv\">Nikhil Vimal (NikV)</a>, <a href=\"http://profiles.wordpress.org/nivijah\">Nivi Jah</a>, <a href=\"http://profiles.wordpress.org/nofearinc\">nofearinc</a>, <a href=\"http://profiles.wordpress.org/nunomorgadinho\">Nuno Morgadinho</a>, <a href=\"http://profiles.wordpress.org/olivm\">olivM</a>, <a href=\"http://profiles.wordpress.org/jbkkd\">Omer Korner</a>, <a href=\"http://profiles.wordpress.org/originalexe\">OriginalEXE</a>, <a href=\"http://profiles.wordpress.org/oso96_2000\">oso96_2000</a>, <a href=\"http://profiles.wordpress.org/patricknami\">patricknami</a>, <a href=\"http://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"http://profiles.wordpress.org/djpaul\">Paul Gibbs</a>, <a href=\"http://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"http://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"http://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>, <a href=\"http://profiles.wordpress.org/prettyboymp\">prettyboymp</a>, <a href=\"http://profiles.wordpress.org/raamdev\">Raam Dev</a>, <a href=\"http://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"http://profiles.wordpress.org/mauryaratan\">Ram Ratan Maurya</a>, <a href=\"http://profiles.wordpress.org/ramonchiara\">ramonchiara</a>, <a href=\"http://profiles.wordpress.org/ounziw\">Rescuework Support</a>, <a href=\"http://profiles.wordpress.org/rhyswynne\">Rhys Wynne</a>, <a href=\"http://profiles.wordpress.org/ricardocorreia\">Ricardo Correia</a>, <a href=\"http://profiles.wordpress.org/theorboman\">Richard Sweeney</a>, <a href=\"http://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"http://profiles.wordpress.org/richard2222\">richard2222</a>, <a href=\"http://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>, <a href=\"http://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"http://profiles.wordpress.org/robmiller\">robmiller</a>, <a href=\"http://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"http://profiles.wordpress.org/romaimperator\">romaimperator</a>, <a href=\"http://profiles.wordpress.org/roothorick\">roothorick</a>, <a href=\"http://profiles.wordpress.org/ruudjoyo\">Ruud Laan</a>, <a href=\"http://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"http://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"http://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"http://profiles.wordpress.org/sandyr\">Sandeep</a>, <a href=\"http://profiles.wordpress.org/scottlee\">Scott Lee</a>, <a href=\"http://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/greglone\">ScreenfeedFr</a>, <a href=\"http://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"http://profiles.wordpress.org/sdasse\">sdasse</a>, <a href=\"http://profiles.wordpress.org/bootsz\">Sean Butze</a>, <a href=\"http://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"http://profiles.wordpress.org/nessworthy\">Sean Nessworthy</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/shahpranaf\">shahpranaf</a>, <a href=\"http://profiles.wordpress.org/shaunandrews\">Shaun Andrews</a>, <a href=\"http://profiles.wordpress.org/shinichin\">ShinichiN</a>, <a href=\"http://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"http://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"http://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"http://profiles.wordpress.org/siobhyb\">Siobhan Bamber (siobhyb)</a>, <a href=\"http://profiles.wordpress.org/sirzooro\">sirzooro</a>, <a href=\"http://profiles.wordpress.org/solarissmoke\">solarissmoke</a>, <a href=\"http://profiles.wordpress.org/sonjanyc\">sonjanyc</a>, <a href=\"http://profiles.wordpress.org/spencerfinnell\">Spencer Finnell</a>, <a href=\"http://profiles.wordpress.org/piontkowski\">Spencer Piontkowski</a>, <a href=\"http://profiles.wordpress.org/stephcook22\">stephcook22</a>, <a href=\"http://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"http://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"http://profiles.wordpress.org/sbruner\">Steve Bruner</a>, <a href=\"http://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"http://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"http://profiles.wordpress.org/tanner-m\">Tanner Moushey</a>, <a href=\"http://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"http://profiles.wordpress.org/tbrams\">tbrams</a>, <a href=\"http://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"http://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"http://profiles.wordpress.org/willmot\">Tom Willmot</a>, <a href=\"http://profiles.wordpress.org/topher1kenobe\">Topher</a>, <a href=\"http://profiles.wordpress.org/topquarky\">topquarky</a>, <a href=\"http://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"http://profiles.wordpress.org/toru\">Toru</a>, <a href=\"http://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"http://profiles.wordpress.org/umeshsingla\">Umesh Kumar</a>, <a href=\"http://profiles.wordpress.org/undergroundnetwork\">undergroundnetwork</a>, <a href=\"http://profiles.wordpress.org/varunagw\">VarunAgw</a>, <a href=\"http://profiles.wordpress.org/wawco\">wawco</a>, <a href=\"http://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"http://profiles.wordpress.org/wokamoto\">wokamoto</a>, <a href=\"http://profiles.wordpress.org/xsonic\">xsonic</a>, <a href=\"http://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"http://profiles.wordpress.org/yurivictor\">Yuri Victor</a>, <a href=\"http://profiles.wordpress.org/zbtirrell\">Zach Tirrell</a>, and <a href=\"http://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>. Also thanks to <a href=\"http://michaelpick.wordpress.com/\">Michael Pick</a> for producing the release video.</p>\n<p>If you want to follow along or help out, check out <a href=\"http://make.wordpress.org/\">Make WordPress</a> and our <a href=\"http://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.0!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://wordpress.org/news/2014/04/smith/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.9 Release Candidate 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:68:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-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:77:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-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, 15 Apr 2014 09:47: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3151\";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:356:\"The second release candidate for WordPress 3.9 is now available for testing. If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the first release candidate, and those changes are all helpfully summarized in our weekly post on the development blog. Probably the biggest fixes are to live […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2273:\"<p>The second release candidate for WordPress 3.9 is now available for testing.</p>\n<p>If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the <a title=\"WordPress 3.9 Release Candidate\" href=\"//wordpress.org/news/2014/04/wordpress-3-9-release-candidate/\">first release candidate</a>, and those changes are all helpfully summarized <a href=\"//make.wordpress.org/core/?p=10237\">in our weekly post</a> on the development blog. Probably the biggest fixes are to live widget previews and the new theme browser, along with some extra TinyMCE compatibility and some RTL fixes.</p>\n<p><strong>Plugin authors:</strong> Could you test your plugins against 3.9, and if they’re compatible, make sure they are marked as tested up to 3.9? It only takes a few minutes and this really helps make launch easier. Be sure to follow along the core development blog; we’ve been posting <a href=\"//make.wordpress.org/core/tag/3-9-dev-notes/\">notes for developers for 3.9</a>. (For example: <a href=\"//make.wordpress.org/core/2014/04/15/html5-galleries-captions-in-wordpress-3-9/\">HTML5</a>, <a href=\"//make.wordpress.org/core/2014/04/14/symlinked-plugins-in-wordpress-3-9/\">symlinks</a>, <a href=\"//make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/\">MySQL</a>, <a href=\"//make.wordpress.org/core/2014/04/11/plupload-2-x-in-wordpress-3-9/\">Plupload</a>.)</p>\n<p>To test WordPress 3.9 RC2, try the <a href=\"//wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"//wordpress.org/wordpress-3.9-RC2.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the nearly complete About screen in your dashboard (<strong><img src=\"//i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) and also check out <a title=\"WordPress 3.9 Beta 1\" href=\"//wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 post</a>.</p>\n<p><em>This is for testing,</em><br />\n<em>so not recommended for<br />\nproduction sites—yet.</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:73:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 3.8.3 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2014/04/wordpress-3-8-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:59:\"http://wordpress.org/news/2014/04/wordpress-3-8-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:\"Mon, 14 Apr 2014 19:29:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3145\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:338:\"WordPress 3.8.3 is now available to fix a small but unfortunate bug in the WordPress 3.8.2 security release. The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2339:\"<p>WordPress 3.8.3 is now available to fix a small but unfortunate bug in the <a title=\"WordPress 3.8.2 Security Release\" href=\"http://wordpress.org/news/2014/04/wordpress-3-8-2/\">WordPress 3.8.2 security release</a>.</p>\n<p>The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using this tool, <em>any</em> loss of content is unacceptable to us.</p>\n<p>We recognize how much trust you place in us to safeguard your content, and we take this responsibility very seriously. We’re sorry we let you down.</p>\n<p>We’ve all lost words we’ve written before, like an email thanks to a cat on the keyboard or a term paper to a blue screen of death. Over the last few WordPress releases, we’ve made a number of improvements to features like autosaves and revisions. With revisions, an old edit can always be restored. We’re trying our hardest to save your content somewhere even if your power goes out or your browser crashes. We even monitor your internet connection and prevent you from hitting that “Publish” button at the exact moment the coffee shop Wi-Fi has a hiccup.</p>\n<p>It’s <em>possible</em> that the quick draft you lost last week is still in the database, and just hidden from view. As an added complication, these “discarded drafts” normally get deleted after seven days, and it’s already been six days since the release. If we were able to rescue your draft, you’ll see it on the “All Posts” screen after you update to 3.8.3. (We’ll also be pushing 3.8.3 out as a background update, so you may just see a draft appear.)</p>\n<p>So, if you tried to jot down a quick idea last week, I hope WordPress has recovered it for you. Maybe it’ll turn into that novella.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.8.3</a> or click “Update Now” on Dashboard → Updates.</p>\n<p><em>This affected version 3.7.2 as well, so we’re pushing a 3.7.3 to these installs, but we’d encourage you to update to the latest and greatest.</em></p>\n<hr />\n<p><em>Now for some good news:<br />\nWordPress 3.9 is near.<br />\nExpect it this week</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/04/wordpress-3-8-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:7;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 3.9 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Apr 2014 21:05:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3129\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:338:\"As teased earlier, the first release candidate for WordPress 3.9 is now available for testing! We hope to ship WordPress 3.9 next week, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.) To test WordPress 3.9 […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2967:\"<p><a href=\"//wordpress.org/news/2014/04/wordpress-3-8-2/\">As teased earlier</a>, the first release candidate for WordPress 3.9 is now available for testing!</p>\n<p>We hope to ship WordPress 3.9 <em>next week</em>, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p>To test WordPress 3.9 RC1, try the <a href=\"//wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"//wordpress.org/wordpress-3.9-RC1.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the work-in-progress About screen in your dashboard (<strong><img src=\"//i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) and check out <a title=\"WordPress 3.9 Beta 1\" href=\"//wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 post</a>.</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href=\"//wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href=\"//core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>If you’re a plugin author</strong>, there are two important changes in particular to be aware of:</p>\n<ul>\n<li>TinyMCE received a major update, to version 4.0. Any editor plugins written for TinyMCE 3.x might require some updates. (If things broke, we’d like to hear about them so we can make adjustments.) For more, see TinyMCE’s <a href=\"http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x\">migration guide</a> and <a href=\"http://www.tinymce.com/wiki.php/api4:index\">API documentation</a>, and the notes on the <a href=\"//make.wordpress.org/core/2014/01/18/tinymce-4-0-is-in-core/\">core development blog</a>.</li>\n<li>WordPress 3.9 now uses the MySQLi Improved extension for sites running PHP 5.5. Any plugins that made direct calls to <code>mysql_*</code> functions will experience some problems on these sites. For more information, see the notes on the <a href=\"//make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/\">core development blog</a>.</li>\n</ul>\n<p>Be sure to follow along the core development blog, where we will be continuing to post <a href=\"//make.wordpress.org/core/tag/3-9-dev-notes/\">notes for developers for 3.9</a>. (For example, read <a href=\"//make.wordpress.org/core/2014/03/27/masonry-in-wordpress-3-9/\">this</a> if you are using Masonry in your theme.) And please, please update your plugin’s <em>Tested up to</em> version in the readme to 3.9 before April 16.</p>\n<p><em>Release candidate<br />\nThis haiku’s the easy one<br />\n3.9 is near</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 3.8.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2014/04/wordpress-3-8-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2014/04/wordpress-3-8-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Apr 2014 19:04:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3124\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately. This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by Jon Cave of the WordPress […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2272:\"<p>WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by <a href=\"http://joncave.co.uk/\">Jon Cave</a> of the WordPress security team.</p>\n<p>It also contains a fix to prevent a user with the Contributor role from improperly publishing posts. Reported by <a href=\"http://edik.ch/\">edik</a>.</p>\n<p>This release also fixes nine bugs and contains three other security hardening changes:</p>\n<ul>\n<li>Pass along additional information when processing pingbacks to help hosts identify potentially abusive requests.</li>\n<li>Fix a low-impact SQL injection by trusted users. Reported by <a href=\"http://www.dxw.com/\">Tom Adams</a> of dxw.</li>\n<li>Prevent possible cross-domain scripting through Plupload, the third-party library WordPress uses for uploading files. Reported by <a href=\"http://szgru.website.pl/\">Szymon Gruszecki</a>.</li>\n</ul>\n<p>We appreciated <a href=\"http://codex.wordpress.org/FAQ_Security\">responsible disclosure</a> of these security issues directly to our security team. For more information on all of the changes, see the <a href=\"http://codex.wordpress.org/Version_3.8.2\">release notes</a> or consult <a href=\"https://core.trac.wordpress.org/log/branches/3.8?rev=28057&stop_rev=27024\">the list of changes</a>.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.8.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.8.2 within 12 hours. If you are still on WordPress 3.7.1, you will be updated to 3.7.2, which contains the same security fixes as 3.8.2. We don’t support older versions, so please update to 3.8.2 for the latest and greatest.</p>\n<p>Already testing WordPress 3.9? The first release candidate is <a href=\"https://wordpress.org/wordpress-3.9-RC1.zip\">now available</a> (zip) and it contains these security fixes. Look for a full announcement later today; we expect to release 3.9 next week.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/04/wordpress-3-8-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.9 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Mar 2014 13:15:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3106\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"The third (and maybe last) beta of WordPress 3.9 is now available for download. Beta 3 includes more than 200 changes, including: New features like live widget previews and the new theme installer are now more ready for prime time, so check ‘em out. UI refinements when editing images and when working with media in the editor. We’ve also brought […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2668:\"<p>The third (and maybe last) beta of WordPress 3.9 is now available for download.</p>\n<p>Beta 3 includes more than 200 <a href=\"https://core.trac.wordpress.org/log?rev=27850&stop_rev=27639&limit=300\">changes</a>, including:</p>\n<ul>\n<li>New features like live widget previews and the new theme installer are now more ready for prime time, so check ‘em out.</li>\n<li>UI refinements when editing images and when working with media in the editor. We’ve also brought back some of the advanced display settings for images.</li>\n<li>If you want to test out audio and video playlists, the links will appear in the media manager once you’ve uploaded an audio or video file.</li>\n<li>For theme developers, we’ve added HTML5 caption support (<a class=\"reopened ticket\" title=\"task (blessed): HTML5 captions (reopened)\" href=\"https://core.trac.wordpress.org/ticket/26642\">#26642</a>) to match the new gallery support (<a class=\"closed ticket\" title=\"enhancement: HTML5 Galleries (closed: fixed)\" href=\"https://core.trac.wordpress.org/ticket/26697\">#26697</a>).</li>\n<li>The formatting function that turns straight quotes into smart quotes (among other things) underwent some changes to drastically speed it up, so let us know if you see anything weird.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for an April release, which means the next week will be critical for identifying and squashing bugs. If you’re just joining us, please see <a href=\"https://wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 3.9 yet, now is the time — and be sure to update the “tested up to” version for your plugins so they’re listed as compatible with 3.9.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.9-beta3.zip\">download the beta here</a> (zip).</p>\n<p><em>WordPress 3.9<br />\nLet’s make the date official<br />\nIt’s April 16</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:31:\"http://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 14 Aug 2014 22:18:44 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:36:\"http://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Thu, 07 Aug 2014 04:36:52 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20130911070210\";}','no'),(443,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1408097924','no'),(444,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1408054724','no'),(445,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1408097925','no'),(446,'_transient_feed_867bd5c64f85878d03a060509cd2f92c','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: Foster Me: A WordPress Plugin to Help Shelter Animals in Need\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28267\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:184:\"http://wptavern.com/foster-me-a-wordpress-plugin-to-help-shelter-animals-in-need?utm_source=rss&utm_medium=rss&utm_campaign=foster-me-a-wordpress-plugin-to-help-shelter-animals-in-need\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5833:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/dog.jpg\" rel=\"prettyphoto[28267]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/dog.jpg?resize=800%2C397\" alt=\"photo credit: puck90 - cc\" class=\"size-full wp-image-28424\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/puck90/426370372/\">puck90</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>Everybody knows that animals need homes. There are far more pets available for adoption than there are people lining up to adopt them. Call your local animal shelter and they’ll probably tell you that they’re at or over capacity. That’s where foster homes can help to provide quality care for animals in the interim, until they find their forever homes.</p>\n<p><a href=\"http://wordpress.org/plugins/foster-me-seek-shelter-an-animal-in-need/\" target=\"_blank\">Foster Me</a> is a new WordPress plugin designed to help rescues and shelters make available pets more visible and easier to search. It was created by <a href=\"http://digitalmediagirl.com/\" target=\"_blank\">Stephanie Chow</a>, a front-end developer and animal advocate located in Asheville, NC. Her <a href=\"http://www.lendingapaw.org/\" target=\"_blank\">Lending a Paw</a> site features open source plugins and graphics for animal rescue organizations.</p>\n<p>Foster Me makes it easy to list and manage animals in WordPress where they can be searched with advanced pet-specific filters, such as age, type, gender, temperament, special needs, etc.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/foster-me.jpg\" rel=\"prettyphoto[28267]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/foster-me.jpg?resize=1025%2C792\" alt=\"foster-me\" class=\"aligncenter size-full wp-image-28392\" /></a></p>\n<p>When a visitor clicks on an available pet, the listing launches in a modal window. Individual pet listings display a full description, a slider with multiple photographs, and any applicable pet categories.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/pet-listing.jpg\" rel=\"prettyphoto[28267]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/pet-listing.jpg?resize=1025%2C522\" alt=\"pet-listing\" class=\"aligncenter size-full wp-image-28407\" /></a></p>\n<p>The plugin also makes it easy to list fostering information and to post your foster application. Chow has made every effort to make Foster Me a user-friendly plugin for rescues and shelters that may not have a WordPress expert on staff. The settings page allows you to easily customize the color and appearance of the header, pet options, pet grid and modal window.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/foster-me-settings.jpg\" rel=\"prettyphoto[28267]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/foster-me-settings.jpg?resize=658%2C764\" alt=\"foster-me-settings\" class=\"aligncenter size-full wp-image-28411\" /></a></p>\n<p>Foster Me also includes an image widget for showcasing foster pets as well as a Recently Added widget to display new additions.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/foster-me-widget.jpg\" rel=\"prettyphoto[28267]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/foster-me-widget.jpg?resize=756%2C722\" alt=\"foster-me-widget\" class=\"aligncenter size-full wp-image-28412\" /></a></p>\n<p>The plugin adds a whole suite of pet listing features that are general enough to be used in any kind of shelter or rescue website:</p>\n<ul>\n<li><strong>Filterable</strong> – filter by Type, Age, Size, Gender, Temperament, and Special Needs</li>\n<li><strong>Searchable</strong> – list is narrowed with every letter you type into search bar</li>\n<li><strong>Click On Any Pet</strong> – to view more information and photos</li>\n<li><strong>List Your Fostering Info</strong> – show how it works what to expect when you foster</li>\n<li><strong>Colors</strong> – are completely customizable to match your brand</li>\n<li><strong>Image Widget</strong> – place in sidebar to display a linkable, rotating image of foster pets</li>\n<li><strong>Recently Added Widget</strong> – place in sidebar to display your most recently added fosters</li>\n</ul>\n<p>Check out a <a href=\"http://www.lendingapaw.org/foster-me-demo/\" target=\"_blank\">live demo</a> of Foster Me to test out the pet searching and filtering capabilities.</p>\n<p>Chow’s first plugin, <a href=\"http://wordpress.org/plugins/petfinder-search-rescue/\" target=\"_blank\">Petfinder: Search and Rescue</a>, is very similar to her latest release, except it requires the animals to be listed on Petfinder. If you already have your shelter or rescue pets listed on Petfinder, then this alternative will be a better option for automatically pulling in your existing listings.</p>\n<h3>Saving Animals with WordPress</h3>\n<p>The <a href=\"http://wordpress.org/plugins/foster-me-seek-shelter-an-animal-in-need/\" target=\"_blank\">Foster Me</a> plugin is an awesome open source tool that any shelter or rescue can use for free in combination with an existing WordPress site. When it comes to helping animals find their forever homes, open source software may not be the first thing that comes to mind, but Stephanie Chow is knocking it out of the park with her user-friendly tools designed to serve people who are rescuing creatures in need. Open source tools are more accessible to shelters and rescues that are spending every last dime to help animals find homes. If you have WordPress skills and are able to hook up a shelter with a website, then the <a href=\"http://wordpress.org/plugins/foster-me-seek-shelter-an-animal-in-need/\" target=\"_blank\">Foster Me</a> plugin will put you well on your way.</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 Aug 2014 20:57: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: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:80:\"WordPress.tv: Tom Harness and Leigh Caldwell: Business Blogging Like a Rock Star\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=36918\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"http://wordpress.tv/2014/08/14/tom-harness-and-leigh-caldwell-business-blogging-like-a-rock-star/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:702:\"<div id=\"v-zwSAV7EI-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36918/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36918/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36918&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/14/tom-harness-and-leigh-caldwell-business-blogging-like-a-rock-star/\"><img alt=\"Tom Harness and Leigh Caldwell: Business Blogging Like a Rock Star\" src=\"http://videos.videopress.com/zwSAV7EI/video-b28b50d146_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Aug 2014 15:47:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:85:\"WordPress.tv: Zoe Rooney: Automating Theme Development with Gulp, Yeoman, and Friends\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=36937\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.tv/2014/08/14/zoe-rooney-automating-theme-development-with-gulp-yeoman-and-friends/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:716:\"<div id=\"v-YMRqf8Ju-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36937/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36937/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36937&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/14/zoe-rooney-automating-theme-development-with-gulp-yeoman-and-friends/\"><img alt=\"Zoe Rooney: Automating Theme Development with Gulp, Yeoman, and Friends\" src=\"http://videos.videopress.com/YMRqf8Ju/video-93a9170cc7_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Aug 2014 15:42: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:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:69:\"WordPress.tv: WordCamp Organizers’ Orientation Hangout Feb 18, 2014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=36462\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.tv/2014/08/14/wordcamp-organizers-orientation-hangout-feb-18-2014/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:687:\"<div id=\"v-w9AvqlDI-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36462/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36462/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36462&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/14/wordcamp-organizers-orientation-hangout-feb-18-2014/\"><img alt=\"WordCamp Organizers’ Orientation Hangout Feb 18, 2014\" src=\"http://videos.videopress.com/w9AvqlDI/video-bc9fa9adb7_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Aug 2014 15:39:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WordPress.tv: Taylor Buley: How Parade.com Uses the WordPress Theme 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://wordpress.tv/?p=37713\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://wordpress.tv/2014/08/14/taylor-buley-how-parade-com-uses-the-wordpress-theme-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:713:\"<div id=\"v-8Uap5hMd-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37713/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37713/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37713&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/14/taylor-buley-how-parade-com-uses-the-wordpress-theme-customizer-api/\"><img alt=\"Taylor Buley: How Parade.com Uses the WordPress Theme Customizer API\" src=\"http://videos.videopress.com/8Uap5hMd/video-1c7ae055fe_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Aug 2014 15:15:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:69:\"WPTavern: WebDevStudios Names Dre Armeda Vice President of Operations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28328\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:182:\"http://wptavern.com/webdevstudios-names-dre-armeda-vice-president-of-operations?utm_source=rss&utm_medium=rss&utm_campaign=webdevstudios-names-dre-armeda-vice-president-of-operations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6086:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/DreArmedaBradWilliamsFeaturedImage.png\" rel=\"prettyphoto[28328]\"><img class=\"size-full wp-image-28375\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/DreArmedaBradWilliamsFeaturedImage.png?resize=650%2C200\" alt=\"Dre Armeda and Brad Williams Join Forces Featured Image\" /></a>Dre Armeda and Brad Williams Join Forces\n<p>In the time Dre Armeda spent with <a title=\"https://sucuri.net/\" href=\"https://sucuri.net/\">Sucuri</a>, he turned a two-person part-time hobby into a multi-million dollar, 30+ employee company. When Armeda <a title=\"http://dremeda.com/fair-winds-and-following-seas-sucuri/\" href=\"http://dremeda.com/fair-winds-and-following-seas-sucuri/\">left the company</a> he helped found, he didn’t provide any hints as to where he was going.</p>\n<p>Three months after leaving Sucuri, Armeda <a title=\"http://webdevstudios.com/2014/08/14/dre-armeda-joins-webdevstudios/\" href=\"http://webdevstudios.com/2014/08/14/dre-armeda-joins-webdevstudios/\">has been named</a> the Vice President of Operations for <a title=\"http://webdevstudios.com/\" href=\"http://webdevstudios.com/\">WebDevStudios</a>. Brad Williams, co-owner of WebDevStudios and Armeda were kind enough to answer a few questions I had regarding the hire.</p>\n<h2>Interview With Dre Armeda and Brad Williams</h2>\n<p><strong>What does the Vice President of Operations for WebDevStudios do?</strong></p>\n<p><em>Brad Williams</em> – The Vice President of Operations is a new role at WDS and our first Executive position outside of the original Partners. WDS has been growing quite a bit this year and we knew it was time to start expanding the leadership team. Dre brings a wealth of knowledge and a ton of experience to WDS, specifically around building a very successful distributed company. Some of the primary responsibilities for Dre include business development, improving operational efficiency, marketing, and even sales. Roles at WDS are always evolving, so I certainly expect Dre’s position to really evolve and be defined over the next few months.</p>\n<p><strong>In some instances, businesses can ruin friendships. How did you two factor that into the equation before making the hire? Will the fact that you’re now co-workers have an effect on your personal relationship?</strong></p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/DreandBrad.png\" rel=\"prettyphoto[28328]\"><img class=\"size-full wp-image-28378\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/DreandBrad.png?resize=698%2C353\" alt=\"Dre and Brad at WCSF 2013\" /></a>Image Courtesy Of <a title=\"http://designsimply.com/2013/08/25/photos-from-wcsf-2013/mcm_8499/\" href=\"http://designsimply.com/2013/08/25/photos-from-wcsf-2013/mcm_8499/\">Designsimply.com</a>\n<p><em>Brad Williams</em> – When we started discussing the possibility of Dre Armeda joining WDS, this was the first item we discussed. We knew from the start that we had to look at this from a business perspective and not because we are close friends. The last thing either of us would ever want would be to ruin the friendship that we have. Dre Armeda is a perfect fit for WDS, not only in the business sense, but also our company culture. We work hard, and play hard, and no one works and plays harder than Dre Armeda!</p>\n<p><strong>Out of all the possible places to work in the WordPress ecosystem, why did you choose WebDevStudios?</strong></p>\n<p><em>Dre Armeda</em> – There is certainly a long relationship there with the leadership, the company, and the team. Brad Williams and I of course are the co-hosts of <a title=\"http://dradcast.com/\" href=\"http://dradcast.com/\">DradCast</a> and have even presented on the topic of security together in years past at WordCamps. While part of Sucuri, we successfully worked with WebDevstudios in various capacities. The direction of the company, and the culture is very much inline with where I want to be, and where I want to go. Along with that connection, our long relationship, and the experience I can bring to the table, I think the decision was easy.</p>\n<p><strong>Do you look at this as a long-term (2-3 year) position?</strong></p>\n<p><em>Dre Armeda</em> – One of the key points we talked about as we started looking into the possibility of working together was exactly that. We were looking for a long term situation and we’re excited about what the future brings!</p>\n<p><strong>What lessons or experiences did you learn with Sucuri that you’ll be able to apply to improve WebDevStudios?</strong></p>\n<p><em>Dre Armeda</em> – The position will encompass a broad range of responsibilities and oversight ranging from organizational and business development, to talent development and strategy. I’ve had the great opportunity to work in these areas over the past five years as I helped build Sucuri into the successful organization it is today.</p>\n<p>I am very passionate about better serving our audience by expanding global reach and I’m certainly excited about increasing overall organizational efficiency through resourcing, process improvement, and business development. I really enjoy helping implement strategies to scale organizations efficiently and ultimately the lessons I have learned from my experience at Sucuri definitely align with the forward vision at WebDevStudios!</p>\n<h2>What Was Once A Joke Has Become A Reality</h2>\n<p>Those who know Williams and Armeda have joked that the two would some day work together but it was always a joke. Now, it’s real and it will be interesting to see how it works out. Based on the interview, Armeda is committed to the company for the long-term, something that’s not <a title=\"http://wptavern.com/why-company-culture-is-so-important-for-remote-wordpress-developers\" href=\"http://wptavern.com/why-company-culture-is-so-important-for-remote-wordpress-developers\">easily accomplished</a> when hiring remote workers. Does this move surprise you or did you see the writing on the wall?</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 Aug 2014 14:59: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: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:58:\"Matt: You Won’t Believe Who Wrote This Product Checklist\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43998\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://ma.tt/2014/08/you-wont-believe-who-wrote-this-productchecklist/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1089:\"<blockquote>\n<ol>\n<li>Understand what people need.</li>\n<li>Address the whole experience, from start to finish.</li>\n<li>Make it simple and intuitive.</li>\n<li>Build the service using agile and iterative practices.</li>\n<li>Structure budgets and contracts to support delivery.</li>\n<li>Assign one leader and hold that person accountable.</li>\n<li>Bring in experienced teams.</li>\n<li>Choose a modern technology stack.</li>\n<li>Deploy in a flexible hosting environment.</li>\n<li>Automate testing and deployments.</li>\n<li>Manage security and privacy through reusable processes.</li>\n<li>Use data to drive decisions.</li>\n<li>Default to open.</li>\n</ol>\n</blockquote>\n<p>That sounds like a list anyone creating something online should follow. Would you guess <a href=\"http://playbook.cio.gov/\">it’s actually from the US government Digital Services Playbook</a>? Great work by <a href=\"https://twitter.com/stevenvDC\">Steven VanRoekel</a> and his team, which I had the pleasure of meeting last time I was in DC. <cite>Hat tip: <a href=\"http://dashes.com/anil/\">Anil Dash</a>.</cite></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Aug 2014 14:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:86:\"WPTavern: The Simple Criteria That Determines Which Jetpack Modules Are Auto-Activated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28360\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:216:\"http://wptavern.com/the-simple-criteria-that-determines-which-jetpack-modules-are-auto-activated?utm_source=rss&utm_medium=rss&utm_campaign=the-simple-criteria-that-determines-which-jetpack-modules-are-auto-activated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3233:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/AutoActivateModulesFeaturedImage.png\" rel=\"prettyphoto[28360]\"><img class=\"size-full wp-image-28362\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/AutoActivateModulesFeaturedImage.png?resize=640%2C210\" alt=\"Auto Activate Jetpack Modules Featured Image\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/2create/2144345327/\">2create</a> – <a href=\"http://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a>\n<p>Since the release of <a title=\"http://jetpack.me/\" href=\"http://jetpack.me/\">Jetpack</a> in 2011, there have been <a title=\"http://premium.wpmudev.org/blog/daily-tip-stop-jetpack-from-auto-activating-new-modules/\" href=\"http://premium.wpmudev.org/blog/daily-tip-stop-jetpack-from-auto-activating-new-modules/\">several</a> <a title=\"http://krogsgard.com/2012/jetpack/\" href=\"http://krogsgard.com/2012/jetpack/\">articles</a> highlighting the fact that it auto activates modules. George Stephanis, a member of the Jetpack development team, has <a title=\"http://wptavern.com/easier-way-to-enable-or-disable-jetpack-modules-with-rocketeer#comment-49494\" href=\"http://wptavern.com/easier-way-to-enable-or-disable-jetpack-modules-with-rocketeer#comment-49494\">consistently explained</a> that “Jetpack only auto-activates modules that provide enhancements without affecting the front-end layout of the site.”</p>\n<p>Earlier today, Stephanis <a title=\"http://stephanis.info/2014/08/13/on-jetpack-and-auto-activating-modules/\" href=\"http://stephanis.info/2014/08/13/on-jetpack-and-auto-activating-modules/\">published a post on his blog</a> that goes into detail on how the decision is made to auto-activate a module.</p>\n<blockquote><p>We’ve spoken to many, many users who find a default feature set convenient, and resent having to make a bunch of ‘decision points’ if they had to manually activate each and every module. Good software should run well <a href=\"http://wordpress.org/about/philosophy/#box\">out of the box</a>. So we’ve set up the defaults as we have. Yes, <a href=\"http://wordpress.org/about/philosophy/#minority\">some people disagree and are vocal about not wanting anything to auto-activate</a>. That’s okay. We try to <a href=\"http://wordpress.org/about/philosophy/#majority\">design for the majority</a>, with the best user experience we can provide.</p></blockquote>\n<p>I appreciate the fact that new modules <strong>will not</strong> auto-activate if they impact the front end of my site. In this instance, the decisions being made for me are a convenience, not a hassle. If you disagree with the decisions being made, there are <a title=\"http://jeremy.hu/customize-the-list-of-modules-available-in-jetpack/\" href=\"http://jeremy.hu/customize-the-list-of-modules-available-in-jetpack/\">several filters</a> you can use to customize the Jetpack experience, including one to deactivate all modules by default.</p>\n<p><code>add_filter( \'jetpack_get_default_modules\', \'__return_empty_array\' );</code></p>\n<p>I doubt his post will resonate with those who have a strong stance against auto-activating anything. As long as the development team stick to their current philosophy, I’m ok with 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:\"Thu, 14 Aug 2014 01:10: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: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: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:62:\"WPTavern: Carl Hancock Shares Advice On Registering Trademarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28347\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"http://wptavern.com/carl-hancock-shares-advice-on-registering-trademarks?utm_source=rss&utm_medium=rss&utm_campaign=carl-hancock-shares-advice-on-registering-trademarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1553:\"<p>Chris Lema <a title=\"http://chrislema.com/trademarks-wordpress-carl-hancock/\" href=\"http://chrislema.com/trademarks-wordpress-carl-hancock/\">published an interview</a> with Carl Hancock of <a title=\"http://www.rocketgenius.com/\" href=\"http://www.rocketgenius.com/\">RocketGenius</a>, where he shares his thoughts on why trademarks are important and how they help protect a brand’s identity. While you can register trademarks yourself, Hancock suggests working with a lawyer who knows intellectual property law and does it for a living.</p>\n<blockquote><p>It’s not simple and straightforward.You don’t pay $100 and instantly gain protection for your brand name around the world. It’s why I recommend not doing it yourself – work with a lawyer who knows intellectual property law and does this for a living.</p></blockquote>\n<p>Earlier this year, I wrote about how the <a title=\"http://wptavern.com/the-gpl-license-doesnt-provide-the-freedom-to-infringe-registered-trademarks\" href=\"http://wptavern.com/the-gpl-license-doesnt-provide-the-freedom-to-infringe-registered-trademarks\">GPL doesn’t give people the right to infringe trademarks</a>. As the WordPress product market matures, I think we’ll see more businesses trademark their logo and product names, especially if more sites like <a title=\"https://gplclub.org/\" href=\"https://gplclub.org/\">GPL Club</a> are created. If you’ve gone through the process of registering or enforcing a trademark for your product or business, share your experience in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Aug 2014 01:00:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: WPCore App Adds Export Feature: Save Active Plugins to a Collection with 1-Click\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=28318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:222:\"http://wptavern.com/wpcore-app-adds-export-feature-save-active-plugins-to-a-collection-with-1-click?utm_source=rss&utm_medium=rss&utm_campaign=wpcore-app-adds-export-feature-save-active-plugins-to-a-collection-with-1-click\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3043:\"<p>We’ve been following the evolution of the <a href=\"https://wpcore.com/\" target=\"_blank\">WPCore plugin management app</a>, which recently added favoriting, update notifications, and the ability to add plugins that aren’t hosted on WordPress.org. Today, the app’s developer, Stuart Starr, announced what is perhaps the most convenient feature to date.</p>\n<p>With <a href=\"http://wordpress.org/plugins/wpcore/\" target=\"_blank\">WPCore Plugin Manager</a> installed, users can now export all of their plugins with one click and save them to a new collection on WPcore.com. This is useful if you have a site that already has all the plugins you want to include in a specific collection.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/export.jpg\" rel=\"prettyphoto[28318]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/export.jpg?resize=513%2C211\" alt=\"export\" class=\"aligncenter size-full wp-image-28336\" /></a></p>\n<p>Despite the fact that the plugin makes it convenient to install all your favorite plugins in one click, you may find that building collections requires quite a bit of work. The new export feature makes it possible to build a collection instantly, based on an existing site’s active plugins. Currently, it can only export active plugins hosted on WordPress.org, but Starr plans to expand the feature in the future.</p>\n<h3>Clone WordPress Plugin Collections</h3>\n<p>Another new feature that you’ll find on the app side of WPCore is the ability to clone other users’ collections. Perhaps you want most of the plugins in one collection but want to add or remove a few selections. Click on the new clone button to copy the collection to your own account for editing.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/clone-collection.jpg\" rel=\"prettyphoto[28318]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/clone-collection.jpg?resize=983%2C518\" alt=\"clone-collection\" class=\"aligncenter size-full wp-image-28345\" /></a></p>\n<p>Starr is continuing development on the app and plugin, inspired by positive feedback from users who are saving time with WPCore. “The feedback has been amazing. In terms of users we are getting new users daily,” he said. One satisfied fan dubbed WPCore the “<a href=\"https://twitter.com/kierstenbogush/status/498723752721391617\" target=\"_blank\">Pinterest for WordPress plugins</a>.”</p>\n<p>September will bring a major update to the service. Starr wouldn’t comment on the specifics of features on the way but he did reveal that he is currently working on a referral system. <a href=\"http://wptavern.com/wpcore-plugin-manager-adds-update-notifications-plans-to-implement-pro-subscription\" target=\"_blank\">WPCore is moving to a paid subscription model</a> as of August 31st but users who sign up before that time will be grandfathered in as Pro members for life. New free signups will continue to have access to the basic features of the app.</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 Aug 2014 23:47:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:73:\"WPTavern: New WordPress Plugin Spell Checks Post Titles Before Publishing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=28230\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:190:\"http://wptavern.com/new-wordpress-plugin-spell-checks-post-titles-before-publishing?utm_source=rss&utm_medium=rss&utm_campaign=new-wordpress-plugin-spell-checks-post-titles-before-publishing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1941:\"<p>Have you ever published a post in WordPress only to realize the title has a misspelled word? Sure, a quick edit will do the trick but wouldn’t it be nice if the misspelling was caught before the post went live? WordPress doesn’t spell check post titles but you can change that with a new plugin called <a title=\"https://github.com/FlagshipWP/post-title-spell-check\" href=\"https://github.com/FlagshipWP/post-title-spell-check\">Post Title Spell Check,</a> developed by <a href=\"https://github.com/robneu\">Robert Neu</a> and <a href=\"https://github.com/bradyvercher\">Brady Vercher</a>.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/TestingPostTitleSpellCheckerPlugin.png\" rel=\"prettyphoto[28230]\"><img class=\"size-full wp-image-28316\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/TestingPostTitleSpellCheckerPlugin.png?resize=538%2C297\" alt=\"Post Title Spell Checking Plugin\" /></a>Yep, It Works\n<p>It’s a simple plugin that adds a small bit of code to the WordPress title input field. Activating the plugin allows all post types which support the default WordPress title input field to be spell checked by modern browsers. There are no settings to configure as it’s a set and forget type of plugin.</p>\n<h2>How To Spell Check Post Titles Without Using A Plugin</h2>\n<p>If Firefox is your browser of choice, I found a <a title=\"http://rhour.com/activate-spell-check-for-post-titles.html\" href=\"http://rhour.com/activate-spell-check-for-post-titles.html\">great guide on Rhour.com</a> that explains how to change a value in Firefox’s configuration file to spell check post titles. The downside to this technique is that it’s for Firefox only. The plugin on the other hand, enables post title spell checking across all modern browsers.</p>\n<p>Is this something you’d like to see added to the core of WordPress or should it be left to web browsers to handle?</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 Aug 2014 21:48: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:\"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: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:81:\"WPTavern: WordPress Rainbow Hilite Plugin Adds Rainbow.js for Syntax Highlighting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28270\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:206:\"http://wptavern.com/wordpress-rainbow-hilite-plugin-adds-rainbow-js-for-syntax-highlighting?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-rainbow-hilite-plugin-adds-rainbow-js-for-syntax-highlighting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4034:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/rainbow.jpg\" rel=\"prettyphoto[28270]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/rainbow.jpg?resize=1024%2C514\" alt=\"photo credit: Βethan - cc\" class=\"size-full wp-image-28301\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/beth19/4912628387/\">Βethan</a> – <a href=\"http://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a>\n<p>If you regularly blog code snippets, adding a syntax highlighter plugin can help make your code more readable and easier to copy. Many plugins use language-specific shortcodes to surround embedded code, but this generally requires you to remember the right way to form the shortcode. The new <a href=\"http://wordpress.org/plugins/wp-rainbow-hilite/\" target=\"_blank\">WordPress Rainbow Hilite</a> plugin uses a different method for embedding code in posts.</p>\n<p>The plugin incorporates the lightweight <a href=\"http://craig.is/making/rainbows\" target=\"_blank\">Rainbow.js</a> syntax highlighting library into WordPress and is completely themable via CSS. Rainbow Hilite utilizes the visual editor to add language-specific styles to pre tags.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/rainbow-hilite-editor.png\" rel=\"prettyphoto[28270]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/rainbow-hilite-editor.png?resize=653%2C526\" alt=\"rainbow-hilite-editor\" class=\"aligncenter size-full wp-image-28284\" /></a></p>\n<p>The plugin includes support for 18 commonly used languages, which can be enabled or disabled in the settings located in the Writing panel:</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/rainbow-languages.jpg\" rel=\"prettyphoto[28270]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/rainbow-languages.jpg?resize=977%2C310\" alt=\"rainbow-languages\" class=\"aligncenter size-full wp-image-28274\" /></a></p>\n<p>It also includes 19 preset visual themes to choose from for making your code beautiful. The settings panel allows you to toggle a sample code block in order to conveniently preview each theme without having to navigate to the frontend.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/toggle-code.gif\" rel=\"prettyphoto[28270]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/toggle-code.gif?resize=850%2C504\" alt=\"toggle-code\" class=\"aligncenter size-full wp-image-28276\" /></a></p>\n<p>Below is an example of how code appears on the frontend using the plugin’s sample code. One handy thing Rainbow Hilite’s output is that the highlighted code can be copy-pasted directly out of the site. There’s no “view raw” button to clutter up the code snippet.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/rainbow-example.jpg\" rel=\"prettyphoto[28270]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/rainbow-example.jpg?resize=652%2C568\" alt=\"rainbow-example\" class=\"aligncenter size-full wp-image-28275\" /></a></p>\n<p>Line numbers are optional and when active they are added using <a href=\"https://github.com/Sjeiti/rainbow.linenumbers\" target=\"_blank\">rainbow.linenumbers</a>. The plugin also includes some <a href=\"https://github.com/mcguffin/wp-rainbow-hilite#plugin-api\" target=\"_blank\">filters</a>, which allow users to load their own language modules and themes and plugins to hook in.</p>\n<p>If you ever decide to stop using the plugin, pre tags aren’t as bad as orphaned shortcodes littered throughout your posts. In other words, using it doesn’t mean that you’re married to the plugin for life. If you’d like to suggest any changes, the development version of Rainbow Hilite is available on <a href=\"https://github.com/mcguffin/wp-rainbow-hilite\" target=\"_blank\">GitHub</a>. If you want to use the plugin on your site, you can <a href=\"http://wordpress.org/plugins/wp-rainbow-hilite/\" target=\"_blank\">download</a> it from WordPress.org.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Aug 2014 20:03:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"WordPress.tv: Dave Jensen: Metro UK’s Powerful Content Algorithm\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37910\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wordpress.tv/2014/08/13/dave-jensen-metro-uks-powerful-content-algorithm/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:671:\"<div id=\"v-vhHvKooO-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37910/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37910/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37910&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/13/dave-jensen-metro-uks-powerful-content-algorithm/\"><img alt=\"Dave Jensen: Metro UK’s Powerful Content Algorithm\" src=\"http://videos.videopress.com/vhHvKooO/video-4d74be6fad_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Aug 2014 19:00:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:65:\"WordPress.tv: Kevin Newman: Harvard Business Review and WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37727\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.tv/2014/08/13/kevin-newman-harvard-business-review-and-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:672:\"<div id=\"v-AgRygS6W-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37727/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37727/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37727&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/13/kevin-newman-harvard-business-review-and-wordpress/\"><img alt=\"Kevin Newman: Harvard Business Review and WordPress\" src=\"http://videos.videopress.com/AgRygS6W/video-6ccda50669_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Aug 2014 16:42:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:37:\"Joseph: WordCamp Salt Lake City, 2014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://josephscott.org/?p=10802\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://josephscott.org/archives/2014/08/wordcamp-salt-lake-city-2014/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1718:\"<p><a href=\"http://2014.slc.wordcamp.org/\"><img src=\"https://josephscott.org/wp-content/uploads/2014/08/wcslc-2014.png\" alt=\"wcslc-2014\" width=\"479\" height=\"341\" class=\"aligncenter size-full wp-image-10817\" /></a></p>\n<p><a href=\"http://2014.slc.wordcamp.org/\">WordCamp SLC 2014</a> is coming up fast. Just one month away: <strong>Saturday 13 September 2014</strong>. This is one day that brings together the local WordPress community like no other. We tend to get a wide range of people attending, from those just starting out, to designers, developers, consultants, and people who contribute to the core code of WordPress.</p>\n<p>WordCamp SLC is a great opportunity to learn a few things from the presentations. Even more important than that is the chance to get to know other WordPress users in the community.</p>\n<p>One really important thing to note for 2014, the <a href=\"http://2014.slc.wordcamp.org/location/\">location has changed</a>:</p>\n<p></p>\n<p>City And County Building<br />\n451 Washington Square,<br />\nSalt Lake City, Utah</p>\n<p>The <a href=\"http://2014.slc.wordcamp.org/tickets/\">registration this year is only $15</a>, which includes lunch. The reduced price is to help offset the cost of parking in down town SLC.</p>\n<p>If you are interested in speaking there is still time to <a href=\"http://2014.slc.wordcamp.org/speakers/speaker-application/\">submit a presentation proposal</a>.</p>\n<p>Go <a href=\"http://2014.slc.wordcamp.org/tickets/\">register</a> today and be sure to say hi when I see you on September 13th. Then go give a big thank you to <a href=\"https://twitter.com/MikeHansenMe\">Mike Hansen</a>, he is organizing <a href=\"http://2014.slc.wordcamp.org/\">WordCamp SLC 2014</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 Aug 2014 15:49: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:12:\"Joseph Scott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:41:\"Matt: Extrinsic Motivation Doesn’t Work\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43987\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"http://ma.tt/2014/08/extrinsic-motivation-doesntwork/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:376:\"<p>From <a href=\"http://seriouspony.com/\">Kathy Sierra</a>, here’s “One of the longest deep studies on negative impact of external reinforcers (e.g. rewards) on long-term motivation”: <a href=\"http://www.pnas.org/content/111/30/10990.full\">Multiple types of motives don’t multiply the motivation of West Point cadets</a>. Academic, but interesting.</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 Aug 2014 15:37:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WordPress.tv: Alex McClafferty: Building Your WordPress Business With Relationships\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.tv/2014/08/13/alex-mcclafferty-building-your-wordpress-business-with-relationships/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:714:\"<div id=\"v-l4ykY5Pm-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37320/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37320/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37320&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/13/alex-mcclafferty-building-your-wordpress-business-with-relationships/\"><img alt=\"Alex McClafferty: Building Your WordPress Business With Relationships\" src=\"http://videos.videopress.com/l4ykY5Pm/video-43637e555e_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Aug 2014 15:30:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:52:\"WordPress.tv: WordCamp Organizer’s Orientation AMA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=36456\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.tv/2014/08/13/wordcamp-organizers-orientation-ama/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:654:\"<div id=\"v-Qnax801N-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36456/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36456/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36456&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/13/wordcamp-organizers-orientation-ama/\"><img alt=\"WordCamp Organizer’s Orientation AMA\" src=\"http://videos.videopress.com/Qnax801N/video-d5b8927979_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Aug 2014 15:26:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:53:\"WordPress.tv: Aaron Jorbin: The Users We Forget About\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=36952\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.tv/2014/08/13/aaron-jorbin-the-users-we-forget-about/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:654:\"<div id=\"v-3s5zGSB4-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36952/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36952/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36952&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/13/aaron-jorbin-the-users-we-forget-about/\"><img alt=\"Aaron Jorbin: The Users We Forget About\" src=\"http://videos.videopress.com/3s5zGSB4/video-1f14f13e89_scruberthumbnail_2.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Aug 2014 15:15:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:82:\"WPTavern: Espied: A Free WordPress Portfolio Theme for Designers and Photographers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28131\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:206:\"http://wptavern.com/espied-a-free-wordpress-portfolio-theme-for-designers-and-photographers?utm_source=rss&utm_medium=rss&utm_campaign=espied-a-free-wordpress-portfolio-theme-for-designers-and-photographers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3633:\"<p>If you’re on the hunt for a new design to showcase your work, WordPress.com’s beautiful <a href=\"https://wordpress.com/themes/espied/\" target=\"_blank\">Espied</a> theme is now available for use on self-hosted sites. This striking minimalist portfolio theme was created with designers, photographers, and artists in mind.</p>\n<p>Espied utilizes WordPress.com’s <a href=\"http://en.support.wordpress.com/portfolios/\" target=\"_blank\">portfolio</a> feature, which was recently <a href=\"http://wptavern.com/jetpack-rebrands-with-new-logo-adds-custom-post-types-in-3-1-release\" target=\"_blank\">added to Jetpack</a>. With this custom content type enabled, users can easily manage and showcase projects with the <code>[portfolio]</code> shortcode.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/espied.png\" rel=\"prettyphoto[28131]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/espied.png?resize=880%2C660\" alt=\"espied\" class=\"aligncenter size-full wp-image-28133\" /></a></p>\n<p>Customization options for Espied include support for a 1600 × 320px header image, the ability to set the header text color, and a unique option for setting the thumbnail aspect ratio. Featured image ratio options include landscape (4:3), portrait (3:4), and square (1:1). This setting carries over to archive pages, the portfolio page template, and portfolio shortcodes.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/espied-archive-page.png\" rel=\"prettyphoto[28131]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/espied-archive-page.png?resize=1025%2C780\" alt=\"espied-archive-page\" class=\"aligncenter size-full wp-image-28247\" /></a></p>\n<p>The theme includes a sidebar that slides out to display navigation and widgets. It is hidden until clicked in order to keep the focus on showcasing your work.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/sidebar.jpg\" rel=\"prettyphoto[28131]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/sidebar.jpg?resize=660%2C336\" alt=\"sidebar\" class=\"aligncenter size-full wp-image-28250\" /></a></p>\n<p>Espied also features a beautiful way to display your social links via a custom menu. Add your social URLs as menu items and the theme will automatically display the right icon, if it’s available. It currently includes 22 different icons for various social profiles.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/social-links.jpg\" rel=\"prettyphoto[28131]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/social-links.jpg?resize=660%2C305\" alt=\"social-links\" class=\"aligncenter size-full wp-image-28249\" /></a></p>\n<p>Espied showcases images at full width on larger displays so it’s important to use images that are at least 1272px. Although the theme does include beautiful, readable typography for blogging, the design is probably best-suited for sites that are primarily portfolios or other visual showcases. Check out a <a href=\"http://espieddemo.wordpress.com/\" target=\"_blank\">live demo</a> on WordPress.com to see the theme in action.</p>\n<p>With the release of Espied, the folks at Automattic are approaching 50 free themes listed on WordPress.org. This portfolio theme is a home run and responds nicely to any screen size. If you want an easy way to showcase your work without having to configure a ton of options, Espied is an excellent choice. <a href=\"http://wordpress.org/themes/espied\" target=\"_blank\">Download</a> it from the WordPress.org or install it directly via your admin themes panel.</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 Aug 2014 04:42:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:101:\"WPTavern: Theme Checklist Helps Prepare Developers To Submit A Theme To The WordPress Theme Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28095\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:246:\"http://wptavern.com/theme-checklist-helps-prepare-developers-to-submit-a-theme-to-the-wordpress-theme-directory?utm_source=rss&utm_medium=rss&utm_campaign=theme-checklist-helps-prepare-developers-to-submit-a-theme-to-the-wordpress-theme-directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4406:\"<p><a title=\"http://wordpress.org/plugins/theme-checklist/\" href=\"http://wordpress.org/plugins/theme-checklist/\">Theme Checklist</a> is a new plugin by <a title=\"http://profiles.wordpress.org/gpriday/\" href=\"http://profiles.wordpress.org/gpriday/\">Greg Priday</a> of <a title=\"http://siteorigin.com/\" href=\"http://siteorigin.com/\">SiteOrigin</a>. The plugin provides a checklist of items to go through before submitting a theme to the WordPress theme directory. Once activated, you’ll find the checklist under <strong>Tools > Theme Checklist.</strong> Theme developers check off each item that successfully passes a test. Themes need to pass all tests before they can be accepted into the <a title=\"http://wordpress.org/themes/\" href=\"http://wordpress.org/themes/\">WordPress theme directory</a>.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/ThemeChecklist.png\" rel=\"prettyphoto[28095]\"><img class=\"size-full wp-image-28195\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/ThemeChecklist.png?resize=790%2C461\" alt=\"Check List Of Items To Go Through\" /></a>Check List Of Items To Go Through\n<p>If a test doesn’t pass, you can select the X and a small text area appears allowing you to write and save notes to that item. There are a total of 31 different tests ranging from Code Quality to Security. Each item has a link that takes users to a page on <a title=\"http://themechecklist.org/\" href=\"http://themechecklist.org/\">Themechecklist.org</a> with more information. Theme Checklist also contains the ability to import or export tests enabling users to collaborate on testing themes in different environments.</p>\n<p>I used Theme Checklist to review the WP Tavern theme and it passed with flying colors.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/ThemeChecklistResults.png\" rel=\"prettyphoto[28095]\"><img class=\"size-full wp-image-28199\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/ThemeChecklistResults.png?resize=844%2C186\" alt=\"Ravel Passes Tests With Flying Colors\" /></a>WP Tavern Theme Passes With Flying Colors\n<h2>Theme Checklist Is An Alternative Learning Experience</h2>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/ThemeCheckListFeaturedImage.png\" rel=\"prettyphoto[28095]\"><img class=\"size-full wp-image-28218\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/ThemeCheckListFeaturedImage.png?resize=638%2C298\" alt=\"Theme Check List Featured Image\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/justin_case/6089119290/\">Dr Case</a> – <a href=\"http://creativecommons.org/licenses/by-nc/2.0/\">cc</a>\n<p>Although the plugin is not an exact match, Priday will do his best to keep the checklist in line with the official <a title=\"https://make.wordpress.org/docs/theme-developer-handbook/part-four-releasing-your-theme/theme-review-guidelines/\" href=\"https://make.wordpress.org/docs/theme-developer-handbook/part-four-releasing-your-theme/theme-review-guidelines/\">WordPress.org Theme Review Guidelines</a>. “My goal is to make a kind of Dummies Guide to The Theme Review Guidelines” Priday said. “I’ve generally found that the theme review guidelines are really difficult for new theme developers to understand. I’ve tried to make something that makes all the requirements easier to understand.”</p>\n<p>Theme Checklist is not meant to be a replacement for the <a title=\"https://wordpress.org/plugins/theme-check/\" href=\"https://wordpress.org/plugins/theme-check/\">Theme Check</a> plugin. Instead, it’s a collection of the most common snag points witnessed by Priday in the theme review queue. According to Priday, the queue has a five-week backlog. He hopes Theme Checklist helps decrease the queue and gets more theme developers to pass the initial review.</p>\n<p>I understand why the theme review guidelines need to be thorough and specific. It’s the WordPress.org theme directory and they help create a consistent user experience. Plugins like Theme Checklist provide an alternative learning experience to accomplish the same goal. However, it has to remain on par with the official guidelines or else it could end up doing more harm than good.</p>\n<p>Theme developers, is this a tool you see yourself using? What other tools do you use to increase the likelihood of passing a review on the first try?</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 Aug 2014 22:45: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: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:89:\"WPTavern: Right Meow Plugin Puts The Super Troopers Cat Game Into Your WordPress Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=28201\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:222:\"http://wptavern.com/right-meow-plugin-puts-the-super-troopers-cat-game-into-your-wordpress-comments?utm_source=rss&utm_medium=rss&utm_campaign=right-meow-plugin-puts-the-super-troopers-cat-game-into-your-wordpress-comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1976:\"<p>Broken Lizard’s 2001 comedy “<a href=\"http://www.imdb.com/title/tt0247745/\" target=\"_blank\">Super Troopers</a>” introduced millions of viewers to the “cat game.” In the scene, a highway patrolman pulls Jim Gaffigan over and then tries to insert the word “meow” casually into the conversation as many times as possible. You remember that scene, right? If not, check it out here:</p>\n<p><span class=\"embed-youtube\"></span></p>\n<h3>Am I Saying Meow?!</h3>\n<p>Now, you can also have subliminal meow fun with <a href=\"http://wordpress.org/plugins/right-meow/\" target=\"_blank\">Right Meow</a>, a WordPress plugin that changes your comments section so that the word “now” automatically becomes “meow,” as shown below:</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/meow.jpg\" rel=\"prettyphoto[28201]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/meow.jpg?resize=766%2C461\" alt=\"meow\" class=\"aligncenter size-full wp-image-28205\" /></a></p>\n<p>The plugin was created by <a href=\"http://www.thomasleen.com/\" target=\"_blank\">Thomas Leen</a> and is his first submission on WordPress.org. It’s also available on <a href=\"https://github.com/tleen/wp-right-meow\" target=\"_blank\">GitHub</a>, should you want to suggest any changes. After testing it, I can confirm that it works as advertised to transform all instances of “now” to “meow” in the comments.</p>\n<p>This may not be the most productive tool in the shed but it definitely adds a dash of frivolity and fun to your site by automatically trolling commenters with meows on your behalf. Please note that de-activating the plugin will return all your “meows” back to “nows.” If you want your comments to have a little more entertainment value, I recommend you <a href=\"http://wordpress.org/plugins/right-meow/\" target=\"_blank\">download</a> this plugin right meow.</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 Aug 2014 22:20: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: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:69:\"Alex King: The Race to the Bottom Benefits Platforms (not Developers)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=20713\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://alexking.org/blog/2014/08/12/race-to-bottom-platforms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3773:\"<p>There’s been a ton of recent conversation in the iOS world about the inability for most indie developers to create sustainable businesses through the iOS app store. In particular, these devs are talking about apps that require larger development efforts – they want to charge more than “impulse purchase” prices for these, and thus want trials, upgrade pricing, etc. to support that model. They want things to work they way they always have – I don’t blame them.</p>\n<p>I think it’s worth considering who wins in this “race to the bottom”. In general, more stuff for free benefits consumers, which in turn benefits the platform.</p>\n<p>“But wait!” the developers cry. “When the platform doesn’t support building more sophisticated apps, the consumers ultimately lose!” I know this argument, I’ve made it myself regarding the WordPress ecosystem. I was wrong.</p>\n<p>Consumers have been well trained that they can expect incredible value for free. Sure, they may trade off their privacy and be subjected to ads, but they aren’t asked to fork over their cash directly.</p>\n<p>VC-backed companies often contribute to the problem as well. As they clamor for users to their platforms, they give everything away – it’s so easy to flip the switch in the future and start the money pouring in. Or if that doesn’t work, they fold up shop and call it a day. Oops!</p>\n<p>More complex apps <em>will get made</em>. They just won’t be built using the model that indie developers are used to.</p>\n<p>There will be apps supported by alternative revenue streams. Some might have ads or sponsorships, some might mine and sell the data they produce, some (like Evernote and Dropbox) will be a gateway to a commercial service. People will figure out ways to get money out of a large enough user base, and apps will get built.</p>\n<p>I’ve seen this happen in the WordPress ecosystem already. It’s a different beast because it’s an Open Source community, but it’s still an interesting parallel.</p>\n<p>Basically this happened:</p>\n<ol>\n<li>A bunch of folks built stuff and released it all for free to a small community, largely consisting of fellow developers and tinkerers</li>\n<li>A whole bunch more folks started using the platform and the community grew – it wasn’t just developers anymore, it was end users with expectations of support, etc.</li>\n<li>Devs wanted to start monetizing the products they were providing</li>\n<li>The platform didn’t provide the tools to make money in the way that the devs wanted -instead it invested in tools to promote free products</li>\n<li>Eventually a variety of patterns arose to monetize both commercial and “free” products (subscription clubs with access to a bunch of different plugins/themes, free products with commercial add-ons, sponsorships and ads, products that were created to support hosting services, etc.)</li>\n</ol>\n<p>It’s not the <img src=\"http://alexking.org/wp-content/themes/alexking.org-v3/smilies/ak_scare1.gif\" alt=\":scare:\" class=\"wp-smiley\" /> pure <img src=\"http://alexking.org/wp-content/themes/alexking.org-v3/smilies/ak_scare2.gif\" alt=\":/scare:\" class=\"wp-smiley\" /> and direct approach of charging directly for the software, but it’s still developers writing code and making money.</p>\n<p>The same thing is happening for iOS. There is money to be made. The platform and consumers are winning.</p>\n<p>“Adapt or die” is our mantra for those business who are threatened by technology. We have little sympathy for newspapers, the music industry, etc. Perhaps it’s time to include software companies in that list.</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 Aug 2014 21:53:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:110:\"WPTavern: Sprout Apps to Launch a Suite of WordPress-Powered Apps Targeted at Freelancers and Small Businesses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:264:\"http://wptavern.com/sprout-apps-to-launch-a-suite-of-wordpress-powered-apps-targeted-at-freelancers-and-small-businesses?utm_source=rss&utm_medium=rss&utm_campaign=sprout-apps-to-launch-a-suite-of-wordpress-powered-apps-targeted-at-freelancers-and-small-businesses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6601:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/sprout-apps.png\" rel=\"prettyphoto[28141]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/sprout-apps.png?resize=1025%2C464\" alt=\"sprout-apps\" class=\"aligncenter size-full wp-image-28152\" /></a></p>\n<p><a href=\"https://sproutapps.co/\" target=\"_blank\">Sprout Apps</a> will soon be launching a suite of business apps targeted at WordPress freelancers and small businesses. WordPress developer <a href=\"http://dancameron.org/\" target=\"_blank\">Daniel Cameron</a> is behind the project, which is centered around creating plugins that help business owners work more efficiently with WordPress. Sprout Apps aims to bring tasks like invoicing, estimates, and client tracking into the admin.</p>\n<p>Cameron is the creator of <a href=\"http://smartecart.com/\" target=\"_blank\">Smart eCart</a>, a popular solution for daily deals, crowdfunding and social commerce. For five years he has supported and maintained the plugin, which was originally created for a client project. With the desire to venture out and create something new, Cameron has soft-launched Sprout Apps, starting with <a href=\"https://sproutapps.co/sprout-invoices/\" target=\"_blank\">Sprout Invoices</a>, now available for purchase.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/sprout-apps-invoices.png\" rel=\"prettyphoto[28141]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/sprout-apps-invoices.png?resize=500%2C387\" alt=\"sprout-apps-invoices\" class=\"aligncenter size-large wp-image-28154\" /></a></p>\n<p>Sprout Invoicing is an idea that Cameron had cooked up year ago but was hesitant about, due to the fact that other plugin developers had explored it without much success.</p>\n<p>“I went back to my original idea that I had years ago, which was a new invoicing app that solved all the problems I’ve had with Freshbooks and Harvest,” he said. “I knew there were already plugins out there which made me reluctant to pursue it further, regardless if their approach was wrong in my opinion.”</p>\n<h3>Sprout Invoicing Aims to Help Streamline and Brand All Client Communications</h3>\n<p>In order to sell his product, Cameron will have to convince business owners of the value in using a WordPress-powered invoicing system instead of the many standalone services. He’s counting on customers’ desire to <a href=\"https://sproutapps.co/news/what-sprout-invoices-solves-for-freelancers-and-wordpress-sites/\" target=\"_blank\">streamline all aspects of their businesses</a>.</p>\n<p>“Those other standalone services are silo’d, expensive, limiting and offer limited customization for brand integrity,” Cameron contends. “I want to streamline the estimate and invoicing process. Integrating it within the site that already has the estimate request (contact form) helps tremendously.”</p>\n<p>In addition to fully automating estimating and invoicing, the app is designed to help business owners overcome the branding limitations of popular invoicing services, which generally only let you upload a logo to a subdomain. The freedom to fully brand all client communications is a big win for small businesses.</p>\n<p>“Sprout Invoice notification emails are sent from your server and your from address,” Cameron said. “No more http://yoursite.harvestbooks.com with a ‘Powered by A Service I Pay For’.”</p>\n<p>The invoicing app is built with business owner’s needs in mind. It’s packed full of dashboards and charts, summaries, and dynamic reporting that can be easily sorted and filtered in the WordPress admin.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/sprout-invoicing-charts.gif\" rel=\"prettyphoto[28141]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/sprout-invoicing-charts.gif?resize=606%2C342\" alt=\"sprout-invoicing-charts\" class=\"aligncenter size-full wp-image-28159\" /></a></p>\n<p>Under the hood, Sprout Invoices is a WordPress plugin that uses custom post types, post meta and taxonomies for its data structure. “There are no additional tables created. The entire code base adheres to WordPress coding practices,” Cameron told the Tavern. “There’s hundreds of hooks and filters in SI, I want the entire app to be customizable and I anticipate it’s users to want more control than traditional WP users.”</p>\n<p>The apps he <a href=\"https://sproutapps.co/coming-soon/\" target=\"_blank\">plans to build</a> are actually WordPress plugins, though he felt that apps was a more applicable term. “I didn’t want to go with ‘Sprout plugins,’ for example, because I do have ideas that aren’t plugins and I didn’t want to box myself in,” he said. “I also think ‘Apps’ is a better term for these larger premium plugins since they offer more than a traditional plugin that might filter post content.”</p>\n<p>Sprout’s next app will be a CRM, followed by a team-based app. Cameron is also considering a PM app and a time tracker, depending on how sales go with the invoicing app. <a href=\"https://sproutapps.co/sprout-invoices/purchase/\" target=\"_blank\">Pricing</a> for Sprouts Invoicing is similar to that of popular invoicing services, with both monthly and yearly subscription rates at $5 and $9 respectively. Subscribers will receive updates, support and <a href=\"https://sproutapps.co/marketplace/\" target=\"_blank\">add-on</a> discounts. Cameron also plans to launch a free version of the invoicing app later this year.</p>\n<p>Sprout Apps is built on the bold premise that your WordPress site can be more than just the marketing face of your business. It can also power the daily tasks of estimating work, billing clients, and charting progress. Cameron is aiming to provide all the business essentials with the added benefit of brand independence, a streamlined workflow, and total control. He’s got a big vision to create a superior suite of apps that will support the many freelancers and small businesses that make up a large segment of the WordPress ecosystem.</p>\n<p><a href=\"https://sproutapps.co/\" target=\"_blank\">Sprout Apps</a> is currently in pre-launch mode and will officially launch at <a href=\"http://2014.la.wordcamp.org/\" target=\"_blank\">WordCamp LA</a> in early September. A <a href=\"https://sproutapps.co/demos/\" target=\"_blank\">live demo</a> of the app is available to preview and pre-launch subscribers will receive a discount at purchase.</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 Aug 2014 20:54: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: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:40:\"WPTavern: WP Site Care Acquires Audit 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=28140\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"http://wptavern.com/wp-site-care-acquires-audit-wp?utm_source=rss&utm_medium=rss&utm_campaign=wp-site-care-acquires-audit-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1996:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/MergeFeaturedImage.png\" rel=\"prettyphoto[28140]\"><img class=\"size-full wp-image-28143\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/MergeFeaturedImage.png?resize=678%2C252\" alt=\"Merge Featured Image\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/rutlo/3743291132/\">rutlo</a> – <a href=\"http://creativecommons.org/licenses/by/2.0/\">cc</a>\n<p><a title=\"http://auditwp.com/\" href=\"http://auditwp.com/\">Audit WP</a> has been acquired by <a title=\"http://www.wpsitecare.com\" href=\"http://www.wpsitecare.com\">WP Site Care</a>. According to <a title=\"http://www.wpsitecare.com/rob-neu-auditwp-join-wp-site-care/\" href=\"http://www.wpsitecare.com/rob-neu-auditwp-join-wp-site-care/\">the announcement</a>, Audit WP will operate under WP Site Care while continuing to offer specialized SEO services. Rob Neu, who owned and operated Audit WP, will become WP Site Care’s Director of Digital Strategy.</p>\n<blockquote><p>Rob will oversee product development as well as making sure that our brand, services, and content align with our ultimate goal of providing top-tier WordPress support, and making WordPress an asset for our clients and people who are new to the platform.</p></blockquote>\n<p>Neu hints that new SEO training packages are being worked on and a new plugin is being developed that will make it easier for WP Site Care customers to receive support from the WordPress dashboard.</p>\n<p>Neu cites his passion for wanting to help businesses and individuals as one of the primary reasons for merging with WP Site Care. “At my core, the thing I like the most about everything that I do is that I’m able help people,” Neu said. “I want to help people improve their businesses, make more money, and be more successful.”</p>\n<p>By joining WP Site Care, a business dedicated to helping people solve WordPress problems, he’s in a great position to do just that.</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 Aug 2014 18:26:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:22:\"Matt: The Great Filter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43964\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://ma.tt/2014/08/thegreatfilter/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:423:\"<p><span class=\"embed-youtube\"></span></p>\n<p>This is about the Great Filter. (No, not <a href=\"http://akismet.com/\">Akismet</a>.) It’s <a href=\"http://www.overcomingbias.com/2014/07/adam-ford-i-on-great-filter.html\">Adam Ford and Robert Hanson</a> on existential risks to humanity, a continuation of the Fermi Paradox discussion I <a href=\"http://ma.tt/2014/07/the-fermi-paradox/\">posted about the other day</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, 12 Aug 2014 16:39:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:78:\"Post Status: Audit WP to become part of WP Site Care with acquihire of Rob Neu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.poststat.us/?p=7078\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"http://www.poststat.us/wp-site-care-rob-neu/?utm_source=rss&utm_medium=rss&utm_campaign=wp-site-care-rob-neu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3669:\"<p><img class=\"aligncenter size-large wp-image-7081\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/wp-site-care-752x341.jpg\" alt=\"wp-site-care\" width=\"627\" height=\"284\" /></p>\n<p>Audit WP had a short, but interesting life span. Started by <a href=\"https://twitter.com/rob_neu\">Rob Neu</a> and <a href=\"http://jacobking.com\">Jacob King</a>, the site launched in February, and <a href=\"http://www.wpsitecare.com/rob-neu-auditwp-join-wp-site-care/\">today it’s been acquired by WP Site Care</a>.</p>\n<p>They made an early splash after their launch when Jacob <a href=\"http://auditwp.com/wp-engine-seo-failboat/\">wrote a provocative post</a> about WP Engine’s SEO policies. Aside from that, they set out to productize technical SEO and general website strategy.</p>\n<p>Their product was fairly successful, but they learned a valuable lesson; they were limiting their consulting opportunities for larger contracts by productizing — and therefore bracketing themselves at a relatively low price — their entry level services. That said, the product was quite good, and will now be part of WP Site Care’s offering in the form of a la carte SEO consulting, reports, and tools.</p>\n<p>I had a call with Rob and Jacob a couple of months ago to demo their product, and because I needed real help from them. I’d been getting clobbered by Google, and they helped me identify some of the reasons why and set about a plan to fix it. I’m still working on it, and was very pleased with what they offered.</p>\n<p><img class=\"aligncenter size-large wp-image-7079\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/audit-wp-overview-752x488.jpg\" alt=\"audit-wp-overview\" width=\"627\" height=\"406\" /></p>\n<p>This and other tools were quite nice, and the value I got from a short call and report were pretty enormous. I think this will be a compelling product for WP Site Care’s services, and it will fit in well with their other offerings.</p>\n<p>If you know Rob Neu and WP Site Care’s owner, Ryan Sullivan, then you already know they are friends. Rob joining WP Site Care doesn’t come as a shock, and seems to make sense all around. The two are already working on a separate side project together, called <a href=\"http://flagshipwp.com/\">Flagship</a>, a theme company. Additionally, WP Site Care was a sponsor and often attendee on WP Bacon, Rob’s old podcast that also unfortunately bit the dust.</p>\n<p>Rob and Ryan’s partnership for Flagship will remain separate, and Rob will be the Director of Digital Strategy for WP Site Care, now a team of five full time employees. Rob is a technical guy, and in addition to running strategy and marketing for WP Site Care, he’ll be working on refining some of their product offerings as well.</p>\n<h3>What is WP Site Care anyway?</h3>\n<p>I talked about WP Site Care and other <a title=\"The rise of WordPress maintenance services\" href=\"http://www.poststat.us/rise-wordpress-maintenance-services/\">WordPress maintenance services</a> earlier this year. Essentially it’s a combination of monthly maintenance and support, and a la carte services. It’s been a wildly successful and growing niche in the WordPress market, and there seem to be new companies popping up every day.</p>\n<p>While I don’t know the degree of professionalism and expertise all of them have, I know that at least a few are very good at what they do. <a href=\"http://www.wpsitecare.com\">WP Site Care</a> adding Rob and the variety of tools he brings to the table is a smart move for them to help set themselves apart in what is quickly becoming a crowded market.</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 Aug 2014 15:59:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:57:\"WordPress.tv: Andrew Nacin: Keynote WordCamp Seattle 2014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wordpress.tv/2014/08/12/andrew-nacin-keynote-wordcamp-seattle-2014/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:634:\"<div id=\"v-zRdcUwIL-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37318/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37318/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37318&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/12/andrew-nacin-keynote-wordcamp-seattle-2014/\"><img alt=\"Andrew Nacin: Keynote\" src=\"http://videos.videopress.com/zRdcUwIL/video-29a2a6e399_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Aug 2014 15:40:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress.tv: WordCamp.org Site Tools Orientation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=36428\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.tv/2014/08/12/wordcamp-org-site-tools-orientation/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:647:\"<div id=\"v-GHzuucx2-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36428/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36428/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36428&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/12/wordcamp-org-site-tools-orientation/\"><img alt=\"WordCamp.org Site Tools Orientation\" src=\"http://videos.videopress.com/GHzuucx2/video-072a616795_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Aug 2014 15:20:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress.tv: Fish Bowl Interactive Group Discussion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37400\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.tv/2014/08/12/fish-bowl-interactive-group-discussion/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:653:\"<div id=\"v-eYcA9xgt-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37400/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37400/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37400&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/12/fish-bowl-interactive-group-discussion/\"><img alt=\"Fish Bowl Interactive Group Discussion\" src=\"http://videos.videopress.com/eYcA9xgt/video-8612b0f944_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Aug 2014 15:15:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:85:\"WPTavern: Add Reddit Style Commenting to WordPress With the Comment Popularity 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=28045\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:214:\"http://wptavern.com/add-reddit-style-commenting-to-wordpress-with-the-comment-popularity-plugin?utm_source=rss&utm_medium=rss&utm_campaign=add-reddit-style-commenting-to-wordpress-with-the-comment-popularity-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:5010:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/comments.png\" rel=\"prettyphoto[28045]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/comments.png?resize=984%2C455\" alt=\"comments\" class=\"aligncenter size-full wp-image-28128\" /></a></p>\n<p>Comments are an important aspect of your content and can serve as a vehicle for building community. WordPress site admins put in a hefty amount of work moderating comments and combating spam, just to <a href=\"http://wptavern.com/why-comments-still-matter\" target=\"_blank\">keep the conversation going</a> with comments open. With all that work invested, admins are looking for new ways to make comment interaction more valuable to those who are participating.</p>\n<p>WordPress.com recently<a href=\"http://en.blog.wordpress.com/2014/08/07/introducing-comment-likes/\" target=\"_blank\"> added comment likes</a> to the delight of its users. Self-hosted WordPress site admins are hopeful that comment likes will find their way into Jetpack as well. If you’re interested in doing something more with comments, there are many plugins that help to promote interaction on your site.</p>\n<p><a href=\"http://wordpress.org/plugins/comment-popularity/\" target=\"_blank\">Comment Popularity</a> is a new one that caught my eye. The plugin, created by <a href=\"https://twitter.com/paul_wp\" target=\"_blank\">Paul de Wouters</a> and his colleagues at <a href=\"http://hmn.md/\" target=\"_blank\">Human Made</a>, adds Reddit style commenting to WordPress. Registered site members can vote comments up or down to increase or decrease comment visibility.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/comment-popularity.jpg\" rel=\"prettyphoto[28045]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/comment-popularity.jpg?resize=785%2C613\" alt=\"comment-popularity\" class=\"aligncenter size-full wp-image-28093\" /></a></p>\n<p>When the plugin is active, comments are sorted by weight (number of votes) in a descending order. Site members receive karma each time one of their comments is upvoted. Administrators have the option to attribute more weight to “expert” commenters by adding an expert label and additional points on user profiles.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/user-profile-comment-popularity-settings.jpg\" rel=\"prettyphoto[28045]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/user-profile-comment-popularity-settings.jpg?resize=503%2C234\" alt=\"user-profile-comment-popularity-settings\" class=\"aligncenter size-full wp-image-28102\" /></a></p>\n<p>There’s also an option in the discussion panel for setting a default expert karma.</p>\n<p>De Wouters and the folks at Human Made plan to support and maintain the plugin via the forums on WordPress.org. It was originally created for their client, CFO Publishing, who will be listed as a contributor on the next release.</p>\n<p><strong>“I have a few ideas for integration with other plugins such as Stream, and our SaaS product WP Remote,”</strong> de Wouters said. I asked if he plans to add a UI for showing users their aggregate upvotes/ranks, and he confirmed that this is a possibility. “We’re already storing users voting activity, so it makes sense to offer an admin view for it,” he said. “Maybe a dashboard widget. Also, this is the kind of data we’d send to WP Remote or Stream.”</p>\n<p>The plugin is currently restricted to registered users, as it doesn’t make much sense to leave it open for anonymous users to vote. “I do however plan to develop a drop in class that will allow users to authenticate themselves via social networks, which will reduce friction and still provide a way to identify a user with relative reliabilty,” de Wouters commented regarding future development plans. Although he wants to keep it simple and focused on one particular functionality, he is open to suggestions and contributions via the plugin’s <a href=\"https://github.com/humanmade/comment-popularity\" target=\"_blank\">GitHub repository</a>.</p>\n<p>Comment Popularity gives registered users a way to weigh in on discussions without having to comment. Consequently, there is a greater incentive for readers to register for your site. It gives everyone a chance to influence the conversation. As users attribute value to comments they like, the best comments will float to the top. This saves readers from having to scroll through all the mediocre comments in order to find the highest quality responses.</p>\n<p>If you’re looking for a new way to encourage interaction in your comments, the Comment Popularity plugin is simple and intuitive to use. It should work automatically with most standard comment forms. <a href=\"http://wordpress.org/plugins/comment-popularity/\" target=\"_blank\">Download</a> the plugin for free from WordPress.org and watch the GitHub repository for updates in development.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Aug 2014 00:14: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: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:77:\"WPTavern: Interview With Siobhan McKeown On The Future Of The WordPress Codex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:198:\"http://wptavern.com/interview-with-siobhan-mckeown-on-the-future-of-the-wordpress-codex?utm_source=rss&utm_medium=rss&utm_campaign=interview-with-siobhan-mckeown-on-the-future-of-the-wordpress-codex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6798:\"<p>If you use WordPress, chances are that you’ve run into the <a title=\"http://codex.wordpress.org/\" href=\"http://codex.wordpress.org/\">WordPress Codex</a>. The Codex is a community maintained collection of documentation, hooks, filters, best practices, and other information related to WordPress. With various <a title=\"http://make.wordpress.org/docs/handbook/projects/handbooks/\" href=\"http://make.wordpress.org/docs/handbook/projects/handbooks/\">handbook projects</a> underway, I’ve been wondering what the future of the Codex is. To find out, I got in touch with <a title=\"http://siobhanmckeown.com/\" href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a>, who is a member of the <a title=\"http://make.wordpress.org/docs/\" href=\"http://make.wordpress.org/docs/\">documentation team</a>.</p>\n<h2>Interview With Siobhan McKeown</h2>\n<p><strong>Is the <a title=\"http://make.wordpress.org/docs/2013/06/19/docs-sprint-results-and-roadmap/\" href=\"http://make.wordpress.org/docs/2013/06/19/docs-sprint-results-and-roadmap/\">roadmap outlined here</a> still accurate and is it being followed? Is it still on time?</strong></p>\n<p>The roadmap is still fairly accurate but it’s not on time. The number of contributors to docs is quite small and we’ve faced challenges around getting development work done and finding people to write. That said, the people who are involved are very dedicated and we’re slowly chipping away at things. We have made big strides forward, particularly in the area of inline docs (thanks <a title=\"http://profiles.wordpress.org/drewapicture\" href=\"http://profiles.wordpress.org/drewapicture\">Drew Jaynes</a> and <a title=\"https://profiles.wordpress.org/kpdesign\" href=\"https://profiles.wordpress.org/kpdesign\">Kim Parsell</a>) and in building <a title=\"https://developer.wordpress.org/reference/\" href=\"https://developer.wordpress.org/reference/\">developer.wordpress.org</a>.</p>\n<p><strong>Ultimately, is the future of the Codex for it to disappear in favor of all the other documentation resources outlined in the roadmap?</strong></p>\n<p>I would like for that to happen, but the decision doesn’t ultimately lie with me and it’s a discussion that we’ll have to return to once new documentation is in place.</p>\n<p>Many free software projects in the early stages of their life use a wiki for their documentation. Over time, this can become out-of-date and inaccurate. As a project grows, it often out-grows a wiki, requiring more targeted documentation for both users and developers. <a href=\"https://support.mozilla.org/en-US/products/firefox\">Firefox</a> and <a href=\"http://guides.rubyonrails.org/getting_started.html\">Ruby on Rails</a> are good examples of FOSS projects that provide the types of targeted documentation that WordPress should be providing. I would hope that we can eventually get there ourselves, and keep the Codex as a historical archive.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/MozillaFireFoxTargetedSupport.png\" rel=\"prettyphoto[28089]\"><img class=\"size-full wp-image-28100\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/MozillaFireFoxTargetedSupport.png?resize=966%2C690\" alt=\"Mozilla FireFox Targeted Documentation\" /></a>Mozilla FireFox Targeted Documentation\n<p><strong>Is it a waste of effort and energy for folks to continue to edit and update the Codex?</strong></p>\n<p>No. For two reasons: First of all, while all of the docs work is going on, we need to ensure that the Codex stays up-to-date and accurate. It remains WordPress’ primary source of documentation and will be for some time, so contributions are still valuable there. When a new version of WordPress is released, the docs team usually does a sprint to get the Codex up-to-date.</p>\n<p>Secondly, the main problem with the Codex is its navigation and structure. There’s a lot of good content in there mixed with a lot of out-of-date content. As we create new resources, we look at the content in the Codex and migrate good-quality content. If you fix a page in the Codex, then it’s likely that will end up somewhere in a new documentation resource.</p>\n<p><strong>How can folks get involved with helping the roadmap move along?</strong></p>\n<p>We particularly need help in two areas:</p>\n<ol>\n<li>Someone to help with ongoing development of <a title=\"http://wptavern.com/help-contribute-to-the-official-wordpress-developer-resource-by-testing-code-references\" href=\"http://wptavern.com/help-contribute-to-the-official-wordpress-developer-resource-by-testing-code-references\">WP-Parser</a> (the parser used to generate the Code Reference). A lot of things are on hold until we get someone helping there.</li>\n<li>Writing the <a title=\"https://make.wordpress.org/docs/theme-developer-handbook/\" href=\"https://make.wordpress.org/docs/theme-developer-handbook/\">theme</a> and <a title=\"https://make.wordpress.org/docs/plugin-developer-handbook/\" href=\"https://make.wordpress.org/docs/plugin-developer-handbook/\">plugin developer</a> handbooks. These have been around for a long time and we really want to get them finished off so that we can move on to focusing on user support.</li>\n</ol>\n<h2>To Some, Google Is The WordPress Codex</h2>\n<p>It may be the largest collection of WordPress documentation but I bet it doesn’t compare to the amount of WordPress content published on sites across the web. The paradox of publishing content on the Codex for the benefit of everyone versus a personal site for the benefit of a small audience has existed since it was created.</p>\n<p>I think it would be awesome if content from sites like <a title=\"http://justintadlock.com/\" href=\"http://justintadlock.com/\">Justin Tadlock</a> found a home on the Codex but perhaps we don’t need one at all. Maybe all we need is Google. When I asked the Tavern’s Twitter followers what <a title=\"http://wptavern.com/7-aspects-of-wordpress-i-take-for-granted\" href=\"http://wptavern.com/7-aspects-of-wordpress-i-take-for-granted\">aspect of WordPress do they take for granted</a>, Jared Novack submitted the following answer:</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p><a href=\"https://twitter.com/wptavern\">@wptavern</a> You can type anything into google followed by \"WordPress\" and someone has already asked (and answered) it</p>\n<p>— Jared Novack (@jaredNova) <a href=\"https://twitter.com/jaredNova/statuses/494322903739936768\">July 30, 2014</a></p></blockquote>\n<p></p>\n<p>If the Codex ever goes offline, it will be a sad day. However, if it’s replaced with easy to navigate, skill level targeted documentation, with a solid code reference, I think a lot of users and developers will be happy with its replacement. Has the Codex saved your bacon once or twice? Let us know in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Aug 2014 22:20: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: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:57:\"WPTavern: WPWeekly Episode 157 – Jeffro Tells His Story\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28075&preview_id=28075\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"http://wptavern.com/wpweekly-episode-157-jeffro-tells-his-story?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-157-jeffro-tells-his-story\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2274:\"<p>The past 156 episodes of WordPress Weekly are filled with stories of people who are doing exciting things with WordPress. For this episode, I decided to try something a little different. I handed the show over to <a href=\"http://marcuscouch.com/\" title=\"http://marcuscouch.com/\">Marcus Couch</a>, who interviewed me. In the show, I describe how I became interested in computers and the events that lead me to where I am today. It’s a lengthy episode but one I hope you enjoy.</p>\n<p>A reminder that beginning this week, WordPress Weekly will be recorded live on <strong>Wednesdays at 9:30 PM Eastern</strong>. The change better accommodates my schedule and the new day and time is also more compatible with guests.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/wordpress-3-9-2-fixes-security-vulnerabilities-users-strongly-encouraged-to-update\" title=\"http://wptavern.com/wordpress-3-9-2-fixes-security-vulnerabilities-users-strongly-encouraged-to-update\">WordPress 3.9.2 Fixes Security Vulnerabilities, Users Strongly Encouraged To Update</a><br />\n<a href=\"http://wptavern.com/crowd-favorite-announces-chris-lema-as-new-cto\" title=\"http://wptavern.com/crowd-favorite-announces-chris-lema-as-new-cto\">Crowd Favorite Announces Chris Lema As New CTO</a><br />\n<a href=\"http://wptavern.com/how-to-change-jetpack-accounts-without-losing-your-stats-or-subscribers\" title=\"http://wptavern.com/how-to-change-jetpack-accounts-without-losing-your-stats-or-subscribers\">How to Change Jetpack Accounts Without Losing Your Stats or Subscribers</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 13th 3 P.M. Eastern – Special Guest, Pippin Williamson</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 #157:</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:\"Mon, 11 Aug 2014 20:05:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:67:\"WPTavern: Underscores WordPress Starter Theme Adds Support for Sass\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28061\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:178:\"http://wptavern.com/underscores-wordpress-starter-theme-adds-support-for-sass?utm_source=rss&utm_medium=rss&utm_campaign=underscores-wordpress-starter-theme-adds-support-for-sass\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3186:\"<p><a href=\"http://underscores.me/\" target=\"_blank\">Underscores</a> community project contributors <a href=\"http://themeshaper.com/2014/08/11/sass-comes-to-_s/\" target=\"_blank\">announced</a> today that the theme now includes support for <a href=\"http://sass-lang.com/\" target=\"_blank\">Sass</a>. The popular WordPress starter theme is an open source project maintained by Automattic, and many of its users requested Sass support, according to contributor Tammie Lister. “The community firstly asked for Sass. As Sass is in core, this makes sense. It was already part of most themers’ workflow.”</p>\n<p>If you visit <a href=\"http://underscores.me/\" target=\"_blank\">Underscores.me</a> and click on “Advanced Options”, you’ll now find that you can check a box to add Sass support:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/add-sass.jpg\" rel=\"prettyphoto[28061]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/add-sass.jpg?resize=968%2C355\" alt=\"add-sass\" class=\"aligncenter size-full wp-image-28068\" /></a></p>\n<p>Lister emphasized in the announcement that support for Sass is included in a way that gives developers the freedom to use it as they please:</p>\n<blockquote><p>Not everyone compiles or uses Sass the same, so _s shouldn’t force anyone to follow one path or another. In this sense, the Sass provided takes a pure approach, not requiring Compass or any other scripts.</p></blockquote>\n<p>Sass support came about from a combination of numerous pull requests and forks of the project on GitHub. However, the project’s contributors do not wish to limit everyone to Sass and are open to other CSS preprocessors. <strong>“I’d still love to see a fork of Less for _s. We’re keen it opens up the way to other preprocessors,”</strong> Lister told the Tavern regarding the Sass support announced today.</p>\n<p>Earlier this year, <a href=\"http://wptavern.com/wordpress-com-formally-opens-its-marketplace-to-theme-developers\" target=\"_blank\">WordPress.com formally opened up its marketplace to theme developers</a>. Theme submission <a href=\"http://developer.wordpress.com/themes/\" target=\"_blank\">guidelines</a> are fairly strict and developers are encouraged to use the _s theme for a head start. While many theme authors appreciate the ability to save time with mixins and variables, using a preprocessor is not required for submitting to WordPress.com.</p>\n<p>Every WordPress themer has a unique workflow that may or may not involve a preprocessor, and the Underscores project contributors plan to respect that. <strong>“_s doesn’t tell you how to do things, it gives you a start. Anything we add to it should also do that,”</strong> Lister said.</p>\n<p>The addition of Sass support marks another turning point for the project, as Lister notes that the <a href=\"https://github.com/Automattic/_s\" target=\"_blank\">GitHub repository</a> will now be used solely for development. If you want to use Underscores in a project, the team encourages you to download it directly from <a href=\"http://underscores.me/\" target=\"_blank\">Underscores.me</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, 11 Aug 2014 19:00:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:93:\"Post Status: Week in review: theme shops, hub and spoke, you can’t afford me, and much 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.poststat.us/?p=7070\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"http://www.poststat.us/week-review-theme-shops-hub-spoke-cant-afford-much/?utm_source=rss&utm_medium=rss&utm_campaign=week-review-theme-shops-hub-spoke-cant-afford-much\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10330:\"<p><img class=\"aligncenter size-large wp-image-6769\" src=\"http://www.poststat.us/wp-content/uploads/2014/06/week-in-review1-752x300.jpg\" alt=\"week-in-review\" width=\"627\" height=\"250\" /></p>\n<p>Welcome to the seventh “<a href=\"http://www.poststat.us/category/week-in-review/\">Week in Review</a>” on Post Status, where I hope to offer up some of the things you may have missed in the last week or so. A whole bunch of good stuff to read from the last week, so let’s get to it:</p>\n<h3>Theme shops sorted by their Alexa rank</h3>\n<p>Devin Price has updated his <a href=\"http://wptheming.com/2014/08/theme-shop-directory-2014/\">list of WordPress theme shops</a>, sorted by Alexa rank, for 2014. This is a really interesting list that’s sure to enlighten you to some theme shops that you’ve never heard of. I’ve referenced the 2013 version many times in the past. I’m glad Devin put time into doing this again.</p>\n<p>Alexa isn’t a perfect way to rank theme shops, obviously, but it does offer good insight to see what average Joes unfamiliar with the WordPress theme landscape probably stumble upon as they search for WordPress themes. As Devin notes, the order of the top shops haven’t changed a whole lot in the past year, though pretty much all have gained ground, and WPMU Dev jumped all the way to number 1 from number 6.</p>\n<h3>Hub and spoke versus distributed teams</h3>\n<p>Jeff Chandler blogged about <a href=\"http://wptavern.com/how-crowd-favorite-utilizes-multiple-offices-and-a-distributed-work-force\">Crowd Favorite’s <del>hub and spoke office</del> (<em>edit</em>: it’s actually a constellation model; no “hub”) model</a> (a central office + many smaller offices). Jake Goldman responded with his <a href=\"http://jakegoldman.me/2014/08/hub-and-spoke-vs-distributed/\">case for a fully distributed team</a> (10up’s model). Both offer quality insight into how some of the larger WordPress consultancies operate.</p>\n<h3>You can’t afford the plugin you want</h3>\n<p>Chris Lema has written <a href=\"http://chrislema.com/cant-afford-wordpress-plugin-want/\">an excellent post about custom plugin development</a>, and why you just can’t get the exact thing you want off the shelf (unless you get real lucky).</p>\n<blockquote><p>That plugin that does everything you ever wanted? It doesn’t exist. And if it did, if someone built it, it would cost you thousands and thousands of dollars.</p>\n<p>Because what you often describe isn’t a plugin. It’s a system.</p>\n<p>And since you don’t want to connect several focused plugins, that each do the one thing they were made to do, you won’t really find the perfect plugin sitting there waiting for you.</p></blockquote>\n<h3>SSL all the things</h3>\n<p><span id=\"more-7070\"></span></p>\n<p><a href=\"http://searchengineland.com/google-starts-giving-ranking-boost-secure-httpsssl-sites-199446\">Google spoke from on high</a>, declaring SSL to be a portion of their ranking algorithm. The SEOs and the SSL sellers rejoiced. Tim Nash has a nice<a href=\"https://timnash.co.uk/guessing-ssl-questions/\"> primer on the nerdy details of SSL</a>. Joost de Valk also has some <a href=\"https://yoast.com/move-website-https-ssl/\">practical tips for switching over to SSL</a>. And Zack Tollman has a great performance post over at The Theme Foundry <a href=\"https://thethemefoundry.com/blog/why-we-dont-use-a-cdn-spdy-ssl/\">about SPDY and SSL</a>.</p>\n<p>Now, all that said, seriously don’t freak out about SSL. It is great, that’s true, but just because Google says it’s part of their algorithm doesn’t mean you have to have it no matter what. Still though, having SSL enabled is probably a good thing for most sites, if you can afford it. Just be smart about it, and not purely reactionary to Google’s whims.</p>\n<h3>Some hosts start to support Clef, the password-less login app</h3>\n<p>SiteGround and three other hosts announced <a href=\"http://blog.getclef.com/protecting-users-default/\">default support for Clef last week</a>. New installs on those platforms will enable the password-less login app. Clef works as a form of two-factor authentication, since you have to have your phone on you and scan the login screen to access the site.</p>\n<p>It’s obviously past time to rely purely on passwords, so it’s good to see folks supporting Clef and other two-factor methods out of the box.</p>\n<h3>WordPress-based portfolio templates, with Semplice</h3>\n<p><a href=\"http://semplicelabs.com/\">Semplice</a> is a WordPress portfolio template product, that’s still in development, but it’s definitely outside of the normal WordPress themes you see. I got in touch with the folks behind Semplice and they expect to have something ready in a few weeks for beta testing. It seems you can already buy it though, so I don’t know what that’s about. Either way, this may be a product to keep an eye on.</p>\n<h3>The WordPress security “delimma”</h3>\n<p>Tony Perez, CEO of Sucuri, write about <a href=\"http://tonyonsecurity.com/2014/08/09/the-dilemma-that-is-wordpress-security/\">what he considers to be a delimma with WordPress security</a>. I don’t personally agree with some of Tony’s conclusions here, but they are worth reading, as your mileage may vary. He takes some folks’ words to task (including my own), but I think in the end there is a more a difference in opinion on how to delivery the security message versus actual differences in implementing security measures.</p>\n<p>I believe the Drupal vs WordPress method for highlighting last week’s security release was a reflection of how WordPress and Drupal communicate in general; WordPress said it as if speaking to regular site owners and Drupal spoke to developers. To me, making WordPress accessible to regular people is paramount — related to security issues or not.</p>\n<p>I have a lot more I can say about this, but I have no desire to get in a pointless battle when I think we mostly agree on the goal, just not the message. But I do have one more note. Tony finishes his post with this:</p>\n<blockquote><p>You can’t own 22% of the market and not expect issues. Is it best to fight it and blindly convince yourself that they don’t exist, or is it better to embrace it?</p></blockquote>\n<p>I take exception to this. I don’t know anyone in a significant position within the WordPress project that takes such a “blind” stance. You can’t say WordPress core developers don’t take security seriously, because they absolutely do.</p>\n<h3>Stellar and international payments</h3>\n<p><a href=\"https://www.stellar.org/blog/introducing-stellar/\">Stellar</a> is a “a decentralized protocol for sending and receiving money in any pair of currencies” with some big backers, like Stripe. Brent and Kirby, at Prospress, nerded out over Stellar when it launched, and then wrote up a <a href=\"http://prospress.com/will-stellar-finally-fix-international-payments/\">great post about what this could mean for big savings in international eCommerce</a>.</p>\n<h3>Tablesaw: responsive tables, by Filament Group</h3>\n<p>Responsive tables are a pain. The Filament Group really attacked them with <a href=\"http://filamentgroup.com/lab/tablesaw.html\">Tablesaw</a>. This is a really nice solution that you may consider for implementation with certain types of themes and websites.</p>\n<h3>Comment likes on WordPress.com</h3>\n<p><a href=\"http://en.blog.wordpress.com/2014/08/07/introducing-comment-likes/\">WordPress.com has introduced comment likes</a>. This could be great for some sites with heavy amounts of comments, especially if they add some sorting options to bring good comments to the top. It might be a while before this one hits Jetpack though; apparently there are some technical challenges there.</p>\n<h3>Get news of new WordPress.com themes</h3>\n<p>Also in WordPress.com land, it turns out they aren’t really blogging about every theme release any more. So Luke McDonald put together a Twitter account to help keep you informed.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p><a href=\"http://t.co/unxO0Vbjaz\">http://t.co/unxO0Vbjaz</a> no longer promotes or announces Premium theme releases, so I spent some time to do this: <a href=\"https://t.co/Cenf4RW0Ed\">https://t.co/Cenf4RW0Ed</a></p>\n<p>— Luke McDonald (@thelukemcdonald) <a href=\"https://twitter.com/thelukemcdonald/statuses/497817557529665536\">August 8, 2014</a></p></blockquote>\n<p></p>\n<h3>Why attend WordPress conferences (and updates on some of them)</h3>\n<p>Andy Leverenz puts some good reasons together on the Elegant Themes blog about <a href=\"http://www.elegantthemes.com/blog/tips-tricks/wordpress-conferences-are-on-the-rise-why-you-should-attend\">why you should attend WordPress conferences</a>, and he highlights some of those coming up.</p>\n<p>Speaking of, if you want to go to PressNomics (the attendee list is awesome so far), <a href=\"http://pressnomics.com/2014/08/players-came-far-wide-attendees/\">you better act soon</a>; that conference could sell out really soon.</p>\n<p>The <a href=\"http://2014.sf.wordcamp.org/2014/08/04/say-hello-to-the-first-group-of-wordcamp-san-francisco-speakers/\">first</a> and <a href=\"http://2014.sf.wordcamp.org/2014/08/07/our-second-group-of-wordcamp-san-francisco-speakers/\">second</a> batches of WordCamp San Francisco speakers have been announced.</p>\n<p><a href=\"http://2014.europe.wordcamp.org/\">WordCamp Europe’s</a> speaker list is also dripping out, and it’s pretty amazing; that’s going to be an incredible event in Sofia.</p>\n<p>Finally, if you’re in the south, WordCamp Birmingham (my local camp — #WPYall!) is this Saturday. It’s going to be a great time, and I hope I get to meet some of you there. You can still register, <a href=\"http://2014.birmingham.wordcamp.org/\">so do that and come learn with us</a>.</p>\n<hr />\n<p>Have a great week, y’all. Make some news, and I’ll write it. Be on the lookout too, I’ve got my own news to share in the next month or so. Which means it’s probably a good time to subscribe to my <a title=\"Newsletter\" href=\"http://www.poststat.us/newsletter/\">newsletter</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, 11 Aug 2014 17:22:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:59:\"WordPress.tv: Kailey Lampert: Hidden Treasures of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37206\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wordpress.tv/2014/08/11/kailey-lampert-hidden-treasures-of-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:666:\"<div id=\"v-rF09mHB3-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37206/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37206/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37206&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/11/kailey-lampert-hidden-treasures-of-wordpress/\"><img alt=\"Kailey Lampert: Hidden Treasures of WordPress\" src=\"http://videos.videopress.com/rF09mHB3/video-92a0f142f5_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Aug 2014 15:24: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:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:69:\"WordPress.tv: WordCamp Organizers’ Orientation Hangout Mar 19, 2014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=36465\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.tv/2014/08/11/wordcamp-organizers-orientation-hangout-mar-19-2014/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:687:\"<div id=\"v-RWT5wtrZ-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36465/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36465/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36465&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/11/wordcamp-organizers-orientation-hangout-mar-19-2014/\"><img alt=\"WordCamp Organizers’ Orientation Hangout Mar 19, 2014\" src=\"http://videos.videopress.com/RWT5wtrZ/video-f088d9ed3d_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Aug 2014 15:17:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WordPress.tv: Peter Baran: Optimalizácia WordPress pre rýchlosť\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37425\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.tv/2014/08/11/peter-baran-optimalizacia-wordpress-pre-rychlost-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:673:\"<div id=\"v-zO6njcbX-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37425/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37425/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37425&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/11/peter-baran-optimalizacia-wordpress-pre-rychlost-2/\"><img alt=\"Peter Baran: Optimalizácia WordPress pre rýchlosť\" src=\"http://videos.videopress.com/zO6njcbX/video-97d1c51b93_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Aug 2014 15:14:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:26:\"Matt: Mosquito Preferences\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43977\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://ma.tt/2014/08/mosquito-preferences/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:340:\"<p><a href=\"http://www.smithsonianmag.com/science-nature/why-do-mosquitoes-bite-some-people-more-than-others-10255934/?no-ist\">Why Do Mosquitoes Bite Some People More Than Others?</a> I’m pretty lucky in the mosquito-biting department, they tend to go for others around me. So this article is for those that take one for the team.</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 Aug 2014 14:10: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: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: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:74:\"Lorelle on WP: Find, Search, Replace, and Delete in the WordPress Database\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://lorelle.wordpress.com/?p=11808\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"http://lorelle.wordpress.com/2014/08/10/find-search-replace-and-delete-in-the-wordpress-database/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:545:\"The following was originally published on WordCast and authored by Lorelle VanFossen. It is reprinted here as a reference guide. You’ve moved your WordPress installation from one server to another. You’ve changed domain names. You’ve moved images around on your server and now they don’t load. You’ve changed your WordPress installation and now images show […]<img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=lorelle.wordpress.com&blog=72&post=11808&subd=lorelle&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Aug 2014 23: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:49:\"WordPress.tv: WordCamp Program and Guidelines AMA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=36468\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.tv/2014/08/10/wordcamp-program-and-guidelines-ama/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:641:\"<div id=\"v-GpOXhwFM-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36468/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36468/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36468&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/10/wordcamp-program-and-guidelines-ama/\"><img alt=\"WordCamp Program and Guidelines AMA\" src=\"http://videos.videopress.com/GpOXhwFM/video-04332ce530_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Aug 2014 15:43:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:69:\"WordPress.tv: Nancy West Johnson: Create Your First WordPress Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37125\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.tv/2014/08/10/nancy-west-johnson-create-your-first-wordpress-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:686:\"<div id=\"v-sOK3Xmvm-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37125/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37125/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37125&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/10/nancy-west-johnson-create-your-first-wordpress-website/\"><img alt=\"Nancy West Johnson: Create Your First WordPress Website\" src=\"http://videos.videopress.com/sOK3Xmvm/video-fe44872092_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Aug 2014 15:11:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WordPress.tv: Brennen Byrne: Passwords – The Weakest Link in WordPress Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37133\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://wordpress.tv/2014/08/10/brennen-byrne-passwords-the-weakest-link-in-wordpress-security-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:712:\"<div id=\"v-zHKcIQfo-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37133/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37133/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37133&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/10/brennen-byrne-passwords-the-weakest-link-in-wordpress-security-3/\"><img alt=\"Brennen Byrne: Passwords – The Weakest Link in WordPress Security\" src=\"http://videos.videopress.com/zHKcIQfo/video-4a4789c1c2_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Aug 2014 15:02: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:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:24:\"Matt: Exploring Ubiquiti\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43979\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2014/08/exploring-ubiquiti/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5846:\"<p>I was looking for something else when I stumbled across <a href=\"http://www.amazon.com/dp/B00CPRVF5K/\">a little $95 router</a> that claimed it could do 1M packets per second, multi-WAN, was tiny, and had 80 5-star reviews. Huh? The reviews had some left-handed compliments (“for advanced users only”) but one mentioned getting hooked on the company’s other products as well. Next thing I know I’m looking at a <a href=\"http://amazon.com/dp/B004XXMUCQ/\">$67 access point</a> that has everyone raving about its range and extensibility. These things were too cheap — my assumption was it was a Chinese OEM like <a href=\"http://www.zyxel.com/\">Zyxel</a> that makes novel but ultimately not the best quality products.</p>\n<p>At this point I should confess I’m a bit of a consumer networking geek — it’s a hobby of mine. I really enjoy upgrading people’s routers so they have better range in parts of the house they didn’t before, getting them a <a href=\"http://www.amazon.com/gp/product/B007IMPMW4/\">DOCSIS 3.0 modem</a> so their connection is faster (and buying it so they don’t pay an exorbitant rental fee to their cable company), everything about <a href=\"http://sonos.com/\">Sonos</a>, <a href=\"http://www.sonos.com/airplay/\">hooking up an Airport Express to Sonos so you can Airplay things</a>, showing how you can set up two APs with the same SSID and clients will just connect to whatever they’re closest to, you don’t need each one to have a unique SSID, you can give the 2.4ghz and 5ghz networks the same SSID, Time Machine for backups, setting up failover internet with multiple connections or a USB LTE stick… I redo all my home stuff about once every 18 months, and then take the best of what I’ve learned and set up friends. I’m constantly updating firmware. My current best practice setup is <a href=\"http://www.sonos.com/\">Sonos</a> for all audio, usually streaming from <a href=\"http://spotify.com/\">Spotify</a> or <a href=\"http://siriusxm.com/\">SiriusXM</a>, a <a href=\"http://www.amazon.com/dp/B00I9RQOR4/\">Peplink Balance One router</a>, <a href=\"http://www.amazon.com/dp/B00F0DD0I6/\">Netgear Nighthawk R9000 access points</a> (though I liked the <a href=\"http://www.amazon.com/dp/B008ABOJKS/\">ASUS AC66U just as much</a>), if I need a switch I’ll go for <a href=\"http://www.amazon.com/gp/product/B004GHMU5Q/\">a higher-end managed one</a> that support spanning tree protocol (STP) properly because otherwise the way the Sonos does bridging can spaz out and overload your network, <a href=\"https://nest.com/\">Nest themostat and smoke detectors</a>, <a href=\"http://www.smartthings.com/\">Smartthings</a> for everything else. I’m <a href=\"http://august.com/\">waiting for August</a> for smart locks.</p>\n<p>At the <a href=\"http://automattic.com/\">Automattic</a> office we run <a href=\"https://meraki.cisco.com/\">Meraki</a>, which was pretty solid until we upgraded to the MR34 to get 802.11AC, but it’s expensive, and you need to subscribe to a per-device yearly license fee for everything to work. They also have <a href=\"https://meraki.cisco.com/blog/\">a great WP-powered blog</a>, and generally the cleanest site of anyone out there. That said, they’re impossible to buy without going through a terrible reseller, so I’ve never been able to justify using it at home.</p>\n<p>Back to Ubiquiti. First I come across their <a href=\"http://community.ubnt.com/\">forums/community sites</a>, which are ugly and sprawling and full of amazing info from people who do wireless deployments across all of the top companies like <a href=\"http://www.arubanetworks.com/\">Aruba</a>, <a href=\"http://www.ruckuswireless.com/\">Ruckus</a>, <a href=\"http://www.aerohive.com/\">Aerohive</a>, <a href=\"http://www.xirrus.com/\">Xirrus</a>, Meraki. You see people making builds for <a href=\"http://community.ubnt.com/t5/EdgeMAX/EdgeRouter-and-Xbox-LIVE/m-p/640951#M18782\">alternative UPNP packages</a> and that going into their core release months later. (Everything is Debian based, from what I can tell.) The company is based in San Jose that went public a few years ago, and is <a href=\"https://www.google.com/finance?q=NASDAQ%3AUBNT\">now worth about 3.7B</a>, and the founder (formerly of Apple) <a href=\"http://www.businessweek.com/articles/2013-04-24/robert-pera-the-kid-that-bought-the-grizzlies\">bought the Memphis Grizzlies</a>. They seem to have gotten their start with long-haul point-to-point wireless radios <a href=\"http://www.ubnt.com/airfiber/airfiber5/\">that can go dozens of kilometers</a>, which makes sense why their APs would be known for their range. You can buy direct from them, or like I mentioned most of their stuff is available on Amazon. And it’s inexpensive! Even Ubiquiti’s <a href=\"http://amazon.com/gp/product/B00D80J2XU/\">AC product, which is $300,</a> is much, much cheaper than the Meraki MR34 which costs $1,400 and requires a yearly license <em>or it stops working</em>.</p>\n<p>Plus they make these wonderfully cheesy product promo videos:</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>Normally I wouldn’t post about something until I’ve tried it in-person, but I was excited to find this whole new (to me) world of high-performance, reasonable-cost devices. John Pozazidides, long-time WP community member, did <a href=\"https://www.youtube.com/watch?v=vj_nlSWGkb8\">an overview of the Unifi devices on Youtube</a>. At Automattic our once-a-year grand meetup is coming up in Utah, and every year wireless is an issue, especially the first day or two. I ordered some of the Ubiquiti equipment to test when I’m in Houston next week, looking forward to playing around with it.</p>\n<p>Any Ma.tt readers with experience with any of these or big WLAN deployments?</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, 09 Aug 2014 19:02: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: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: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:74:\"WordPress.tv: Panel Discussion: How to Become a Better WordPress Developer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://wordpress.tv/2014/08/09/panel-discussion-how-to-become-a-better-wordpress-developer/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:696:\"<div id=\"v-r1C30AUX-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37123/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37123/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37123&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/09/panel-discussion-how-to-become-a-better-wordpress-developer/\"><img alt=\"Panel Discussion: How to Become a Better WordPress Developer\" src=\"http://videos.videopress.com/r1C30AUX/video-4cabba6b28_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Aug 2014 15:46:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:56:\"WordPress.tv: WordCamp Organizers’ Orientation Hangout\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=36435\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.tv/2014/08/09/wordcamp-organizers-orientation-hangout/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:662:\"<div id=\"v-6N4zGbcR-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36435/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36435/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36435&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/09/wordcamp-organizers-orientation-hangout/\"><img alt=\"WordCamp Organizers’ Orientation Hangout\" src=\"http://videos.videopress.com/6N4zGbcR/video-66135d2449_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Aug 2014 15:39: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:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:64:\"WordPress.tv: Kronda Adair: Planning a Successful 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.tv/2014/08/09/kronda-adair-planning-a-successful-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:676:\"<div id=\"v-v6aZbeBB-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37129/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37129/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37129&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/09/kronda-adair-planning-a-successful-wordpress-site/\"><img alt=\"Kronda Adair: Planning a Successful WordPress Site\" src=\"http://videos.videopress.com/v6aZbeBB/video-20b89e8534_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Aug 2014 15:13: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:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:67:\"WordPress.tv: How to add subtitles and translations to WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37740\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.tv/2014/08/08/how-to-add-subtitles-and-translations-to-wordpress-tv-videos/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:690:\"<div id=\"v-AhRoo4R8-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37740/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37740/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37740&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/08/how-to-add-subtitles-and-translations-to-wordpress-tv-videos/\"><img alt=\"How to add subtitles and translations to WordPress.tv\" src=\"http://videos.videopress.com/AhRoo4R8/video-6c101845a3_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Aug 2014 02:33:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:65:\"WPTavern: WordPress cdnjs Plugin Makes It Easy to Offload Scripts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=28012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:174:\"http://wptavern.com/wordpress-cdnjs-plugin-makes-it-easy-to-offload-scripts?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-cdnjs-plugin-makes-it-easy-to-offload-scripts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3173:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/wp-cdnjs.png\" rel=\"prettyphoto[28012]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/wp-cdnjs.png?resize=772%2C250\" alt=\"wp-cdnjs\" class=\"aligncenter size-full wp-image-28020\" /></a></p>\n<p>The <a href=\"http://cdnjs.com/\" target=\"_blank\">cdnjs</a> service is used by hundreds of thousands of websites to offload static files for performance. It’s an open source community-driven project that hosts a variety of different file types, including JavaScript, CSS, SWF, and images, thanks to help from sponsors UserApp and CloudFlare.</p>\n<p><a href=\"http://wordpress.org/plugins/wp-cdnjs/\" target=\"_blank\">WP cdnjs</a> is a new plugin that allows users to easily include any CSS or JavaScript library hosted at cdnjs. Once installed, you can search all cdnjs libraries directly within the plugin’s settings.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/search-cdnjs.png\" rel=\"prettyphoto[28012]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/search-cdnjs.png?resize=1025%2C586\" alt=\"search-cdnjs\" class=\"aligncenter size-full wp-image-28026\" /></a></p>\n<p>Once you locate a script you want to use, you have the option to choose secondary assets and select the minified/non-minified version. Scripts can be enabled and even re-ordered on the settings page.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/add-scripts.png\" rel=\"prettyphoto[28012]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/add-scripts.png?resize=1025%2C582\" alt=\"add-scripts\" class=\"aligncenter size-full wp-image-28028\" /></a></p>\n<p>The plugin adds the libraries using <a href=\"http://paulirish.com/2010/the-protocol-relative-url/\" target=\"_blank\">protocol-relative URLs</a> which means that it will support both http and https sites.</p>\n<p>Although the settings page looks very simple, WP cdnjs packs in a solid set of features:</p>\n<ul>\n<li>Builtin cdnjs.com search</li>\n<li>Reorder included files with an intuitive drag-and-drop interface</li>\n<li>Integrates seamlessly with WordPress (no developer up-sells or donation requests)</li>\n<li>Choose the secondary assets you want to include</li>\n<li>Selects the minified version or non-minified version</li>\n<li>Optionally select any additional assets you’d like</li>\n<li>Specify where to include files (header / footer)</li>\n<li>Options to globally or individually enable and disable included libraries</li>\n<li>SSL support\n</ul>\n<p>I tested the plugin and was impressed by how easy it was to find and use libraries. cdnjs is a useful and dependable service that generally operates with <a href=\"http://stats.pingdom.com/htbkuegtgycv\" target=\"_blank\">99.9% uptime</a>. This plugin makes it easy and convenient for WordPress admins take advantage of the free CDN. If you want to offload some commonly used scripts, chances are that you’ll find them at cdnjs. Download <a href=\"http://wordpress.org/plugins/wp-cdnjs/\" target=\"_blank\">WP cdnjs</a> from WordPress.org and start searching for libraries that you can offload to improve performance.</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 Aug 2014 23:55: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: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:64:\"WordPress.tv: How to upload your WordCamp videos to WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37731\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.tv/2014/08/08/how-to-upload-your-wordcamp-videos-to-wordpress-tv/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:677:\"<div id=\"v-88YRYWc5-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37731/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37731/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37731&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/08/how-to-upload-your-wordcamp-videos-to-wordpress-tv/\"><img alt=\"How to upload your WordCamp videos to WordPress.tv\" src=\"http://videos.videopress.com/88YRYWc5/video-d78811a062_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Aug 2014 22:56: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:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 14 Aug 2014 22:18:45 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"148973\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 14 Aug 2014 22:00:13 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20130911070210\";}','no'),(447,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1408097925','no'),(448,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1408054725','no'),(449,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1408097925','no'),(450,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Aug 2014 21:56: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:53:\"http://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29832@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s: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:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 10 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:20:\"MailPoet Newsletters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/plugins/wysija-newsletters/#post-32629\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Dec 2011 17:09:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"32629@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Send newsletters, post notifications or autoresponders from WordPress easily, and beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"MailPoet Staff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"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:54:\"http://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: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:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"arnee\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"The easiest, most effective way to secure WordPress in seconds.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Chris Wiegman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:24:\"Fast Secure Contact Form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/plugins/si-contact-form/#post-12636\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 27 Aug 2009 01:20:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"12636@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:\"An easy and powerful form builder that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Mike Challis\";s: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: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:47:\"http://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:63:\"Create a slick mobile WordPress website 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:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:45:\"http://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 14 Aug 2014 22:18:46 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Thu, 14 Aug 2014 22:31:44 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Thu, 14 Aug 2014 21:56:44 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20130911070210\";}','no'),(451,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1408097925','no'),(452,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1408054725','no'),(453,'_transient_timeout_plugin_slugs','1408209883','no'),(454,'_transient_plugin_slugs','a:6:{i:0;s:19:\"akismet/akismet.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:9:\"hello.php\";i:3;s:33:\"popular-widget/popular-widget.php\";i:4;s:55:\"ultimate-coming-soon-page/ultimate-coming-soon-page.php\";i:5;s:27:\"zilla-likes/zilla-likes.php\";}','no'),(455,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1408097925','no'),(456,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2014/08/wordpress-3-9-2/\'>WordPress 3.9.2 Security Release</a> <span class=\"rss-date\">August 6, 2014</span><div class=\"rssSummary\">WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately. This release fixes a possible denial of service issue in PHP’s XML processing, reported by Nir Goldshlager of the Salesforce.com Product Security Team. It was fixed by Michael Adams and Andrew Nacin of the WordPress [</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wptavern.com/foster-me-a-wordpress-plugin-to-help-shelter-animals-in-need?utm_source=rss&utm_medium=rss&utm_campaign=foster-me-a-wordpress-plugin-to-help-shelter-animals-in-need\' title=\'photo credit: puck90 – cc Everybody knows that animals need homes. There are far more pets available for adoption than there are people lining up to adopt them. Call your local animal shelter and they’ll probably tell you that they’re at or over capacity. That’s where foster homes can help to provide quality care for animals in the interim, until they find t\'>WPTavern: Foster Me: A WordPress Plugin to Help Shelter Animals in Need</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2014/08/14/tom-harness-and-leigh-caldwell-business-blogging-like-a-rock-star/\' title=\'\'>WordPress.tv: Tom Harness and Leigh Caldwell: Business Blogging Like a Rock Star</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2014/08/14/zoe-rooney-automating-theme-development-with-gulp-yeoman-and-friends/\' title=\'\'>WordPress.tv: Zoe Rooney: Automating Theme Development with Gulp, Yeoman, and Friends</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'http://wordpress.org/plugins/jetpack/\' class=\'dashboard-news-plugin-link\'>Jetpack by WordPress.com</a> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=jetpack&_wpnonce=4b01bbe13d&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Jetpack by WordPress.com\'>Install</a>)</span></li></ul></div>','no'),(468,'rewrite_rules','a:122:{s:15:\"gallery-view/?$\";s:27:\"index.php?post_type=gallery\";s:45:\"gallery-view/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=gallery&feed=$matches[1]\";s:40:\"gallery-view/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=gallery&feed=$matches[1]\";s:32:\"gallery-view/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=gallery&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:37:\"slideshow/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"slideshow/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"slideshow/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"slideshow/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"slideshow/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"slideshow/([^/]+)/trackback/?$\";s:36:\"index.php?slideshow=$matches[1]&tb=1\";s:38:\"slideshow/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?slideshow=$matches[1]&paged=$matches[2]\";s:45:\"slideshow/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?slideshow=$matches[1]&cpage=$matches[2]\";s:30:\"slideshow/([^/]+)(/[0-9]+)?/?$\";s:48:\"index.php?slideshow=$matches[1]&page=$matches[2]\";s:26:\"slideshow/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"slideshow/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"slideshow/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"slideshow/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"slideshow/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:61:\"slideshow_categories/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?slideshow_categories=$matches[1]&feed=$matches[2]\";s:56:\"slideshow_categories/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?slideshow_categories=$matches[1]&feed=$matches[2]\";s:49:\"slideshow_categories/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?slideshow_categories=$matches[1]&paged=$matches[2]\";s:31:\"slideshow_categories/([^/]+)/?$\";s:42:\"index.php?slideshow_categories=$matches[1]\";s:38:\"gallery-view/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"gallery-view/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"gallery-view/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"gallery-view/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"gallery-view/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"gallery-view/(.+?)/trackback/?$\";s:34:\"index.php?gallery=$matches[1]&tb=1\";s:51:\"gallery-view/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?gallery=$matches[1]&feed=$matches[2]\";s:46:\"gallery-view/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?gallery=$matches[1]&feed=$matches[2]\";s:39:\"gallery-view/(.+?)/page/?([0-9]{1,})/?$\";s:47:\"index.php?gallery=$matches[1]&paged=$matches[2]\";s:46:\"gallery-view/(.+?)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?gallery=$matches[1]&cpage=$matches[2]\";s:31:\"gallery-view/(.+?)(/[0-9]+)?/?$\";s:46:\"index.php?gallery=$matches[1]&page=$matches[2]\";s:59:\"gallery_categories/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?gallery_categories=$matches[1]&feed=$matches[2]\";s:54:\"gallery_categories/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?gallery_categories=$matches[1]&feed=$matches[2]\";s:47:\"gallery_categories/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?gallery_categories=$matches[1]&paged=$matches[2]\";s:29:\"gallery_categories/([^/]+)/?$\";s:40:\"index.php?gallery_categories=$matches[1]\";s:31:\"faq/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"faq/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"faq/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"faq/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"faq/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:24:\"faq/([^/]+)/trackback/?$\";s:30:\"index.php?faq=$matches[1]&tb=1\";s:32:\"faq/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&paged=$matches[2]\";s:39:\"faq/([^/]+)/comment-page-([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&cpage=$matches[2]\";s:24:\"faq/([^/]+)(/[0-9]+)?/?$\";s:42:\"index.php?faq=$matches[1]&page=$matches[2]\";s:20:\"faq/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\"faq/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\"faq/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"faq/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"faq/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:55:\"faq_categories/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?faq_categories=$matches[1]&feed=$matches[2]\";s:50:\"faq_categories/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?faq_categories=$matches[1]&feed=$matches[2]\";s:43:\"faq_categories/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?faq_categories=$matches[1]&paged=$matches[2]\";s:25:\"faq_categories/([^/]+)/?$\";s:36:\"index.php?faq_categories=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)(/[0-9]+)?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}','yes'),(469,'_transient_timeout_feed_9e53082436aed3c2daf5425e656d2952','1408117973','no'),(470,'_transient_feed_9e53082436aed3c2daf5425e656d2952','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"SeedProd\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"http://www.seedprod.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Professional WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Aug 2014 15:26:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:29:\"http://wordpress.org/?v=3.9.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"The easiest way to add SSL 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://www.seedprod.com/add-ssl-https-to-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://www.seedprod.com/add-ssl-https-to-wordpress-site/#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:\"Sun, 10 Aug 2014 14:00:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=763\";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:564:\"<p>Google recently announced that they will start giving a small SEO boost to sites that use https. I’ve seen several articles pop up that explain how to add a traditional cert that you buy to your site, but this can be complex and some host even charge more to add a SSL certificate to your hosting account. […]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/add-ssl-https-to-wordpress-site/\">The easiest way to add SSL to your WordPress Site</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s: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:3836:\"<p>Google recently <a href=\"http://googleonlinesecurity.blogspot.in/2014/08/https-as-ranking-signal_6.html#gpluscomments\" target=\"_blank\">announced</a> that they will start giving a small SEO boost to sites that use https. I’ve seen several articles pop up that explain how to add a traditional cert that you buy to your site, but this can be complex and some host even charge more to add a SSL certificate to your hosting account.</p>\n<p>I added SSL my WordPress site in a 5 minutes and I’m going to show you how I did it.</p>\n<p>I’m a huge fan of Cloudflare and I’ve written a past article on making your site <a title=\"How to make your WordPress Site Super Fast with Cheap Hosting\" href=\"http://www.seedprod.com/how-to-make-wordpress-fast/\" target=\"_blank\">crazy fast with Cloudflare</a>. In this article I’m going to explain how to use their Flexible SSL service to make your site secure (https). First I’ll preface this by saying Cloudflare currently only offers SSL on their paid plans, but they have <a href=\"http://blog.cloudflare.com/google-now-factoring-https-support-into-ranking-cloudflare-on-track-to-make-it-free-and-easy\" target=\"_blank\">announced</a> they plan to make it free for everyone to use soon.</p>\n<p>So the first thing you’ll currently need is a Cloudflare Pro account. It’s $20 a month for one domain and $5 per additional domain. On the Pro plan you also get a Web Application Firewall for WordPress and other apps which is huge plus. Also when you use SSL you can enable <a href=\"http://blog.cloudflare.com/introducing-spdy\" target=\"_blank\">SPDY</a> which make your site well, super speedy. Some might say this is expensive but I think it’s quite a deal. When you buy a cert you have to maintain it and reinstall it when you renew it. With Cloudflare there is nothing to maintain, nothing to install.</p>\n<p>After you get a Pro account just log into your Cloudflare dashboard and enable Flexible SSL.</p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/08/2014-08-10_09-32-24.png\"><img class=\"alignnone size-large wp-image-764\" src=\"https://www.seedprod.com/wp-content/uploads/2014/08/2014-08-10_09-32-24-600x348.png\" alt=\"Cloudflare Flexible SSL\" width=\"600\" height=\"348\" /></a></p>\n<p>Then log in to your WordPress site and install the <a href=\"http://wordpress.org/plugins/wordpress-https/\" target=\"_blank\">https</a> plugin. When you configure the plugin make sure to select ‘Yes’ on whether or not your site uses a proxy.</p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/08/2014-08-10_09-37-04.png\"><img class=\"alignnone size-large wp-image-765\" src=\"https://www.seedprod.com/wp-content/uploads/2014/08/2014-08-10_09-37-04-600x348.png\" alt=\"2014-08-10_09-37-04\" width=\"600\" height=\"348\" /></a></p>\n<p> </p>\n<p>You should be able to test your site now to see if https is working. Just type in https://yourdomain.com</p>\n<p>The only thing left to do now is redirect all non secure traffic (http) to your secure site (https) Again to do this I use Cloudflare page rules. This will do a 301 redirect on all non secure pages.</p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/08/2014-08-10_09-41-35.png\"><img class=\"alignnone size-large wp-image-766\" src=\"https://www.seedprod.com/wp-content/uploads/2014/08/2014-08-10_09-41-35-600x348.png\" alt=\"Cloudflare https page rule\" width=\"600\" height=\"348\" /></a></p>\n<p> </p>\n<p>That’s it! Your site is now secure and faster!</p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/add-ssl-https-to-wordpress-site/\">The easiest way to add SSL to your WordPress Site</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://www.seedprod.com/add-ssl-https-to-wordpress-site/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:\"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:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Coming Soon Page Inspiration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"http://www.seedprod.com/coming-soon-page-inspiration/\";s: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:62:\"http://www.seedprod.com/coming-soon-page-inspiration/#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, 01 May 2014 23:57:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Showcase\";s: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:11:\"inspiration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=693\";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:609:\"<p>Here’s one from juloot.co juloot interactive (http://juloot.co) gamification new media agencycelebrate it’s 3rd year birthday with a major web design upgrade. Use Coming Soon Pro features plus adding a QR code pic for quick smartphone scan link to their new English website www.gamifixation.co.il   And one more from theknackcapecod.com   See more coming soon pages  </p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/coming-soon-page-inspiration/\">Coming Soon Page Inspiration</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s: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:1598:\"<p>Here’s one from <span style=\"color: #2b2b2b;\">juloot.co</span></p>\n<p><span style=\"color: #222222;\">juloot interactive (</span><a style=\"color: #1155cc;\" href=\"http://juloot.co/\" target=\"_blank\">http://juloot.co</a><span style=\"color: #222222;\">) gamification new media agency</span><br style=\"color: #222222;\" /><span style=\"color: #222222;\">celebrate it’s 3rd year birthday with a major web design upgrade. Use Coming</span></p>\n<div class=\"im\" style=\"color: #500050;\">Soon Pro features plus adding a QR code pic for quick smartphone scan link</div>\n<p><span style=\"color: #222222;\">to their new English website www.gamifixation.co.il</span></p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/05/juloot.co_.png\"><img class=\"alignnone size-large wp-image-692\" src=\"https://www.seedprod.com/wp-content/uploads/2014/05/juloot.co_-600x444.png\" alt=\"juloot.co\" width=\"600\" height=\"444\" /></a></p>\n<p> </p>\n<p>And one more from theknackcapecod.com</p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/05/theknackcapecod.com_.png\"><img class=\"alignnone size-large wp-image-691\" src=\"https://www.seedprod.com/wp-content/uploads/2014/05/theknackcapecod.com_-600x441.png\" alt=\"theknackcapecod.com\" width=\"600\" height=\"441\" /></a></p>\n<p> </p>\n<p><a href=\"http://www.seedprod.com/category/showcase/\">See more coming soon pages</a></p>\n<p> </p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/coming-soon-page-inspiration/\">Coming Soon Page Inspiration</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:58:\"http://www.seedprod.com/coming-soon-page-inspiration/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:47:\"lesmainsdanslecambouis.com’s Coming Soon Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://www.seedprod.com/lesmainsdanslecambouis-coming-soon-page/\";s: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:73:\"http://www.seedprod.com/lesmainsdanslecambouis-coming-soon-page/#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, 12 Apr 2014 13:26:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Showcase\";s: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:11:\"inspiration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=682\";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:364:\"<p>Here’s another awesome coming soon page by Sébastien Lavalaye for lesmainsdanslecambouis.com. Great job!</p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/lesmainsdanslecambouis-coming-soon-page/\">lesmainsdanslecambouis.com’s Coming Soon Page</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s: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:754:\"<p>Here’s another awesome coming soon page by Sébastien Lavalaye</p>\n<p>for<a href=\"http://www.lesmainsdanslecambouis.com/\"> lesmainsdanslecambouis.com</a>. Great job!</p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/04/lesmainsdanslecambouis.com_.jpg\"><img class=\"alignnone size-large wp-image-683\" alt=\"lesmainsdanslecambouis.com\'s coming soon page\" src=\"https://www.seedprod.com/wp-content/uploads/2014/04/lesmainsdanslecambouis.com_-600x382.jpg\" width=\"600\" height=\"382\" /></a></p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/lesmainsdanslecambouis-coming-soon-page/\">lesmainsdanslecambouis.com’s Coming Soon Page</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:69:\"http://www.seedprod.com/lesmainsdanslecambouis-coming-soon-page/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: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:31:\"Coming Soon Pro 3.15.3 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://www.seedprod.com/coming-soon-pro-3-15-3-released/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://www.seedprod.com/coming-soon-pro-3-15-3-released/#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:\"Sun, 30 Mar 2014 19:37:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Promotions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=678\";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:512:\"<p>Coming Soon Pro 3.15.3 has been released. This is a bug fix release. Here are the details: 3.15.3 – 3/30/14 Fixed: Countdown Format You’ll receive an autoupdate message soon if you have entered your license key. You can also download the plugin from http://www.seedprod.com/members</p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/coming-soon-pro-3-15-3-released/\">Coming Soon Pro 3.15.3 Released</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s: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:608:\"<p>Coming Soon Pro 3.15.3 has been released. This is a bug fix release. Here are the details:</p>\n<p>3.15.3 – 3/30/14</p>\n<ul>\n<li>Fixed: Countdown Format</li>\n</ul>\n<p>You’ll receive an autoupdate message soon if you have entered your license key. You can also download the plugin from <a href=\"http://www.seedprod.com/members\" target=\"_blank\">http://www.seedprod.com/members</a></p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/coming-soon-pro-3-15-3-released/\">Coming Soon Pro 3.15.3 Released</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://www.seedprod.com/coming-soon-pro-3-15-3-released/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:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"andrearobb.com’s Coming Soon Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.seedprod.com/andrearobbcoms-coming-page/\";s: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:\"http://www.seedprod.com/andrearobbcoms-coming-page/#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:\"Sun, 30 Mar 2014 18:20:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Showcase\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=676\";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:295:\"<p>Here’s another great coming soon page by http://andrearobb.com/</p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/andrearobbcoms-coming-page/\">andrearobb.com’s Coming Soon Page</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s: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:627:\"<p>Here’s another great coming soon page by http://andrearobb.com/</p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/03/andrearobb.com-coming-soon-page.jpg\"><img class=\"alignnone size-large wp-image-677\" alt=\"http://andrearobb.com/ Coming Soon Page\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/andrearobb.com-coming-soon-page-600x378.jpg\" width=\"600\" height=\"378\" /></a></p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/andrearobbcoms-coming-page/\">andrearobb.com’s Coming Soon Page</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:\"http://www.seedprod.com/andrearobbcoms-coming-page/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:34:\"Coming Soon Pages by Steam Studios\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://www.seedprod.com/coming-soon-page-steam-studios/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://www.seedprod.com/coming-soon-page-steam-studios/#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, 22 Mar 2014 00:00: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Showcase\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=667\";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:331:\"<p>Here are a few coming soon pages created by Steam Studios using the Coming Soon Pro plugin for WordPress.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/coming-soon-page-steam-studios/\">Coming Soon Pages by Steam Studios</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s: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:1594:\"<p>Here are a few coming soon pages created by Steam Studios using the Coming Soon Pro plugin for WordPress.</p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/03/2014-03-21_19-53-52.jpg\"><img class=\"alignnone size-large wp-image-668\" alt=\"http://oceanlandequipment.com Coming Soon page\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/2014-03-21_19-53-52-600x404.jpg\" width=\"600\" height=\"404\" /></a></p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/03/2014-03-21_19-55-12.jpg\"><img class=\"alignnone size-large wp-image-671\" alt=\"http://www.heartofawomanspa.com Coming Soon page\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/2014-03-21_19-55-12-600x372.jpg\" width=\"600\" height=\"372\" /></a></p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/03/2014-03-21_19-53-17.jpg\"><img class=\"alignnone size-large wp-image-670\" alt=\"http://www.cadlimited.com Coming Soon Page\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/2014-03-21_19-53-17-600x404.jpg\" width=\"600\" height=\"404\" /></a></p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/03/2014-03-21_19-54-17.jpg\"><img class=\"alignnone size-large wp-image-669\" alt=\"http://www.taylorchemicalgroup.com Coming Soon Page\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/2014-03-21_19-54-17-600x404.jpg\" width=\"600\" height=\"404\" /></a></p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/coming-soon-page-steam-studios/\">Coming Soon Pages by Steam Studios</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:60:\"http://www.seedprod.com/coming-soon-page-steam-studios/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Soukly Coming Soon Page – Showcase\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://www.seedprod.com/soukly-coming-soon-page/\";s: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:57:\"http://www.seedprod.com/soukly-coming-soon-page/#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, 15 Mar 2014 18:19: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:1:{i:0;a:5:{s:4:\"data\";s:8:\"Showcase\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=663\";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:264:\"<p>http://soukly.com/ Coming Soon Page</p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/soukly-coming-soon-page/\">Soukly Coming Soon Page – Showcase</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s: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:746:\"<p><a href=\"http://soukly.com/\" target=\"_blank\" rel=\"nofollow\">http://soukly.com/</a> Coming Soon Page</p>\n<div id=\"attachment_664\" style=\"width: 610px\" class=\"wp-caption alignnone\"><a href=\"https://www.seedprod.com/wp-content/uploads/2014/03/soukly-coming-soon-page.jpg\"><img class=\"size-large wp-image-664\" alt=\"Soukly Coming Soon Page\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/soukly-coming-soon-page-600x366.jpg\" width=\"600\" height=\"366\" /></a><p class=\"wp-caption-text\">Soukly Coming Soon Page</p></div>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/soukly-coming-soon-page/\">Soukly Coming Soon Page – Showcase</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:53:\"http://www.seedprod.com/soukly-coming-soon-page/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:\"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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"How to make your WordPress Site Super Fast with Cheap Hosting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://www.seedprod.com/how-to-make-wordpress-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://www.seedprod.com/how-to-make-wordpress-fast/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Mar 2014 20:06: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:4:\"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:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"How To\";s: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:10:\"CloudFlare\";s: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:5:{s:4:\"data\";s:11:\"performance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=654\";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:555:\"<p>WordPress hosting comes in all shapes and sizes and there are lots of players in the market. Generally how things works is the more you pay for hosting the faster your site is. At least this has been my experience. So a WordPress site hosted on GoDaddy or some other shared host is typically super […]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/how-to-make-wordpress-fast/\">How to make your WordPress Site Super Fast with Cheap Hosting</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s: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:7484:\"<p>WordPress hosting comes in all shapes and sizes and there are lots of players in the market. Generally how things works is the more you pay for hosting the faster your site is. At least this has been my experience.</p>\n<p>So a WordPress site hosted on <a class=\"thirstylink\" href=\"http://www.seedprod.com/go/godaddy/\" target=\"_blank\" rel=\"nofollow\">GoDaddy</a> or some other shared host is typically super slow. Where as a site hosted on <a class=\"thirstylink\" href=\"http://www.seedprod.com/go/wp-engine/\" target=\"_blank\" rel=\"nofollow\">WPEngine</a> or another managed host are super fast. I’m going to show you how to get those super fast speeds on a cheap WordPress hosting plan.</p>\n<h3>I Feel the Need for Speed</h3>\n<p>We all know that adding <a href=\"http://cloudflare.com\" target=\"_blank\">CloudFlare</a> can speed up your site. The way it works is CloudFlare acts as a proxy and stores all your images and other assets and serves them from a global content distribution network. The actual request for the page however still hits your hosting provider and has to be processed. On a cheap host this is usually the slow part. You can add a caching plugin and that can help a bit, but there’s actually a cooler trick you can use with <a href=\"http://cloudflare.com\" target=\"_blank\">CloudFlare</a> to have your website’s page html be server from CloudFlare’s CDN making it blazing fast.</p>\n<p>Here’s a video compares of 4 different hosting provider.</p>\n<p>org = My live site hosted on WPEngine<br />\ncheap = GoDaddy’s Shared Hosting Plan<br />\ndo = DigitalOcean’s $5 VPS<br />\nmanaged = GoDaddy’s Managed WordPress</p>\n<p><span class=\'embed-youtube\' style=\'text-align:center; display: block;\'><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/5RcNNbZG0PQ?version=3&rel=0&fs=1&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' frameborder=\'0\'></iframe></span></p>\n<p>As you can see the cheap GoDaddy hosting plan is the slowest, which is to be expected. All the other ones load just over 2 seconds.</p>\n<h3>Captain Prepare for Warp Speed</h3>\n<p>To speed things up on the cheap hosting we are going to use CloudFlare to host our pages html and completely bypass our cheap server. How do we do this?</p>\n<p>We tell CloudFlare to ‘<a href=\"https://support.cloudflare.com/hc/en-us/articles/200172366-How-do-I-cache-everything-on-a-URL-\" target=\"_blank\">Cache Everything</a>‘ and use ‘<a href=\"http://blog.cloudflare.com/introducing-pagerules-fine-grained-feature-co\" target=\"_blank\">Page Rules</a>‘ to bypass the cache for the WordPress admin section. You’ll need 3 pages rules to achieve this and that just happens to be how many come with the CloudFlare free plan.</p>\n<p>Here’s how to set up the rules after your login to CloudFlare.</p>\n<p> </p>\n<p>The 1st rule you want to add is to tell CloudFlare to <strong>bypass</strong> the <strong>wp-login.php</strong> page so you can log in.</p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/03/rule1.png\"><img class=\"alignnone size-large wp-image-661\" alt=\"rule1\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/rule1-600x700.png\" width=\"600\" height=\"700\" /></a></p>\n<p> </p>\n<p>The second rule tells CloudFlare to <strong>bypass</strong> the <strong>wp-admin</strong>.</p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/03/rule2.png\"><img class=\"alignnone size-large wp-image-659\" alt=\"rule2\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/rule2-600x767.png\" width=\"600\" height=\"767\" /></a></p>\n<p>The last rule tells CloudFlare to <strong>cache everything for 1 hour</strong> . You can set this higher.</p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/03/rule3.png\"><img class=\"alignnone size-large wp-image-660\" alt=\"rule3\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/rule3-600x780.png\" width=\"600\" height=\"780\" /></a></p>\n<p>Note the order this is import because rules are processed in order.<img class=\"alignnone size-large wp-image-657\" style=\"line-height: 1.5em;\" alt=\"2014-03-11_15-23-16\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/2014-03-11_15-23-16-600x172.png\" width=\"600\" height=\"172\" /><span style=\"line-height: 1.5em;\"><br />\n</span></p>\n<p>After you set this up you can then visit your site check to see if it’s being server from CloudFlare by checking the headers using Chrome’s Dev tools. This 1st time will likely be a miss, after that you should see a hit in the headers like this.</p>\n<p><a href=\"https://www.seedprod.com/wp-content/uploads/2014/03/2014-03-11_15-28-34.png\"><img class=\"alignnone size-large wp-image-658\" alt=\"2014-03-11_15-28-34\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/2014-03-11_15-28-34-600x457.png\" width=\"600\" height=\"457\" /></a></p>\n<p> </p>\n<p>Congrats you now have a super fast site on a cheap host!</p>\n<p>See the results:</p>\n<p><span class=\'embed-youtube\' style=\'text-align:center; display: block;\'><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/TWpdlw0VOEk?version=3&rel=0&fs=1&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' frameborder=\'0\'></iframe></span></p>\n<p>As you can see the cheap GoDaddy hosting is now just as fast.</p>\n<p>Here’s a head to head comparison to <a class=\"thirstylink\" href=\"http://www.seedprod.com/go/wp-engine/\" target=\"_blank\" rel=\"nofollow\">WPEngine</a> against <a class=\"thirstylink\" href=\"http://www.seedprod.com/go/godaddy/\" target=\"_blank\" rel=\"nofollow\">GoDaddy</a> with <a href=\"http://cloudflare.com\" target=\"_blank\">CloudFlare</a> Cache Everything</p>\n<p><span class=\'embed-youtube\' style=\'text-align:center; display: block;\'><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/ZCiCK2po1JM?version=3&rel=0&fs=1&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' frameborder=\'0\'></iframe></span></p>\n<h3>Whoa, Whoa, Whoa Stop the Clock</h3>\n<p>So this is great but now you are probably asking “What’s the catch?” We’ll you’re right there is one. So now that all your content is being cached what happens if someone adds a comment or something else changes on your site. We don’t want to have to keep going in and clearing CloudFlare’s cache.</p>\n<p>No worries, the mighty WordPress plugin system comes to the rescue. Use <a href=\"http://wordpress.org/plugins/disqus-comment-system/\" target=\"_blank\">Disqus</a> to offload comments and this <a href=\"http://wordpress.org/plugins/cloudflare-cache-purge/\" target=\"_blank\">nifty plugin</a> to automagically purge CloudFlare’s cache when you make a post or page change in WordPress.</p>\n<p>Do not use this method for a WordPress e-commerce site since there are so many parts of the site that need to be dynamic. Also I’m not telling you to drop your awesome managed host in favor of this. But if the use case is right then this makes cheap hosting for WordPress site super fast!</p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/how-to-make-wordpress-fast/\">How to make your WordPress Site Super Fast with Cheap Hosting</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:\"http://www.seedprod.com/how-to-make-wordpress-fast/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:\"6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Mia Bella Occhi’s Coming Soon Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://www.seedprod.com/mia-bella-occhis-coming-soon-page/\";s: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:67:\"http://www.seedprod.com/mia-bella-occhis-coming-soon-page/#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, 06 Mar 2014 17: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Showcase\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=650\";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:\"<p>Check out this awesome Coming Soon Page by one of our customers. http://www.miabellaocchi.com/</p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/mia-bella-occhis-coming-soon-page/\">Mia Bella Occhi’s Coming Soon Page</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s: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:849:\"<p>Check out this awesome Coming Soon Page by one of our customers. <a href=\"http://www.miabellaocchi.com/\" target=\"_blank\">http://www.miabellaocchi.com/</a></p>\n<div id=\"attachment_653\" style=\"width: 610px\" class=\"wp-caption alignnone\"><a href=\"https://www.seedprod.com/wp-content/uploads/2014/03/miabellaocchi-coming-soon-page.png\"><img class=\"size-large wp-image-653\" alt=\"Mia Bella Occhi\'s Coming Soon Page\" src=\"https://www.seedprod.com/wp-content/uploads/2014/03/miabellaocchi-coming-soon-page-600x432.png\" width=\"600\" height=\"432\" /></a><p class=\"wp-caption-text\">Mia Bella Occhi’s Coming Soon Page</p></div>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/mia-bella-occhis-coming-soon-page/\">Mia Bella Occhi’s Coming Soon Page</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:63:\"http://www.seedprod.com/mia-bella-occhis-coming-soon-page/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Coming Soon Pro 3.15.2 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://www.seedprod.com/coming-soon-pro-3-15-2-released/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://www.seedprod.com/coming-soon-pro-3-15-2-released/#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, 13 Feb 2014 15:09: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Release Notes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.seedprod.com/?p=645\";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:590:\"<p>Coming Soon Pro 3.15.2 has been released. This is a bug fix release. Here are the details: 3.15.2 – 2/3/14 Fixed: Email notification when database is selected Fixed: Fixed compatibility for shortcodes Fixed: Issue with MailChimp not showing tracking stats to user. Fixed: Javascript errors on Thank You page cause description to show. You’ll receive […]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/coming-soon-pro-3-15-2-released/\">Coming Soon Pro 3.15.2 Released</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Turner\";s: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:946:\"<p>Coming Soon Pro 3.15.2 has been released. This is a bug fix release. Here are the details:</p>\n<p>3.15.2 – 2/3/14</p>\n<ul>\n<li>Fixed: Email notification when database is selected</li>\n<li>Fixed: Fixed compatibility for shortcodes</li>\n<li>Fixed: Issue with MailChimp not showing tracking stats to user.</li>\n<li>Fixed: Javascript errors on Thank You page cause description to show.</li>\n</ul>\n<p><span style=\"line-height: 1.428571429;\">You’ll receive an autoupdate message soon if you have entered your license key. You can also download the plugin from </span><a style=\"background-color: #ffffff; line-height: 1.428571429;\" href=\"http://www.seedprod.com/members\" target=\"_blank\">http://www.seedprod.com/members</a></p>\n<p>The post <a rel=\"nofollow\" href=\"http://www.seedprod.com/coming-soon-pro-3-15-2-released/\">Coming Soon Pro 3.15.2 Released</a> appeared first on <a rel=\"nofollow\" href=\"http://www.seedprod.com\">SeedProd</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://www.seedprod.com/coming-soon-pro-3-15-2-released/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:29:\"http://www.seedprod.com/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:12:{s:6:\"server\";s:16:\"cloudflare-nginx\";s:4:\"date\";s:29:\"Fri, 15 Aug 2014 03:52:53 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:12:\"x-powered-by\";s:20:\"PHP/5.5.3-1ubuntu2.3\";s:15:\"x-cf-powered-by\";s:9:\"WP 1.3.14\";s:10:\"x-pingback\";s:34:\"http://www.seedprod.com/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Tue, 12 Aug 2014 15:26:55 GMT\";s:12:\"x-robots-tag\";s:14:\"noindex,follow\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:6:\"cf-ray\";s:20:\"15a2712343f607bb-MIA\";s:16:\"content-encoding\";s:4:\"gzip\";}s:5:\"build\";s:14:\"20130911070210\";}','no'),(471,'_transient_timeout_feed_mod_9e53082436aed3c2daf5425e656d2952','1408117973','no'),(472,'_transient_feed_mod_9e53082436aed3c2daf5425e656d2952','1408074773','no'),(495,'widget_popular-widget','a:2:{i:2;a:22:{s:5:\"title\";s:10:\"Mais lidos\";s:8:\"meta_key\";s:14:\"_popular_views\";s:8:\"lastdays\";i:90;s:7:\"userids\";s:0:\"\";s:5:\"thumb\";s:2:\"on\";s:7:\"excerpt\";s:2:\"on\";s:7:\"imgsize\";s:9:\"thumbnail\";s:5:\"limit\";i:5;s:7:\"tlength\";i:20;s:13:\"excerptlength\";i:20;s:9:\"calculate\";s:5:\"views\";s:4:\"cats\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"posttypes\";a:1:{s:4:\"post\";s:2:\"on\";}s:8:\"norecent\";s:2:\"on\";s:5:\"order\";a:5:{s:6:\"recent\";s:12:\"Recent Posts\";s:8:\"comments\";s:15:\"Recent Comments\";s:9:\"commented\";s:14:\"Most Commented\";s:6:\"viewed\";s:10:\"Mais lidos\";s:4:\"tags\";s:4:\"Tags\";}s:10:\"nocomments\";s:2:\"on\";s:11:\"nocommented\";s:2:\"on\";s:6:\"notags\";s:2:\"on\";s:9:\"dw_logged\";s:0:\"\";s:10:\"dw_include\";i:0;s:9:\"other_ids\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(499,'category_children','a:0:{}','yes'),(504,'_transient_timeout_seedprod_fonts','1408309257','no'),(505,'_transient_seedprod_fonts','s:22332:\"a:638:{s:7:\"empty_0\";s:13:\"Select a Font\";s:10:\"optgroup_1\";s:12:\"System Fonts\";s:6:\"_arial\";s:5:\"Arial\";s:12:\"_arial_black\";s:11:\"Arial Black\";s:8:\"_georgia\";s:7:\"Georgia\";s:15:\"_helvetica_neue\";s:14:\"Helvetica Neue\";s:7:\"_impact\";s:6:\"Impact\";s:7:\"_lucida\";s:13:\"Lucida Grande\";s:9:\"_palatino\";s:8:\"Palatino\";s:7:\"_tahoma\";s:6:\"Tahoma\";s:6:\"_times\";s:15:\"Times New Roman\";s:10:\"_trebuchet\";s:9:\"Trebuchet\";s:8:\"_verdana\";s:7:\"Verdana\";s:13:\"optgroupend_1\";s:0:\"\";s:10:\"optgroup_2\";s:12:\"Google Fonts\";s:7:\"ABeeZee\";s:7:\"ABeeZee\";s:4:\"Abel\";s:4:\"Abel\";s:13:\"Abril+Fatface\";s:13:\"Abril Fatface\";s:8:\"Aclonica\";s:8:\"Aclonica\";s:4:\"Acme\";s:4:\"Acme\";s:5:\"Actor\";s:5:\"Actor\";s:7:\"Adamina\";s:7:\"Adamina\";s:10:\"Advent+Pro\";s:10:\"Advent Pro\";s:15:\"Aguafina+Script\";s:15:\"Aguafina Script\";s:7:\"Akronim\";s:7:\"Akronim\";s:6:\"Aladin\";s:6:\"Aladin\";s:7:\"Aldrich\";s:7:\"Aldrich\";s:8:\"Alegreya\";s:8:\"Alegreya\";s:11:\"Alegreya+SC\";s:11:\"Alegreya SC\";s:10:\"Alex+Brush\";s:10:\"Alex Brush\";s:13:\"Alfa+Slab+One\";s:13:\"Alfa Slab One\";s:5:\"Alice\";s:5:\"Alice\";s:5:\"Alike\";s:5:\"Alike\";s:13:\"Alike+Angular\";s:13:\"Alike Angular\";s:5:\"Allan\";s:5:\"Allan\";s:7:\"Allerta\";s:7:\"Allerta\";s:15:\"Allerta+Stencil\";s:15:\"Allerta Stencil\";s:6:\"Allura\";s:6:\"Allura\";s:8:\"Almendra\";s:8:\"Almendra\";s:16:\"Almendra+Display\";s:16:\"Almendra Display\";s:11:\"Almendra+SC\";s:11:\"Almendra SC\";s:8:\"Amarante\";s:8:\"Amarante\";s:8:\"Amaranth\";s:8:\"Amaranth\";s:9:\"Amatic+SC\";s:9:\"Amatic SC\";s:9:\"Amethysta\";s:9:\"Amethysta\";s:7:\"Anaheim\";s:7:\"Anaheim\";s:6:\"Andada\";s:6:\"Andada\";s:6:\"Andika\";s:6:\"Andika\";s:24:\"Annie+Use+Your+Telescope\";s:24:\"Annie Use Your Telescope\";s:13:\"Anonymous+Pro\";s:13:\"Anonymous Pro\";s:5:\"Antic\";s:5:\"Antic\";s:12:\"Antic+Didone\";s:12:\"Antic Didone\";s:10:\"Antic+Slab\";s:10:\"Antic Slab\";s:5:\"Anton\";s:5:\"Anton\";s:6:\"Arapey\";s:6:\"Arapey\";s:7:\"Arbutus\";s:7:\"Arbutus\";s:12:\"Arbutus+Slab\";s:12:\"Arbutus Slab\";s:19:\"Architects+Daughter\";s:19:\"Architects Daughter\";s:13:\"Archivo+Black\";s:13:\"Archivo Black\";s:14:\"Archivo+Narrow\";s:14:\"Archivo Narrow\";s:5:\"Arimo\";s:5:\"Arimo\";s:8:\"Arizonia\";s:8:\"Arizonia\";s:6:\"Armata\";s:6:\"Armata\";s:8:\"Artifika\";s:8:\"Artifika\";s:4:\"Arvo\";s:4:\"Arvo\";s:4:\"Asap\";s:4:\"Asap\";s:5:\"Asset\";s:5:\"Asset\";s:7:\"Astloch\";s:7:\"Astloch\";s:4:\"Asul\";s:4:\"Asul\";s:10:\"Atomic+Age\";s:10:\"Atomic Age\";s:6:\"Aubrey\";s:6:\"Aubrey\";s:9:\"Audiowide\";s:9:\"Audiowide\";s:10:\"Autour+One\";s:10:\"Autour One\";s:7:\"Average\";s:7:\"Average\";s:12:\"Average+Sans\";s:12:\"Average Sans\";s:19:\"Averia+Gruesa+Libre\";s:19:\"Averia Gruesa Libre\";s:12:\"Averia+Libre\";s:12:\"Averia Libre\";s:17:\"Averia+Sans+Libre\";s:17:\"Averia Sans Libre\";s:18:\"Averia+Serif+Libre\";s:18:\"Averia Serif Libre\";s:10:\"Bad+Script\";s:10:\"Bad Script\";s:9:\"Balthazar\";s:9:\"Balthazar\";s:7:\"Bangers\";s:7:\"Bangers\";s:5:\"Basic\";s:5:\"Basic\";s:7:\"Baumans\";s:7:\"Baumans\";s:8:\"Belgrano\";s:8:\"Belgrano\";s:7:\"Belleza\";s:7:\"Belleza\";s:9:\"BenchNine\";s:9:\"BenchNine\";s:7:\"Bentham\";s:7:\"Bentham\";s:15:\"Berkshire+Swash\";s:15:\"Berkshire Swash\";s:5:\"Bevan\";s:5:\"Bevan\";s:13:\"Bigelow+Rules\";s:13:\"Bigelow Rules\";s:11:\"Bigshot+One\";s:11:\"Bigshot One\";s:5:\"Bilbo\";s:5:\"Bilbo\";s:16:\"Bilbo+Swash+Caps\";s:16:\"Bilbo Swash Caps\";s:6:\"Bitter\";s:6:\"Bitter\";s:13:\"Black+Ops+One\";s:13:\"Black Ops One\";s:6:\"Bonbon\";s:6:\"Bonbon\";s:8:\"Boogaloo\";s:8:\"Boogaloo\";s:10:\"Bowlby+One\";s:10:\"Bowlby One\";s:13:\"Bowlby+One+SC\";s:13:\"Bowlby One SC\";s:7:\"Brawler\";s:7:\"Brawler\";s:10:\"Bree+Serif\";s:10:\"Bree Serif\";s:14:\"Bubblegum+Sans\";s:14:\"Bubblegum Sans\";s:11:\"Bubbler+One\";s:11:\"Bubbler One\";s:4:\"Buda\";s:4:\"Buda\";s:7:\"Buenard\";s:7:\"Buenard\";s:10:\"Butcherman\";s:10:\"Butcherman\";s:14:\"Butterfly+Kids\";s:14:\"Butterfly Kids\";s:5:\"Cabin\";s:5:\"Cabin\";s:15:\"Cabin+Condensed\";s:15:\"Cabin Condensed\";s:12:\"Cabin+Sketch\";s:12:\"Cabin Sketch\";s:15:\"Caesar+Dressing\";s:15:\"Caesar Dressing\";s:10:\"Cagliostro\";s:10:\"Cagliostro\";s:14:\"Calligraffitti\";s:14:\"Calligraffitti\";s:5:\"Cambo\";s:5:\"Cambo\";s:6:\"Candal\";s:6:\"Candal\";s:9:\"Cantarell\";s:9:\"Cantarell\";s:11:\"Cantata+One\";s:11:\"Cantata One\";s:11:\"Cantora+One\";s:11:\"Cantora One\";s:8:\"Capriola\";s:8:\"Capriola\";s:5:\"Cardo\";s:5:\"Cardo\";s:5:\"Carme\";s:5:\"Carme\";s:14:\"Carrois+Gothic\";s:14:\"Carrois Gothic\";s:17:\"Carrois+Gothic+SC\";s:17:\"Carrois Gothic SC\";s:10:\"Carter+One\";s:10:\"Carter One\";s:6:\"Caudex\";s:6:\"Caudex\";s:18:\"Cedarville+Cursive\";s:18:\"Cedarville Cursive\";s:11:\"Ceviche+One\";s:11:\"Ceviche One\";s:10:\"Changa+One\";s:10:\"Changa One\";s:6:\"Chango\";s:6:\"Chango\";s:18:\"Chau+Philomene+One\";s:18:\"Chau Philomene One\";s:9:\"Chela+One\";s:9:\"Chela One\";s:14:\"Chelsea+Market\";s:14:\"Chelsea Market\";s:17:\"Cherry+Cream+Soda\";s:17:\"Cherry Cream Soda\";s:12:\"Cherry+Swash\";s:12:\"Cherry Swash\";s:5:\"Chewy\";s:5:\"Chewy\";s:6:\"Chicle\";s:6:\"Chicle\";s:5:\"Chivo\";s:5:\"Chivo\";s:6:\"Cinzel\";s:6:\"Cinzel\";s:17:\"Cinzel+Decorative\";s:17:\"Cinzel Decorative\";s:14:\"Clicker+Script\";s:14:\"Clicker Script\";s:4:\"Coda\";s:4:\"Coda\";s:12:\"Coda+Caption\";s:12:\"Coda Caption\";s:8:\"Codystar\";s:8:\"Codystar\";s:5:\"Combo\";s:5:\"Combo\";s:9:\"Comfortaa\";s:9:\"Comfortaa\";s:11:\"Coming+Soon\";s:11:\"Coming Soon\";s:11:\"Concert+One\";s:11:\"Concert One\";s:9:\"Condiment\";s:9:\"Condiment\";s:12:\"Contrail+One\";s:12:\"Contrail One\";s:11:\"Convergence\";s:11:\"Convergence\";s:6:\"Cookie\";s:6:\"Cookie\";s:5:\"Copse\";s:5:\"Copse\";s:6:\"Corben\";s:6:\"Corben\";s:9:\"Courgette\";s:9:\"Courgette\";s:7:\"Cousine\";s:7:\"Cousine\";s:8:\"Coustard\";s:8:\"Coustard\";s:21:\"Covered+By+Your+Grace\";s:21:\"Covered By Your Grace\";s:12:\"Crafty+Girls\";s:12:\"Crafty Girls\";s:9:\"Creepster\";s:9:\"Creepster\";s:11:\"Crete+Round\";s:11:\"Crete Round\";s:12:\"Crimson+Text\";s:12:\"Crimson Text\";s:13:\"Croissant+One\";s:13:\"Croissant One\";s:7:\"Crushed\";s:7:\"Crushed\";s:6:\"Cuprum\";s:6:\"Cuprum\";s:6:\"Cutive\";s:6:\"Cutive\";s:11:\"Cutive+Mono\";s:11:\"Cutive Mono\";s:6:\"Damion\";s:6:\"Damion\";s:14:\"Dancing+Script\";s:14:\"Dancing Script\";s:20:\"Dawning+of+a+New+Day\";s:20:\"Dawning of a New Day\";s:8:\"Days+One\";s:8:\"Days One\";s:6:\"Delius\";s:6:\"Delius\";s:17:\"Delius+Swash+Caps\";s:17:\"Delius Swash Caps\";s:14:\"Delius+Unicase\";s:14:\"Delius Unicase\";s:13:\"Della+Respira\";s:13:\"Della Respira\";s:8:\"Denk+One\";s:8:\"Denk One\";s:10:\"Devonshire\";s:10:\"Devonshire\";s:13:\"Didact+Gothic\";s:13:\"Didact Gothic\";s:9:\"Diplomata\";s:9:\"Diplomata\";s:12:\"Diplomata+SC\";s:12:\"Diplomata SC\";s:6:\"Domine\";s:6:\"Domine\";s:11:\"Donegal+One\";s:11:\"Donegal One\";s:10:\"Doppio+One\";s:10:\"Doppio One\";s:5:\"Dorsa\";s:5:\"Dorsa\";s:5:\"Dosis\";s:5:\"Dosis\";s:11:\"Dr+Sugiyama\";s:11:\"Dr Sugiyama\";s:10:\"Droid+Sans\";s:10:\"Droid Sans\";s:15:\"Droid+Sans+Mono\";s:15:\"Droid Sans Mono\";s:11:\"Droid+Serif\";s:11:\"Droid Serif\";s:9:\"Duru+Sans\";s:9:\"Duru Sans\";s:9:\"Dynalight\";s:9:\"Dynalight\";s:11:\"EB+Garamond\";s:11:\"EB Garamond\";s:10:\"Eagle+Lake\";s:10:\"Eagle Lake\";s:5:\"Eater\";s:5:\"Eater\";s:9:\"Economica\";s:9:\"Economica\";s:11:\"Electrolize\";s:11:\"Electrolize\";s:5:\"Elsie\";s:5:\"Elsie\";s:16:\"Elsie+Swash+Caps\";s:16:\"Elsie Swash Caps\";s:11:\"Emblema+One\";s:11:\"Emblema One\";s:12:\"Emilys+Candy\";s:12:\"Emilys Candy\";s:10:\"Engagement\";s:10:\"Engagement\";s:9:\"Englebert\";s:9:\"Englebert\";s:9:\"Enriqueta\";s:9:\"Enriqueta\";s:9:\"Erica+One\";s:9:\"Erica One\";s:7:\"Esteban\";s:7:\"Esteban\";s:15:\"Euphoria+Script\";s:15:\"Euphoria Script\";s:5:\"Ewert\";s:5:\"Ewert\";s:3:\"Exo\";s:3:\"Exo\";s:13:\"Expletus+Sans\";s:13:\"Expletus Sans\";s:12:\"Fanwood+Text\";s:12:\"Fanwood Text\";s:9:\"Fascinate\";s:9:\"Fascinate\";s:16:\"Fascinate+Inline\";s:16:\"Fascinate Inline\";s:10:\"Faster+One\";s:10:\"Faster One\";s:8:\"Federant\";s:8:\"Federant\";s:6:\"Federo\";s:6:\"Federo\";s:6:\"Felipa\";s:6:\"Felipa\";s:5:\"Fenix\";s:5:\"Fenix\";s:12:\"Finger+Paint\";s:12:\"Finger Paint\";s:10:\"Fjalla+One\";s:10:\"Fjalla One\";s:9:\"Fjord+One\";s:9:\"Fjord One\";s:8:\"Flamenco\";s:8:\"Flamenco\";s:7:\"Flavors\";s:7:\"Flavors\";s:10:\"Fondamento\";s:10:\"Fondamento\";s:16:\"Fontdiner+Swanky\";s:16:\"Fontdiner Swanky\";s:5:\"Forum\";s:5:\"Forum\";s:12:\"Francois+One\";s:12:\"Francois One\";s:12:\"Freckle+Face\";s:12:\"Freckle Face\";s:20:\"Fredericka+the+Great\";s:20:\"Fredericka the Great\";s:11:\"Fredoka+One\";s:11:\"Fredoka One\";s:6:\"Fresca\";s:6:\"Fresca\";s:7:\"Frijole\";s:7:\"Frijole\";s:7:\"Fruktur\";s:7:\"Fruktur\";s:9:\"Fugaz+One\";s:9:\"Fugaz One\";s:8:\"Gabriela\";s:8:\"Gabriela\";s:6:\"Gafata\";s:6:\"Gafata\";s:8:\"Galdeano\";s:8:\"Galdeano\";s:7:\"Galindo\";s:7:\"Galindo\";s:13:\"Gentium+Basic\";s:13:\"Gentium Basic\";s:18:\"Gentium+Book+Basic\";s:18:\"Gentium Book Basic\";s:3:\"Geo\";s:3:\"Geo\";s:7:\"Geostar\";s:7:\"Geostar\";s:12:\"Geostar+Fill\";s:12:\"Geostar Fill\";s:12:\"Germania+One\";s:12:\"Germania One\";s:13:\"Gilda+Display\";s:13:\"Gilda Display\";s:14:\"Give+You+Glory\";s:14:\"Give You Glory\";s:13:\"Glass+Antiqua\";s:13:\"Glass Antiqua\";s:6:\"Glegoo\";s:6:\"Glegoo\";s:17:\"Gloria+Hallelujah\";s:17:\"Gloria Hallelujah\";s:10:\"Goblin+One\";s:10:\"Goblin One\";s:10:\"Gochi+Hand\";s:10:\"Gochi Hand\";s:8:\"Gorditas\";s:8:\"Gorditas\";s:21:\"Goudy+Bookletter+1911\";s:21:\"Goudy Bookletter 1911\";s:8:\"Graduate\";s:8:\"Graduate\";s:11:\"Grand+Hotel\";s:11:\"Grand Hotel\";s:12:\"Gravitas+One\";s:12:\"Gravitas One\";s:11:\"Great+Vibes\";s:11:\"Great Vibes\";s:6:\"Griffy\";s:6:\"Griffy\";s:6:\"Gruppo\";s:6:\"Gruppo\";s:5:\"Gudea\";s:5:\"Gudea\";s:6:\"Habibi\";s:6:\"Habibi\";s:15:\"Hammersmith+One\";s:15:\"Hammersmith One\";s:7:\"Hanalei\";s:7:\"Hanalei\";s:12:\"Hanalei+Fill\";s:12:\"Hanalei Fill\";s:7:\"Handlee\";s:7:\"Handlee\";s:12:\"Happy+Monkey\";s:12:\"Happy Monkey\";s:12:\"Headland+One\";s:12:\"Headland One\";s:11:\"Henny+Penny\";s:11:\"Henny Penny\";s:20:\"Herr+Von+Muellerhoff\";s:20:\"Herr Von Muellerhoff\";s:15:\"Holtwood+One+SC\";s:15:\"Holtwood One SC\";s:14:\"Homemade+Apple\";s:14:\"Homemade Apple\";s:8:\"Homenaje\";s:8:\"Homenaje\";s:15:\"IM+Fell+DW+Pica\";s:15:\"IM Fell DW Pica\";s:18:\"IM+Fell+DW+Pica+SC\";s:18:\"IM Fell DW Pica SC\";s:19:\"IM+Fell+Double+Pica\";s:19:\"IM Fell Double Pica\";s:22:\"IM+Fell+Double+Pica+SC\";s:22:\"IM Fell Double Pica SC\";s:15:\"IM+Fell+English\";s:15:\"IM Fell English\";s:18:\"IM+Fell+English+SC\";s:18:\"IM Fell English SC\";s:20:\"IM+Fell+French+Canon\";s:20:\"IM Fell French Canon\";s:23:\"IM+Fell+French+Canon+SC\";s:23:\"IM Fell French Canon SC\";s:20:\"IM+Fell+Great+Primer\";s:20:\"IM Fell Great Primer\";s:23:\"IM+Fell+Great+Primer+SC\";s:23:\"IM Fell Great Primer SC\";s:7:\"Iceberg\";s:7:\"Iceberg\";s:7:\"Iceland\";s:7:\"Iceland\";s:7:\"Imprima\";s:7:\"Imprima\";s:11:\"Inconsolata\";s:11:\"Inconsolata\";s:5:\"Inder\";s:5:\"Inder\";s:12:\"Indie+Flower\";s:12:\"Indie Flower\";s:5:\"Inika\";s:5:\"Inika\";s:12:\"Irish+Grover\";s:12:\"Irish Grover\";s:9:\"Istok+Web\";s:9:\"Istok Web\";s:8:\"Italiana\";s:8:\"Italiana\";s:9:\"Italianno\";s:9:\"Italianno\";s:16:\"Jacques+Francois\";s:16:\"Jacques Francois\";s:23:\"Jacques+Francois+Shadow\";s:23:\"Jacques Francois Shadow\";s:14:\"Jim+Nightshade\";s:14:\"Jim Nightshade\";s:10:\"Jockey+One\";s:10:\"Jockey One\";s:12:\"Jolly+Lodger\";s:12:\"Jolly Lodger\";s:12:\"Josefin+Sans\";s:12:\"Josefin Sans\";s:12:\"Josefin+Slab\";s:12:\"Josefin Slab\";s:8:\"Joti+One\";s:8:\"Joti One\";s:6:\"Judson\";s:6:\"Judson\";s:5:\"Julee\";s:5:\"Julee\";s:15:\"Julius+Sans+One\";s:15:\"Julius Sans One\";s:5:\"Junge\";s:5:\"Junge\";s:4:\"Jura\";s:4:\"Jura\";s:17:\"Just+Another+Hand\";s:17:\"Just Another Hand\";s:23:\"Just+Me+Again+Down+Here\";s:23:\"Just Me Again Down Here\";s:7:\"Kameron\";s:7:\"Kameron\";s:5:\"Karla\";s:5:\"Karla\";s:14:\"Kaushan+Script\";s:14:\"Kaushan Script\";s:6:\"Kavoon\";s:6:\"Kavoon\";s:10:\"Keania+One\";s:10:\"Keania One\";s:10:\"Kelly+Slab\";s:10:\"Kelly Slab\";s:5:\"Kenia\";s:5:\"Kenia\";s:8:\"Kite+One\";s:8:\"Kite One\";s:7:\"Knewave\";s:7:\"Knewave\";s:9:\"Kotta+One\";s:9:\"Kotta One\";s:6:\"Kranky\";s:6:\"Kranky\";s:5:\"Kreon\";s:5:\"Kreon\";s:6:\"Kristi\";s:6:\"Kristi\";s:9:\"Krona+One\";s:9:\"Krona One\";s:15:\"La+Belle+Aurore\";s:15:\"La Belle Aurore\";s:8:\"Lancelot\";s:8:\"Lancelot\";s:4:\"Lato\";s:4:\"Lato\";s:13:\"League+Script\";s:13:\"League Script\";s:12:\"Leckerli+One\";s:12:\"Leckerli One\";s:6:\"Ledger\";s:6:\"Ledger\";s:6:\"Lekton\";s:6:\"Lekton\";s:5:\"Lemon\";s:5:\"Lemon\";s:17:\"Libre+Baskerville\";s:17:\"Libre Baskerville\";s:11:\"Life+Savers\";s:11:\"Life Savers\";s:10:\"Lilita+One\";s:10:\"Lilita One\";s:9:\"Limelight\";s:9:\"Limelight\";s:11:\"Linden+Hill\";s:11:\"Linden Hill\";s:7:\"Lobster\";s:7:\"Lobster\";s:11:\"Lobster+Two\";s:11:\"Lobster Two\";s:16:\"Londrina+Outline\";s:16:\"Londrina Outline\";s:15:\"Londrina+Shadow\";s:15:\"Londrina Shadow\";s:15:\"Londrina+Sketch\";s:15:\"Londrina Sketch\";s:14:\"Londrina+Solid\";s:14:\"Londrina Solid\";s:4:\"Lora\";s:4:\"Lora\";s:21:\"Love+Ya+Like+A+Sister\";s:21:\"Love Ya Like A Sister\";s:17:\"Loved+by+the+King\";s:17:\"Loved by the King\";s:14:\"Lovers+Quarrel\";s:14:\"Lovers Quarrel\";s:12:\"Luckiest+Guy\";s:12:\"Luckiest Guy\";s:8:\"Lusitana\";s:8:\"Lusitana\";s:7:\"Lustria\";s:7:\"Lustria\";s:7:\"Macondo\";s:7:\"Macondo\";s:18:\"Macondo+Swash+Caps\";s:18:\"Macondo Swash Caps\";s:5:\"Magra\";s:5:\"Magra\";s:13:\"Maiden+Orange\";s:13:\"Maiden Orange\";s:4:\"Mako\";s:4:\"Mako\";s:9:\"Marcellus\";s:9:\"Marcellus\";s:12:\"Marcellus+SC\";s:12:\"Marcellus SC\";s:12:\"Marck+Script\";s:12:\"Marck Script\";s:9:\"Margarine\";s:9:\"Margarine\";s:9:\"Marko+One\";s:9:\"Marko One\";s:8:\"Marmelad\";s:8:\"Marmelad\";s:6:\"Marvel\";s:6:\"Marvel\";s:4:\"Mate\";s:4:\"Mate\";s:7:\"Mate+SC\";s:7:\"Mate SC\";s:9:\"Maven+Pro\";s:9:\"Maven Pro\";s:7:\"McLaren\";s:7:\"McLaren\";s:6:\"Meddon\";s:6:\"Meddon\";s:13:\"MedievalSharp\";s:13:\"MedievalSharp\";s:10:\"Medula+One\";s:10:\"Medula One\";s:6:\"Megrim\";s:6:\"Megrim\";s:11:\"Meie+Script\";s:11:\"Meie Script\";s:8:\"Merienda\";s:8:\"Merienda\";s:12:\"Merienda+One\";s:12:\"Merienda One\";s:12:\"Merriweather\";s:12:\"Merriweather\";s:17:\"Merriweather+Sans\";s:17:\"Merriweather Sans\";s:11:\"Metal+Mania\";s:11:\"Metal Mania\";s:12:\"Metamorphous\";s:12:\"Metamorphous\";s:11:\"Metrophobic\";s:11:\"Metrophobic\";s:8:\"Michroma\";s:8:\"Michroma\";s:7:\"Milonga\";s:7:\"Milonga\";s:9:\"Miltonian\";s:9:\"Miltonian\";s:16:\"Miltonian+Tattoo\";s:16:\"Miltonian Tattoo\";s:7:\"Miniver\";s:7:\"Miniver\";s:14:\"Miss+Fajardose\";s:14:\"Miss Fajardose\";s:14:\"Modern+Antiqua\";s:14:\"Modern Antiqua\";s:7:\"Molengo\";s:7:\"Molengo\";s:5:\"Molle\";s:5:\"Molle\";s:5:\"Monda\";s:5:\"Monda\";s:8:\"Monofett\";s:8:\"Monofett\";s:7:\"Monoton\";s:7:\"Monoton\";s:20:\"Monsieur+La+Doulaise\";s:20:\"Monsieur La Doulaise\";s:7:\"Montaga\";s:7:\"Montaga\";s:6:\"Montez\";s:6:\"Montez\";s:10:\"Montserrat\";s:10:\"Montserrat\";s:21:\"Montserrat+Alternates\";s:21:\"Montserrat Alternates\";s:20:\"Montserrat+Subrayada\";s:20:\"Montserrat Subrayada\";s:22:\"Mountains+of+Christmas\";s:22:\"Mountains of Christmas\";s:13:\"Mouse+Memoirs\";s:13:\"Mouse Memoirs\";s:10:\"Mr+Bedfort\";s:10:\"Mr Bedfort\";s:8:\"Mr+Dafoe\";s:8:\"Mr Dafoe\";s:14:\"Mr+De+Haviland\";s:14:\"Mr De Haviland\";s:19:\"Mrs+Saint+Delafield\";s:19:\"Mrs Saint Delafield\";s:13:\"Mrs+Sheppards\";s:13:\"Mrs Sheppards\";s:4:\"Muli\";s:4:\"Muli\";s:13:\"Mystery+Quest\";s:13:\"Mystery Quest\";s:6:\"Neucha\";s:6:\"Neucha\";s:6:\"Neuton\";s:6:\"Neuton\";s:10:\"New+Rocker\";s:10:\"New Rocker\";s:10:\"News+Cycle\";s:10:\"News Cycle\";s:7:\"Niconne\";s:7:\"Niconne\";s:9:\"Nixie+One\";s:9:\"Nixie One\";s:6:\"Nobile\";s:6:\"Nobile\";s:7:\"Norican\";s:7:\"Norican\";s:7:\"Nosifer\";s:7:\"Nosifer\";s:20:\"Nothing+You+Could+Do\";s:20:\"Nothing You Could Do\";s:12:\"Noticia+Text\";s:12:\"Noticia Text\";s:8:\"Nova+Cut\";s:8:\"Nova Cut\";s:9:\"Nova+Flat\";s:9:\"Nova Flat\";s:9:\"Nova+Mono\";s:9:\"Nova Mono\";s:9:\"Nova+Oval\";s:9:\"Nova Oval\";s:10:\"Nova+Round\";s:10:\"Nova Round\";s:11:\"Nova+Script\";s:11:\"Nova Script\";s:9:\"Nova+Slim\";s:9:\"Nova Slim\";s:11:\"Nova+Square\";s:11:\"Nova Square\";s:6:\"Numans\";s:6:\"Numans\";s:6:\"Nunito\";s:6:\"Nunito\";s:7:\"Offside\";s:7:\"Offside\";s:15:\"Old+Standard+TT\";s:15:\"Old Standard TT\";s:9:\"Oldenburg\";s:9:\"Oldenburg\";s:11:\"Oleo+Script\";s:11:\"Oleo Script\";s:22:\"Oleo+Script+Swash+Caps\";s:22:\"Oleo Script Swash Caps\";s:9:\"Open+Sans\";s:9:\"Open Sans\";s:19:\"Open+Sans+Condensed\";s:19:\"Open Sans Condensed\";s:11:\"Oranienbaum\";s:11:\"Oranienbaum\";s:8:\"Orbitron\";s:8:\"Orbitron\";s:7:\"Oregano\";s:7:\"Oregano\";s:7:\"Orienta\";s:7:\"Orienta\";s:15:\"Original+Surfer\";s:15:\"Original Surfer\";s:6:\"Oswald\";s:6:\"Oswald\";s:16:\"Over+the+Rainbow\";s:16:\"Over the Rainbow\";s:8:\"Overlock\";s:8:\"Overlock\";s:11:\"Overlock+SC\";s:11:\"Overlock SC\";s:3:\"Ovo\";s:3:\"Ovo\";s:6:\"Oxygen\";s:6:\"Oxygen\";s:11:\"Oxygen+Mono\";s:11:\"Oxygen Mono\";s:7:\"PT+Mono\";s:7:\"PT Mono\";s:7:\"PT+Sans\";s:7:\"PT Sans\";s:15:\"PT+Sans+Caption\";s:15:\"PT Sans Caption\";s:14:\"PT+Sans+Narrow\";s:14:\"PT Sans Narrow\";s:8:\"PT+Serif\";s:8:\"PT Serif\";s:16:\"PT+Serif+Caption\";s:16:\"PT Serif Caption\";s:8:\"Pacifico\";s:8:\"Pacifico\";s:7:\"Paprika\";s:7:\"Paprika\";s:10:\"Parisienne\";s:10:\"Parisienne\";s:11:\"Passero+One\";s:11:\"Passero One\";s:11:\"Passion+One\";s:11:\"Passion One\";s:12:\"Patrick+Hand\";s:12:\"Patrick Hand\";s:15:\"Patrick+Hand+SC\";s:15:\"Patrick Hand SC\";s:9:\"Patua+One\";s:9:\"Patua One\";s:11:\"Paytone+One\";s:11:\"Paytone One\";s:7:\"Peralta\";s:7:\"Peralta\";s:16:\"Permanent+Marker\";s:16:\"Permanent Marker\";s:19:\"Petit+Formal+Script\";s:19:\"Petit Formal Script\";s:7:\"Petrona\";s:7:\"Petrona\";s:11:\"Philosopher\";s:11:\"Philosopher\";s:6:\"Piedra\";s:6:\"Piedra\";s:13:\"Pinyon+Script\";s:13:\"Pinyon Script\";s:10:\"Pirata+One\";s:10:\"Pirata One\";s:7:\"Plaster\";s:7:\"Plaster\";s:4:\"Play\";s:4:\"Play\";s:8:\"Playball\";s:8:\"Playball\";s:16:\"Playfair+Display\";s:16:\"Playfair Display\";s:19:\"Playfair+Display+SC\";s:19:\"Playfair Display SC\";s:7:\"Podkova\";s:7:\"Podkova\";s:10:\"Poiret+One\";s:10:\"Poiret One\";s:10:\"Poller+One\";s:10:\"Poller One\";s:4:\"Poly\";s:4:\"Poly\";s:8:\"Pompiere\";s:8:\"Pompiere\";s:12:\"Pontano+Sans\";s:12:\"Pontano Sans\";s:16:\"Port+Lligat+Sans\";s:16:\"Port Lligat Sans\";s:16:\"Port+Lligat+Slab\";s:16:\"Port Lligat Slab\";s:5:\"Prata\";s:5:\"Prata\";s:14:\"Press+Start+2P\";s:14:\"Press Start 2P\";s:14:\"Princess+Sofia\";s:14:\"Princess Sofia\";s:8:\"Prociono\";s:8:\"Prociono\";s:10:\"Prosto+One\";s:10:\"Prosto One\";s:7:\"Puritan\";s:7:\"Puritan\";s:12:\"Purple+Purse\";s:12:\"Purple Purse\";s:6:\"Quando\";s:6:\"Quando\";s:8:\"Quantico\";s:8:\"Quantico\";s:12:\"Quattrocento\";s:12:\"Quattrocento\";s:17:\"Quattrocento+Sans\";s:17:\"Quattrocento Sans\";s:9:\"Questrial\";s:9:\"Questrial\";s:9:\"Quicksand\";s:9:\"Quicksand\";s:14:\"Quintessential\";s:14:\"Quintessential\";s:7:\"Qwigley\";s:7:\"Qwigley\";s:15:\"Racing+Sans+One\";s:15:\"Racing Sans One\";s:6:\"Radley\";s:6:\"Radley\";s:7:\"Raleway\";s:7:\"Raleway\";s:12:\"Raleway+Dots\";s:12:\"Raleway Dots\";s:6:\"Rambla\";s:6:\"Rambla\";s:12:\"Rammetto+One\";s:12:\"Rammetto One\";s:8:\"Ranchers\";s:8:\"Ranchers\";s:6:\"Rancho\";s:6:\"Rancho\";s:9:\"Rationale\";s:9:\"Rationale\";s:9:\"Redressed\";s:9:\"Redressed\";s:13:\"Reenie+Beanie\";s:13:\"Reenie Beanie\";s:7:\"Revalia\";s:7:\"Revalia\";s:6:\"Ribeye\";s:6:\"Ribeye\";s:13:\"Ribeye+Marrow\";s:13:\"Ribeye Marrow\";s:9:\"Righteous\";s:9:\"Righteous\";s:6:\"Risque\";s:6:\"Risque\";s:6:\"Roboto\";s:6:\"Roboto\";s:16:\"Roboto+Condensed\";s:16:\"Roboto Condensed\";s:9:\"Rochester\";s:9:\"Rochester\";s:9:\"Rock+Salt\";s:9:\"Rock Salt\";s:7:\"Rokkitt\";s:7:\"Rokkitt\";s:9:\"Romanesco\";s:9:\"Romanesco\";s:9:\"Ropa+Sans\";s:9:\"Ropa Sans\";s:7:\"Rosario\";s:7:\"Rosario\";s:8:\"Rosarivo\";s:8:\"Rosarivo\";s:12:\"Rouge+Script\";s:12:\"Rouge Script\";s:4:\"Ruda\";s:4:\"Ruda\";s:6:\"Rufina\";s:6:\"Rufina\";s:11:\"Ruge+Boogie\";s:11:\"Ruge Boogie\";s:6:\"Ruluko\";s:6:\"Ruluko\";s:10:\"Rum+Raisin\";s:10:\"Rum Raisin\";s:14:\"Ruslan+Display\";s:14:\"Ruslan Display\";s:9:\"Russo+One\";s:9:\"Russo One\";s:6:\"Ruthie\";s:6:\"Ruthie\";s:3:\"Rye\";s:3:\"Rye\";s:10:\"Sacramento\";s:10:\"Sacramento\";s:4:\"Sail\";s:4:\"Sail\";s:5:\"Salsa\";s:5:\"Salsa\";s:7:\"Sanchez\";s:7:\"Sanchez\";s:8:\"Sancreek\";s:8:\"Sancreek\";s:11:\"Sansita+One\";s:11:\"Sansita One\";s:6:\"Sarina\";s:6:\"Sarina\";s:7:\"Satisfy\";s:7:\"Satisfy\";s:5:\"Scada\";s:5:\"Scada\";s:10:\"Schoolbell\";s:10:\"Schoolbell\";s:14:\"Seaweed+Script\";s:14:\"Seaweed Script\";s:9:\"Sevillana\";s:9:\"Sevillana\";s:11:\"Seymour+One\";s:11:\"Seymour One\";s:18:\"Shadows+Into+Light\";s:18:\"Shadows Into Light\";s:22:\"Shadows+Into+Light+Two\";s:22:\"Shadows Into Light Two\";s:6:\"Shanti\";s:6:\"Shanti\";s:5:\"Share\";s:5:\"Share\";s:10:\"Share+Tech\";s:10:\"Share Tech\";s:15:\"Share+Tech+Mono\";s:15:\"Share Tech Mono\";s:9:\"Shojumaru\";s:9:\"Shojumaru\";s:11:\"Short+Stack\";s:11:\"Short Stack\";s:10:\"Sigmar+One\";s:10:\"Sigmar One\";s:7:\"Signika\";s:7:\"Signika\";s:16:\"Signika+Negative\";s:16:\"Signika Negative\";s:9:\"Simonetta\";s:9:\"Simonetta\";s:7:\"Sintony\";s:7:\"Sintony\";s:13:\"Sirin+Stencil\";s:13:\"Sirin Stencil\";s:8:\"Six+Caps\";s:8:\"Six Caps\";s:7:\"Skranji\";s:7:\"Skranji\";s:7:\"Slackey\";s:7:\"Slackey\";s:6:\"Smokum\";s:6:\"Smokum\";s:6:\"Smythe\";s:6:\"Smythe\";s:7:\"Sniglet\";s:7:\"Sniglet\";s:7:\"Snippet\";s:7:\"Snippet\";s:13:\"Snowburst+One\";s:13:\"Snowburst One\";s:10:\"Sofadi+One\";s:10:\"Sofadi One\";s:5:\"Sofia\";s:5:\"Sofia\";s:10:\"Sonsie+One\";s:10:\"Sonsie One\";s:16:\"Sorts+Mill+Goudy\";s:16:\"Sorts Mill Goudy\";s:15:\"Source+Code+Pro\";s:15:\"Source Code Pro\";s:15:\"Source+Sans+Pro\";s:15:\"Source Sans Pro\";s:13:\"Special+Elite\";s:13:\"Special Elite\";s:10:\"Spicy+Rice\";s:10:\"Spicy Rice\";s:9:\"Spinnaker\";s:9:\"Spinnaker\";s:6:\"Spirax\";s:6:\"Spirax\";s:10:\"Squada+One\";s:10:\"Squada One\";s:9:\"Stalemate\";s:9:\"Stalemate\";s:13:\"Stalinist+One\";s:13:\"Stalinist One\";s:15:\"Stardos+Stencil\";s:15:\"Stardos Stencil\";s:21:\"Stint+Ultra+Condensed\";s:21:\"Stint Ultra Condensed\";s:20:\"Stint+Ultra+Expanded\";s:20:\"Stint Ultra Expanded\";s:5:\"Stoke\";s:5:\"Stoke\";s:6:\"Strait\";s:6:\"Strait\";s:19:\"Sue+Ellen+Francisco\";s:19:\"Sue Ellen Francisco\";s:9:\"Sunshiney\";s:9:\"Sunshiney\";s:16:\"Supermercado+One\";s:16:\"Supermercado One\";s:18:\"Swanky+and+Moo+Moo\";s:18:\"Swanky and Moo Moo\";s:9:\"Syncopate\";s:9:\"Syncopate\";s:9:\"Tangerine\";s:9:\"Tangerine\";s:5:\"Tauri\";s:5:\"Tauri\";s:5:\"Telex\";s:5:\"Telex\";s:10:\"Tenor+Sans\";s:10:\"Tenor Sans\";s:11:\"Text+Me+One\";s:11:\"Text Me One\";s:18:\"The+Girl+Next+Door\";s:18:\"The Girl Next Door\";s:6:\"Tienne\";s:6:\"Tienne\";s:5:\"Tinos\";s:5:\"Tinos\";s:9:\"Titan+One\";s:9:\"Titan One\";s:13:\"Titillium+Web\";s:13:\"Titillium Web\";s:11:\"Trade+Winds\";s:11:\"Trade Winds\";s:7:\"Trocchi\";s:7:\"Trocchi\";s:7:\"Trochut\";s:7:\"Trochut\";s:7:\"Trykker\";s:7:\"Trykker\";s:10:\"Tulpen+One\";s:10:\"Tulpen One\";s:6:\"Ubuntu\";s:6:\"Ubuntu\";s:16:\"Ubuntu+Condensed\";s:16:\"Ubuntu Condensed\";s:11:\"Ubuntu+Mono\";s:11:\"Ubuntu Mono\";s:5:\"Ultra\";s:5:\"Ultra\";s:14:\"Uncial+Antiqua\";s:14:\"Uncial Antiqua\";s:8:\"Underdog\";s:8:\"Underdog\";s:9:\"Unica+One\";s:9:\"Unica One\";s:14:\"UnifrakturCook\";s:14:\"UnifrakturCook\";s:18:\"UnifrakturMaguntia\";s:18:\"UnifrakturMaguntia\";s:7:\"Unkempt\";s:7:\"Unkempt\";s:6:\"Unlock\";s:6:\"Unlock\";s:4:\"Unna\";s:4:\"Unna\";s:5:\"VT323\";s:5:\"VT323\";s:11:\"Vampiro+One\";s:11:\"Vampiro One\";s:6:\"Varela\";s:6:\"Varela\";s:12:\"Varela+Round\";s:12:\"Varela Round\";s:11:\"Vast+Shadow\";s:11:\"Vast Shadow\";s:5:\"Vibur\";s:5:\"Vibur\";s:8:\"Vidaloka\";s:8:\"Vidaloka\";s:4:\"Viga\";s:4:\"Viga\";s:5:\"Voces\";s:5:\"Voces\";s:7:\"Volkhov\";s:7:\"Volkhov\";s:8:\"Vollkorn\";s:8:\"Vollkorn\";s:8:\"Voltaire\";s:8:\"Voltaire\";s:23:\"Waiting+for+the+Sunrise\";s:23:\"Waiting for the Sunrise\";s:8:\"Wallpoet\";s:8:\"Wallpoet\";s:15:\"Walter+Turncoat\";s:15:\"Walter Turncoat\";s:6:\"Warnes\";s:6:\"Warnes\";s:9:\"Wellfleet\";s:9:\"Wellfleet\";s:9:\"Wendy+One\";s:9:\"Wendy One\";s:8:\"Wire+One\";s:8:\"Wire One\";s:17:\"Yanone+Kaffeesatz\";s:17:\"Yanone Kaffeesatz\";s:10:\"Yellowtail\";s:10:\"Yellowtail\";s:10:\"Yeseva+One\";s:10:\"Yeseva One\";s:10:\"Yesteryear\";s:10:\"Yesteryear\";s:6:\"Zeyada\";s:6:\"Zeyada\";s:13:\"optgroupend_2\";s:0:\"\";}\";','no'),(513,'_site_transient_timeout_theme_roots','1408227321','yes'),(514,'_site_transient_theme_roots','a:4:{s:14:\"BUZZBLOG-theme\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','yes'),(516,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/pt_BR/wordpress-3.9.2.zip\";s:6:\"locale\";s:5:\"pt_BR\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/pt_BR/wordpress-3.9.2.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"3.9.2\";s:7:\"version\";s:5:\"3.9.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.8\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-3.9.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-3.9.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-3.9.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-3.9.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"3.9.2\";s:7:\"version\";s:5:\"3.9.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.8\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1408225569;s:15:\"version_checked\";s:5:\"3.9.2\";s:12:\"translations\";a:0:{}}','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=177 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(4,5,'_form','<p>Seu nome*<br />\n [text* your-name] </p>\n\n<p>Seu email*<br />\n [email* your-email] </p>\n\n<p>Assunto<br />\n [text your-subject] </p>\n\n<p>Sua Mensagem<br />\n [textarea your-message] </p>\n\n<p>[submit \"Enviar\"]</p>'),(5,5,'_mail','a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:4:\"body\";s:182:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Niterói e Tal (http://localhost/niteroi-e-tal)\";s:9:\"recipient\";s:25:\"[email protected]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6,5,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:4:\"body\";s:124:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Niterói e Tal (http://localhost/niteroi-e-tal)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(7,5,'_messages','a:21:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:31:\"Please fill the required field.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(8,5,'_additional_settings',''),(9,5,'_locale','en_US'),(10,1,'_zilla_likes','0'),(31,20,'_wp_attached_file','2014/08/nitetal_header.jpg'),(32,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:26:\"2014/08/nitetal_header.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"nitetal_header-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"nitetal_header-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"nitetal_header-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"standard-large\";a:4:{s:4:\"file\";s:26:\"nitetal_header-980x735.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"standard\";a:4:{s:4:\"file\";s:26:\"nitetal_header-700x525.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium-thumb\";a:4:{s:4:\"file\";s:26:\"nitetal_header-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gallery-thumb\";a:4:{s:4:\"file\";s:26:\"nitetal_header-573x430.jpg\";s:5:\"width\";i:573;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"slideshow-post\";a:4:{s:4:\"file\";s:26:\"nitetal_header-700x400.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"slideshow\";a:4:{s:4:\"file\";s:27:\"nitetal_header-1170x427.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"small\";a:4:{s:4:\"file\";s:26:\"nitetal_header-194x150.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"mini\";a:4:{s:4:\"file\";s:24:\"nitetal_header-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"nitetal_header-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(33,21,'_wp_attached_file','2014/08/[email protected]'),(34,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:26:\"2014/08/[email protected]\";s:5:\"sizes\";a:1:{s:4:\"mini\";a:4:{s:4:\"file\";s:24:\"[email protected]\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(35,22,'_edit_last','1'),(36,22,'_edit_lock','1407537050:1'),(37,22,'_wp_page_template','page-fullwidth.php'),(38,24,'_menu_item_type','custom'),(39,24,'_menu_item_menu_item_parent','0'),(40,24,'_menu_item_object_id','24'),(41,24,'_menu_item_object','custom'),(42,24,'_menu_item_target',''),(43,24,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44,24,'_menu_item_xfn',''),(45,24,'_menu_item_url','http://localhost/niteroi-e-tal/'),(47,25,'_menu_item_type','post_type'),(48,25,'_menu_item_menu_item_parent','0'),(49,25,'_menu_item_object_id','22'),(50,25,'_menu_item_object','page'),(51,25,'_menu_item_target',''),(52,25,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(53,25,'_menu_item_xfn',''),(54,25,'_menu_item_url',''),(64,2,'_wp_trash_meta_status','publish'),(65,2,'_wp_trash_meta_time','1408040690'),(66,29,'_edit_last','1'),(67,29,'_edit_lock','1408041132:1'),(68,29,'_wp_page_template','page-blog-with-sidebar.php'),(69,29,'hs_page_tit','Projetos'),(70,31,'_edit_last','1'),(71,31,'_edit_lock','1408046698:1'),(72,31,'_wp_page_template','default'),(73,31,'hs_page_tit','Contato'),(74,33,'_menu_item_type','post_type'),(75,33,'_menu_item_menu_item_parent','0'),(76,33,'_menu_item_object_id','31'),(77,33,'_menu_item_object','page'),(78,33,'_menu_item_target',''),(79,33,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(80,33,'_menu_item_xfn',''),(81,33,'_menu_item_url',''),(83,34,'_menu_item_type','post_type'),(84,34,'_menu_item_menu_item_parent','0'),(85,34,'_menu_item_object_id','29'),(86,34,'_menu_item_object','page'),(87,34,'_menu_item_target',''),(88,34,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(89,34,'_menu_item_xfn',''),(90,34,'_menu_item_url',''),(92,36,'_menu_item_type','custom'),(93,36,'_menu_item_menu_item_parent','0'),(94,36,'_menu_item_object_id','36'),(95,36,'_menu_item_object','custom'),(96,36,'_menu_item_target',''),(97,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(98,36,'_menu_item_xfn',''),(99,36,'_menu_item_url','http://www.estudiodeestilo.com.br'),(101,37,'_wp_attached_file','2014/08/pattern1.png'),(102,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:103;s:6:\"height\";i:23;s:4:\"file\";s:20:\"2014/08/pattern1.png\";s:5:\"sizes\";a:1:{s:4:\"mini\";a:4:{s:4:\"file\";s:18:\"pattern1-80x23.png\";s:5:\"width\";i:80;s:6:\"height\";i:23;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(103,38,'_wp_attached_file','2014/08/favico.png'),(104,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2014/08/favico.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"favico-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"favico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"standard-large\";a:4:{s:4:\"file\";s:18:\"favico-735x735.png\";s:5:\"width\";i:735;s:6:\"height\";i:735;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"standard\";a:4:{s:4:\"file\";s:18:\"favico-700x525.png\";s:5:\"width\";i:700;s:6:\"height\";i:525;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium-thumb\";a:4:{s:4:\"file\";s:18:\"favico-300x220.png\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"gallery-thumb\";a:4:{s:4:\"file\";s:18:\"favico-430x430.png\";s:5:\"width\";i:430;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"slideshow-post\";a:4:{s:4:\"file\";s:18:\"favico-700x400.png\";s:5:\"width\";i:700;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"slideshow\";a:4:{s:4:\"file\";s:19:\"favico-1024x427.png\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"small\";a:4:{s:4:\"file\";s:18:\"favico-194x150.png\";s:5:\"width\";i:194;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"mini\";a:4:{s:4:\"file\";s:16:\"favico-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"favico-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(105,39,'_menu_item_type','taxonomy'),(106,39,'_menu_item_menu_item_parent','43'),(107,39,'_menu_item_object_id','1'),(108,39,'_menu_item_object','category'),(109,39,'_menu_item_target',''),(110,39,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(111,39,'_menu_item_xfn',''),(112,39,'_menu_item_url',''),(114,40,'_menu_item_type','taxonomy'),(115,40,'_menu_item_menu_item_parent','43'),(116,40,'_menu_item_object_id','3'),(117,40,'_menu_item_object','category'),(118,40,'_menu_item_target',''),(119,40,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(120,40,'_menu_item_xfn',''),(121,40,'_menu_item_url',''),(123,41,'_menu_item_type','taxonomy'),(124,41,'_menu_item_menu_item_parent','43'),(125,41,'_menu_item_object_id','4'),(126,41,'_menu_item_object','category'),(127,41,'_menu_item_target',''),(128,41,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(129,41,'_menu_item_xfn',''),(130,41,'_menu_item_url',''),(132,42,'_menu_item_type','taxonomy'),(133,42,'_menu_item_menu_item_parent','43'),(134,42,'_menu_item_object_id','5'),(135,42,'_menu_item_object','category'),(136,42,'_menu_item_target',''),(137,42,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(138,42,'_menu_item_xfn',''),(139,42,'_menu_item_url',''),(141,43,'_menu_item_type','custom'),(142,43,'_menu_item_menu_item_parent','0'),(143,43,'_menu_item_object_id','43'),(144,43,'_menu_item_object','custom'),(145,43,'_menu_item_target',''),(146,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(147,43,'_menu_item_xfn',''),(148,43,'_menu_item_url','#'),(149,44,'_edit_lock','1408225521:1'),(150,45,'_edit_lock','1408229980:1'),(151,45,'_edit_last','1'),(152,46,'_wp_attached_file','2014/08/unsplash_522b9cc0386f1_1.jpg'),(153,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2666;s:6:\"height\";i:1500;s:4:\"file\";s:36:\"2014/08/unsplash_522b9cc0386f1_1.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"unsplash_522b9cc0386f1_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"unsplash_522b9cc0386f1_1-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"unsplash_522b9cc0386f1_1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"standard-large\";a:4:{s:4:\"file\";s:36:\"unsplash_522b9cc0386f1_1-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"standard\";a:4:{s:4:\"file\";s:36:\"unsplash_522b9cc0386f1_1-700x525.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium-thumb\";a:4:{s:4:\"file\";s:36:\"unsplash_522b9cc0386f1_1-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gallery-thumb\";a:4:{s:4:\"file\";s:36:\"unsplash_522b9cc0386f1_1-573x322.jpg\";s:5:\"width\";i:573;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"slideshow-post\";a:4:{s:4:\"file\";s:36:\"unsplash_522b9cc0386f1_1-700x400.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"slideshow\";a:4:{s:4:\"file\";s:37:\"unsplash_522b9cc0386f1_1-1170x427.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"small\";a:4:{s:4:\"file\";s:36:\"unsplash_522b9cc0386f1_1-194x150.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"mini\";a:4:{s:4:\"file\";s:34:\"unsplash_522b9cc0386f1_1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"unsplash_522b9cc0386f1_1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(154,45,'_thumbnail_id','46'),(157,45,'_zilla_likes','0'),(158,45,'tz_audio_format','mp3'),(159,45,'tz_gallery_format','-=set slideshow type=-'),(160,45,'tz_gallery_targetheight','200'),(161,45,'tz_gallery_margins','10'),(162,45,'tz_gallery_randomize','false'),(163,45,'tz_gallery_captions','true'),(164,45,'_popular_views','1'),(165,48,'_edit_lock','1408230740:1'),(166,48,'_edit_last','1'),(169,48,'_zilla_likes','0'),(170,48,'tz_audio_format','mp3'),(171,48,'tz_gallery_format','slideshow'),(172,48,'tz_gallery_targetheight','200'),(173,48,'tz_gallery_margins','10'),(174,48,'tz_gallery_randomize','true'),(175,48,'tz_gallery_captions','true'),(176,48,'_popular_views','1');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2014-08-05 16:45:34','2014-08-05 16:45:34','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-08-05 16:45:34','2014-08-05 16:45:34','',0,'http://localhost/niteroi-e-tal/?p=1',0,'post','',1),(2,1,'2014-08-05 16:45:34','2014-08-05 16:45:34','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://localhost/niteroi-e-tal/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','trash','open','open','','sample-page','','','2014-08-14 18:24:50','2014-08-14 18:24:50','',0,'http://localhost/niteroi-e-tal/?page_id=2',0,'page','',0),(5,1,'2014-08-05 16:57:28','2014-08-05 16:57:28','<p>Seu nome*<br />\r\n [text* your-name] </p>\r\n\r\n<p>Seu email*<br />\r\n [email* your-email] </p>\r\n\r\n<p>Assunto<br />\r\n [text your-subject] </p>\r\n\r\n<p>Sua Mensagem<br />\r\n [textarea your-message] </p>\r\n\r\n<p>[submit \"Enviar\"]</p>\n[your-subject]\n[your-name] <[your-email]>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Niterói e Tal (http://localhost/niteroi-e-tal)\[email protected]\n\n\n\n\n\n[your-subject]\n[your-name] <[your-email]>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Niterói e Tal (http://localhost/niteroi-e-tal)\n[your-email]\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.','Contact form 1','','publish','open','open','','contact-form-1','','','2014-08-14 19:31:48','2014-08-14 19:31:48','',0,'http://localhost/niteroi-e-tal/?post_type=wpcf7_contact_form&p=5',0,'wpcf7_contact_form','',0),(6,1,'2014-08-05 16:57:55','0000-00-00 00:00:00','','Body Background','','draft','closed','closed','','of-body_background','','','2014-08-05 16:57:55','0000-00-00 00:00:00','',0,'http://localhost/niteroi-e-tal/?post_type=optionsframework&p=6',0,'optionsframework','',0),(7,1,'2014-08-05 16:57:55','0000-00-00 00:00:00','','Header Color','','draft','closed','closed','','of-header_color','','','2014-08-05 16:57:55','0000-00-00 00:00:00','',0,'http://localhost/niteroi-e-tal/?post_type=optionsframework&p=7',0,'optionsframework','',0),(8,1,'2014-08-05 16:57:55','0000-00-00 00:00:00','','Logo Url','','draft','closed','closed','','of-logo_url','','','2014-08-05 16:57:55','0000-00-00 00:00:00','',0,'http://localhost/niteroi-e-tal/?post_type=optionsframework&p=8',0,'optionsframework','',0),(9,1,'2014-08-05 16:57:55','0000-00-00 00:00:00','','Favicon','','draft','closed','closed','','of-favicon','','','2014-08-05 16:57:55','0000-00-00 00:00:00','',0,'http://localhost/niteroi-e-tal/?post_type=optionsframework&p=9',0,'optionsframework','',0),(20,1,'2014-08-07 14:36:27','2014-08-07 14:36:27','','nitetal_header','','inherit','open','open','','nitetal_header','','','2014-08-07 14:36:27','2014-08-07 14:36:27','',7,'http://localhost/niteroi-e-tal/wp-content/uploads/2014/08/nitetal_header.jpg',0,'attachment','image/jpeg',0),(21,1,'2014-08-07 19:21:08','2014-08-07 19:21:08','','cream_dust_@2X','','inherit','open','open','','cream_dust_2x','','','2014-08-07 19:21:08','2014-08-07 19:21:08','',6,'http://localhost/niteroi-e-tal/wp-content/uploads/2014/08/[email protected]',0,'attachment','image/png',0),(22,1,'2014-08-08 22:31:52','2014-08-08 22:31:52','Somos nós','A gente','','publish','open','open','','a-gente','','','2014-08-08 22:31:52','2014-08-08 22:31:52','',0,'http://localhost/niteroi-e-tal/?page_id=22',0,'page','',0),(23,1,'2014-08-08 22:31:52','2014-08-08 22:31:52','Somos nós','A gente','','inherit','open','open','','22-revision-v1','','','2014-08-08 22:31:52','2014-08-08 22:31:52','',22,'http://localhost/niteroi-e-tal/?p=23',0,'revision','',0),(24,1,'2014-08-11 17:41:43','2014-08-11 17:41:43','','Home','','publish','open','open','','home','','','2014-08-15 20:19:28','2014-08-15 20:19:28','',0,'http://localhost/niteroi-e-tal/?p=24',1,'nav_menu_item','',0),(25,1,'2014-08-11 17:41:43','2014-08-11 17:41:43',' ','','','publish','open','open','','25','','','2014-08-15 20:19:28','2014-08-15 20:19:28','',0,'http://localhost/niteroi-e-tal/?p=25',2,'nav_menu_item','',0),(27,1,'2014-08-13 17:21:45','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-08-13 17:21:45','0000-00-00 00:00:00','',0,'http://localhost/niteroi-e-tal/?p=27',0,'post','',0),(28,1,'2014-08-14 18:24:50','2014-08-14 18:24:50','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://localhost/niteroi-e-tal/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','open','open','','2-revision-v1','','','2014-08-14 18:24:50','2014-08-14 18:24:50','',2,'http://localhost/niteroi-e-tal/2-revision-v1/',0,'revision','',0),(29,1,'2014-08-14 18:28:05','2014-08-14 18:28:05','Nossos projetos','Projetos','','publish','open','open','','projetos','','','2014-08-14 18:34:33','2014-08-14 18:34:33','',0,'http://localhost/niteroi-e-tal/?page_id=29',0,'page','',0),(30,1,'2014-08-14 18:28:05','2014-08-14 18:28:05','Nossos projetos','Projetos','','inherit','open','open','','29-revision-v1','','','2014-08-14 18:28:05','2014-08-14 18:28:05','',29,'http://localhost/niteroi-e-tal/29-revision-v1/',0,'revision','',0),(31,1,'2014-08-14 18:37:03','2014-08-14 18:37:03','Nossos contatos\r\n\r\n[contact-form-7 id=\"5\" title=\"Contact form 1\"]','Contato','','publish','open','open','','contato','','','2014-08-14 19:32:12','2014-08-14 19:32:12','',0,'http://localhost/niteroi-e-tal/?page_id=31',0,'page','',0),(32,1,'2014-08-14 18:37:03','2014-08-14 18:37:03','Nossos contatos','Contato','','inherit','open','open','','31-revision-v1','','','2014-08-14 18:37:03','2014-08-14 18:37:03','',31,'http://localhost/niteroi-e-tal/31-revision-v1/',0,'revision','',0),(33,1,'2014-08-14 19:25:17','2014-08-14 19:25:17',' ','','','publish','open','open','','33','','','2014-08-15 20:19:28','2014-08-15 20:19:28','',0,'http://localhost/niteroi-e-tal/?p=33',9,'nav_menu_item','',0),(34,1,'2014-08-14 19:25:17','2014-08-14 19:25:17',' ','','','publish','open','open','','34','','','2014-08-15 20:19:28','2014-08-15 20:19:28','',0,'http://localhost/niteroi-e-tal/?p=34',3,'nav_menu_item','',0),(35,1,'2014-08-14 19:32:12','2014-08-14 19:32:12','Nossos contatos\r\n\r\n[contact-form-7 id=\"5\" title=\"Contact form 1\"]','Contato','','inherit','open','open','','31-revision-v1','','','2014-08-14 19:32:12','2014-08-14 19:32:12','',31,'http://localhost/niteroi-e-tal/31-revision-v1/',0,'revision','',0),(36,1,'2014-08-14 20:08:18','2014-08-14 20:08:18','','Estúdio de Estilo','Conheça o Estúdio de Estilo','publish','open','open','','estudio-de-estilo','','','2014-08-15 20:19:28','2014-08-15 20:19:28','',0,'http://localhost/niteroi-e-tal/?p=36',10,'nav_menu_item','',0),(37,1,'2014-08-14 20:10:10','2014-08-14 20:10:10','','pattern1','','inherit','open','open','','pattern1','','','2014-08-14 20:10:10','2014-08-14 20:10:10','',6,'http://localhost/niteroi-e-tal/wp-content/uploads/2014/08/pattern1.png',0,'attachment','image/png',0),(38,1,'2014-08-15 17:19:13','2014-08-15 17:19:13','','favico','','inherit','open','open','','favico','','','2014-08-15 17:19:13','2014-08-15 17:19:13','',9,'http://localhost/niteroi-e-tal/wp-content/uploads/2014/08/favico.png',0,'attachment','image/png',0),(39,1,'2014-08-15 20:13:04','2014-08-15 20:13:04','Decrição da categoria 1','','','publish','open','open','','39','','','2014-08-15 20:19:28','2014-08-15 20:19:28','',0,'http://localhost/niteroi-e-tal/?p=39',5,'nav_menu_item','',0),(40,1,'2014-08-15 20:13:04','2014-08-15 20:13:04','Decrição da categoria 2','','','publish','open','open','','40','','','2014-08-15 20:19:28','2014-08-15 20:19:28','',0,'http://localhost/niteroi-e-tal/?p=40',6,'nav_menu_item','',0),(41,1,'2014-08-15 20:13:04','2014-08-15 20:13:04','Descrição da Categoria 3','','','publish','open','open','','41','','','2014-08-15 20:19:28','2014-08-15 20:19:28','',0,'http://localhost/niteroi-e-tal/?p=41',7,'nav_menu_item','',0),(42,1,'2014-08-15 20:13:04','2014-08-15 20:13:04','Descrição da Categoria 4','','','publish','open','open','','42','','','2014-08-15 20:19:28','2014-08-15 20:19:28','',0,'http://localhost/niteroi-e-tal/?p=42',8,'nav_menu_item','',0),(43,1,'2014-08-15 20:13:04','2014-08-15 20:13:04','','Seções','','publish','open','open','','secoes','','','2014-08-15 20:19:28','2014-08-15 20:19:28','',0,'http://localhost/niteroi-e-tal/?p=43',4,'nav_menu_item','',0),(44,1,'2014-08-16 21:44:50','0000-00-00 00:00:00','','Rascunho automático','','auto-draft','open','open','','','','','2014-08-16 21:44:50','0000-00-00 00:00:00','',0,'http://localhost/niteroi-e-tal/?p=44',0,'post','',0),(45,1,'2014-08-16 22:52:04','2014-08-16 22:52:04',' \r\n\r\nTexto do Post 1','Titulo do Post 1','','publish','open','open','','titulo-do-post-1','','','2014-08-16 22:52:04','2014-08-16 22:52:04','',0,'http://localhost/niteroi-e-tal/?p=45',0,'post','',0),(46,1,'2014-08-16 22:51:53','2014-08-16 22:51:53','','unsplash_522b9cc0386f1_1','','inherit','open','open','','unsplash_522b9cc0386f1_1','','','2014-08-16 22:51:53','2014-08-16 22:51:53','',45,'http://localhost/niteroi-e-tal/wp-content/uploads/2014/08/unsplash_522b9cc0386f1_1.jpg',0,'attachment','image/jpeg',0),(47,1,'2014-08-16 22:52:04','2014-08-16 22:52:04',' \r\n\r\nTexto do Post 1','Titulo do Post 1','','inherit','open','open','','45-revision-v1','','','2014-08-16 22:52:04','2014-08-16 22:52:04','',45,'http://localhost/niteroi-e-tal/45-revision-v1/',0,'revision','',0),(48,1,'2014-08-16 23:04:45','2014-08-16 23:04:45','[slideshow num=\"3\" custom_category=\"\" autoplay=\"4\" blankwindow=\"false\" pagination=\"false\" effect=\"backSlide\" custom_class=\"\"]\r\n\r\n<span style=\"font-style: italic; color: #56554d;\">Por conseguinte, a expansão dos mercados mundiais faz parte de um processo de gerenciamento dos métodos utilizados na avaliação de resultados.</span>\r\n\r\nPensando mais a longo prazo, a percepção das dificuldades faz parte de um processo de gerenciamento das diretrizes de desenvolvimento para o futuro.','Título Post 2','','publish','open','open','','titulo-post-2','','','2014-08-16 23:04:45','2014-08-16 23:04:45','',0,'http://localhost/niteroi-e-tal/?p=48',0,'post','',0),(49,1,'2014-08-16 23:04:45','2014-08-16 23:04:45','[slideshow num=\"3\" custom_category=\"\" autoplay=\"4\" blankwindow=\"false\" pagination=\"false\" effect=\"backSlide\" custom_class=\"\"]\r\n\r\n<span style=\"font-style: italic; color: #56554d;\">Por conseguinte, a expansão dos mercados mundiais faz parte de um processo de gerenciamento dos métodos utilizados na avaliação de resultados.</span>\r\n\r\nPensando mais a longo prazo, a percepção das dificuldades faz parte de um processo de gerenciamento das diretrizes de desenvolvimento para o futuro.','Título Post 2','','inherit','open','open','','48-revision-v1','','','2014-08-16 23:04:45','2014-08-16 23:04:45','',48,'http://localhost/niteroi-e-tal/48-revision-v1/',0,'revision','',0),(50,1,'2014-08-16 23:07:02','2014-08-16 23:07:02',' \n\n<span style=\"font-style: italic; color: #56554d;\">Por conseguinte, a expansão dos mercados mundiais faz parte de um processo de gerenciamento dos métodos utilizados na avaliação de resultados.</span>\n\nPensando mais a longo prazo, a percepção das dificuldades faz parte de um processo de gerenciamento das diretrizes de desenvolvimento para o futuro.','Título Post 2','','inherit','open','open','','48-autosave-v1','','','2014-08-16 23:07:02','2014-08-16 23:07:02','',48,'http://localhost/niteroi-e-tal/48-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=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(24,2,0),(25,2,0),(33,2,0),(34,2,0),(36,2,0),(39,2,0),(40,2,0),(41,2,0),(42,2,0),(43,2,0),(45,3,0),(45,6,0),(45,7,0),(45,8,0),(45,9,0),(48,1,0),(48,10,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) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','Decrição da categoria 1',0,2),(2,2,'nav_menu','',0,10),(3,3,'category','Decrição da categoria 2',0,1),(4,4,'category','Descrição da Categoria 3',0,0),(5,5,'category','Descrição da Categoria 4',0,0),(6,6,'post_tag','',0,1),(7,7,'post_tag','',0,1),(8,8,'post_tag','',0,1),(9,9,'post_tag','',0,1),(10,10,'post_format','',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) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
UNIQUE KEY `slug` (`slug`),
KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Categoria 1','categoria-1',0),(2,'main_nav','main_nav',0),(3,'Categoria 2','categoria-2',0),(4,'Categoria 3','categoria-3',0),(5,'Categoria 4','categoria-4',0),(6,'tag 1','tag-1',0),(7,'tag 2','tag-2',0),(8,'tag 3','tag-3',0),(9,'tag 4','tag-4',0),(10,'post-format-gallery','post-format-gallery',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','niteroietal'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp350_media,wp360_revisions,wp360_locks,wp390_widgets'),(13,1,'show_welcome_panel','1'),(14,1,'wp_dashboard_quick_press_last_post_id','27'),(15,1,'wp_user-settings','imgsize=full&align=left&libraryContent=browse'),(16,1,'wp_user-settings-time','1408229520'),(17,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\";}'),(18,1,'metaboxhidden_nav-menus','a:9:{i:0;s:8:\"add-post\";i:1;s:13:\"add-slideshow\";i:2;s:11:\"add-gallery\";i:3;s:7:\"add-faq\";i:4;s:12:\"add-post_tag\";i:5;s:15:\"add-post_format\";i:6;s:24:\"add-slideshow_categories\";i:7;s:22:\"add-gallery_categories\";i:8;s:18:\"add-faq_categories\";}'),(19,1,'nav_menu_recently_edited','2'),(20,1,'closedpostboxes_toplevel_page_wpcf7','a:0:{}'),(21,1,'metaboxhidden_toplevel_page_wpcf7','a:0:{}'),(22,2,'first_name','Luisa'),(23,2,'last_name','Barros'),(24,2,'nickname','luisa'),(25,2,'description',''),(26,2,'rich_editing','true'),(27,2,'comment_shortcuts','false'),(28,2,'admin_color','fresh'),(29,2,'use_ssl','0'),(30,2,'show_admin_bar_front','true'),(31,2,'wp_capabilities','a:1:{s:6:\"author\";b:1;}'),(32,2,'wp_user_level','2'),(33,2,'dismissed_wp_pointers','wp350_media,wp360_revisions,wp360_locks,wp390_widgets');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(64) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'niteroietal','$P$BJBb9uHv.2Cso2L8bkkl74vMAedYX80','niteroietal','[email protected]','','2014-08-05 16:45:34','',0,'niteroietal'),(2,'luisa','$P$B2gQGFnX0KGXYWe0MrqPkBK6yYH/s4/','luisa','[email protected]','http://www.niteroietal.com.br','2014-08-15 03:08:12','',0,'Luisa Barros');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2014-08-17 12:52:58