-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysql.sql
379 lines (332 loc) · 588 KB
/
mysql.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
-- MySQL dump 10.13 Distrib 5.5.38, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: wordpress
-- ------------------------------------------------------
-- Server version 5.5.38-0ubuntu0.14.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=955 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://104.236.173.138','yes'),(2,'home','http://104.236.173.138','yes'),(3,'blogname','Chris Dorbandt Attorney','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@consultpartners.us','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','1','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','1','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'gzipcompression','0','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'advanced_edit','0','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','0','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','a:5:{i:0;s:48:\"/var/www/wp-content/themes/zerif-lite/header.php\";i:1;s:48:\"/var/www/wp-content/themes/zerif-lite/footer.php\";i:2;s:47:\"/var/www/wp-content/themes/zerif-lite/style.css\";i:3;s:46:\"/var/www/wp-content/themes/zerif-lite/page.php\";i:4;s:59:\"/var/www/wp-content/themes/zerif-lite/sections/about_us.php\";}','no'),(41,'template','zerif-lite','yes'),(42,'stylesheet','zerif-lite','yes'),(43,'comment_whitelist','1','yes'),(44,'blacklist_keys','','no'),(45,'comment_registration','0','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','31535','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','0','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','posts','yes'),(55,'tag_base','','yes'),(56,'show_avatars','1','yes'),(57,'avatar_rating','G','yes'),(58,'upload_url_path','','yes'),(59,'thumbnail_size_w','150','yes'),(60,'thumbnail_size_h','150','yes'),(61,'thumbnail_crop','1','yes'),(62,'medium_size_w','300','yes'),(63,'medium_size_h','300','yes'),(64,'avatar_default','mystery','yes'),(65,'large_size_w','1024','yes'),(66,'large_size_h','1024','yes'),(67,'image_default_link_type','file','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','0','yes'),(71,'close_comments_days_old','14','yes'),(72,'thread_comments','1','yes'),(73,'thread_comments_depth','5','yes'),(74,'page_comments','0','yes'),(75,'comments_per_page','50','yes'),(76,'default_comments_page','newest','yes'),(77,'comment_order','asc','yes'),(78,'sticky_posts','a:0:{}','yes'),(79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:0:{}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','0','yes'),(85,'page_on_front','0','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','31535','yes'),(89,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(90,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(91,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(92,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(93,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'sidebars_widgets','a:7:{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:16:\"sidebar-ourfocus\";N;s:20:\"sidebar-testimonials\";a:13:{i:0;s:21:\"zerif_testim-widget-3\";i:1;s:21:\"zerif_testim-widget-4\";i:2;s:21:\"zerif_testim-widget-5\";i:3;s:21:\"zerif_testim-widget-8\";i:4;s:22:\"zerif_testim-widget-10\";i:5;s:22:\"zerif_testim-widget-12\";i:6;s:22:\"zerif_testim-widget-13\";i:7;s:22:\"zerif_testim-widget-14\";i:8;s:22:\"zerif_testim-widget-15\";i:9;s:22:\"zerif_testim-widget-16\";i:10;s:22:\"zerif_testim-widget-17\";i:11;s:22:\"zerif_testim-widget-18\";i:12;s:22:\"zerif_testim-widget-19\";}s:15:\"sidebar-aboutus\";N;s:15:\"sidebar-ourteam\";a:8:{i:0;s:19:\"zerif_team-widget-3\";i:1;s:19:\"zerif_team-widget-4\";i:2;s:19:\"zerif_team-widget-5\";i:3;s:19:\"zerif_team-widget-6\";i:4;s:19:\"zerif_team-widget-7\";i:5;s:19:\"zerif_team-widget-8\";i:6;s:19:\"zerif_team-widget-9\";i:7;s:20:\"zerif_team-widget-10\";}s:13:\"array_version\";i:3;}','yes'),(97,'cron','a:5:{i:1443240804;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:1443252600;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:1443284015;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:1443291368;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(101,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.3.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.3.1\";s:7:\"version\";s:5:\"4.3.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":12:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.3.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.3.1\";s:7:\"version\";s:5:\"4.3.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";s:13:\"support_email\";s:26:\"updatehelp42@wordpress.org\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":12:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.2.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.2.5-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.2.5-partial-2.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.2.5-rollback-2.zip\";}s:7:\"current\";s:5:\"4.2.5\";s:7:\"version\";s:5:\"4.2.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:5:\"4.2.2\";s:13:\"support_email\";s:26:\"updatehelp42@wordpress.org\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1443209707;s:15:\"version_checked\";s:5:\"4.2.2\";s:12:\"translations\";a:0:{}}','yes'),(107,'_transient_random_seed','e74095a4fba08d4d5185e608343bf5a5','yes'),(108,'_site_transient_timeout_browser_4c0e1533e569eecf1271b8d65c9924bd','1432138415','yes'),(109,'_site_transient_browser_4c0e1533e569eecf1271b8d65c9924bd','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"42.0.2311.135\";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'),(111,'can_compress_scripts','0','yes'),(129,'_transient_twentyfifteen_categories','1','yes'),(130,'_site_transient_timeout_wporg_theme_feature_list','1431544660','yes'),(131,'_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'),(133,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1431534176;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(134,'current_theme','Zerif Lite','yes'),(135,'theme_mods_zerif-lite','a:24:{i:0;b:0;s:10:\"zerif_logo\";s:75:\"http://104.236.173.138/wp-content/uploads/2015/05/chris-dorbandt-header.png\";s:22:\"zerif_socials_facebook\";s:91:\"https://www.facebook.com/pages/Chris-Dorbandt-Associates-PLLC-Attorneys-at-Law/237933105624\";s:21:\"zerif_socials_twitter\";s:34:\"https://twitter.com/austintxlawyer\";s:22:\"zerif_socials_linkedin\";s:52:\"https://www.linkedin.com/pub/chris-dorbandt/7/90a/a3\";s:19:\"zerif_bigtitle_show\";s:0:\"\";s:16:\"background_image\";s:93:\"http://104.236.173.138/wp-content/uploads/2015/09/AustinNightCityFullBackgroundTallOrange.png\";s:21:\"background_position_x\";s:4:\"left\";s:20:\"zerif_bigtitle_title\";s:0:\"\";s:30:\"zerif_bigtitle_redbutton_label\";s:0:\"\";s:28:\"zerif_bigtitle_redbutton_url\";s:0:\"\";s:32:\"zerif_bigtitle_greenbutton_label\";s:0:\"\";s:30:\"zerif_bigtitle_greenbutton_url\";s:0:\"\";s:19:\"zerif_ourfocus_show\";s:1:\"1\";s:19:\"zerif_ourteam_title\";s:14:\"Practice Areas\";s:22:\"zerif_ourteam_subtitle\";s:0:\"\";s:11:\"zerif_email\";s:24:\"cborbandt@austin-law.com\";s:11:\"zerif_phone\";s:12:\"512-407-9700\";s:13:\"zerif_address\";s:48:\"7000 N. MoPac Expwy., Suite 200\nAustin, TX 78731\";s:21:\"zerif_socials_behance\";s:0:\"\";s:22:\"zerif_socials_dribbble\";s:0:\"\";s:22:\"zerif_aboutus_subtitle\";s:0:\"\";s:19:\"zerif_aboutus_title\";s:0:\"\";s:17:\"background_repeat\";s:9:\"no-repeat\";}','yes'),(136,'theme_switched','','yes'),(137,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(138,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(139,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(141,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(143,'widget_zerif_clients-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(144,'widget_ctup-ads-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(145,'widget_zerif_team-widget','a:10:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:9:{s:4:\"name\";s:21:\"DUI/DWI Drunk Driving\";s:8:\"position\";s:0:\"\";s:11:\"description\";s:94:\"If you have been charged with DWI, it is critical that you know your rights and what to expect\";s:7:\"fb_link\";s:0:\"\";s:7:\"tw_link\";s:0:\"\";s:7:\"bh_link\";s:0:\"\";s:7:\"db_link\";s:0:\"\";s:7:\"ln_link\";s:0:\"\";s:9:\"image_uri\";s:59:\"http://104.236.173.138/wp-content/uploads/2015/05/prac1.jpg\";}i:4;a:9:{s:4:\"name\";s:31:\"Boating While Intoxicated (BWI)\";s:8:\"position\";s:0:\"\";s:11:\"description\";s:110:\"Chris Dorbandt & Associates represents individuals charged with Boating While Intoxicated, also known as BWI. \";s:7:\"fb_link\";s:0:\"\";s:7:\"tw_link\";s:0:\"\";s:7:\"bh_link\";s:0:\"\";s:7:\"db_link\";s:0:\"\";s:7:\"ln_link\";s:0:\"\";s:9:\"image_uri\";s:59:\"http://104.236.173.138/wp-content/uploads/2015/05/prac2.jpg\";}i:5;a:9:{s:4:\"name\";s:11:\"Drug Crimes\";s:8:\"position\";s:0:\"\";s:11:\"description\";s:143:\"Our firm helps people who have been accused of a major drug offenses or drug trafficking crimes. Our motto is “Texas Friendly Spoken Here.”\";s:7:\"fb_link\";s:0:\"\";s:7:\"tw_link\";s:0:\"\";s:7:\"bh_link\";s:0:\"\";s:7:\"db_link\";s:0:\"\";s:7:\"ln_link\";s:0:\"\";s:9:\"image_uri\";s:59:\"http://104.236.173.138/wp-content/uploads/2015/05/prac4.jpg\";}i:6;a:9:{s:4:\"name\";s:17:\"Credit Card Abuse\";s:8:\"position\";s:0:\"\";s:11:\"description\";s:209:\"Our goal in every Credit Card / Debit Card Abuse case is to fully investigate every aspect of the case, develop an effective and aggressive defense strategy and achieve the best possible outcome for your case.\";s:7:\"fb_link\";s:0:\"\";s:7:\"tw_link\";s:0:\"\";s:7:\"bh_link\";s:0:\"\";s:7:\"db_link\";s:0:\"\";s:7:\"ln_link\";s:0:\"\";s:9:\"image_uri\";s:59:\"http://104.236.173.138/wp-content/uploads/2015/05/prac3.jpg\";}i:7;a:9:{s:4:\"name\";s:26:\"Expuncion/ Record Sealings\";s:8:\"position\";s:0:\"\";s:11:\"description\";s:146:\"Don’t allow a past criminal arrest hinder your ability to obtain honest employment, housing or apartment leasing, or any other important right. \";s:7:\"fb_link\";s:0:\"\";s:7:\"tw_link\";s:0:\"\";s:7:\"bh_link\";s:0:\"\";s:7:\"db_link\";s:0:\"\";s:7:\"ln_link\";s:0:\"\";s:9:\"image_uri\";s:59:\"http://104.236.173.138/wp-content/uploads/2015/05/prac5.jpg\";}i:8;a:9:{s:4:\"name\";s:15:\"Parole Hearings\";s:8:\"position\";s:0:\"\";s:11:\"description\";s:129:\"Our experience makes us highly qualified to assist a parole applicant in convincing the Board that he or she is ready for parole.\";s:7:\"fb_link\";s:0:\"\";s:7:\"tw_link\";s:0:\"\";s:7:\"bh_link\";s:0:\"\";s:7:\"db_link\";s:0:\"\";s:7:\"ln_link\";s:0:\"\";s:9:\"image_uri\";s:59:\"http://104.236.173.138/wp-content/uploads/2015/05/prac6.jpg\";}i:9;a:9:{s:4:\"name\";s:17:\"Federal Offenses \";s:8:\"position\";s:0:\"\";s:11:\"description\";s:174:\"Fraud and fraud-related charges are known as “white collar crimes.” These crimes frequently involve the theft of money or benefits by means of fraudulent representation. \";s:7:\"fb_link\";s:0:\"\";s:7:\"tw_link\";s:0:\"\";s:7:\"bh_link\";s:0:\"\";s:7:\"db_link\";s:0:\"\";s:7:\"ln_link\";s:0:\"\";s:9:\"image_uri\";s:59:\"http://104.236.173.138/wp-content/uploads/2015/05/prac8.jpg\";}i:10;a:9:{s:4:\"name\";s:17:\"Criminal Mischief\";s:8:\"position\";s:0:\"\";s:11:\"description\";s:197:\"Our goal in every Criminal Mischief case is to fully investigate every aspect of the case, develop an effective and aggressive defense strategy, and achieve the best possible outcome for your case.\";s:7:\"fb_link\";s:0:\"\";s:7:\"tw_link\";s:0:\"\";s:7:\"bh_link\";s:0:\"\";s:7:\"db_link\";s:0:\"\";s:7:\"ln_link\";s:0:\"\";s:9:\"image_uri\";s:59:\"http://104.236.173.138/wp-content/uploads/2015/05/prac7.jpg\";}}','yes'),(146,'widget_zerif_testim-widget','a:16:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:5:{s:4:\"text\";s:281:\"Chris Dorbandt is an outstanding attorney. I used Chris in a civil matter and could not have chosen a better attorney. Chris has a high level of integrity and is genuinely concerned about his clients. If you are in need of counsel, I highly recommend Chris Dorbandt and Associates.\";s:5:\"title\";s:9:\"Corky S. \";s:7:\"details\";s:13:\"Austin, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:4;a:5:{s:4:\"text\";s:647:\"I’ve been meaning to write this review for quite a while. This attorney is hands down the best you will find in Austin. He and his team know what they are doing. They care. They know how to get you the best deal or off charges that are over dramatized. They won’t be bullied and truly care about their clients and the law that is there to help them as well as protect society. Laws sometimes become a brain game and most attorneys just take your money and do as little as they think you will allow. These guys listen and suggest what is best for you. I strongly suggest that if you ever need a criminal attorney you choose Chris and his team.\";s:5:\"title\";s:11:\"Shannon M. \";s:7:\"details\";s:13:\"Austin, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:5;a:5:{s:4:\"text\";s:330:\"Chris and his wonderful associates have helped me so much. They are understanding and treat you like a person. Chris worked quickly to get my case dismissed and Melissa kept me updated. She reassured me that everything would turn out fine. Thank you all for your help and helping me get my life back on track. Highly recommended.\";s:5:\"title\";s:8:\"Laura O.\";s:7:\"details\";s:13:\"Austin, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:6;a:0:{}i:8;a:5:{s:4:\"text\";s:376:\"Dear Chris, I just wanted to let you know how much I have appreciated your help and guidance through all of this with Kate. Your assistance has truly been like a “father” to Kate, and as a close “friend” to me. As Kate certainly needs the help, I cannot thank you enough for all that you did, and continue to do, even though this matter has essentially been completed.\";s:5:\"title\";s:7:\"Dan A. \";s:7:\"details\";s:22:\"Baton Rouge, Louisiana\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:10;a:5:{s:4:\"text\";s:298:\"Without a doubt, they KNOW what they’re doing. They’re one of the most respected law firms in town, and they’ll go to great lengths to turn things around ASAP. Chris has been in the business for a while now, and his team is just as helpful and knowledgeable but most importantly – friendly.\";s:5:\"title\";s:10:\"Denisse V.\";s:7:\"details\";s:13:\"Austin, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:12;a:5:{s:4:\"text\";s:441:\"Aside from being the epitome of professionalism, Mr. Dorbandt is a very warm, friendly warm person, which I found extremely comforting considering my fate. He treated me as a person and not just a client. A year ago, I thought that my professional career opportunities would end because of an impending DWI conviction, but thanks to Mr. Dorbandt and his staff I am getting a second chance. For that, I would recommend his services to anyone!\";s:5:\"title\";s:10:\"Melissa P.\";s:7:\"details\";s:19:\"Pflugerville, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:13;a:5:{s:4:\"text\";s:393:\"Chris Dorbandt was my attorney on an assault charge. He and his team worked closely with me so that I understood everything that was going on. The final outcome was a lot better than I ever could have hoped for. Chris Dorbandt & Associates was the light at the end of a long dark tunnel. The fee that I paid was very reasonable, and the quality of work is the very best available. Much Thanks!\";s:5:\"title\";s:8:\"Vonda M.\";s:7:\"details\";s:13:\"Austin, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:14;a:5:{s:4:\"text\";s:346:\"Chris represented me in a marijuana possession case recently. He and his staff worked diligently to make sure my case turned out far better than I ever could have expected. I also felt that his fee was very reasonable, considering the high quality representation I received. I recommend Dorbandt and Associates to anyone who needs representation.\";s:5:\"title\";s:8:\"Mark W. \";s:7:\"details\";s:16:\"Wimberley, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:15;a:5:{s:4:\"text\";s:205:\"I’ll say what I told Mr. Dorbandt and his team. These guys are great. They know what needs to be done and they know how to do it. They take time to understand and they work hard to get you taken care of.\";s:5:\"title\";s:8:\"Frank A.\";s:7:\"details\";s:14:\"Leander, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:16;a:5:{s:4:\"text\";s:441:\"I have only had to use one attorney in my lifetime, but I know if I ever need to use another it will definitely be Chris Dorbandt. His assistants are very professional and organized. Chris, himself is personable and explains everything in ‘non-legal’ terms when needed. His patience and compassion are truly remarkable. I cannot express enough how this man and his team can change your life. Don’t think twice, this is your attorney.\";s:5:\"title\";s:9:\"Candie M.\";s:7:\"details\";s:19:\"Pflugerville, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:17;a:5:{s:4:\"text\";s:256:\"This man is an amazing attorney. He represented me with dignity and respect. Compassionate and understanding, he resolved my issue and gave me back my peace of mind. Thank you Mr. Dorbandt! I highly recommend him and his staff. They CAN and WILL help you!\";s:5:\"title\";s:8:\"Jaime O.\";s:7:\"details\";s:13:\"Austin, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:18;a:5:{s:4:\"text\";s:298:\"Without a doubt, they KNOW what they’re doing. They’re one of the most respected law firms in town, and they’ll go to great lengths to turn things around ASAP. Chris has been in the business for a while now, and his team is just as helpful and knowledgeable but most importantly – friendly.\";s:5:\"title\";s:11:\"Denisse V. \";s:7:\"details\";s:13:\"Austin, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}i:19;a:5:{s:4:\"text\";s:405:\"The services provided by Mr. Dorbandt and his staff are invaluable. I have seen first-hand how he can help people who are wrongly accused. He’s an extremely confident but personable lawyer and his staff is top-notch. I recommend him to anyone who needs to make sure they will get the best service possible in court. Mr. Dorbandt and his staff will do everything to serve the needs of you as a client.\";s:5:\"title\";s:10:\"Robert M. \";s:7:\"details\";s:13:\"Austin, Texas\";s:9:\"image_uri\";s:0:\"\";s:4:\"link\";s:0:\"\";}}','yes'),(290,'_site_transient_timeout_browser_6b10ea2d2417545676f9755a648bf2a9','1432682334','yes'),(291,'_site_transient_browser_6b10ea2d2417545676f9755a648bf2a9','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"42.0.2311.152\";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'),(388,'_site_transient_timeout_browser_c7592310e1fb80481efc23aef2403c8c','1433176788','yes'),(389,'_site_transient_browser_c7592310e1fb80481efc23aef2403c8c','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"43.0.2357.65\";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'),(410,'_site_transient_timeout_available_translations','1432591902','yes'),(411,'_site_transient_available_translations','a:56:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 23:59:50\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-02 03:57:09\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-25 18:55:51\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-24 05:23:15\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-17 18:19:04\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-10 21:13:03\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-24 16:03:38\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-25 13:39:01\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-18 10:50:06\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-04 19:47:01\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.0/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-16 10:01:41\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-15 10:49:37\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-29 17:08:38\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-05 17:37:43\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.0/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 15:20:27\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.5/haz.zip\";s:3:\"iso\";a:1:{i:2;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-23 10:52:35\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-21 12:07:28\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-07 06:15:06\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-18 23:48:51\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-23 17:17:36\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-15 08:57:03\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 22:23:52\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-04 08:01:04\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-18 08:22:28\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:09\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-09 10:19:58\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.2.2/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-09 10:15:05\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.5/ps.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ps\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-27 09:25:14\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-27 14:23:25\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-21 15:14:01\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-08 10:26:50\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 16:25:46\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-05 22:47:02\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 16:55:54\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-17 21:59:15\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-29 07:03:07\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 16:45:38\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-24 15:09:07\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-29 06:37:03\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','yes'),(419,'rewrite_rules','a:71:{s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(420,'category_children','a:0:{}','yes'),(459,'_site_transient_timeout_browser_9979bee7064c5035270425d30c0be8f5','1433288222','yes'),(460,'_site_transient_browser_9979bee7064c5035270425d30c0be8f5','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"43.0.2357.81\";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'),(890,'_site_transient_timeout_browser_e355f23ff9254ecbd54ffa680ee574ff','1443726866','yes'),(891,'_site_transient_browser_e355f23ff9254ecbd54ffa680ee574ff','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"45.0.2454.99\";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'),(904,'_transient_timeout_plugin_slugs','1443287571','no'),(905,'_transient_plugin_slugs','a:2:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";}','no'),(908,'_transient_is_multi_author','0','yes'),(909,'_transient_zerif_categories','0','yes'),(933,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1443244055','no'),(934,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Sep 2015 10:36: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:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=4.4-alpha-34531\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.3.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/09/wordpress-4-3-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:\"https://wordpress.org/news/2015/09/wordpress-4-3-1/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Sep 2015 15:22:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3914\";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:439:\"WordPress 4.3.1 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses three issues, including two cross-site scripting vulnerabilities and a potential privilege escalation. WordPress versions 4.3 and earlier are vulnerable to a cross-site scripting vulnerability when processing shortcode tags (CVE-2015-5714). Reported by […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Samuel Sidler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4022:\"<div class=\"storycontent\">\n<p>WordPress 4.3.1 is now available. This is a<strong> security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This release addresses three issues, including two cross-site scripting vulnerabilities and a potential privilege escalation.</p>\n<ul>\n<li>WordPress versions 4.3 and earlier are vulnerable to a cross-site scripting vulnerability when processing shortcode tags (CVE-2015-5714). Reported by Shahar Tal and Netanel Rubin of <a href=\"http://checkpoint.com/\">Check Point</a>.</li>\n<li>A separate cross-site scripting vulnerability was found in the user list table. Reported by Ben Bidner of the WordPress security team.</li>\n<li>Finally, in certain cases, users without proper permissions could publish private posts and make them sticky (CVE-2015-5715). Reported by Shahar Tal and Netanel Rubin of <a href=\"http://checkpoint.com/\">Check Point</a>.</li>\n</ul>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.3.1 also fixes twenty-six bugs. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.3.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.3/?rev=34199&stop_rev=33647\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.3.1</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.3.1.</p>\n</div>\n<p>Thanks to everyone who contributed to 4.3.1:</p>\n<p><a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/DrewAPicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dustinbolton\">dustinbolton</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hauvong\">hauvong</a>, <a href=\"https://profiles.wordpress.org/macmanx\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jobst\">jobst</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikeo\">nikeo</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/figureone\">Paul Ryan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy Levesque</a>, <a href=\"https://profiles.wordpress.org/umeshnevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/welcher\">welcher</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/09/wordpress-4-3-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: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:26:\"WordPress 4.3 “Billie”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2015/08/billie/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/news/2015/08/billie/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 18 Aug 2015 19:12:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3845\";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:352:\"Version 4.3 of WordPress, named “Billie” in honor of jazz singer Billie Holiday, is available for download or update in your WordPress dashboard. New features in 4.3 make it even easier to format your content and customize your site. Menus in the Customizer Create your menu, update it, and assign it, all while live-previewing in […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:22315:\"<p style=\"margin: 0;height: 0\"><img src=\"https://wordpress.org/news/files/2015/08/WordPress-4-3-billie-1024x574.png\" alt=\"WordPress 4.3 - "Billie"\" width=\"692\" height=\"388\" class=\"alignnone size-large wp-image-3896\" style=\"height:0px;width: 0px;margin: 0\" /></p>\n<p>Version 4.3 of WordPress, named “Billie” in honor of jazz singer <a href=\"https://en.wikipedia.org/wiki/Billie_Holiday\">Billie Holiday</a>, is available for <a href=\"https://wordpress.org/download/\">download</a> or update in your WordPress dashboard. New features in 4.3 make it even easier to format your content and customize your site.</p>\n<p><iframe width=\'692\' height=\'389\' src=\'https://videopress.com/embed/T54Iy7Tw?hd=1\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script></p>\n<hr />\n<h2>Menus in the Customizer</h2>\n<div><img src=\"//s.w.org/images/core/4.3/menu-customizer.png\" alt=\"\" /></div>\n<p>Create your menu, update it, and assign it, all while live-previewing in the customizer. The streamlined customizer design provides a mobile-friendly and accessible interface. With every release, it becomes easier and faster to make your site just the way you want it.</p>\n<hr />\n<h2>Formatting Shortcuts</h2>\n<div style=\"margin-bottom: 0\"><div style=\"width: 640px; \" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-3845-1\" width=\"640\" height=\"360\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"//s.w.org/images/core/4.3/formatting.mp4?_=1\" /><source type=\"video/webm\" src=\"//s.w.org/images/core/4.3/formatting.webm?_=1\" /><source type=\"video/ogg\" src=\"//s.w.org/images/core/4.3/formatting.ogv?_=1\" /><a href=\"//s.w.org/images/core/4.3/formatting.mp4\">//s.w.org/images/core/4.3/formatting.mp4</a></video></div></div>\n<p>Your writing flow just got faster with new formatting shortcuts in WordPress 4.3. Use asterisks to create lists and number signs to make a heading. No more breaking your flow; your text looks great with a <code>*</code> and a <code>#</code>.</p>\n<hr />\n<h2>Site Icons</h2>\n<p><img src=\"//s.w.org/images/core/4.3/site-icon-customizer.png\" alt=\"\" /><br />\n <br />\nSite icons represent your site in browser tabs, bookmark menus, and on the home screen of mobile devices. Add your unique site icon in the customizer; it will even stay in place when you switch themes. Make your whole site reflect your brand.</p>\n<hr />\n<h2>Better Passwords</h2>\n<p><img src=\"//s.w.org/images/core/4.3/better-passwords.png\" alt=\"\" /><br />\n <br />\nKeep your site more secure with WordPress’ improved approach to passwords. Instead of receiving passwords via email, you’ll get a password reset link. When you add new users to your site or edit a user profile, WordPress will automatically generate a secure password.</p>\n<hr />\n<h2>Other improvements</h2>\n<ul>\n<li><strong>A smoother admin experience</strong> – Refinements to the list view across the admin make your WordPress more accessible and easier to work with on any device.</li>\n<li><strong>Comments turned off on pages</strong> – All new pages that you create will have comments turned off. Keep discussions to your blog, right where they’re supposed to happen.</li>\n<li><strong>Customize your site quickly</strong> – Wherever you are on the front-end, you can click the customize link in the toolbar to swiftly make changes to your site.</li>\n</ul>\n<hr />\n<h2>The Team</h2>\n<p><a class=\"alignleft\" href=\"https://profiles.wordpress.org/obenland\"><img src=\"https://www.gravatar.com/avatar/2370ea5912750f4cb0f3c51ae1cbca55?d=mm&s=180&r=G\" alt=\"Konstantin Obenland\" width=\"80\" height=\"80\" /></a>This release was led by <a href=\"http://konstantin.obenland.it/\">Konstantin Obenland</a>, with the help of these fine individuals. There are 246 contributors with props in this release. Pull up some Billie Holiday on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/mercime\">@mercime</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamkheckler\">Adam Heckler</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bjorklund</a>, <a href=\"https://profiles.wordpress.org/akirk\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>, <a href=\"https://profiles.wordpress.org/andfinally\">andfinally</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andg\">Andrea Gandino</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/antpb\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/anubisthejackle\">anubisthejackle</a>, <a href=\"https://profiles.wordpress.org/aramzs\">Aram Zucker-Scharff</a>, <a href=\"https://profiles.wordpress.org/arjunskumar\">Arjun S Kumar</a>, <a href=\"https://profiles.wordpress.org/avnarun\">avnarun</a>, <a href=\"https://profiles.wordpress.org/brad2dabone\">Bad Feather</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/binarykitten\">BinaryKitten</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornjohansen\">Bjorn Johansen</a>, <a href=\"https://profiles.wordpress.org/bolo1988\">bolo1988</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradt\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/bramd\">Bram Duvigneau</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/brianlayman\">Brian Layman</a>, <a href=\"https://profiles.wordpress.org/icaleb\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/calevans\">CalEvans</a>, <a href=\"https://profiles.wordpress.org/chasewiseman\">Chase Wiseman</a>, <a href=\"https://profiles.wordpress.org/chipbennett\">Chip Bennett</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/craig-ralston\">Craig Ralston</a>, <a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Mte90 Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/daniluk4000\">daniluk4000</a>, <a href=\"https://profiles.wordpress.org/dmchale\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/daveal\">DaveAl</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/daxelrod\">daxelrod</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/realloc\">Dennis Ploetner</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipesh.kakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dustinbolton\">dustinbolton</a>, <a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>, <a href=\"https://profiles.wordpress.org/eclev91\">eclev91</a>, <a href=\"https://profiles.wordpress.org/eligijus\">eligijus</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/francoeurdavid\">francoeurdavid</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/gabrielperezs\">gabrielperezs</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/glennm\">glennm</a>, <a href=\"https://profiles.wordpress.org/gtuk\">gtuk</a>, <a href=\"https://profiles.wordpress.org/hailin\">hailin</a>, <a href=\"https://profiles.wordpress.org/hauvong\">hauvong</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrikakselsen\">henrikakselsen</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hrishiv90\">Hrishikesh Vaipurkar</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isaacchapman\">isaacchapman</a>, <a href=\"https://profiles.wordpress.org/izem\">izem</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jacklenox\">Jack Lenox</a>, <a href=\"https://profiles.wordpress.org/jadpm\">jadpm</a>, <a href=\"https://profiles.wordpress.org/macmanx\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jamesgol\">jamesgol</a>, <a href=\"https://profiles.wordpress.org/jancbeck\">jancbeck</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jmichaelward\">Jeremy Ward</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">jipmoors</a>, <a href=\"https://profiles.wordpress.org/eltobiano\">jjberry</a>, <a href=\"https://profiles.wordpress.org/jobst\">Jobst Schmalenbach</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/jkudish\">Joey Kudish</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/picard102\">John Leschinski</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/maxxsnake\">Josh Davis</a>, <a href=\"https://profiles.wordpress.org/jpyper\">Jpyper</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/ungestaltbar\">Kai</a>, <a href=\"https://profiles.wordpress.org/karinchristen\">karinchristen</a>, <a href=\"https://profiles.wordpress.org/karpstrucking\">karpstrucking</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kevkoeh\">Kevin Koehler</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leogopal\">Leo Gopal</a>, <a href=\"https://profiles.wordpress.org/loushou\">loushou</a>, <a href=\"https://profiles.wordpress.org/lumaraf\">Lumaraf</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/nofearinc\">Mario Peshev</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius (Clorith)</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/marsjaninzmarsa\">marsjaninzmarsa</a>, <a href=\"https://profiles.wordpress.org/martinsachse\">martinsachse</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/nikonratm\">Michael</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michaelryanmcneill\">michaelryanmcneill</a>, <a href=\"https://profiles.wordpress.org/mcguive7\">Mickey Kay</a>, <a href=\"https://profiles.wordpress.org/mihai\">mihai</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mrutz\">mrutz</a>, <a href=\"https://profiles.wordpress.org/nabil_kadimi\">nabil_kadimi</a>, <a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nazmulhossainnihal\">Nazmul Hossain Nihal</a>, <a href=\"https://profiles.wordpress.org/nicholas_io\">nicholas_io</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nickmomrik\">Nick Momrik</a>, <a href=\"https://profiles.wordpress.org/nikeo\">nikeo</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/onnimonni\">Onni Hakala</a>, <a href=\"https://profiles.wordpress.org/ozh\">Ozh</a>, <a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/djpaul\">Paul Gibbs</a>, <a href=\"https://profiles.wordpress.org/figureone\">Paul Ryan</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/gungeekatx\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/peterrknight\">PeterRKnight</a>, <a href=\"https://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/posykrat\">posykrat</a>, <a href=\"https://profiles.wordpress.org/pragunbhutani\">pragunbhutani</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rarylson\">rarylson</a>, <a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>, <a href=\"https://profiles.wordpress.org/rauchg\">rauchg</a>, <a href=\"https://profiles.wordpress.org/ravinderk\">Ravinder Kumar</a>, <a href=\"https://profiles.wordpress.org/rclations\">RC Lations</a>, <a href=\"https://profiles.wordpress.org/greuben\">Reuben Gunday</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/ritteshpatel\">Ritesh Patel</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/rdall\">Robert Dall</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/rhurling\">Rouven Hurling</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/rmarks\">Ryan Marks</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ohryan\">Ryan Neudorf</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sagarjadhav\">Sagar Jadhav</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/santagada\">santagada</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sebastiantiede\">Sebastian</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/designsimply\">Sheri Bigelow</a>, <a href=\"https://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury (stephdau)</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stuartshields\">stuartshields</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar</a>, <a href=\"https://profiles.wordpress.org/sunnyratilal\">Sunny Ratilal</a>, <a href=\"https://profiles.wordpress.org/taka2\">taka2</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/thorbrink\">Thor Brink</a>, <a href=\"https://profiles.wordpress.org/creativeinfusion\">Tim Smith</a>, <a href=\"https://profiles.wordpress.org/tlexcellent\">tlexcellent</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tomasm\">Tomas Mackevicius</a>, <a href=\"https://profiles.wordpress.org/tomharrigan\">TomHarrigan</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/toru\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy (LilJimmi) Levesque</a>, <a href=\"https://profiles.wordpress.org/tryon\">Tryon Eggleston</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/desaiuditd\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/umeshnevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/vivekbhusal\">vivekbhusal</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/willnorris\">Will Norris</a>, <a href=\"https://profiles.wordpress.org/willgladstone\">willgladstone</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/willstedt\">willstedt</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/ysalame\">Yuri Salame</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/katzwebdesign\">Zack Katz</a>, and <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>.\n<p> </p>\n<p>Special thanks go to <a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a> for producing the release video, <a href=\"http://hugobaeta.com/\">Hugo Baeta</a> for the design, and <a href=\"http://jacklenox.com/\">Jack Lenox</a> for the voice-over.</p>\n<p>Finally, thanks to all of the contributors who provided subtitles for the release video, which at last count had been translated into 30 languages!</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.4!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/news/2015/08/billie/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:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.2.4 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 04 Aug 2015 12:10:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3827\";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:397:\"WordPress 4.2.4 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses six issues, including three cross-site scripting vulnerabilities and a potential SQL injection that could be used to compromise a site, which were discovered by Marc-Alexandre Montpas of Sucuri, Helen Hou-Sandí […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Samuel Sidler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2011:\"<p>WordPress 4.2.4 is now available. This is a<strong> security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This release addresses six issues, including three cross-site scripting vulnerabilities and a potential SQL injection that could be used to compromise a site, which were discovered by <a href=\"https://sucuri.net/\">Marc-Alexandre Montpas</a> of Sucuri, <a href=\"http://helenhousandi.com/\">Helen Hou-Sandí</a> of the WordPress security team, <a href=\"http://www.checkpoint.com/\">Netanel Rubin</a> of Check Point, and <a href=\"https://hackerone.com/reactors08\">Ivan Grigorov</a>. It also includes a fix for a potential timing side-channel attack, discovered by <a href=\"http://www.scrutinizer-ci.com/\">Johannes Schmitt</a> of Scrutinizer, and prevents an attacker from locking a post from being edited, discovered by <a href=\"https://www.linkedin.com/in/symbiansymoh\">Mohamed A. Baset</a>.</p>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.4 also fixes four bugs. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.4\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=33573&stop_rev=33396\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.4</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.2.4.</p>\n<p><em>Already testing WordPress 4.3? The second release candidate is now available (<a href=\"https://wordpress.org/wordpress-4.3-RC2.zip\">zip</a>) and it contains these fixes. For more on 4.3, see <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/\">the RC 1 announcement post</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.3 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2015/07/wordpress-4-3-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:\"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2015 23:50:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3817\";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:340:\"The release candidate for WordPress 4.3 is now available. We’ve made more than 100 changes since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.3 on Tuesday, August 18, but we […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Konstantin Obenland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2256:\"<p>The release candidate for WordPress 4.3 is now available.</p>\n<p>We’ve made more than <a href=\"https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&mode=stop_on_copy&rev=33512&stop_rev=33372&limit=120\">100 changes</a> since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.3 on <strong>Tuesday, August 18</strong>, but we need your help to get there.</p>\n<p>If you haven’t tested 4.3 yet, now is the time!</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.3 RC1, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.3-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.3 and update your plugin’s <em>Tested up to</em> version in the readme to 4.3 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href=\"https://make.wordpress.org/core/\">follow along the core development blog</a>, where we’ll continue to post <a href=\"https://make.wordpress.org/core/tag/dev-notes+4-3/\">notes for developers</a> for 4.3.</p>\n<p><em>Drei Monate Arbeit</em><br />\n<em>Endlich das Ziel vor Augen</em><br />\n<em>Bald hab ich Urlaub!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2015/07/wordpress-4-3-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:4;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.2.3 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/07/wordpress-4-2-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:\"https://wordpress.org/news/2015/07/wordpress-4-2-3/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jul 2015 11:21:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3807\";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:380:\"WordPress 4.2.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.2.2 and earlier are affected by a cross-site scripting vulnerability, which could allow users with the Contributor or Author role to compromise a site. This was initially reported by Jon Cave and […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2708:\"<p>WordPress 4.2.3 is now available. This is a<strong> security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.2.2 and earlier are affected by a cross-site scripting vulnerability, which could allow users with the Contributor or Author role to compromise a site. This was initially reported by <a href=\"https://profiles.wordpress.org/duck_\">Jon Cave</a> and fixed by <a href=\"http://www.miqrogroove.com/\">Robert Chapin</a>, both of the WordPress security team, and later reported by <a href=\"http://klikki.fi/\">Jouko Pynnönen</a>.</p>\n<p>We also fixed an issue where it was possible for a user with Subscriber permissions to create a draft through Quick Draft. Reported by Netanel Rubin from <a href=\"https://www.checkpoint.com/\">Check Point Software Technologies</a>.</p>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.3 also contains fixes for 20 bugs from 4.2. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=33382&stop_rev=32430\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.2.3.</p>\n<p>Thanks to everyone who contributed to 4.2.3:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/gabrielperezs\">Gabriel Pérez</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Mike Adams</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, and <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-2-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:5;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 22 Jul 2015 21:55:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3796\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 4.3 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Konstantin Obenland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2212:\"<p>WordPress 4.3 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/\">Beta 3</a> blog posts. Some of the changes in Beta 4 include:</p>\n<ul>\n<li><span class=\"s1\">Fixed several bugs and broken flows in the </span><span class=\"s1\"><strong>publish box </strong></span><span class=\"s1\">in the edit screen.</span></li>\n<li>Addressed a number of edge cases for word count in the <strong>editor</strong>.</li>\n<li><span class=\"s1\"><strong>Site icons</strong> </span><span class=\"s1\">can now be previewed within the customizer. The feature has been removed from general settings.</span></li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&mode=stop_on_copy&rev=33369&stop_rev=33289\">more than 60 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.3\">everything we’ve fixed</a>.</p>\n<p><em>Few Tickets Remain</em><br />\n<em>Edge Cases Disappearing</em><br />\n<em>You Must Test Today</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-3-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:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2015 21:49: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:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3787\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 4.3 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Konstantin Obenland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2529:\"<p>WordPress 4.3 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\">Beta 2</a> blog posts. Some of the changes in Beta 3 include:</p>\n<ul>\n<li>Performance improvements for <strong>Menus in the Customizer</strong>, as well as bug fixes and visual enhancements.</li>\n<li>Added <strong>Site Icon</strong> to the Customizer. The feature is now complete and requires lots of testing. Please help us ensure the site icon feature works well in both Settings and the Customizer.</li>\n<li>The improvements to <strong>Passwords</strong> have been added to the installation flow. When installing and setting up WordPress, a strong password will be suggested to site administrators. Please test and let us know if you encounter issues.</li>\n<li>Improved <strong>accessibility of comments and media list tables</strong>. If you use a screen reader, please let us know if you encounter any issues.</li>\n<li>Lots and lots of code documentation improvements.</li>\n<li><strong>Various other bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=33286&stop_rev=33141&limit=150\">more than 140 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.3\">everything we’ve fixed</a>.</p>\n<p><em>Want to test new things?</em><br />\n<em>Wonder how four three shapes up?</em><br />\n<em>Answer: beta three</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-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:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2015 22:04:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3769\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 4.3 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Konstantin Obenland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2876:\"<p>WordPress 4.3 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Fixed an issue in beta 1 where an alert appeared when saving or publishing a new post/page for the first time.</li>\n<li><strong><strong>Customizer</strong></strong> improvements including enhanced accessibility, smoother menu creation and location assignment, and the ability to handle nameless menus. Please help us test menus in the Customizer to fix any remaining edge cases!</li>\n<li>More robust<strong> list tables</strong> with full content support on small screens and a fallback for the primary column for custom list tables. We’d love to know how these list tables, such as All Posts and Comments, work for you now on small screen devices.</li>\n<li>The <strong>Site Icon</strong> feature has been improved so that cropping is skipped if the image is the exact size (512px square) and the media modal now suggests a minimum icon size. Please let us know how the flow feels and if you encounter any glitches!</li>\n<li>The <strong>toolbar</strong> now has a direct link to the customizer, along with quick access to themes, widgets, and menus in the dashboard.</li>\n<li>We enabled <strong>utf8mb4 for MySQL</strong> extension users, which was previously unintentionally limited to MySQLi users. Please let us know if you run into any issues.</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=33138&stop_rev=33046\">almost 100 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.3&group=component&order=priority\">everything we’ve fixed</a>.</p>\n<p><em>Edges polished up</em><br />\n<em>Features meliorated</em><br />\n<em>Beta Two: go test!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamps Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/2015/07/wordcamps-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2015/07/wordcamps-update/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2015 16:13:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3758\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:311:\"Last week saw the halfway point for 2015, yay! This seems like a good time to update you on WordCamp happenings in the first half of this year. There have been 39 WordCamps in 2015 so far, with events organized in 17 different countries and on 5 continents. More than 14,000 people have registered for […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9419:\"<p>Last week saw the halfway point for 2015, yay! This seems like a good time to update you on WordCamp happenings in the first half of this year.</p>\n<p>There have been <a href=\"https://central.wordcamp.org/schedule/past-wordcamps/\">39 WordCamps in 2015</a> so far, with events organized in 17 different countries and on 5 continents. More than 14,000 people have registered for WordCamp tickets so far this year, isn’t that amazing?</p>\n<p><a href=\"https://europe.wordcamp.org/2015/\">WordCamp Europe</a> was held in Seville, Spain just a few weeks ago, with close to 1,000 registered participants and over 500 live stream participants. You can watch <a href=\"http://wordpress.tv/2015/07/04/matt-mullenweg-keynote-qanda-wordcamp-europe-2015/\">Matt Mullenweg’s keynote Q&A</a> session from WordCamp Europe right now on WordPress.tv.</p>\n<p>WordPress.tv has published 537 videos so far in 2015 from WordCamps around the world. Some of the more popular 2015 WordCamp talks on WordPress.tv include <a href=\"http://wordpress.tv/2015/03/13/tammie-lister-theme-dont-be-my-everything/\">Tammie Lister: Theme, Don’t Be My Everything </a>from WordCamp Maui, <a href=\"http://wordpress.tv/2015/04/17/jenny-munn-seo-for-2015-whats-in-whats-out-and-how-to-be-in-it-to-win-it-for-good/\">Jenny Munn: SEO for 2015 – What’s In, What’s Out and How to Be In It to Win It (For Good)</a> from WordCamp Atlanta, <a href=\"http://wordpress.tv/2015/02/27/fabrice-ducarme-les-constructeurs-de-page-pour-wordpress/\">Fabrice Ducarme: Les Constructeurs de Page pour WordPress</a> from WordCamp Paris, <a href=\"http://wordpress.tv/2015/06/02/ben-furfie-how-to-value-price-websites/\">Ben Furfie: How to Value Price Websites</a> from WordCamp London, and <a href=\"http://wordpress.tv/2015/06/09/morten-rand-hendriksen-building-themes-from-scratch-using-underscores-_s/\">Morten Rand-Hendriksen: Building Themes From Scratch Using Underscores (_S)</a> from WordCamp Seattle. Check them out!</p>\n<h3>Lots of great WordCamps are still to come</h3>\n<p><a href=\"http://ma.tt/2015/06/wordcamp-us-survey/\">WordCamp US</a> is currently in pre-planning, in the process of deciding on a host city. The following cities have proposed themselves as a great place to host the first WordCamp US: Chattanooga, Chicago, Detroit, Orlando, Philadelphia, and Phoenix. It’s possible the first WordCamp US will be held in 2016 so we can organize the best first WordCamp US imaginable.</p>\n<p>At this time, there are 28 <a href=\"https://central.wordcamp.org/schedule/\">WordCamps</a>, in 9 different countries, that have announced their dates for the rest of 2015. Twelve of these have tickets on sale:</p>\n<ul>\n<li><a href=\"https://columbus.wordcamp.org/2015/\">WordCamp Columbus</a>, Columbus, Ohio: July 17-18</li>\n<li><a href=\"https://scranton.wordcamp.org/2015/\">WordCamp Scranton</a>, Scranton, Pennsylvania: July 18</li>\n<li><a href=\"https://boston.wordcamp.org/2015/\">WordCamp Boston</a>, Boston, Massachussetts: July 18-19</li>\n<li><a href=\"https://milwaukee.wordcamp.org/2015/\">WordCamp Milwaukee</a>, Milwaukee, Wisconsin: July 24-26</li>\n<li><a href=\"https://asheville.wordcamp.org/2015/\">WordCamp Asheville</a>, Asheville, North Carolina: July 24-26</li>\n<li><a href=\"https://kansai.wordcamp.org/2015/\">WordCamp Kansai</a>, Kansai, Japan: July 25-26</li>\n<li><a href=\"https://fayetteville.wordcamp.org/2015/\">WordCamp Fayetteville</a>, Fayetteville, Arkansas: July 31-August 2</li>\n<li><a href=\"https://brighton.buddycamp.org/2015/\">BuddyCamp Brighton</a>,
Brighton, UK: August 8</li>\n<li><a href=\"https://vancouver.wordcamp.org/2015/\">WordCamp Vancouver, BC,</a> Vancouver, BC, Canada: August 15-16</li>\n<li><a href=\"https://russia.wordcamp.org/2015/\">WordCamp Russia</a>, Moscow, Russia: August 15</li>\n<li><a href=\"https://norrkoping.wordcamp.org/2015/\">WordCamp Norrköping</a>, Norrköping, Sweden: August 28-29</li>\n<li><a href=\"https://croatia.wordcamp.org/2015/\">WordCamp Croatia</a>, Rijeka, Croatia: September 5-6</li>\n<li><a href=\"https://krakow.wordcamp.org/2015/\">WordCamp Krakow,</a>
Krakow, Poland: September 12-13</li>\n<li><a href=\"https://nyc.wordcamp.org/2015/\">WordCamp NYC</a>, New York City, New York: October 30-November 1</li>\n</ul>\n<p>The other 16 events don’t have tickets on sale yet, but they’ve set their dates! Subscribe to the sites to find out when registration opens:</p>\n<ul>\n<li><a href=\"https://pune.wordcamp.org/2015/\">WordCamp Pune</a>, Pune, India: September 6</li>\n<li><a href=\"https://capetown.wordcamp.org/2015/\">WordCamp Cape Town</a>, Cape Town, South Africa: September 10-11</li>\n<li><a href=\"https://baltimore.wordcamp.org/2015/\">WordCamp Baltimore</a>, Baltimore, Maryland: September 12</li>\n<li><a href=\"https://slc.wordcamp.org/2015/\">WordCamp Salt Lake City</a>, Salt Lake City, Utah: September 12</li>\n<li><a href=\"https://lithuania.wordcamp.org/2015/\">WordCamp Lithuania</a>, Vilnius, Lithuania: September 19</li>\n<li><a href=\"https://vegas.wordcamp.org/2015\">WordCamp Vegas</a>, Las Vegas, Nevada: September 19-20</li>\n<li><a href=\"https://switzerland.wordcamp.org/2015/\">WordCamp Switzerland</a>, Zurich, Switzerland: September 19-20</li>\n<li><a href=\"https://tampa.wordcamp.org/2015/\">WordCamp Tampa</a>, Tampa, Florida: September 25-27</li>\n<li><a href=\"https://rhodeisland.wordcamp.org/2015/\">WordCamp Rhode Island</a>,
Providence, Rhode Island: September 25-26</li>\n<li><a href=\"https://la.wordcamp.org/2015/\">WordCamp Los Angeles</a>, Los Angeles, California: September 26-27</li>\n<li><a href=\"https://denmark.wordcamp.org/2015/\">WordCamp Denmark,</a>
Copenhagen, Denmark: October 3-4</li>\n<li><a href=\"https://toronto.wordcamp.org/2015\">WordCamp Toronto</a>, Toronto, Ontario, Canada: October 3-4</li>\n<li><a href=\"https://hamptonroads.wordcamp.org/2015/\">WordCamp Hampton Roads, </a>
Virginia Beach, VA, USA: October 17</li>\n<li><a href=\"https://annarbor.wordcamp.org/2015\">WordCamp Ann Arbor</a>, Ann Arbor, Michigan: October 24</li>\n<li><a href=\"https://portland.wordcamp.org/2015/\">WordCamp Portland</a>,
Portland, OR: October 24-25</li>\n</ul>\n<p>On top of all those exciting community events, there are 26 WordCamps in pre-planning as they look for the right event space. If you have a great idea for a free or cheap WordCamp venue in any of the below locations, get in touch with the organizers through the WordCamp sites:</p>\n<ul>\n<li><a href=\"https://dfw.wordcamp.org/2015/\">WordCamp DFW</a>:
Dallas/Fort Worth, Texas</li>\n<li><a href=\"https://riodejaneiro.wordcamp.org/2015/\">WordCamp Rio</a>: Rio de Janeiro, Brazil</li>\n<li><a href=\"https://saratoga.wordcamp.org/2015/\">WordCamp Saratoga</a>:
Saratoga Springs, New York</li>\n<li><a href=\"https://sofia.wordcamp.org/2015\">WordCamp Sofia</a>:
Sofia, Bulgaria</li>\n<li><a href=\"https://austin.wordcamp.org/2015/\">WordCamp Austin</a>:
Austin, TX</li>\n<li><a href=\"https://ottawa.wordcamp.org/2015/\">WordCamp Ottawa</a>:
Ottawa, Canada</li>\n<li><a href=\"https://charleston.wordcamp.org/2015/\">WordCamp Charleston</a>:
Charleston, South Carolina</li>\n<li><a href=\"https://chicago.wordcamp.org/2015/\">WordCamp Chicago</a>:
Chicago, Illinois</li>\n<li><a href=\"https://albuquerque.wordcamp.org/2015/\">WordCamp Albuquerque</a>:
Albuquerque, New Mexico</li>\n<li><a href=\"https://prague.wordcamp.org/2015/\">WordCamp Prague</a>:
Prague, Czech Republic</li>\n<li><a href=\"https://seoul.wordcamp.org/2014/\">WordCamp Seoul: </a>Seoul, South Korea</li>\n<li><a href=\"https://louisville.wordcamp.org/2014/\">WordCamp Louisville</a>: Louisville, Kentucky</li>\n<li><a href=\"https://omaha.wordcamp.org/2015/\">WordCamp Omaha</a>:
Omaha, Nebraska</li>\n<li><a href=\"https://grandrapids.wordcamp.org/2015/\">WordCamp Grand Rapids</a>:
Grand Rapids, Michigan</li>\n<li><a href=\"https://easttroy.wordcamp.org/2015/\">WordCamp East Troy</a>:
East Troy, Wisconsin</li>\n<li><a href=\"https://palmademallorca.wordcamp.org/2015\">WordCamp Mallorca</a>: Palma de Mallorca, Spain</li>\n<li><a href=\"https://edinburgh.wordcamp.org/2015/\">WordCamp Edinburgh</a>:
Edinburgh, United Kingdom</li>\n<li><a href=\"https://orlando.wordcamp.org/2015/\">WordCamp Orlando</a>:
Orlando, Florida</li>\n<li><a href=\"https://mexico.wordcamp.org/2015/\">WordCamp Mexico City</a>:
Mexico City, Mexico</li>\n<li><a href=\"https://netherlands.wordcamp.org/2015/\">WordCamp Netherlands</a>:
Utrecht, Netherlands</li>\n<li><a href=\"https://phoenix.wordcamp.org/2016/\">WordCamp Phoenix</a>:
Phoenix, Arizona</li>\n<li><a href=\"https://saopaulo.wordcamp.org/2015/\">WordCamp São Paulo</a>:
São Paulo, Brazil</li>\n<li><a href=\"https://manchester.wordcamp.org/2015/\">WordCamp Manchester</a>:
Manchester, United Kingdom</li>\n<li><a href=\"https://tokyo.wordcamp.org/2015/\">WordCamp Tokyo</a>:
Tokyo, Japan</li>\n<li><a href=\"https://lima.wordcamp.org/2015/\">WordCamp Lima</a>:
Lima, Peru</li>\n<li><a href=\"https://seattle.wordcamp.org/2015-beginner/\">WordCamp Seattle: Beginner</a>: Seattle, WA</li>\n</ul>\n<p>Don’t see your city on the list, but yearning for a local WordCamp? WordCamps are organized by local volunteers from the WordPress community, and we have a whole team of people to support new organizers setting up a first-time WordCamp. If you want to bring WordCamp to town, check out how you can <a href=\"https://central.wordcamp.org/become-an-organizer/\">become a WordCamp organizer</a>!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/news/2015/07/wordcamps-update/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 01:30:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3738\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.3 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Konstantin Obenland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4352:\"<p>WordPress 4.3 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta1.zip\">download the beta here</a> (zip).</p>\n<p>4.3 is due out next month, but to get there, we need your help testing what we’ve been working on:</p>\n<ul>\n<li><strong>Menus</strong> can now be managed with the <strong>Customizer</strong>, which allows you to live preview changes you’re making without changing your site for visitors until you’re ready. We’re especially interested to know if this helps streamline the process of setting up your site (<a href=\"https://core.trac.wordpress.org/ticket/32576\">#32576</a>).</li>\n<li>Take control of another piece of your site with the <strong>Site Icon</strong> feature. You can now manage your site’s favicon and app icon from the admin area (<a href=\"https://core.trac.wordpress.org/ticket/16434\">#16434</a>).</li>\n<li>We put a lot of work into <strong>Better Passwords</strong> throughout WordPress. Now, WordPress will limit the life time of password resets, no longer send passwords via email, and generate and suggest secure passwords for you. Try it out and let us know what you think! (<a href=\"https://core.trac.wordpress.org/ticket/32589\">#32589</a>)</li>\n<li>We’ve also added <strong>Editor Improvements</strong>. Certain text patterns are automatically transformed as you type, including <code>*</code> and <code>-</code> transforming into unordered lists, <code>1.</code> and <code>1)</code> for ordered lists, <code>></code> for blockquotes and two to six number signs (<code>#</code>) for headings (<a href=\"https://core.trac.wordpress.org/ticket/31441\">#31441</a>).</li>\n<li>We’ve improved the <strong>list view</strong> across the admin dashboard. Now, when you view your posts and pages <strong>on small screen devices</strong>, columns are not truncated and can be toggled into view (<a href=\"https://core.trac.wordpress.org/ticket/32395\">#32395</a>).</li>\n</ul>\n<p><strong>Developers</strong>: There have been a few of changes for you to test as well, including:</p>\n<ul>\n<li><strong>Taxonomy Roadmap:</strong> Terms shared across multiple taxonomies will <a href=\"https://make.wordpress.org/core/2015/06/09/eliminating-shared-taxonomy-terms-in-wordpress-4-3/\">now be split</a> into separate terms on update to 4.3. Please let us know if you hit any snags (<a href=\"https://core.trac.wordpress.org/ticket/30261\">#30261</a>).</li>\n<li>Added <code>singular.php</code> to the template hierarchy as a fallback for <code>single.php</code> and <code>page.php</code>. (<a href=\"https://core.trac.wordpress.org/ticket/22314\">#22314</a>).</li>\n<li>The old Distraction Free Writing code was removed (<a href=\"https://core.trac.wordpress.org/ticket/30949\">#30949</a>).</li>\n<li>List tables now can (and often should) have a primary column defined. We’re working on a fallback for existing custom list tables but right now they likely have some breakage in the aforementioned responsive view (<a href=\"https://core.trac.wordpress.org/ticket/25408\">#25408</a>).</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.3, <a href=\"https://make.wordpress.org/core/tag/4-3/\">check out all 4.3-tagged posts</a> on the main development blog.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.3\">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Site icons for all</em><br />\n<em>Live preview menu changes</em><br />\n<em>Four three beta now</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 25 Sep 2015 17:07:35 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Thu, 17 Sep 2015 10:36:36 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20130911040210\";}','no'),(935,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1443244055','no'),(936,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1443200855','no'),(937,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1443244055','no'),(938,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: Lessons I Learned Moderating Comments in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=48340\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/lessons-i-learned-moderating-comments-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3414:\"<p>In the past 4-5 weeks, I’ve moderated every comment submitted to WP Tavern. Not only was it an experiment to see what would happen but a new way for me to use WordPress. The experiment introduced me to several drawbacks in WordPress’ comment moderation system.</p>\n<h2>Lack of Context</h2>\n<p>Comments that are pending moderation in the WordPress backend that are in response to another comment are hard to moderate. Take the following screenshot for example. This comment is in response to a comment submitted by Norcross. Unless I open Norcross’ comment in a new browser tab or window, I have no idea what the context of the conversation is. Pending notifications in the WordPress mobile app also don’t show text from the parent comment.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/WordPress43CommentContent.png\"><img class=\"size-full wp-image-48150\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/WordPress43CommentContent.png?resize=851%2C161\" alt=\"WordPress 4.3 Comment Content Area\" /></a>WordPress 4.3 Comment Content Area\n<p>I propose that WordPress core adds the text from parent comments to replies in the backend so I know what people are responding too. This also helps when replying to comments from the backend as I’ll know the context of the conversation.</p>\n<h2>Lack of Notifications That a Comment in Moderation is Approved</h2>\n<p>WordPress does not send an email notification when a comment is approved from moderation. However, there are a lot of people <a href=\"https://core.trac.wordpress.org/ticket/33717\">working to add</a> this feature to WordPress 4.4.</p>\n<h2>A Whitelisting System for Anonymous Comments</h2>\n<p>The biggest drawback to comment moderation is that not every comment needs to be moderated. A whitelisting system can lessen the burden of having to moderate each comment.</p>\n<p>WordPress provides the ability to blacklist comments. You can also configure a set of parameters to determine when a comment goes into the moderation queue such as, number of links, content within the comment, and if the comment author has a previously approved comment. None of these configurations are useful if WordPress is configured to send every comment to moderation.</p>\n<p>WP Tavern does not have open registration and allows comments from anonymous people. This makes whitelisting difficult since the IP address, name, URL, and email address of a commenter can easily change or be imitated. The whitelisting component of WordPress becomes more useful if you can tie it to a registered user account.</p>\n<p>I’m unsure if WordPress can improve this area of the moderation system or if it’s an assumed risk administrators take when accepting anonymous comments.</p>\n<h2>A Major Time Suck</h2>\n<p>Moderating every comment is a pain and sucks up time that can be spent doing something else. During my vacation last week, I continued to moderate comments from the WordPress mobile app because if I didn’t, the conversation stopped. I’ve concluded that by accepting anonymous comments, there needs to be a way for the audience to help moderate instead of doing it on my own.</p>\n<p>In a future post, I’m going to list a few WordPress plugins I’ve discovered that takes the commenting system to the next level. Many of the plugins solve one or most of the problems listed above.</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, 25 Sep 2015 15:52: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:\"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: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:56:\"WPTavern: WP Super Cache 1.4.5 Patches XSS Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=48336\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wptavern.com/wp-super-cache-1-4-5-patches-xss-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:466:\"<p>If you use <a href=\"https://wordpress.org/plugins/wp-super-cache/\">WP Super Cache</a>, you should immediately update to version 1.4.5 as it <a href=\"https://wordpress.org/plugins/wp-super-cache/changelog/\">patches a XSS vulnerability</a> in the settings page. This version also prevents PHP object injections. In addition to security patches, 1.4.5 contains a number of bug fixes. Make sure to update your sites as soon as possible to patch the vulnerability.</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, 25 Sep 2015 14:37:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Post Status: All about the WordPress REST API and its current state — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=14463\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://poststatus.com/the-wordpress-rest-api-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3516:\"<p>Welcome to the Post Status Draft podcast, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a> and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Brian and his co-host, <a href=\"https://twitter.com/joe_hoyle\">Joe Hoyle</a>, a co-founder and the CTO of <a href=\"https://hmn.md/\">Human Made</a>, discuss some of today’s hottest, current WordPress news.</p>\n<p>This week, Joe and Brian go into depth discussing all aspects of the WordPress REST API, and the state of the API today.</p>\n<p>With the recent merge proposal, there is a good chance it will be included in WordPress core via a two stage process in the WordPress 4.4 and 4.5 releases. The first release would be the core infrastructure and the second release would include the endpoints. This is our longest podcast, but we go in depth on one of WordPress’s most anticipated features in years.</p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"http://audio.simplecast.fm/17641.mp3\">http://audio.simplecast.fm/17641.mp3</a>\n<p><a href=\"http://audio.simplecast.fm/17641.mp3\">Direct Download</a></p>\n<h3>Topics:</h3>\n<ul>\n<li>Brief overview: what is the REST API?</li>\n<li>Why is the REST API important, and why are people excited about it?</li>\n<li>REST API proposal</li>\n<li>Reviews from the core team</li>\n<li>New REST API core component</li>\n<li>Trac Ticket</li>\n<li>Comparison’s to Drupal’s REST API</li>\n<li>Customizer roadmap in regards to the API</li>\n<li>Authentication and future REST API projects</li>\n</ul>\n<h3>Links:</h3>\n<ul>\n<li><a href=\"http://v2.wp-api.org/\">REST API Version 2 site and docs</a></li>\n<li><a href=\"https://make.wordpress.org/core/2015/09/21/wp-rest-api-merge-proposal/\">REST API merge proposal</a></li>\n<li><a href=\"https://make.wordpress.org/core/2015/09/23/committer-reviews-of-the-rest-api/\">Committer review requests for the REST API</a></li>\n<li><a href=\"https://poststatus.com/wordpress-json-rest-api/\">Introduction to the WordPres REST API</a></li>\n<li><a href=\"https://poststatus.com/how-storycorps-uses-wordpress-to-enable-storytelling-everywhere/\">How StoryCorp uses the REST API</a> for mobile audio uploads</li>\n<li><a href=\"https://www.openhub.net/p/wordpress\">WordPress on OpenHub</a></li>\n<li><a href=\"https://core.trac.wordpress.org/ticket/33982\">The core ticket</a> for merging the REST API infrastructure (Stage 1)</li>\n<li><a href=\"https://poststatus.com/notes/lessons-for-wordpress-from-drupalcon/\">Lessons for WordPress from Drupalcon</a> (members only)</li>\n<li>Matt Mullenweg’s <a href=\"http://www.producthunt.com/live/matt-mullenweg#comment-151620\">excitement for the API</a> on a Product Hunt AMA</li>\n<li>Ryan McCue’s “<a href=\"https://poststatus.com/a-future-api/\">A Future API</a>” post on possibilities, including centralized auth</li>\n<li><a href=\"https://make.wordpress.org/core/2015/09/23/outlining-a-possible-roadmap-for-the-customizer/\">Possible roadmap for the Customizer</a> (including REST API integrations, perhaps)</li>\n<li>The new <a href=\"https://make.wordpress.org/core/components/rest-api/\">REST API core Trac component</a></li>\n<li><a href=\"https://github.com/WP-API/OAuth1\">OAuth1</a> for the WordPress REST API</li>\n<li>The <a href=\"https://github.com/WP-API\">API on Github</a></li>\n<li><a href=\"http://feelingrestful.com/\">A Day of REST</a> conference all about the API</li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 25 Sep 2015 05:21: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:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WPTavern: WPWeekly Episode 207 – Going Postmatic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48327\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wpweekly-episode-207-going-postmatic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2704:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <span class=\"st\">Jason Lemieux</span> and <span class=\"st\">Dylan Kuhn</span> of <a href=\"https://gopostmatic.com/\">Postmatic</a>. During the show, we learn the company’s history and how it started. We discuss what the service offers and how people can take advantage of it.</p>\n<p>Last but not least, we learn what the company has in store for version 2.0. If you’ve thought about using Postmatic or want to learn more about the company, this episode is for you.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/the-wordpress-rest-api-is-one-major-step-closer-to-being-merged-into-core\">The WordPress REST API Is One Major Step Closer to Being Merged Into Core</a><br />\n<a href=\"http://wptavern.com/the-impacts-heropress-is-having-on-wordpress-communities-in-india\">The Impacts HeroPress Is Having on WordPress Communities in India</a><br />\n<a href=\"http://wptavern.com/jeff-yablon-and-the-wordpress-foundation-settle-out-of-court\">Jeff Yablon and the WordPress Foundation Settle Out of Court</a><br />\n<a href=\"http://torquemag.io/the-ultimate-guide-to-the-wordpress-rest-api-an-ebook-by-josh-pollock/\">The Ultimate Guide to the WordPress REST API by Josh Pollock</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/wp-user-activity/\">WP User Activity</a> logs activity in WordPress. Activities can be sorted, filtered, and viewed per-user, along with session data for logged in users, IP addresses, and user-agents.</p>\n<p><a href=\"https://wordpress.org/plugins/wishlist-for-woocommerce/\">Wishlist for WooCommerce</a> lets customers save the items they want to purchase in the future.</p>\n<p><a href=\"https://wordpress.org/plugins/database-to-excel/\">Database to Excel</a> allows you to export a MySQL database table to a Microsoft Excel file. It also allows you to show all of the values within a database table with an <em>export to Excel</em> option.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, September 30th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #207:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Sep 2015 18:31:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:39:\"Akismet: Akismet WordPress Plugin 3.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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1873\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://blog.akismet.com/2015/09/24/akismet-3-1-4-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1261:\"<p>Version 3.1.4 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>This update clarifies the error messages that Akismet uses so that they’re easier to understand, and it enables link previews in the admin for all links in a comment — not just the author’s website link. A fix is also included for a bug that could have caused comment moderation emails to be sent for some comments that were caught as spam. For a full list of the changes in this release, see the <a href=\"https://plugins.trac.wordpress.org/log/akismet/trunk\">revision log</a>.</p>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1873/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1873/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1873&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Sep 2015 17:35: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:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:90:\"WPTavern: WP Comment Humility Relocates the Comments Top-level Menu Item to the Posts Menu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48313\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"http://wptavern.com/wp-comment-humility-relocates-the-comments-top-level-menu-item-to-the-posts-menu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1786:\"<p>One of the key <a href=\"http://wptavern.com/wordpress-4-3-billie-named-after-jazz-singer-billie-holiday-is-available-for-download\">features in WordPress 4.3</a> is that comments on pages are disabled by default. If you only enable comments for posts, you may be interested in <a href=\"https://wordpress.org/plugins/wp-comment-humility/\">WP Comment Humility</a>, a new plugin created by <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> that moves the top-level Comments menu item to the Posts menu. The following screenshot better illustrates what it does.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/CommentHumilityInAction.png\"><img class=\"size-full wp-image-48314\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/CommentHumilityInAction.png?resize=429%2C378\" alt=\"Comment Humility in Action\" /></a>Comment Humility in Action\n<p>If a site enables comments for posts only, this location for the menu item makes sense. What if you’re using Custom Post Types? According the <a href=\"https://wordpress.org/plugins/wp-comment-humility/faq/\">plugin’s FAQ</a>, the user experience might be weird, “If you have a post type other than <em>post</em> that supports comments, it may make more sense to not use this plugin,” Jacoby said. He suggests giving it a try and if the user experience doesn’t feel right, to disable it.</p>\n<p>Documentation is <a href=\"http://github.com/stuttter/wp-comment-humility/\">located on GitHub</a> where you can also submit Pull Requests. WP Comment Humility works out-of-the-box without any configuration options on WordPress 4.3 and is <a href=\"https://wordpress.org/plugins/wp-comment-humility/\">available for free</a> in the WordPress plugin directory.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Sep 2015 23:19:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:76:\"WPTavern: Highlights From Matt Mullenweg’s Q&A Session on Product Hunt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48303\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wptavern.com/highlights-from-matt-mullenwegs-qa-session-on-product-hunt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4859:\"<p>On September 22nd, Matt Mullenweg participated in a <a href=\"http://www.producthunt.com/live/matt-mullenweg\">question and answer session</a> on <a href=\"http://www.producthunt.com/\">Product Hunt</a>. Product Hunt is a site <span class=\"_Tgc\">that lets users share and discover new products. In the session, Mullenweg answers questions like what advice he’d give to his 20 and 25-year-old self and how he combats burn out. Here are a few highlights from the session.<br />\n</span></p>\n<hr />\n<p><strong>Nikhil V</strong> – Hello Matt, with the upcoming release of the WP REST API in WordPress core, what do you hope to most see built with its capabilities?</p>\n<p><strong>Matt Mullenweg</strong> – I’m hugely excited about the REST API! Once the infrastructure is in, I think we’ll see really widespread adoption from plugins that right now are creating their endpoints in very ad-hoc ways. Once we iterate a bit more on the core content endpoints and authentication I think we’ll see a lot more specialized interfaces built on WP as like a content kernel, an engine powering a wide array of applications and interfaces you’d never imagine having WordPress behind them today.</p>\n<p><strong>Erik Torenberg – </strong>If you could go back in time and give advice for your, say, 20-year-old self, what would you tell yourself? How about 25?</p>\n<p><strong>Matt Mullenweg</strong> – To my 20-year-old self I would say to be okay with things building up over time. Something I didn’t appreciate until recently is that there any many productive decades ahead with which to build the things that I feel need to exist in the world. One of the best things I did then was avoid any press or capitalization on my age (to the extent I could) because youth is an ephemeral asset and just a novelty in business.</p>\n<p>To my 25-year-old self I would tell him to slow down and think about health more, I burned the candle at both ends that year. I would also say to not get as caught up in mailing list and IRC arguments and discussions, just focus on building.</p>\n<p><strong>Sydney Liu</strong> – In the early days of WordPress, what was the 20% that got you the 80% of the results?</p>\n<p><strong>Matt Mullenweg</strong> – There’s no simple answer there, if I had to pick one thing it would be <em>luck</em>.</p>\n<p><strong> <span class=\"comments--item--heading--name\">Kristof Bernaert</span></strong> – How do you see WP about 5 years, or how do you want it to see?</p>\n<p><strong>Matt Mullenweg</strong> – In 5 years I think that WP will be infinitely easier to use for both power-users, developers, and newbies. You will be able to have a full experience of core, plugins, themes, docs, and support in several dozen languages that will be as large or larger than English. There will be over a million people making their living on top of the platform. Most people will be creating from touch devices, and their content will mostly not come from keyboards (virtual or physical) as an input device.</p>\n<p><strong><span class=\"comments--item--heading--name\">Tys Bradford</span></strong> <span class=\"comments--item--heading--name\">– Your accomplishments with WordPress have literally changed the face of the internet and enabled people without programming skills to make beautiful and functional websites. Do you think this could be replicated ever with mobile applications (iOS/Android)? I have seen a few companies try, but none have come close to delivering in the way WordPress is able to.</span></p>\n<p><strong>Matt Mullenweg</strong> – Thank you! The ecosystems and app stores for iOS and Android right now are too locked down, and the discoverability and overhead of apps is too distorted, for an approach like WordPress’ to work for mobile applications. The environment for the foreseeable future there is going to favor more centralized apps, my only hope is that at least a few get really successful (including ours) that aren’t advertising-driven.</p>\n<h2>My Question Was Not Answered</h2>\n<p>Unfortunately, my question was not answered. However, I’m going to ask it in this post with the hope that he’ll answer it in the comments.</p>\n<p><em>You’ve spent a lot of time, money, and energy trying to create a great mobile experience in WordPress via dedicated apps. As more of the WordPress backend becomes responsive, how will this affect (if any) the priority level of developing the mobile apps versus putting that time and effort into a 100% responsive WordPress backend?</em></p>\n<p>Mullenweg answers a lot more questions than what’s listed above but those are the ones that stand out to me. You can <a href=\"http://www.producthunt.com/live/matt-mullenweg\">read the entire session</a> on the Product Hunt site.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Sep 2015 20:46:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:83:\"WPTavern: The WordPress REST API Is One Major Step Closer to Being Merged Into Core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=48284\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wptavern.com/the-wordpress-rest-api-is-one-major-step-closer-to-being-merged-into-core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2965:\"<p>After more than three years of development, the <a href=\"http://v2.wp-api.org/\">WordPress REST API</a> is one major step closer to getting merged into core. Ryan McCue, a lead contributor to the project, published the first <a href=\"https://make.wordpress.org/core/2015/09/21/wp-rest-api-merge-proposal/\">official proposal</a> to merge the API into WordPress. The proposal explains what the REST API is, why it’s needed, an integration plan, and what happens after the merge. The plan is to integrate the API in two stages, infrastructure and endpoints.</p>\n<h2>Two Part Plan</h2>\n<p>The infrastructure is the code responsible for routing requests and handling the meta layer of the API, including JSON serialization/deserialization, linking, embedding, and REST best practices. Merging the infrastructure first allows developers to start building upon it and to migrate from existing custom code. The plan is to merge the infrastructure portion of the API in WordPress 4.4.</p>\n<p>Endpoints are considered the more complex of the two as they’re responsible for mapping data from the external JSON format to the internal data structures and vice versa. In other words, endpoints are the bridges of communication between WordPress and external applications. To provide more time for core committers to review the code, endpoints will be merged in WordPress 4.5.</p>\n<p>Development of the API <a href=\"https://github.com/WP-API/WP-API\">takes place on GitHub</a> but core WordPress development takes place on Subversion and Trac. When the API is merged into core, it will no longer be developed as a separate project. McCue proposes that the best of GitHub and Trac be integrated so developers comfortable with GitHub can continue to contribute to the project:</p>\n<blockquote><p>Given the team’s experience with GitHub as well as Trac, we can bring the best of both worlds by helping integrate the two. This would also improve contributions to WordPress as a whole, and benefit the whole community. This will be especially important as we encourage more contributions from the wider community (client authors, for example). We think we can make good progress here, and we’d love to try to help improve the process.</p></blockquote>\n<p>Although there’s a <a href=\"https://github.com/wordpress/wordpress\">GitHub repository for WordPress</a> that’s synced to its Subversion counterpart, it does not accept pull requests. If integrating GitHub and Trac proves to be successful, it could open the door for WordPress to accept pull requests or contributions through GitHub.</p>\n<p>The plan to merge the API into core is not finalized and the team needs your <a href=\"https://make.wordpress.org/core/2015/09/21/wp-rest-api-merge-proposal/\">comments, questions, and opinions</a>. I encourage you to read the full proposal and the comments as McCue answers additional questions related to the merge. How happy are you to see this merge proposal?</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, 23 Sep 2015 18:55:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:28:\"Matt: Product Hunt AMA Today\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45356\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2015/09/product-hunt-ama-today/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:222:\"<p>In about half an hour I’m doing an AMA (ask me anything) on Product Hunt, <a href=\"https://www.producthunt.com/live/matt-mullenweg\">please join and ask some questions on any topic that tickles your fancy</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, 22 Sep 2015 18:39:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:75:\"WPTavern: The Impacts HeroPress Is Having on WordPress Communities in India\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48286\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://wptavern.com/the-impacts-heropress-is-having-on-wordpress-communities-in-india\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2137:\"<p>Topher DeRosia, who recently attended<a href=\"http://wptavern.com/a-recap-of-wordcamp-pune-india-by-topher-derosia\"> WordCamp Pune</a>, India, <a href=\"http://heropress.com/subtle-impacts/\">published a post on the HeroPress blog</a> that describes the subtle impacts the project is having on people.</p>\n<p>Saurabh Shukla, lead organizer for WordCamp Pune, says the site inspired not only their speaker selection but their presentations as well, “We wanted people to derive at least a level of inspiration from the speakers and decided that stories make more sense than presentations,” Shukla said.</p>\n<p>Examples of inspiring presentations at WordCamp Pune include, a workshop where people could experience accessibility issues for themselves, WordPress for activism, and building education products for South Asia.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/WordCamp-Pune-India-Classroom.png\"><img class=\"size-full wp-image-48218\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/WordCamp-Pune-India-Classroom.png?resize=904%2C509\" alt=\"WordCamp Pune Classrooms\" /></a>Presentation in a Classroom at WordCamp Pune\n<p>According to DeRosia, many Indians feel like their WordPress communities are not getting the respect they deserve. DeRosia believes the amount of excitement expressed by Indians for HeroPress is because their work is noticed and appreciated.</p>\n<p><em>“That</em> is why India is excited about HeroPress. They’re getting respect. Not just from me, but from thousands of readers around the world,” DeRosia said.</p>\n<p>Although DeRosia says he’d be content with the impacts the site has had if HeroPress ended today, I would be sad to see it go because it’s a great addition to the WordPress community. Thankfully, DeRosia says people are requesting more essays, exchanges of knowledge, shared wisdom, shared respect, and more of the HeroPress spirit.</p>\n<p>If an essay published on HeroPress or the <a href=\"http://heropress.com/about/\">project’s mission</a> has inspired you in any way, please 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:\"Tue, 22 Sep 2015 17:50: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: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:40:\"Matt: Interview, and Complementing Slack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://ma.tt/2015/09/complementing-slack/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1437:\"<p>I had a conversation with <a href=\"https://about.me/tonyconrad\">Tony Conrad</a> at the <a href=\"http://www.strictlyvc.com/\">StrictlyVC</a> event in San Francisco last week, following a dizzyingly talented line-up of <a href=\"http://techcrunch.com/2015/09/17/chamath-palihapitaya-on-insane-burn-rates-ipos-and-raising-a-new-real-estate-fund/\">Chamath Palihapitiya</a> and <a href=\"http://dfj.com/content/steve-jurvetson\">Steve Jurvetson</a>.</p>\n<p><a href=\"http://techcrunch.com/2015/09/18/move-over-slack-automattic-mulls-commercializing-its-own-internal-messaging-product/\">Techcrunch has a good write-up with a number of the relevant quotes from the event</a>. The only thing I’d like to respond to, because it wasn’t a direct quote, is the headline “Move Over Slack? Automattic Mulls Commercializing Its Own Internal Messaging Product.”</p>\n<p>The first problem is the headline missed the obvious alliteration of “Mullenweg Mulls,” <img src=\"http://s.w.org/images/core/emoji/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" />but more importantly… <a href=\"https://slack.com/\">Slack</a> has become a really key tool for both Automattic <a href=\"https://make.wordpress.org/chat/\">and WordPress.org</a> and anything we do with the evolution of <a href=\"http://p2theme.com/\">P2</a> (some of which we already have running internally) will be complementary to Slack, not competitive 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:\"Tue, 22 Sep 2015 04:26:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:70:\"WPTavern: Jeff Yablon and the WordPress Foundation Settle Out of Court\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48267\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wptavern.com/jeff-yablon-and-the-wordpress-foundation-settle-out-of-court\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5837:\"<p>Earlier this year, the <a href=\"http://wptavern.com/the-wordpress-foundation-sues-jeff-yablon-for-trademark-infringement\">WordPress Foundation sued Jeff Yablon</a> for trademark infringement. The Foundation wanted Yablon to stop using its trademarks, dismiss the opposition proceeding, pay the foundation for any profits related to use of the WordPress trademarks, pay up to $100,000 per infringing domain name, transfer the domains and pay other fees and damages.</p>\n<h2>Timeline of Events</h2>\n<p>On June 22nd, <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=91221895&pty=OPP&eno=7\">Yablon filed a request</a> for default judgement. On June 29th, the Foundation responded to Yablon by <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=91221895&pty=OPP&eno=8\">asking the Trademark Trial and Appeal Board</a> to deny Yablon’s request for default judgement.</p>\n<p>On September 9th, David Mermelstein, Administrative Trademark Judge, <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=91221895&pty=OPP&eno=9\">filed a response</a> that not only denied Yablon’s motion for default judgment, but also suspended proceedings until the civil case was complete.</p>\n<p>With proceedings suspended, Yablon could no longer file motions or requests with the TTAB. The only option left was to proceed through court.</p>\n<h2>The Settlement Between Yablon and The Foundation</h2>\n<p>On September 21st, Yablon and the WordPress Foundation <a href=\"https://cloudup.com/cLmq3DWS6MZ\">settled out of court</a> (PDF).</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/YablonSettlementSample.png\"><img class=\"size-full wp-image-48277\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/YablonSettlementSample.png?resize=839%2C621\" alt=\"Sample of Settlement\" /></a>Sample of Settlement\n<h3>Yablon’s Obligations</h3>\n<p>According to the settlement, by no later than October 15th, Yablon agrees to cease any and all use of the WordPress name, logos, trademarks, and any other name or mark confusingly similar to the term WordPress or its logo.</p>\n<p>He also has to cease any and all use of the WordPress Marks, standing alone or in combination with other words or designs, including but not limited to:</p>\n<ul>\n<li>Use in any company name</li>\n<li>Meta-tags</li>\n<li>Domain names</li>\n<li>Personalized URLs</li>\n<li>Keyword Advertising on Yablon’s websites</li>\n<li>Social media handles or account names</li>\n<li>Indoor outdoor store signage</li>\n<li>Letterhead</li>\n<li>Stationary</li>\n<li>Business cards</li>\n</ul>\n<p>Yablon must also comply with the terms of the <a href=\"http://wordpressfoundation.org/trademark-policy/\">WordPress trademark and domain name policies</a>.</p>\n<p>No later than five days after the effective date (Oct 15th), Yablon has to transfer all of the domains he owns that incorporate the WordPress Mark to the Foundation.</p>\n<p>Last but not least, Yablon acknowledges that the Foundation owns and has the exclusive rights in and to the WordPress marks in connection with the goods and services identified in each of WordPress’ registrations.</p>\n<p>Yablon can no longer do anything inconsistent with the Foundation’s ownership of its WordPress Marks and registrations thereof, including but not limited to, contesting the Foundation’s title to or the validity of the WordPress marks or the trademark registrations thereof.</p>\n<h3>WordPress Foundation’s Obligations</h3>\n<p>Once Yablon transfers the domains to the Foundation and does not breach the terms of the agreement, the Foundation will redirect the domains to a domain of Yablon’s choosing for 6 months from the effective date or April 1, 2016, whichever comes later.</p>\n<p>Within 10 days of the domains being transferred, the Foundation will file a stipulated request to withdrawal its U.S. Opposition Proceeding No. 91221895 without prejudice and Case 3:15-cv02745 in the United States District Court for the Northern District of California, without prejudice.</p>\n<p>As long as Yablon does not breach the agreement, the Foundation agrees not to sue for violating its trademarks prior to the effective date.</p>\n<p>The Foundation will not object to Yablon’s use of the WordPress Marks as part of any subdomains or subdirectories associated with any second level domain name registered to and controlled exclusively by Yablon.</p>\n<p>Examples include but are not limited to, wordpress.answerguy.com or answerguy.com/wordpress in connection with services that involve use of the WordPress platform, support the WordPress brand services, and that do not otherwise violate the rights of the Foundation.</p>\n<h2>In Summary</h2>\n<p>Both parties agree to bear their own attorney’s fees and costs, if any were incurred through the effective date.</p>\n<p>When I <a href=\"http://wptavern.com/the-wordpress-foundation-sues-jeff-yablon-for-trademark-infringement\">spoke to Yablon</a> on the phone in June shortly after the lawsuit was filed, he sounded like he knew what he was getting into and the complexities involved with U.S. Trademarks. Yablon strongly believed he had enough evidence to pursue the matter and to see it through the court system.</p>\n<p>Instead of seeing the court case all the way through, he chose to give up which in the court system, is not the same thing as losing, as losing or winning sets a precedent.</p>\n<p>While Yablon didn’t lose the case, the WordPress Foundation didn’t win either. It’s a reminder that the Foundation will aggressively defend its trademarks in the court system if other means prove unsuccessful.</p>\n<p>Do you think Yablon’s mission to defend his use of WordPress in a top-level domain name and potentially open the door for others to do the same, was in the best interest of the WordPress community as a whole?</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, 22 Sep 2015 01:59:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:98:\"Post Status: Local WordPress development strategies and transparency in business — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=14389\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://poststatus.com/local-wordpress-development-strategies-and-transparency-in-business-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2596:\"<p>Welcome to the Post Status Draft podcast, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a> and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Brian and his co-host, <a href=\"https://twitter.com/joe_hoyle\">Joe Hoyle</a>, a co-founder and the CTO of <a href=\"https://hmn.md/\">Human Made</a>, discuss some of today’s hottest, current WordPress news.</p>\n<p><a href=\"https://audio.simplecast.fm/17416.mp3\">https://audio.simplecast.fm/17416.mp3</a><br />\n<a href=\"http://audio.simplecast.fm/17416.mp3\">Direct Download</a></p>\n<h3>Links and stories discussed:</h3>\n<h4>Working locally</h4>\n<ul>\n<li><a href=\"https://github.com/Varying-Vagrant-Vagrants/VVV\">Varying Vagrant Vagrants (VVV)</a></li>\n<li><a href=\"https://github.com/Chassis/Chassis\">Chassis</a></li>\n<li><a href=\"https://github.com/humanmade/Salty-WordPress\">Salty WordPress</a></li>\n<li><a href=\"https://serverpress.com/get-desktopserver/\">Get DesktopServer</a></li>\n<li><a href=\"https://www.mamp.info/en/mamp-pro/\">MAMP and MAMP Pro</a></li>\n<li><a href=\"https://hub.docker.com/_/wordpress/\">Docker Hub</a></li>\n<li><a href=\"https://guynathan.com/install-lamp-stack-on-mavericks-with-homebrew-with-php-mcrypt\">Installing LAMP stacks with Homebrew</a></li>\n<li><a href=\"https://www.digitalocean.com/community/tutorials/how-to-dockerise-and-deploy-multiple-wordpress-applications-on-ubuntu\">How to Dockerise and deploy multiple WordPress applications on Ubuntu</a></li>\n<li><a href=\"https://docs.docker.com/machine/\">Docker Machine</a></li>\n<li><a href=\"https://github.com/Automattic/vip-quickstart\">VIP Quickstart</a></li>\n<li><a href=\"http://wp-cli.org/\">WP-CLI</a></li>\n</ul>\n<h4>Underscore.js</h4>\n<ul>\n<li><a href=\"http://underscorejs.org/\">Underscore.js </a></li>\n<li><a href=\"http://themehybrid.com/weblog/intro-to-underscore-js-templates-in-wordpress\">Intro to Underscore.js templates in WordPress</a></li>\n<li><a href=\"https://poststatus.com/backbone-js-underscore-js-and-wordpress/\">Backbone.js, Underscore.js and why they matter for WordPress</a></li>\n</ul>\n<h4>Transparency</h4>\n<ul>\n<li><a href=\"http://wplift.com/income-reports-roundup-july-2015\">WPLift’s Public income reports roundup</a></li>\n<li><a href=\"https://buffer.com/transparency\">Buffer+Transparency</a></li>\n<li><a href=\"http://chrislema.com/downside-transparency-reports/\">Is there a downside to transparency reports?</a></li>\n</ul>\n<h4>Nomadbase.io launch</h4>\n<ul>\n<li><a href=\"https://nomadbase.io/\">Nomadbase.io</a></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 19 Sep 2015 17:58: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:14:\"Katie Richards\";s: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:33:\"Matt: Winning Remote Work Culture\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45324\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://ma.tt/2015/09/winning-remote-work-culture/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:163:\"<p><a href=\"http://blog.cloudpeeps.com/top-10-companies-winning-at-remote-work-culture/\">Top 10 companies winning at remote work culture and their secrets</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Sep 2015 17:41:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:75:\"Post Status: Gravity Flow makes custom form administrative workflows simple\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=14337\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://poststatus.com/gravity-flow-makes-custom-form-administrative-workflows-simple/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6464:\"<p></p>\n<p><a href=\"https://gravityflow.io/\">Gravity Flow</a> is one of the coolest new plugins I’ve seen in quite some time.</p>\n<p>Invoices, purchase orders, job applications, and employee vacation requests are just a few potential applications for Gravity Flow, which makes form-centric approval, user input, and notification processes simple.</p>\n<p>“With Gravity Flow, you use the power of <a href=\"http://www.gravityforms.com/\">Gravity Forms</a> to design your forms, and you use Gravity Flow to design your process using easy to use drag-and-drop tools,” the video states. The flows created in Gravity Flow can be customized to include all sorts of user-defined paths to request stakeholder feedback, get administrative approval, or fire off a notification that a certain step in the flow has been accomplished. It can even be integrated with other notification systems like Zapier.</p>\n<p>It’s not that common to see a WordPress plugin (especially an add-on plugin) that simultaneously targets a niche and serves it so extensively. Gravity Flow is built to extend the powerful Gravity Forms product, and it really takes it an extra mile.</p>\n<p>I see a lot of potential for Gravity Flow for intranets and other corporate environments with lots of stakeholders and traditionally clunky, email based workflows for approval of common tasks.</p>\n<h3>Trying Gravity Flow</h3>\n<p>I took Gravity Flow for a spin, because there is a handy demo site capability built in. For a plugin this complex, being able to test drive it is a really great feature. Most workflow tasks can take place either in the admin or on the front-end.</p>\n<p>Creating workflows feels a lot like adding regular notifications to Gravity Forms.</p>\n<p><img class=\"aligncenter size-large wp-image-14340\" src=\"https://cdn.poststatus.com/wp-content/uploads/2015/09/gravity-flow-workflow-752x579.png\" alt=\"gravity-flow-workflow\" width=\"752\" height=\"579\" /></p>\n<p>Workflows have many configuration and sending options. And each step can be sorted and arranged to follow a series of steps, and can even allow for delays (like for a scholarship review period, in my example).</p>\n<p>That’s the view for an administrator, but someone who is responsible for providing feedback or approval has a front-end view to directly interact with the workflow.</p>\n<p><img class=\"aligncenter size-large wp-image-14339\" src=\"https://cdn.poststatus.com/wp-content/uploads/2015/09/gravity-flow-review-update-workflow-752x872.png\" alt=\"gravity-flow-review-update-workflow\" width=\"752\" height=\"872\" /></p>\n<p>And administrators can see reports of activity for various workflows.</p>\n<p><img class=\"aligncenter size-large wp-image-14338\" src=\"https://cdn.poststatus.com/wp-content/uploads/2015/09/gravity-flow-reports-752x552.png\" alt=\"gravity-flow-reports\" width=\"752\" height=\"552\" /></p>\n<p>This is a pretty simple overview of the plugin, and I’d recommend you <a href=\"http://demo.gravityflow.io/\">check out the demo</a>, or his full <a href=\"http://docs.gravityflow.io/category/34-walkthroughs\">walkthrough</a> examples. but this at least highlights some of the plugin’s power.</p>\n<h3>Development of Gravity Flow</h3>\n<p>One of the more interesting things about Gravity Flow is that <a href=\"https://www.stevenhenty.com/\">Steven Henty</a> made it. Steven actually works at Rocketgenius, the company behind Gravity Forms, and he is a developer of the main Gravity Forms product.</p>\n<p>I talked to Steven about why this isn’t a Gravity Forms official add-on, and what it’s like working on a side project for your own company’s product.</p>\n<blockquote><p>Rocketgenius has a lot of plans and loads of really exciting stuff in the pipeline so it was a question of priorities – Rocketgenius can’t possibly do absolutely everything at the same time. For me it’s a project that’s niche enough to be an interesting and profitable side project and yet not too time-consuming so I can continue to focus 100% on my day job.</p></blockquote>\n<p>He also reiterated how important it is to him that he had his team behind him for this project. And Carl Hancock — co-founder of Rocketgenius — is excited about Steven’s product as well, saying “The product is awesome. It’s definitely more complex [and] business oriented, but that’s a good thing.”</p>\n<p>Carl also shared that Steve has a background that lends itself to thinking about complex problems to solve, working on, “more enterprise stuff pre-WordPress, on a wide variety of platforms and programming languages.”</p>\n<p>Steve did a great job with Gravity Flow, and I’m happy to see it out there. On <a href=\"https://www.stevenhenty.com/gravity-flow/\">his personal blog</a>, he highlights use cases for the product, which are real world examples based on how his first 100 beta testers are using it.</p>\n<h3>Gravity ecosystem</h3>\n<p>A few Rocketgenius employees have Gravity Forms focused side projects, which I think is really cool. Another favorite of mine is David Smith’s <a href=\"http://gravitywiz.com/\">Gravity Wiz</a>, that adds functionality snippets, or “perks”, to Gravity Forms. The third-party ecosystem is doing well too; <a href=\"https://gravityplus.pro/\">Gravity Plus</a> and <a href=\"https://gravityview.co/\">Gravity View</a> are two healthy Gravity Forms focused businesses that come to mind, and I’m sure there are many more.</p>\n<p>The main plugin continues to dominate the WordPress forms space. Though it is commercial only, it powers hundreds of thousands of websites, and has dozens of official <a href=\"http://www.gravityforms.com/add-ons/\">add-ons</a>. Carl has told me many times he doesn’t even view most other WordPress forms plugins as competition (though newer entrants like <a href=\"https://ninjaforms.com/\">Ninja Forms</a> are doing quite well for themselves), as Gravity Forms aims to take marketshare away from complex hosted solutions like Wufoo, rather than gobble up the much larger but less demanding market that just wants simple contact forms.</p>\n<p>If you want to keep up with Gravity Flow, <a href=\"https://gravityflow.io/\">check out the website</a>. And the project is <a href=\"https://github.com/stevehenty/gravityflow\">on Github</a> as well, as Steve is billing for support and automatic upgrades, which starts at €87 (around $100) per year.</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, 15 Sep 2015 13:55: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: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: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:15:\"Matt: Long Days\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45319\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://ma.tt/2015/09/long-days/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:204:\"<p>Sometimes it seems like the longest days are those in between an Apple announcement and when the products are actually available. I’m looking forward to iOS 9, WatchOS 2, 6s+, Apple TV…</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, 14 Sep 2015 17:00:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:60:\"WPTavern: A Recap of WordCamp Pune, India, by Topher DeRosia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48212\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wptavern.com/a-recap-of-wordcamp-pune-india-by-topher-derosia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8337:\"<hr />\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/TopherDeRosia.png\"><img class=\"alignright size-thumbnail wp-image-48213\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/TopherDeRosia.png?resize=150%2C150\" alt=\"Topher DeRosia\" /></a>This post was contributed by <a title=\"Topher DeRosia\" href=\"http://topher1kenobe.com/\" target=\"_blank\">Topher DeRosia</a>. Topher has contributed to a <a href=\"https://profiles.wordpress.org/topher1kenobe#content-plugins\">number of plugins</a>, spoken at many WordCamps, and is the lead of documentation for <a href=\"https://easydigitaldownloads.com/\">Easy Digital Downloads.</a> He also operates <a href=\"http://heropress.com/\">HeroPress.com</a> on the side.</p>\n<hr />\n<p>Last July, the lead organizer of <a href=\"https://pune.wordcamp.org/2015/\">WordCamp Pune, India </a>asked if I would come and speak about HeroPress. This post isn’t going to be about <a href=\"http://heropress.com/about/\">HeroPress</a> nor about <a href=\"http://heropress.com/category/wordcamp/pune/\">my adventures on the trip</a>. No, this post is going to be about a WordCamp in a relatively large city in India, how it compares to American WordCamps, and some things that were experimented with.</p>\n<h2>The Similarities</h2>\n<p>In many ways, WordCamp Pune is exactly like every other WordCamp I’ve been to. The night before the event, there was a speaker dinner with excellent food and wonderful company. Registration was chaotic because WiFi was a mess.</p>\n<p>Everyone was happy and excited to be there, and it was very loud because everyone wanted to be part of a conversation. It had all the elements I love about WordCamps; handshakes between new friends, hugs between old friends, and huge transfers of information between everyone, it was fantastic. Aside from WordCamp Miami, it’s also the largest WordCamp I’ve attended with 500 tickets sold.</p>\n<p>It was well-organized, by which I mean things were well planned for, and handled well when they didn’t work out. Sessions were held in university class rooms. I think they were a little small for the number of attendees, but it didn’t detract from the experience. Here’s an example of a room:</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/WordCamp-Pune-India-Classroom.png\"><img class=\"aligncenter size-full wp-image-48218\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/WordCamp-Pune-India-Classroom.png?resize=904%2C509\" alt=\"WordCamp Pune Classrooms\" /></a>Here’s Ramya Pandyan talking about being a better blogger:</p>\n<p><span class=\"embed-youtube\"></span></p>\n<h2>The Differences</h2>\n<p>This is the first WordCamp I’ve attended where the sessions were in a variety of languages. I would expect this in a place like WordCamp EU, but to have it be a variety of <em>local</em> languages was fascinating to me.</p>\n<p>The unofficial time zone of India is <a href=\"http://blogs.wsj.com/indiarealtime/2010/04/28/india-journal-understanding-ist-indian-stretchable-time/\">Indian Stretchable Time</a>. On the first day of WordCamp, Saurabh worked hard to keep things on schedule. We started 30 minutes late, but on Foundation Day, things got started an hour late.</p>\n<p>The room was full of people sitting and waiting patiently, but starting on time was <strong>not expected</strong>. In the US, I would have expected a lot more cranky people.</p>\n<p>Many things were heavily guarded. The main venue was quite open, but to get into Foundation Day, I had to let these guys check me with a magnetic wand:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/IndianPolicemen.png\"><img class=\"aligncenter size-full wp-image-48219\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/IndianPolicemen.png?resize=904%2C510\" alt=\"Indian Policemen\" /></a>Then 20 feet away sign in at a guard house, and then 30 feet beyond that show my ID inside the front door of the venue. This kind of thing also happened at restaurants and every time I went into my hotel. No-one was ever aggressive or suspicious, it’s just something that happened and everyone took it in stride.</p>\n<h2>The Word Lounge</h2>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/WordLounge.png\"><img class=\"alignright size-full wp-image-48220\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/WordLounge.png?resize=298%2C462\" alt=\"Word Lounge\" /></a> There was a room set aside to be an all day open session for writers. There’s a local group called <a href=\"https://twitter.com/AlphabetSambar\">Alphabet Sambar</a> (Sambar is a soup) that has a regular meetup to help each other with writing. They made sure to welcome attendees and keep a good discussion going all day.</p>\n<p>I love this idea of unconference rooms based on topic. Some people thrive on the group communication that can come from that format, and I’d love to see other topical open forums at other WordCamps.</p>\n<h2>The After Party</h2>\n<p>I’m a big fan of quiet after parties, so I can talk to people. I can also appreciate people wanting a pretty intense party atmosphere. The <a href=\"https://twitter.com/crccpune\">Classic Rock Coffee Co.</a> offered both.</p>\n<p>It had three large areas, the largest being almost 6000 sq. ft., one about 800 sq. ft., and an ampitheater with seating for about 100 where they had live classic rock bands.</p>\n<p>Additionally, there was a closed in area with seating for about 40 people that felt more like a cafe or restaurant. The larger open areas had a full bar and restaurant. Except for the cafe, the whole place had a fabric roof which is less sturdy than canvas. It had an outdoors feel.</p>\n<p>I was sitting at a table of about 15 people and had no trouble communicating with any of them. I was probably 130 feet from the music and it was well contained. I was able to communicate without noise being an issue.</p>\n<p>Groups of people sat at tables, in the cafe, in the ampitheater; wherever they were most comfortable. It was probably my favorite after-party venue of all time.</p>\n<a href=\"http://wptavern.com/a-recap-of-wordcamp-pune-india-by-topher-derosia#gallery-48212-1-slideshow\">Click to view slideshow.</a>\n<h2>Bits and Pieces</h2>\n<p>The most difficult thing for me was trying to discern people through their accents. Just about everyone had a solid handle on English, but there’s a mental fatigue that comes from parsing the words through an accent. The longer you do it, the harder it gets, especially with sleep deprivation. I tried not to be rude, and people were patient with me.</p>\n<p>There was a photo area with some crazy hats and people seemed to have a really good time with it. I can see it working at other WordCamps as well. The ladies from Hummingbird got one of me in a crazy hat, but I haven’t seen it yet.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/CrazyHatPicture.png\"><img class=\"alignright size-full wp-image-48226\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/CrazyHatPicture.png?resize=1025%2C578\" alt=\"Crazy Hat Picture\" /></a></p>\n<p>Lunch was prepared on-site in realtime and it worked. It was mostly sandwiches, and the food prep people took a request, made the sandwich, and handed it to the person in moments. I wouldn’t have expected it to work that smoothly, but it did.</p>\n<p>Fruit and bottled water were available just about all the time, which was nice since it was pretty hot that day.</p>\n<h2>Summary</h2>\n<p>Except for the food and language, this WordCamp didn’t feel all that foreign to me. I suspect it’s because WordCamps have a solid template for sessions, scheduling, etc. I enjoyed that, it enabled me to really take part in the event without having to stand to the side wondering what was going on.</p>\n<p>The organizers seemed to be on the ball and did a great job sharing the responsibilities, which I think is vital with a camp this size. The people were engaged, took full advantage of the options available to them, and <strong>that</strong> is what made it a successful WordCamp in my opinion.</p>\n<p>If you ever get the chance to attend a WordCamp in a culture other than your own, I highly recommend you jump at the opportunity.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 Sep 2015 02:50: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:\"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: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:122:\"Post Status: Justifying conferences, improving WordPress comments, and WordPress’s PHP version support — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=14315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://poststatus.com/justifying-conferences-improving-wordpress-comments-and-wordpresss-php-version-support-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2640:\"<p>Welcome to the Post Status Draft podcast, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a> and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Brian and his co-host, <a href=\"https://twitter.com/joe_hoyle\">Joe Hoyle</a>, a co-founder and the CTO of <a href=\"https://hmn.md/\">Human Made</a>, discuss some of today’s hottest, current WordPress news.</p>\n<p><a href=\"https://audio.simplecast.fm/17141.mp3\">https://audio.simplecast.fm/17141.mp3</a><br />\n<a href=\"https://audio.simplecast.fm/17141.mp3\">Direct Download</a></p>\n<h3>Links and Stories Discussed</h3>\n<h4>Events links</h4>\n<ul>\n<li><a href=\"http://feelingrestful.com\">A Day of REST </a> and <a href=\"https://poststatus.com/a-day-of-rest-a-conference-devoted-to-the-wordpress-rest-api/\">the Post Status post on it</a></li>\n<li><a href=\"https://2015.us.wordcamp.org\">WordCamp US</a></li>\n<li><a href=\"https://tampa.wordcamp.org/2015/\">WordCamp Tampa</a></li>\n<li><a href=\"https://nyc.wordcamp.org/2015/\">WordCamp NYC</a></li>\n<li><a href=\"http://pressnomics.com/\">PressNomics</a></li>\n<li><a href=\"https://europe.wordcamp.org/2015/how-we-selected-vienna-the-wordcamp-europe-2016-host-city/\">WordCamp Europe</a></li>\n<li><a href=\"https://www.groovehq.com/blog/friday-qa-september-04-2015\">Are conferences worth it?</a></li>\n</ul>\n<h4>Comments links</h4>\n<ul>\n<li><a href=\"https://poststatus.com/wordpress-comments/\">Brian’s recommendations for comments</a></li>\n<li><a href=\"https://markjaquith.wordpress.com/2015/03/27/cache-buddy/\">Performance for comments</a>, part of Mark Jaquith’s Cache Buddy</li>\n<li><a href=\"https://pippinsplugins.com/featured-comments/\">Featuring comments</a> by Pippin Williamson</li>\n<li><a href=\"https://github.com/staylor/comments-redux\">Comments Redux</a></li>\n<li><a href=\"https://core.trac.wordpress.org/component/Comments\">Comment Trac tickets</a></li>\n</ul>\n<h4>PHP links</h4>\n<ul>\n<li><a href=\"https://wordpress.org/about/stats/\">WordPress PHP stats</a></li>\n<li><a href=\"http://php.net/releases/\">PHP releases</a></li>\n<li><a href=\"https://www.zend.com/en/resources/php-7\">New in PHP7</a></li>\n<li><a href=\"https://www.digitalocean.com/company/blog/getting-ready-for-php-7/\">PHP benchmarks</a></li>\n<li><a href=\"https://make.wordpress.org/core/2015/09/10/wordpress-and-php7/\">PHP7 on WordPress</a></li>\n</ul>\n<h4>Segments</h4>\n<ul>\n<li>We start the show with events and discuss justification for them.</li>\n<li>25 minutes in or so, we switch to comment discussion.</li>\n<li>47 minutes in we switch to PHP.</li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Sep 2015 23:06:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:89:\"WPTavern: A Look Inside the Offices of 16 People Who Work With WordPress on a Daily Basis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48204\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/a-look-inside-the-offices-of-16-people-who-work-with-wordpress-on-a-daily-basis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2088:\"<p>In a remote worker environment, people have the choice to work from home or wherever it’s convenient. Syed Waseem Abbas published a <a href=\"http://torquemag.io/inside-the-workplaces-of-16-wordpress-community-mavens/\">guest post on Torquemag,</a> that looks at the offices of 16 people who work with WordPress on a daily basis.</p>\n<p>Some of the offices are classy while others are small. Many of the people featured in the post use one or more Apple products. If you’re curious as to what my setup looks like, here you go.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/JeffrosOffice.jpg\"><img class=\"size-full wp-image-48205\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/JeffrosOffice.jpg?resize=960%2C720\" alt=\"My Home Office\" /></a>My Home Office\n<p>Most of the work I do is on a Windows 7 Professional 64bit desktop PC with two 23-inch monitors. When I work remotely, I use a fully loaded 15-inch MacBook Pro with retina display from 2013. As a devoted Windows user, I feel like I’m part of a dying breed, especially within the WordPress ecosystem.</p>\n<p>For WordPress Weekly, I use a <a href=\"http://www.amazon.com/Samson-CO1U-Studio-Condenser-Microphone/dp/B000PTF0E2\">Samson CO1U</a> USB powered condenser microphone connected to a <a href=\"http://www.amazon.com/musical-instruments/dp/B001D7UYBO/ref=sr_1_1?s=musical-instruments&ie=UTF8&qid=1442008126&sr=1-1&keywords=Rode+Swivel+mount\">Rode PSA1 swivel mount</a> with a boom arm.</p>\n<p>I predominantly work in a sitting position which is why I’m in the market for a standing desk where the height can be easily adjusted. I’m also looking for a new office chair where the arm rests don’t disintegrate within the first year of use.</p>\n<p>If you have any suggestions, let me know in the comments. Also, if you need inspiration to create the perfect office environment, check out <a href=\"https://officetoday.wordpress.com/\">Office Today</a>. Office Today features remote offices and locations from across the world used by Automattic employees.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Sep 2015 22:18:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"WPTavern: Tickets On Sale For WordCamp US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=48142\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/tickets-on-sale-for-wordcamp-us\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2810:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/TicketsFeaturedImage.png\"><img class=\"size-full wp-image-48146\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/TicketsFeaturedImage.png?resize=650%2C200\" alt=\"Tickets Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/32029534@N00/14207873200\">lucky random fate : san francisco (2013)</a> – <a href=\"https://creativecommons.org/licenses/by-nd/2.0/\">(license)</a>\n<p>Tickets for the first annual <a href=\"https://2015.us.wordcamp.org/\">WordCamp US</a> are now <a href=\"https://2015.us.wordcamp.org/tickets/\">on sale</a>. Due to overwhelming popularity, tickets are being released in batches with the first batch selling out within hours. There are three types of tickets available for purchase.</p>\n<ol>\n<li>A full weekend pass for <strong>$40</strong> that includes both session days as well as a ticket for Contributor day. Lunch each day and swag are also included.</li>\n<li><span class=\"tix-ticket-excerpt\">A live stream ticket for <strong>$20</strong> that allows you to watch the event from any place that has an internet connection. You also receive a limited edition WordCamp US 2015 t-shirt. Shirts will be mailed out after the event concludes.</span></li>\n<li>A live stream ticket for <strong>$10</strong> that allows you to watch the event from any place that has an internet connection. This is a great option for meetup groups hosting watch parties.</li>\n</ol>\n<p>If you’re in a giving mood, there are 100 Jawn microsponsorships available for $250. This sponsorship <span class=\"tix-ticket-excerpt\">gives you a General Admission ticket and an opportunity to provide financial support for the event. You’ll also be listed by name on the thank you section of the Sponsors page.</span></p>\n<p>A group of tickets are being reserved for those volunteering or speaking at the event. Information related to the <a href=\"https://2015.us.wordcamp.org/2015/08/26/2015-wordpress-community-summit-dates-announced/\">Community Summit</a> along with an application will be released next week. Although hotel accommodations are not yet available, the team plans to publish this information within the next few days.</p>\n<p>Based on the <a href=\"https://2015.us.wordcamp.org/tickets/attendees/\">attendees list</a> so far, the event is shaping up to be a great opportunity to meet some of the best of the best in the WordPress ecosystem. Expect this list to grow as more tickets become available.</p>\n<p>If you host a WordPress meetup and are planning to have a WordCamp US watch party, please let me know in the comments. About a week before the event, I’ll publish a compiled list of watch parties so people know where to go to watch the event for free with like-minded individuals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Sep 2015 20:41:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:90:\"WPTavern: bbPress 2015 Survey Results Show Users Want Attachments, Better Moderation Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=48180\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/bbpress-2015-survey-results-show-users-want-attachments-better-moderation-tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4797:\"<p>The bbPress development team <a href=\"https://bbpress.org/blog/2015/09/2015-bbpress-survey-results/\">published the results</a> of its 2015 survey. This year, 213 people participated which is 30 more <a href=\"https://bbpress.org/blog/2014/05/2014-bbpress-survey-results/\">than last year</a>. After reviewing, replacing, and removing some questions from the 2014 survey, this year’s survey has 25 questions.</p>\n<p>A variety of survey question types were used to gather the data including, multiple choices, check boxes, text fields, email box, and open‐ended questions. Empty forms were deleted and those marked as incomplete were reviewed individually. Submissions that had no responses on the second and third pages of the survey were excluded from the report.</p>\n<h2>Highlights From the Survey</h2>\n<p>The majority of respondents use bbPress 2.5 and above with WordPress 4.2 and above. Seventy-one percent of participants using bbPress <=1.x.x are also using the latest version of WordPress. This data indicates bbPress users are vigilant in keeping their sites up to date.</p>\n<p>In terms of who uses bbPress, 51% of respondents use it on their own sites while 30% create sites with bbPress forums for others.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/bbPress2015Users.png\"><img class=\"size-full wp-image-48182\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/bbPress2015Users.png?resize=485%2C249\" alt=\"bbPress 2015 Survey Users\" /></a>bbPress 2015 Survey Who Uses bbPress\n<p>For the second year in a row, the top three languages used are English 74%, German 7%, and French 6.5%. Three-fourths or 75% of bbPress installations are within WordPress either in the domain root, physical directory, or physical subdomain.</p>\n<p>The remaining 25% are on multisite installations where more than half have activated bbPress network-wide and the rest in multiple networks.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/bbPress2015SurveyInstalls.jpg\"><img class=\"size-full wp-image-48183\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/bbPress2015SurveyInstalls.jpg?resize=900%2C237\" alt=\"bbPress User Installations\" /></a>bbPress User Installations\n<p>One statistic I’m proud of is that 29% of the respondents found out about the survey through WP Tavern.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/2015bbPressSurveyHowFoundOut.png\"><img class=\"aligncenter size-full wp-image-48184\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/2015bbPressSurveyHowFoundOut.png?resize=854%2C328\" alt=\"How People Found Out About The Survey\" /></a>The most wanted features in a bbPress theme are, Responsive (69.5%), Light and Fresh Design (52%), and Compatible with the latest bbPress version (49%). A preference for Responsive, mobile-first themes is in fourth place at 39%.</p>\n<p>For the second year in a row, Attachments (42.5%), Ajaxification of Topics and Replies (41.5%), and Moderation tools in the front end (39%) are the most requested features.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/bbPress2015MostRequestedFeatures.png\"><img class=\"size-full wp-image-48196\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/bbPress2015MostRequestedFeatures.png?resize=463%2C219\" alt=\"2015 Most Requested Features\" /></a>2015 Most Requested Features\n<h2>The Future of bbPress</h2>\n<p>Mercime, a BuddyPress and bbPress core contributor, confirmed at the end of the survey that the bbPress project is alive and well. According to Mercime, the development team is in the middle of a large migration project:</p>\n<blockquote><p>The <a href=\"https://bbpress.svn.wordpress.org/trunk/src/humans.txt\">bbPress core team</a> has been involved in the process of migrating the WordPress Support Forums (English and all Rosetta sites) from bbPress 1.x.x to bbPress 2.5.8 starting with one European-language forums subsite which has been already ported and being tested on.</p>\n<p>While this migration has been discussed many times and often over the years, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">@johnjamesjacoby</a> formally started the process when he <a href=\"https://make.wordpress.org/meta/2015/05/15/wp-org-forums-plugins-audit/\">posted the results of an audit</a> to show the custom functionality required for a successful migration.</p></blockquote>\n<p>The project involves multiple teams including, the <a href=\"https://make.wordpress.org/support/\">WP Support team</a> and <a href=\"https://make.wordpress.org/meta/\">WP Meta Team</a>. The migration will impact more than 8 million users on WordPress.org. Any improvements made to bbPress to ease the migration process are going to be merged back into the project.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Sep 2015 20:54:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:57:\"WPTavern: WPML Confirms It Did Not Have a Security Breach\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48173\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wptavern.com/wpml-confirms-it-did-not-have-a-security-breach\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1427:\"<p>When WPML emailed new <a href=\"http://wptavern.com/wpml-emails-passwords-to-affected-customers-in-plaintext\">passwords to customers in plaintext</a>, some customers thought it was due to a security breach. Amit Kvint, compatibility team leader for WPML, confirmed the emails are not a result of a security breach.</p>\n<p>In a <a href=\"https://wpml.org/2015/09/password-update-email-from-wpml/\">post on the official WPML blog</a>, Kvint says the emails were a preventive measure to insure accounts remain secure, “The main purpose and underlying principle for this action was making sure everyone has a good new strong password, we consider this an important step in online security,” Kvint said.</p>\n<p>Kvint acknowledges the improvements in WordPress 4.3 in how passwords are handled and admits that sending passwords in plaintext was not a good idea, “The best practice would be, once the password is sent, to login and reset the password to a new strong one. We will definitely revise the way this is done in the future,” Kvint said.</p>\n<p>The blog post does not go into detail in how they determined passwords to be weak. To the best of my knowledge, WPML does not have a policy in place to enforce strong passwords. While no accounts were compromised, if some of the contacted customers choose a weak password, wouldn’t it defeat the purpose of resetting passwords in the first place?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Sep 2015 07:28:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:88:\"WPTavern: Jetpack 3.7 Introduces a Simpler Interface, Adds Support for Development Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=48161\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"http://wptavern.com/jetpack-3-7-introduces-a-simpler-interface-adds-support-for-development-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3151:\"<p>Jetpack 3.7 <a href=\"http://jetpack.me/2015/09/09/jetpack-3-7-simpler-ui-support-for-development-sites-and-more/\">is available</a> and includes a simpler user interface, support for development sites, and fixes several issues with a variety of modules.</p>\n<p>The new interface separates some of Jetpack’s functionality into categories such as, performance and security, traffic growth, and WordPress.com tools. The most commonly used modules are listed first with a link underneath that takes users to the other 27 modules and the old settings page.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/Jetpack-37Interface.png\"><img class=\"size-full wp-image-48162\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/Jetpack-37Interface.png?resize=968%2C492\" alt=\"Jetpack 3.7 Interface\" /></a>Jetpack 3.7 Interface\n<p>Turning a module on or off is accomplished by clicking a toggle. Services you need to pay for are clearly marked with links to learn more.</p>\n<p>One of the biggest drawbacks to Jetpack is switching between a local server or staging environment. If you move your site from one URL to another, Jetpack automatically detects the change and prompts the user to confirm if the URL is correct.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/JetpackStagingSite1.png\"><img class=\"size-full wp-image-48163\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/JetpackStagingSite1.png?resize=1025%2C155\" alt=\"Jetpack on a staging site\" /></a>Jetpack on a staging site\n<p>If Jetpack thinks two URLs are separate websites, it recommends that you create a new connection to prevent a service interruption on the original domain. The prompt has links to reset the connection, confirm that the URL is part of a development environment, or submit a trouble ticket.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/JetpackStagingSite2.png\"><img class=\"size-full wp-image-48164\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/JetpackStagingSite2.png?resize=1025%2C143\" alt=\"Jetpack double checking to see if two URLs are separate sites\" /></a>Jetpack double checking to see if two URLs are separate sites\n<p>The VideoPress player in Jetpack 3.7 works on mobile devices thanks to its responsive redesign. Having VideoPress enabled allows you to easily embed VideoPress powered videos to your site by copying and pasting the video’s URL into the visual editor.</p>\n<p>Here are a few other changes included in 3.7:</p>\n<ul>\n<li>The ability to enable per-post opt-out for Subscriptions by <a href=\"http://jetpack.me/support/subscriptions/#filters\">adding a filter</a> to a functionality plugin.</li>\n<li>A new Widget Visibility rule that allows you to show or hide widgets based on a page’s parent.</li>\n<li>Sharing buttons now display on bbPress forum posts</li>\n</ul>\n<p>Jetpack 3.7 is <a href=\"https://wordpress.org/plugins/jetpack/\">available for free</a> from the WordPress plugin directory. To view a list of all the changes in this release, <a href=\"https://wordpress.org/plugins/jetpack/changelog/\">check out the changelog</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Sep 2015 04:41:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:94:\"WPTavern: A Conceptual WordPress Plugin by Stephen Cronin That Makes Comment Moderation Easier\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48149\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://wptavern.com/a-conceptual-wordpress-plugin-by-stephen-cronin-that-makes-comment-moderation-easier\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2409:\"<p>Moderating replies to comments in the backend of WordPress is tough. For example, WordPress 4.3 displays the reply and who it’s in response too, but doesn’t show the text of the parent comment.</p>\n<p>You can’t see the parent comment unless you open the author link in a new browser tab. This is not an optimal user experience and makes it more difficult to determine if the reply is from a spammer.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/WordPress43CommentContent.png\"><img class=\"size-full wp-image-48150\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/WordPress43CommentContent.png?resize=851%2C161\" alt=\"WordPress 4.3 Comment Content Area\" /></a>WordPress 4.3 Comment Content Area\n<p><a href=\"https://wordpress.org/plugins/show-parent-comment/\">Show Parent Comment</a> by Stephen Cronin, founder of <a href=\"http://scratch99.com/\">Scratch99 Design</a>, is a potential solution to the problem. Simply activate and browse to the comment section of the WordPress backend.</p>\n<p>Show Parent Comment displays the text of the parent comment inside the reply. This helps moderators keep track of the conversation and helps to identify copy/paste spammers.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/ShowParentCommentPlugin.png\"><img class=\"size-full wp-image-48151\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/ShowParentCommentPlugin.png?resize=847%2C223\" alt=\"Show Parent Comment Plugin\" /></a>Easy Way to See The Parent Comment\n<p>While the plugin works as advertised and shows the parent comment text, the interface needs to be improved. I’m not a fan of the background color and some of the comment information is repeated.</p>\n<p>One idea is to replace the <strong>In Reply to Author</strong> text to say, <strong>In Response To</strong>. The show more or less button is a good idea but I think the text size needs to be increased.</p>\n<p>Although Show Parent Comment is available on the <a href=\"https://wordpress.org/plugins/show-parent-comment/\">plugin directory for free</a>, it’s a proof of concept and is not officially supported by Cronin.</p>\n<p>The concept needs work but I think something similar needs to be added to WordPress core. As it stands, moderating comment replies is not a great experience and I think Cronin’s plugin is a step in the right direction.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Sep 2015 22:12:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"WPTavern: WPML Emails Passwords to Affected Customers in Plaintext\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wpml-emails-passwords-to-affected-customers-in-plaintext\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3791:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ClearTextPasswordFeaturedImage.png\"><img class=\"size-full wp-image-31477\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ClearTextPasswordFeaturedImage.png?resize=637%2C200\" alt=\"Clear Text Password\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/thegloaming/1402099967/\">thegloaming</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>Customers who purchased <a href=\"https://wpml.org/\">WPML</a>, a multilingual plugin for WordPress, <a href=\"https://wpml.org/forums/topic/strange-email-from-wpml/#post-699832\">are receiving</a> a suspicious email that looks similar to a phishing attempt. Matt Radford, a customer of WPML, kindly sent the Tavern a copy of the email.</p>\n<blockquote><p><b>Dear Matt</b>,</p>\n<p>We want to make sure that your WPML account remains secure. For this, we are updating all client accounts with auto-generated strong passwords. A strong password helps prevent unauthorized use of your WPML account.</p>\n<p>Our system will start the password update shortly. We will send you another email with your new password.</p>\n<p>All the best,</p>\n<p><b>WPML team</b></p></blockquote>\n<p>Radford received a follow-up email that includes his new password in plaintext. WPML explains why the passwords were sent in plaintext, “We detected weak passwords in our system and following this we are enforcing, on a one-time procedure, strong passwords to all our clients.</p>\n<p>“As for sending them in plaintext, if you consider it not to be safe, please update your password in order to keep it secure,” WPML said.</p>\n<p>When questioned if passwords are stored in plaintext within the database, WPML replied, “As for storing passwords in our database we are not storing it in plaintext, we are using standard WordPress. Yes they’re salted and hashed.”</p>\n<p>Denise VanDeCruze, a WPML support forum moderator, says <a href=\"https://wpml.org/forums/topic/strange-email-from-wpml/#post-700143\">the email was generated automatically</a> from their systems. She confirms that sending passwords in plaintext is not a best practice and urges users to login to their accounts and generate a new password using the reset password link.</p>\n<blockquote><p>This email was automatically generated by our system and sent to clients with passwords that were deemed too simple. However, sending new passwords in plain text via email without requiring user action is not best practice. I urge you to change your WPML account password. <a href=\"https://wpml.org/account/account-settings/\" rel=\"nofollow\">https://wpml.org/account/account-settings/</a></p>\n<p>You were right to be cautious of this sudden email. Although it was not a phishing attempt, it was not the best way to ensure a safe password. In the future we will be mindful of adhering to strict security standards. Please let me know if you have any further questions.</p></blockquote>\n<p>WPML has not published any information on <a href=\"https://wpml.org/blog/\">its blog</a> that explains the situation and has yet to respond to our requests for comment. If you’re a WPML customer and receive an email with a new password, you should immediately login and generate a new password using the site’s reset password link and follow the instructions.</p>\n<p>Emailing passwords in plaintext is a terrible security practice. One of the key improvements in WordPress 4.3 is that <a href=\"https://make.wordpress.org/core/2015/07/28/passwords-strong-by-default/\">WordPress no longer emails passwords</a>. Instead, it sends password reset links that expire after 24 hours. In hindsight, WPML should have generated and sent password reset emails to affected customers.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Sep 2015 23:54:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:57:\"Post Status: Using React with WordPress — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=14241\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://poststatus.com/using-react-with-wordpress-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2161:\"<p>Welcome to the Post Status Draft podcast, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a> and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Brian and his co-host, <a href=\"https://twitter.com/joe_hoyle\">Joe Hoyle</a>, a co-founder and the CTO of <a href=\"https://hmn.md/\">Human Made</a>, discuss some of today’s hottest, current WordPress news.</p>\n<p>Listen now:</p>\n<a href=\"https://audio.simplecast.fm/16368.mp3\">https://audio.simplecast.fm/16368.mp3</a>\n<p><a href=\"http://audio.simplecast.fm/16368.mp3\">Direct download</a></p>\n<p>Stories discussed:</p>\n<ul>\n<li><a href=\"https://poststatus.com/notes/language-packs-for-wordpress-themes-and-plugins/\">Language packs background and details</a> (members only)</li>\n<li><a href=\"https://make.wordpress.org/plugins/2015/09/01/plugin-translations-on-wordpress-org/\">Plugin translation details</a></li>\n<li><a href=\"https://translate.wordpress.org/\">WordPress.org sub-site for translations of WordPress, plugins, and themes</a></li>\n<li><a href=\"https://make.wordpress.org/core/2015/09/01/lets-garden-trac/\">Trac gardening</a></li>\n<li><a href=\"http://facebook.github.io/react/\">ReactJS</a></li>\n<li><a href=\"https://www.youtube.com/channel/UCorlLn2oZfgOJ-FUcF2eZ1A\">React Europe talks</a></li>\n<li><a href=\"https://github.com/rackt/redux\">Redux framework</a></li>\n<li><a href=\"https://webpack.github.io/\">Web Pack</a></li>\n<li><a href=\"https://ustwo.com/\">USTwo site in React with a WordPress backend</a></li>\n<li><a href=\"https://loopconf.io/talks/react-flux-wordpress-developers/\">Loopconf talk on React and Flux</a></li>\n<li><a href=\"https://nomadbase.io/location-update/\">Nomadbase React app</a></li>\n<li><a href=\"https://deliciousbrains.com/creating-mobile-app-wp-api-react-native/\">React and the WP API for a native app</a></li>\n<li><a href=\"http://feelingrestful.com/\">A Day of Rest: a WordPress REST API conference</a></li>\n<li><a href=\"https://poststatus.com/a-day-of-rest-a-conference-devoted-to-the-wordpress-rest-api/\">Details for A Day of REST</a></li>\n</ul>\n<p> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Sep 2015 14:19: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:14:\"Katie Richards\";s: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:65:\"WPTavern: Help Me Add Comment Approval Notifications to WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=48059\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wptavern.com/help-me-add-comment-approval-notifications-to-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1094:\"<p>Since <a href=\"http://wptavern.com/the-wp-tavern-comment-moderation-policy\">enabling comment moderation</a> on the Tavern, I’ve discovered that WordPress does not notify commenters when their comments are approved.</p>\n<p>On the Tavern, I’m using the <a title=\"http://wordpress.org/plugins/comment-approved/\" href=\"http://wordpress.org/plugins/comment-approved/\">Comment Approved</a> plugin by <a title=\"http://media-enzo.nl/\" href=\"http://media-enzo.nl/\">Niels van Renselaar</a>. It allows me to create a custom notification message that is sent when a comment is approved. Unfortunately, I don’t think it’s working. Please let me know if you’ve received any comment approval emails from the Tavern.</p>\n<p>I strongly believe this feature should be in core. I’ve started the process by creating a <a href=\"https://core.trac.wordpress.org/ticket/33717\">feature request ticket</a> on WordPress trac. Let’s discuss the pros and cons or why you think it shouldn’t be in core. Please give me your feedback in the comments or within the ticket.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Sep 2015 19:30:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:83:\"WPTavern: How Chris Klosowski’s Lifestyle Changed by Writing One WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=48051\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wptavern.com/how-chris-klosowskis-lifestyle-changed-by-writing-one-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1458:\"<p>Chris Klosowski, co-lead developer of Easy Digital Downloads, <a href=\"https://kungfugrep.com/2015/09/how-writing-one-plugin-changed-my-lifestyle/\">explains how writing one plugin</a> changed his lifestyle. He left his corporate job to be a full-time distributed worker and being a distributed worker comes with its own set of challenges.</p>\n<blockquote><p>My truest challenge in this new lifestyle is knowing when it’s time to ignore Slack, shut off email, take off the Pebble, and just spend time with my family. It’s a challenge I’m learning to face, and the hardest part is admitting to myself that it’s a problem.</p>\n<p>It’s come up in conversation a couple times with my wife, and every time, she lets me know when I’m failing. Honesty here is the key. Not guilt, not anger, just brutal honesty of when I’m not being the best husband and dad because I’m putting work before them.</p></blockquote>\n<p>One of the greatest challenges a distributed worker faces is figuring out the balance between work, family, and personal life. If you’re struggling to find balance, I encourage you to read <a href=\"http://wptavern.com/the-mantra-of-family-comes-first\">this post</a> and the nearly 100 comments that follow.</p>\n<p>The comments are from people in similar positions trying to figure out how to balance work, life, and family. After nearly three years of being a distributed worker, I’m still trying to figure it out.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Sep 2015 16:43:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:65:\"WPTavern: A Bug in Chrome 45 Causes WordPress Admin Menu to Break\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48045\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wptavern.com/a-bug-in-chrome-45-causes-wordpress-admin-menu-to-break\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2136:\"<p>Within the last five weeks, <a href=\"https://core.trac.wordpress.org/ticket/33199\">several people have reported</a> an issue in Chrome that breaks the WordPress admin menu. If you hover the mouse cursor over menu items in the sidebar, they’ll occasionally fall out-of-place.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/ChromeWPAdminMenu.png\"><img class=\"aligncenter size-full wp-image-48046\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/ChromeWPAdminMenu.png?resize=764%2C543\" alt=\"Chrome WordPress Admin Menu \" /></a>Using Chrome 45.0.2454.85, I’m able to inconsistently reproduce the behaviour reported in the ticket. Through the process of elimination, users discovered Chrome is the software at fault and not WordPress.</p>\n<p>The <a href=\"https://code.google.com/p/chromium/issues/detail?id=509179#c17\">source of the problem</a> stems from Slimming Paint which is enabled by default in Chrome 45. Disabling slimming paint fixes the issue.</p>\n<p>To disable this feature, visit <strong>chrome://flags/#disable-slimming-paint</strong> in Chrome and <strong>Enable</strong> the <em>Disable slimming paint</em> option, and make sure the other two <strong>Enable</strong> options are disabled because they will override the Disable option.</p>\n<p>If this sounds confusing, please refer to the following screenshot provided by Samuel Wood.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/DisableSlimmingPaint.png\"><img class=\"size-full wp-image-48056\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/DisableSlimmingPaint.png?resize=839%2C185\" alt=\"Disable Slimming Paint Options\" /></a>Disable Slimming Paint Options\n<p>Chrome’s development team is <a href=\"https://code.google.com/p/chromium/issues/detail?id=509179&q=label%3AM-47%20slimming%20paint&colspec=ID%20Pri%20M%20Stars%20ReleaseBlock%20Cr%20Status%20Owner%20Summary%20OS%20Modified\">aware of the issue</a> and is working towards a solution that is marked for release in Chrome 47. Until then, users are encouraged to disable Slimming Paint until Chrome fixes the issue.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Sep 2015 15:49:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:63:\"WPTavern: A Dashboard Widget That Displays New Registered Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=48037\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wptavern.com/a-dashboard-widget-that-displays-new-registered-users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1119:\"<p>If you run a WordPress site with user registration enabled and want to see recently registered accounts from the dashboard, check out the <a href=\"https://wordpress.org/plugins/new-user-dashboard/\">New User Dashboard Widget plugin</a> by <a href=\"https://profiles.wordpress.org/swadeshswain/\">Swadeshswain</a>. After installing and activating the plugin, a new registered user widget appears on the dashboard.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/NewUserDashboardWidget.png\"><img class=\"size-full wp-image-48038\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/NewUserDashboardWidget.png?resize=536%2C146\" alt=\"New Registered User Widget\" /></a>New Registered User Widget\n<p>The widget tells you a user’s registration date, name, and role. If you don’t see the widget after activating the plugin, click on the Screen Options tab and make sure the box next to New User is checked. New User Dashboard Widget is the type of plugin that does one thing only and does it well. There’s nothing to configure and it works out-of-the-box with WordPress 4.3.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Sep 2015 00:02:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"WPTavern: Proposal to Overhaul the Shortcode API in WordPress Goes Back to the Drawing Board\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"http://wptavern.com/proposal-to-overhaul-the-shortcode-api-in-wordpress-goes-back-to-the-drawing-board\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7118:\"<p><a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, who contributes to WordPress core, <a href=\"https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/\">published the first draft</a> of a roadmap that explains how the Shortcode API could be overhauled. “The decision to create this roadmap arose from specific needs that are not met by the old code,” Chapin said.</p>\n<p>The proposal has an aggressive timeline with development starting in WordPress 4.4 and ending in WordPress 4.7. In WordPress 4.4, a new syntax would be introduced that provides opportunities to make significant changes to the API.</p>\n<p>Here are a few examples of shortcodes that use the new syntax.<br />\n<strong>Self-Closing</strong>: [{{shortcode}}]</p>\n<p><strong>Attributes</strong>: [{{shortcode attr1=”value1″ attr2=’value2′ “value3” ‘value4’ value5}}]</p>\n<p><strong>Enclosing</strong>: [{{shortcode}$] HTML [${shortcode}}]</p>\n<p><strong>Multiple Enclosures</strong>: [{{shortcode}$] HTML [${encl2}$] HTML [${encl3}$] HTML [${shortcode}}]</p>\n<p><strong>Escaped Code</strong>: [!{{shortcode}}]</p>\n<p>In the WordPress 4.5 development cycle, the focus would be to deprecate the old syntax, “Plugins that register shortcodes without declaring support for new features will raise debugging errors to alert developers that support for the old shortcode syntax is ending,” Chapin said. Posts using the old syntax would continue to work.</p>\n<p>During the WordPress 4.6 update process, shortcodes using the old syntax would be converted to use the new syntax. The Shortcode API would continue to provide deprecated support for the old syntax to provide a smooth transition.</p>\n<p>An important point to note is that the new syntax does not support HTML inside of shortcode attributes. This leaves the potential for many sites to break as shortcodes may not perform the same way prior to WordPress 4.6</p>\n<p>The transition process ends with WordPress 4.7 where support for the old syntax is eliminated. Shortcodes and plugins that use the old syntax would stop working. During the WordPress 4.7 update process, a second attempt would be made to upgrade old content to use the new syntax.</p>\n<h2>The Proposal Raises Concerns</h2>\n<p>The proposal has drawn constructive criticism from several members of the WordPress community. Nick Haskins, founder of Aesop Interactive, <a href=\"https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/#comment-27426\">voiced his concern</a> saying the syntax isn’t easier for authors to use and will affect a large number of sites.</p>\n<p><a href=\"http://halfelf.org/\">Mika Epstein</a>, who voluntarily moderates the WordPress.org support forums and interacts with users on a daily basis, <a href=\"https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/#comment-27472\">sums up a list of concerns</a> that many developers agree with.</p>\n<blockquote>\n<ul>\n<li>All the plugins and themes on the planet we will break (because we will, they won’t read or test). We have to degrade them as gracefully as humanly possibly. Continuing to say “Well the developers were notified and should have updated” now that we’re as big as we are is not sustainable.</li>\n</ul>\n<ul>\n<li>All the very (legitimately) angry end users who are broken because they didn’t upgrade plugins and themes (or the themes/plugins didn’t get updated). People were rightly angry last time. It’s the end users, not the developers, who will be hardest hit by this change.</li>\n</ul>\n<ul>\n<li>Communicating clearly to the users that it’s now <code>{{gallery}}</code>. That’s going to be very hard. Incredibly hard. Updating their old posts (keeping in mind Justin’s Markdown caveat and those who use them as an aside – I know I know) is easier than making sure everyone knows what to do. At best we can keep tabs on the ones built into WP and perhaps use the logic we have in the visual editor NOW to convert them, but we have to figure out how to make sure everyone knows. This is nothing like the move of Menus to customizer. That was confusing, but the users could see what happened. This is a legit change, your old way is no longer going to work. That is huge.</li>\n</ul>\n<ul>\n<li>The number of users who have premium themes and plugins that <em>do not</em> get update alerts. These people are simply not going to know they need to update and this is not their fault. We should never be breaking them if there’s possibly any alternative.</li>\n</ul>\n<ul>\n<li>Users will be upgraded by their hosts vis-a-vis one-click installs and managed hosting so they will have up to date WP and out of date plugins/themes. So yes, many users will be on 4.7 and then a theme from 2014. It sucks, it’s the reality, we know it’s the reality, we cannot stick our heads in the sand.</li>\n</ul>\n<ul>\n<li>Plugins that are already using {{template}} tags in their code. Yeah, I’ve seen it. Most of them use it for search/replace within their own code, but we’ll want to make sure we check for everyone in the repo who might be doing it on their own.</li>\n</ul>\n</blockquote>\n<p>The best argument against using the new shortcode syntax is <a href=\"https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/#comment-27518\">made by Stefano Agiletti.</a> Agiletti says Italian keyboards don’t have keys that create curly braces.</p>\n<blockquote><p>Maybe English people don’t know that { and } are not present in all keyboards directly as the [ and ] are. On Italian keyboards [ and ] are generated using ALT-GR+è or ALT-GR++ and keyboards show ALT-GR basic sign like €@## and [ ].</p>\n<p>To get { and } you need to type ALT-GR+SHIFT+è and ALT-GR+SHIFT++. Most people don’t know about this combination (I think only those who write code do) and the parentheses are not written on any key.</p></blockquote>\n<h2>Back to the Drawing Board</h2>\n<p>After a considerable amount of feedback and concerns shared by developers, the proposal is heading back to the drawing board. In a comment <a href=\"https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/#comment-27484\">summarizing the feedback</a>, Andrew Nacin confirms that the new shortcode syntax does not fit the core team’s vision of being easy and intuitive for non-technical authors to use.</p>\n<p>At the same time, he cautions that the team needs to do something, “The proposed syntax significantly clashes with the proposed vision and given all of your feedback, we’re clearly going to have to go back to the drawing board. Please note that <strong>we still need to do something</strong>, but maybe we can think further outside the box.”</p>\n<p>I highly encourage you to read the <a href=\"https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/\">proposal and the comments</a> that follow it. It’s a great read that highlights how difficult it will be to make changes to the Shortcode API that don’t end up causing a lot of sites to break.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Sep 2015 21:16:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:65:\"WPTavern: WPWeekly Episode 206 – Stream Reverts to its Old Ways\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wptavern.com/wpweekly-episode-206-stream-reverts-to-its-old-ways\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2645:\"<p>In this week’s episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss the news of the week including, Envato’s new item support policy, Twenty Sixteen available on GitHub, and BuddyPress 2.3.3. We also discuss Stream 3 which returns to hosting activity logs on the local server. We end the show with Marcus’ plugin picks up the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/envato-implements-item-support-policy-for-themeforest-and-codecanyon\">Envato Implements Item Support Policy for ThemeForest and CodeCanyon</a><br />\n<a href=\"http://wptavern.com/twenty-sixteen-now-available-on-github-and-the-wordpress-theme-directory\">Twenty Sixteen Now Available on GitHub and the WordPress Theme Directory</a><br />\n<a href=\"http://wptavern.com/buddypress-2-3-3-patches-security-vulnerabilities-in-buddypress-messages-component\">BuddyPress 2.3.3 Patches Security Vulnerabilities in BuddyPress Messages Component</a><br />\n<a href=\"http://wptavern.com/wordpress-community-summit-set-for-december-2-3-2015\">WordPress Community Summit Set for December 2-3, 2015</a><br />\n<a href=\"http://wptavern.com/stream-is-shutting-down-its-cloud-data-storage-october-1st\">Stream Is Shutting Down Its Cloud Data Storage October 1st</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/new-user-dashboard/\">New User Dashboard Widget</a> is a dashboard widget that shows new registered members.</p>\n<p><a href=\"https://wordpress.org/plugins/facebook-secret-meta/\">Facebook Secret Meta</a> adds the necessary secret codes to your site, so when someone shares a link to your site on Facebook, they’ll see the site’s information and the new <strong>Author By</strong> data.</p>\n<p><a href=\"https://wordpress.org/plugins/bp-automatic-friends/\">BuddyPress Automatic Friends</a> automatically creates and accepts friendships for specified users upon new user registration.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, September 9th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #206:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Sep 2015 08:21:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:49:\"WPTavern: The WP Tavern Comment Moderation Policy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=48012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wptavern.com/the-wp-tavern-comment-moderation-policy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3471:\"<p>Those of you who regularly comment on the Tavern may have noticed that your comments don’t show up immediately after submitting them. That’s because about four weeks ago, for the first time in the Tavern’s history, comment moderation for all comments was enabled. I enabled moderation to address concerns raised by members of the community and to sleep better at night.</p>\n<p>At the request of a few readers and to be more transparent, I’ve created a <a href=\"http://wptavern.com/comment-policy\">comment moderation policy</a>. With the help of at least a dozen people, I’ve crafted a policy that is easy to read and more importantly, easy to follow. It explains our expectations, has a few tips on writing better comments, and lists possible reasons a comment may be deleted.</p>\n<p>The policy is <a href=\"http://creativecommons.org/publicdomain/zero/1.0/\">CC0 licensed</a> which is the least restrictive license offered by Creative Commons. Feel free to copy and modify it for your own use.</p>\n<h2 class=\"font-headlines\">WP Tavern Comment Moderation Policy</h2>\n<p>We strive to create a fun, friendly, and inviting atmosphere. The ground rules for commenting on WP Tavern are simple. Treat people the way you want to be treated. Try to understand someone else’s perspective and if you disagree, respectfully explain why.</p>\n<p>Text is a difficult medium to decipher context. Emoticons and emoji help, but it doesn’t solve the problem. Take a deep breath and assume the commenter has the best of intentions before responding and approach discussions with open minds.</p>\n<p>We welcome different perspectives and viewpoints but we all need to clearly communicate them without tearing the opposition down in the process.</p>\n<p>Stay on point using concise language. If your comment is more than a few paragraphs long, consider publishing it on your own site instead.</p>\n<p>Your comment may be deleted if it matches any of the following criteria:</p>\n<ul>\n<li>Advocates an illegal practice</li>\n<li>Uses vulgar, profane, or unnecessarily harsh language</li>\n<li>Is spam or appears to be written primarily to post a link or advertise</li>\n<li>Is written anonymously</li>\n<li>Contains copyrighted material not licensed for distribution on the site</li>\n<li>Impersonates another user</li>\n<li>Contains an affiliate link</li>\n<li>Personal insults, including those using racist or sexist terms.</li>\n</ul>\n<p>These guidelines are not meant to be an exhaustive list. The deletion of comments is wholly within the discretion of the moderators at WP Tavern and we will err on the side of maintaining a safe and friendly community.</p>\n<h2 class=\"font-headlines\">How Do I Report Comments?</h2>\n<p>If you believe a comment published on WP Tavern violates any of the listed guidelines or that you feel needs special attention, <a href=\"http://wptavern.com/contact-me\">contact us</a>. Please do not publicly report comments using social media such as Facebook or Twitter.</p>\n<p>Form submissions are sent to authors with comment moderation capabilities. Include a link to the comment in your email with a short explanation as to why it needs our attention.</p>\n<h2>The Goal</h2>\n<p>The goal is to reestablish the comment section as a place where people feel welcome to voice their opinions without the fear of being ripped apart. We encourage criticism, disagreements, and open conversation but it needs to take place in a respectful manner.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Sep 2015 06: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: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:77:\"Post Status: A Day of REST — a conference devoted to the WordPress REST 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:31:\"https://poststatus.com/?p=14173\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://poststatus.com/a-day-of-rest-a-conference-devoted-to-the-wordpress-rest-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:6733:\"<p><a href=\"http://feelingrestful.com/\">A Day of REST</a> will be the first ever event dedicated to the WordPress REST API. It’ll happen on January 28th 2016, with a follow-on hack day on the 29th, and will be held at Bishopsgate Institute in London, UK.</p>\n<p>The event is aimed at developers who want to learn how to interact with the new WordPress REST API. From WordPress developers to Javascript developers, to application developers, A Day of REST promises to provide in-depth information that covers every aspect of the WordPress REST API.</p>\n<p>This is exactly the kind of event I’ve been hoping to see in the WordPress community. Sessions will vary from an introduction to the WordPress REST API to in-depth case studies and guides on utilizing it in the real world.</p>\n<p>It will be an incredible and rare opportunity to learn from the people making the API and those extending it further than anyone else. A niche event to be sure, A Day of REST is a big bet on the WordPress REST API — which is not yet slated for core, but is widely expected to make it to core in the next few releases.</p>\n<p>The conference is being organized to supply a clear demand for more information, resources, and education on the subject. At most WordCamps, REST API sessions seem to be some of the most crowded, with the most engaged and curious audiences. A Day of REST will be like those sessions, but much bigger, as the entire day will be dedicated to the single topic.</p>\n<h3>Who is speaking at A Day of REST</h3>\n<p><img class=\"aligncenter size-large wp-image-14179\" src=\"https://cdn.poststatus.com/wp-content/uploads/2015/09/speakers-day-of-rest-752x603.jpg\" alt=\"speakers-day-of-rest\" width=\"752\" height=\"603\" /></p>\n<p>The speaker roster consists of people who are building the WordPress REST API, and those who are already using it for production applications and websites. The speakers are:</p>\n<ul>\n<li>Ryan McCue – WordPress REST API co-lead</li>\n<li>Joe Hoyle – WordPress REST API team</li>\n<li>Daniel Bachhuber – WordPress REST API team</li>\n<li>Kathleen Vignos – Director of Engineering, WIRED</li>\n<li>K. Adam White – Open Web Engineer, Bocoup</li>\n<li>Jack Lenox – Design Engineer, Automattic</li>\n<li>Scott Taylor – Senior Engineer, New York Times</li>\n<li>Nikolay Bachiyski – Meta Engineer, Automattic</li>\n</ul>\n<h3>Post Status will be an official partner</h3>\n<p>I’m really pleased that Post Status will be the official content partner for A Day of REST. That means I’ll be attending the event, and I’ll offer a number of in-depth posts related to the WordPress REST API, the sessions, interviews, and more.</p>\n<p>I’ll also manage content for some of the larger event announcements, like this one. I’ve known the organizers for a long time, and they are big supporters of Post Status. A Day of REST offers a really great opportunity for me to work with them and offer my readers some unique privileges and exclusive content for a subject that’s of interest to most of my audience.</p>\n<h3>So who is organizing?</h3>\n<p><img class=\"aligncenter size-large wp-image-14180\" src=\"https://cdn.poststatus.com/wp-content/uploads/2015/09/humans-752x333.jpg\" alt=\"humans\" width=\"752\" height=\"333\" /></p>\n<p>A Day of REST is organized by <a href=\"https://poststatus.com/organizations/human-made/\">Human Made</a>, who’ve brought on board <a href=\"http://siobhanmckeown.com/about/\">Siobhan McKeown</a> to lead the charge putting the event together.</p>\n<p>Human Made uses the API in a good bit of their services and product work, are really interested to see more adoption of the API, and are eager to provide education resources so that can happen. Those of you who pay close attention may know that two of Human Made’s own are actually part of the team of four that does much of the REST API development.</p>\n<p><a href=\"https://twitter.com/rmccue\">Ryan McCue</a> is the project co-lead, and is generally steering the ship; the API started as his GSoC (Google Summer of Code) project years ago. <a href=\"https://twitter.com/joe_hoyle\">Joe Hoyle</a> is in day to day conversations for project direction and also commits a lot of code to the API; he is a co-founder of Human Made.</p>\n<h3>Hack Day</h3>\n<p>On 29th January 2016, there will be a WordPress REST API hack day. This event is being hosted by Mozilla Spaces in London. Space for the hack day is limited but the team would love for anyone interested to come along and help make the WordPress REST API. Bring a laptop and expect to get hacking. This event will be for building the REST API specifically, and not geared toward other projects.</p>\n<h3>Ticket details</h3>\n<p>Tickets are available <a href=\"http://feelingrestful.com/tickets/\">from the website</a>. They’re £125 (+ VAT & booking fees) — which ends up being around $235 US — and the price includes all of the usual conference goodies: presentations, lunch, swag, and an informal afterparty.</p>\n<h3>Confirmed sponsors</h3>\n<p>A Day of REST is excited to already have some awesome sponsors on board.</p>\n<ul>\n<li><a href=\"http://prospress.com/\">ProsPress</a> – Gold sponsor</li>\n<li><a href=\"http://www.gravityforms.com/\">Gravity Forms</a> – Gold sponsor</li>\n<li><a href=\"https://sucuri.net/\">Sucuri</a> – Gold sponsor</li>\n</ul>\n<p>The team is also looking for more sponsors to get involved and help make this unique event happen. If you’d like to sponsor, send an email to events@humanmade.co.uk.</p>\n<h3>More information</h3>\n<p>Depending on the content, you can get updates either from this blog, or from the A Day of REST website, <a href=\"http://feelingrestful.com/\">feelingrestful.com</a>. You should also follow <a href=\"https://twitter.com/feelingrestful\">@feelingrestful</a> on Twitter for live updates. I’ll have in-depth content and broader event information and the event site will have more general announcements, news, and event updates.</p>\n<p>London is quite accessible from much of the world, so I am hopeful and confident that there will be a diverse audience in attendance. I certainly look forward to visiting; and I was pleasantly surprised that it doesn’t get as cold there as I thought; January temperatures (lows and highs) stay around the 40s (F, or 5-9<strong><span class=\"temperature_label_default\"><span class=\"temperature_label_unit_c\">°</span></span></strong> C) — which is likely warmer than it’ll be where I live in January.</p>\n<p>A Day of REST is an exciting development in the WordPress conference ecosystem and I’m confident it’s going to be a huge success.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Sep 2015 13:36:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:78:\"WPTavern: Envato Implements Item Support Policy for ThemeForest and CodeCanyon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=47990\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://wptavern.com/envato-implements-item-support-policy-for-themeforest-and-codecanyon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3537:\"<p>In August of 2014, Envato <a href=\"http://marketblog.envato.com/news/item-support-sustainability-authors-clarity-buyers/\">announced a new initiative</a> that would allow sellers on <a href=\"http://codecanyon.net/?_ga=1.16356721.691392842.1429566039\">CodeCanyon</a> and <a href=\"http://themeforest.net/?_ga=1.16356721.691392842.1429566039\">ThemeForest</a> to inform buyers whether or not an item is supported. Earlier today, <a href=\"http://marketblog.envato.com/releases/item-support-policy-and-functionality-launched/\">Envato implemented</a> an <a href=\"http://themeforest.net/page/item_support_policy\">Item Support Policy</a> for sellers on ThemeForest and CodeCanyon.</p>\n<p>When browsing items on ThemeForest or CodeCanyon, a blue badge indicates the seller provides support. There’s also a badge and text that informs potential buyers if an item is not supported.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/SupportedBadge.png\"><img class=\"size-full wp-image-47991\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/SupportedBadge.png?resize=639%2C408\" alt=\"This Item is Supported\" /></a>This Item is Supported\n<p>According to <a href=\"http://themeforest.net/page/item_support_policy\">the policy</a>, buyers automatically receive six months of support from the date of purchase. If you need support for an entire year, you can buy an extension for a nominal upgrade fee. Envato takes 30% and gives 70% of the purchase to authors.</p>\n<p>The price of a <b>6-month support extension</b> for a <b>Regular License</b> is calculated as:</p>\n<ol>\n<li>37.5% of the item price (30% of the list price) when purchased at the same time as the license;</li>\n<li>62.5% of the item price (50% of the list price) when purchased during the support period; and</li>\n<li>87.5% of the item price (70% of the list price) when purchased after the support period has ended.</li>\n</ol>\n<p>Andrew Freeman, product manager for Envato, says the changes provide a standardized definition of support, “Buyers will know exactly what to expect from all purchases on ThemeForest and CodeCanyon.”</p>\n<p>Buyers who purchased supported items before the new policy went into effect have six months of free tech support starting on September 1st.</p>\n<h2>Disgruntled Authors</h2>\n<p>In a <a href=\"https://forums.envato.com/t/item-support-policy-and-functionality-launched/3619\">forum thread</a> with over 165 responses, sellers discussed the pros and cons of the policy while some expressed anger. <a href=\"http://themeforest.net/user/jonathan01\">Jonathan Atkinson</a>, founder of <a href=\"https://cr3ativ.com/\">Cr3ativ</a>, who sells several items on ThemeForest, thinks the policy is not as good as alternatives offered outside of the marketplaces because of its confusing complexity for both authors and buyers,</p>\n<blockquote><p>I’m not sure why Envato chose this solution when we already have a well established support/upgrade system in place within most of the WordPress community where 12 months of support is included in the purchase and customers receive a 50% discount to continue receiving support and updates.</p></blockquote>\n<p>The policy is a work in progress, “We will be monitoring the impacts of this change very closely and will be tweaking, improving and enhancing the support tools over coming weeks and months,” Freeman said.</p>\n<p>If you’re a buyer or seller on ThemeForest or CodeCanyon, let us know what you think of the support policy in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Sep 2015 00:52:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:28:\"Matt: On VentureBeat Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45294\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2015/08/on-venturebeat-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:303:\"<p>I was on VentureBeat’s podcast with Dylan Tweeney, <a href=\"http://venturebeat.com/2015/08/11/how-matt-mullenweg-built-wordpress-into-a-giant-platform-powering-14-of-the-web-podcast/\">talking a bit about how WordPress came to be and geeking out on some of the tech behind our approach</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, 01 Sep 2015 02:23: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:82:\"WPTavern: Twenty Sixteen Now Available on GitHub and 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=47973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wptavern.com/twenty-sixteen-now-available-on-github-and-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:2332:\"<p>Twenty Sixteen, the default theme scheduled to ship with WordPress 4.4, is available for download on <a href=\"https://github.com/WordPress/twentysixteen\">GitHub</a> and the <a href=\"https://wordpress.org/themes/twentysixteen/\">WordPress theme directory</a>. According <a href=\"https://make.wordpress.org/core/2015/08/29/twenty-sixteen-is-now-on-github/\">to Tammie Lister</a>, Twenty Sixteen will be developed as if it were a feature plugin and will merge into WordPress core later this year.</p>\n<p>As development takes place on GitHub, changes will regularly sync up to the WordPress theme directory. By installing and activating Twenty Sixteen from the theme directory, users can easily update to new versions as they become available.</p>\n<p>So far, Twenty Sixteen has 23 issues and 27 pull requests on GitHub. Many of the issues such as, <a href=\"https://github.com/WordPress/twentysixteen/pull/23\">introducing automated Travis CI build testing into Twenty Sixteen,</a> are <a href=\"https://github.com/WordPress/twentysixteen/labels/discussion\">up for discussion</a>.</p>\n<p>Here is what the top half of the Tavern looks like with Twenty Sixteen activated.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/TavernOnTwentySixteen.png\"><img class=\"size-full wp-image-47974\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/TavernOnTwentySixteen.png?resize=1025%2C563\" alt=\"Twenty Sixteen on the Tavern\" /></a>Twenty Sixteen on the Tavern\n<p>Here is what the content section looks like. Notice the block of code that displays instead of an image.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/TavernContentOnTwentySixteen.png\"><img class=\"size-full wp-image-47976\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/TavernContentOnTwentySixteen.png?resize=881%2C648\" alt=\"Content on the Tavern with Twenty Sixteen \" /></a>Content on the Tavern with Twenty Sixteen Activated\n<p>Testers are encouraged to open issues and pull requests on GitHub. If you’re not familiar with how GitHub works, <a href=\"https://github.com/WordPress/twentysixteen/blob/master/CONTRIBUTING.md\">this guide</a> explains how to contribute to the Twenty Sixteen project. Keep in mind that Twenty Sixteen is a work in progress and should not be used in a production environment.</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, 31 Aug 2015 20:05:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Rigamortis Cover\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45313\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/08/rigamortis-cover/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:267:\"<p><span class=\"embed-youtube\"></span></p>\n<p>Great jazz cover of one of my favorite Kendrick Lamar songs, Rigamortis, which of course is inspired by the great jazz song <a href=\"https://www.youtube.com/watch?t=27&v=TstRwZygLAo\">The Thorn by Willie Jones III</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:\"Sat, 29 Aug 2015 03:33:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:57:\"Post Status: Our WordPress 4.4 wishlist — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=14136\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://poststatus.com/our-wordpress-4-4-wishlist-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1568:\"<p>Welcome to the Post Status Draft podcast, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a> and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Brian and his co-host, <a href=\"https://twitter.com/joe_hoyle\">Joe Hoyle</a>, a co-founder and the CTO of <a href=\"https://hmn.md/\">Human Made</a>, discuss some of today’s hottest, current WordPress news.</p>\n<p>Listen now:</p>\n<a href=\"https://audio.simplecast.fm/16131.mp3\">https://audio.simplecast.fm/16131.mp3</a>\n<p><a href=\"http://audio.simplecast.fm/16131.mp3\">Direct Download</a></p>\n<p>Stories discussed:</p>\n<ul>\n<li><a href=\"https://poststatus.com/wordpress-4-3-billie-released/\">WordPress 4.3 “Billie” released</a></li>\n<li><a href=\"https://make.wordpress.org/core/2015/08/19/wordpress-4-4-whats-on-your-wishlist/\">What is on your wishlist for WordPress 4.4?</a></li>\n<li><a href=\"https://make.wordpress.org/core/2015/08/19/wordpress-4-4-whats-on-your-wishlist/#comment-26718\">Don’t add WP API to Core in 4.4?</a></li>\n<li><a href=\"https://choycedesign.com/2015/01/23/my-top-wordpress-pain-points/\">Mel Choyce’s biggest issues with WordPress</a></li>\n<li><a href=\"https://make.wordpress.org/core/2015/07/23/rest-api-whos-using-this-thing/\">Who is using WP REST API and why?</a></li>\n<li><a href=\"http://wp-api.org/\">REST API Documentation</a></li>\n<li><a href=\"https://poststatus.com/wordpress-json-rest-api/\">A not-so-brief summary of the REST API</a></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 28 Aug 2015 13:45:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s: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:46:\"WPTavern: WordPress.com Unveils the Action Bar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=47954\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordpress-com-unveils-the-action-bar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3846:\"<p>WordPress.com has <a href=\"https://en.blog.wordpress.com/2015/08/26/new-action-bar/\">unveiled a new user interface</a> called the Action Bar. It’s a bar that shows up in the bottom right corner of the screen for logged in users and is accessible from any device. The bar performs multiple tasks depending on the page you’re on.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/WordPressComActionBar.png\"><img class=\"size-full wp-image-47955\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/WordPressComActionBar.png?resize=1025%2C627\" alt=\"WordPress Action Bar\" /></a>WordPress Action Bar\n<p>When on a WordPress.com powered site that you’re not following, the bar turns into a Follow button. Clicking the follow button will notify you of new posts published on the site.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/actionbar-follow.png\"><img class=\"size-full wp-image-47956\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/actionbar-follow.png?resize=192%2C60\" alt=\"Action Bar Follow Button\" /></a>Action Bar Follow Button\n<p>If you click the three dots to the right, you’ll see a variety of options depending upon the page you’re viewing. If it’s the homepage, you’ll see links to download the theme the site uses, report the content, or manage the sites you follow.</p>\n<p>If you’re browsing a specific post on a WordPress.com site, you’ll see an additional link to copy a shortlink for quick and easy sharing.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/ActionBarThreeDots.png\"><img class=\"size-full wp-image-47957\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/ActionBarThreeDots.png?resize=265%2C319\" alt=\"Easily Share Posts\" /></a>Easily Share Posts\n<p>If you have a site on WordPress.com and are logged in, the Follow button turns into a Customize button. This link provides a quick way to enter the Customizer. There’s also an Edit link if you’re browsing a published post.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/ActionBarEditCustomizeButton.png\"><img class=\"size-full wp-image-47958\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/ActionBarEditCustomizeButton.png?resize=307%2C348\" alt=\"Edit and Customize Links\" /></a>Edit and Customize Links\n<p>If the action bar is too big and you want to minimize it, click the three dots and select the option to Collapse the bar. It will shrink the bar into squares and get out of your way.</p>\n<h2>My User Experience</h2>\n<p>One of the best features of the action bar is the ability to quickly see and download a theme used on a WordPress.com site. However, it doesn’t work for WordPress.com specific sites like <a href=\"https://dailypost.wordpress.com/\">The Daily Post</a>.</p>\n<p>What annoys me about the action bar is that it disappears when I scroll down. I caught myself scrolling down to read a post and when I looked for the edit button to fix a typo, the action bar was gone. I think it should stay on the screen at all times.</p>\n<p>I’d also like to see the Edit link in the action bar open a front-end editor. It’s time WordPress.com step up its game and stop forcing users through a backend interface to edit published content.</p>\n<p>I like the experimental action bar but at the same time, I question the reasoning for adding yet another user interface element to mimic actions already supported by other buttons and links.</p>\n<p>For example, between the admin bar, dashboard, the edit link underneath a post, and the action bar, there are now four different ways to edit a post. How many roads are necessary to reach the same destination?</p>\n<p>If you have a site on WordPress.com, let me know what you think of the action bar.</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, 28 Aug 2015 07:43:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Matt: Frequent Flyer Syndrome\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=45311\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2015/08/frequent-flyer-syndrome/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"<p>It turns out <a href=\"http://www.economist.com/blogs/gulliver/2015/08/frequent-flyers\">not everything about traveling all the time is roses</a>. (Posted from 38k feet.)</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, 28 Aug 2015 07:17: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: BuddyPress 2.3.3 Patches Security Vulnerabilities in BuddyPress Messages Component\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=47948\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"http://wptavern.com/buddypress-2-3-3-patches-security-vulnerabilities-in-buddypress-messages-component\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1516:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/BuddyPressFeaturedImage.png\"><img class=\"aligncenter size-full wp-image-41978\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/BuddyPressFeaturedImage.png?resize=828%2C265\" alt=\"BuddyPress Featured Image\" /></a>BuddyPress 2.3.3<a href=\"https://buddypress.org/2015/08/buddypress-2-3-3/\"> is available</a> and users are encouraged to <strong>update as soon as possible</strong>. A few security vulnerabilities were discovered in <a href=\"https://codex.buddypress.org/buddypress-components-and-features/#internal-messaging\">BuddyPress Messages, </a>a core component that allows users to send and receive private messages.</p>\n<p>A vulnerability was responsibly disclosed to the BuddyPress team that could allow members to manipulate a failed private outbound message and inject unexpected output to the browser. The vulnerability was reported by Krzysztof Katowicz-Kowalewski.</p>\n<p>In addition to the first vulnerability, the BuddyPress core development team independently discovered and fixed related vulnerabilities with the messages component that could allow for carefully crafted private message content to be rendered incorrectly to the browser.</p>\n<p>BuddyPress 2.3.3 also fixes a couple of bugs in the 2.3 codebase and improves support for backend changes made in WordPress 4.3. To protect your sites from these vulnerabilities, you should perform a full backup and <strong>update BuddyPress as soon as possible</strong>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Aug 2015 06:27:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Theme Review Team Begins Phasing Out Favicon Support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=47940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wptavern.com/theme-review-team-begins-phasing-out-favicon-support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2148:\"<p>One of the main features in WordPress 4.3 are Site Icons. A <a href=\"http://wptavern.com/wordpress-4-3-adds-new-site-icons-feature-and-a-text-editor-to-press-this\">Site Icon</a> is an image that represents a website across multiple platforms and replaces Favicons. With Site Icons in WordPress core, the WordPress Theme Review team is <a href=\"https://make.wordpress.org/themes/2015/08/28/backward-compatible-faviconsicons/\">phasing out the feature</a> in existing themes hosted in the theme directory.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/site-icon-customizer.png\"><img class=\"size-full wp-image-47808\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/site-icon-customizer.png?resize=1010%2C568\" alt=\"Site Icons in The Customizer\" /></a>Site Icons in The Customizer\n<p>Justin Tadlock, a theme review admin, <a href=\"https://make.wordpress.org/themes/2015/08/28/backward-compatible-faviconsicons/\">published a tutorial</a> that explains how to provide a backwards compatible experience.</p>\n<p>According to Tadlock, the easiest method is to check if the <code>has_site_icon()</code> function exists. This tells you if the user is running WordPress 4.3 and has the site icon feature available.</p>\n<p>You can also check if the user has set up a new icon using the core WordPress feature by using the <code>has_site_icon()</code> conditional tag which returns either <code>TRUE</code> or <code>FALSE</code>.</p>\n<p>Here’s some example code from the tutorial you can use to handle the check:</p>\n<pre><code>if ( ! function_exists( \'has_site_icon\' ) || ! has_site_icon() ) {\n\n // Output old, custom favicon feature.\n}</code></pre>\n<p>For additional information, I encourage you to read<a href=\"http://scratch99.com/wordpress/development/backwards-compatibility-site-icons/\"> Stephen Cronin’s post</a> which goes into more detail.</p>\n<p>The Theme Review Team enforces a guideline where features added to core are phased out of themes within two major releases. By the time WordPress 4.5 is released, theme authors will be able to remove legacy code without disrupting the user experience.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Aug 2015 05:05:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WordPress Community Summit Set for December 2-3, 2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=47930\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wptavern.com/wordpress-community-summit-set-for-december-2-3-2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2007:\"<p>The <a href=\"https://2015.us.wordcamp.org/2015/08/26/2015-wordpress-community-summit-dates-announced/\">WordPress community summit</a> will take place on December 2-3, 2015, in Philadelphia, PA two days before WordCamp US. The summit will be held at <a href=\"http://philadelphia.impacthub.net/\" target=\"_blank\">Impact Hub Philadelphia</a>, a co-working space where freelancers, entrepreneurs, and social innovators work together, share ideas, and build networks.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/ImpactHub.jpg\"><img class=\"size-large wp-image-47931\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/ImpactHub.jpg?resize=500%2C333\" alt=\"inside Impact Hub\" /></a>Inside Impact HubImpact Hub is spacious and has dedicated meeting and conference rooms. According to the announcement, the summit is invite only similar to last year’s event at WordCamp San Francisco:</p>\n<blockquote><p>The WordPress Community Summit is a smaller, invite-only event for active members and contributors on the many teams that work to improve WordPress: Core, Design, Mobile, Accessibility, Support, Polygots, Documentation, Themes, Plugins, Community, Meta, Training, Flow and TV .</p></blockquote>\n<p>A survey or application form will soon be published which will result in a pool from which the attendees will be invited.</p>\n<p>The summit is a rare opportunity for members of various contributor teams to focus and work together in the same physical location.</p>\n<h2>Annual WordPress Survey</h2>\n<p>If you use, build, or make a living with WordPress, please take the <a href=\"http://wp-survey.polldaddy.com/s/wp-2015\">annual survey</a>. Results will be shared during Matt Mullenweg’s State of the Word presentation at WordCamp US. The more people who fill out the survey, the more representative the data will be.</p>\n<p>Watch Mullenweg’s State of the Word presentation from 2014 to see results from the previous survey.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Aug 2015 21:07:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Stream Is Shutting Down Its Cloud Data Storage October 1st\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=47925\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wptavern.com/stream-is-shutting-down-its-cloud-data-storage-october-1st\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3977:\"<p>Stream 3 is <a href=\"https://wp-stream.com/introducing-stream-3/\">available for download</a> and includes some significant improvements. Stream is a WordPress plugin that tracks changes to a site similar to an audit trail. When <a href=\"http://wptavern.com/stream-morphs-from-a-plugin-into-a-service\">version two was released</a> nearly a year ago, it morphed from a plugin to a service. Activity logs were stored in the cloud which lessened the amount of resources used on local webservers.</p>\n<p>Version three will no longer store data in the cloud. Instead, it will store activity logs locally. The cloud service provided by Stream 2 is closing on <strong>October 1st</strong>. This gives users a little more than a month to migrate data from the cloud to their local webserver.</p>\n<h2>The Cloud is Expensive</h2>\n<p>Luke Carbis, lead developer of Stream, says the time frame was chosen based on a number of factors, “We chose a 6 week migration window as a balance between bleeding cash and doing the right thing by our users.</p>\n<p>“It’s also helpful to remember that the vast majority of our users are on a Free plan, which only includes 12 weeks of storage. We are monitoring the accounts of each of our paid users and I’m personally making sure that every one of them has migrated,” Carbis told the Tavern.</p>\n<p>The move away from the cloud is largely based on cost. The majority of Stream’s customers signed up to the free plan with a significant lack of interest in the Pro Subscription. Server costs were also higher than expected.</p>\n<h2>XWP to The Rescue</h2>\n<p>With a lack of income from Stream 2 and acquisition talks failing, Carbis was contracted to do outside work leaving Frankie Jarrett the only person working on the project. Stream’s investor decided to pull the plug on the project at the same time Jarrett decided to resign from the company.</p>\n<p>“When I heard that Frankie had resigned I gave him a call. We reminisced on our achievements, and threw around some of our ideas on what could have been. That conversation renewed my inspiration. I jotted down some notes, and that’s when things started to turn around,” Carbis said.</p>\n<p>Members from <a href=\"https://xwp.co/\">XWP</a> stepped in to lend a helping hand and the project is now officially under the XWP umbrella. This allows Stream to remain free and open source. The partnership will also facilitate add-on, connectors, and adapters</p>\n<h2>What’s New in Stream 3</h2>\n<p>Stream 3 is rewritten from the ground up. Activity logs use half the space in the database compared to Stream 2. It supports multisite through the use of Network Admin and uses a dependency injection model to be more extendable and efficient.</p>\n<p>Although Stream 3 includes a variety of improvements two notable features have been removed, Notifications and Reports. If you depend on these features, please <a href=\"https://wp-stream.com/stream-3-faq/\">review the following FAQ</a>.</p>\n<h2>A New Direction</h2>\n<p>Carbis and XWP are taking Stream into a new direction. Stream’s <a href=\"https://github.com/wp-stream/roadmap/\">proposed roadmap</a> is available on GitHub and Carbis encourages users to not only review it, but to contribute to the project’s future, “I’d like to see Stream’s users contribute more to its direction. Contribution isn’t limited to ideas either. If you can design, develop, or translate, please consider <a href=\"http://github.com/wp-stream/stream\">contributing to the Stream project</a>,” he said.</p>\n<p>It will be interesting to see if Stream can regain the momentum it lost after transitioning to a cloud based system to store data. Now that Stream stores activity logs locally again, those in the EU should be able to use it without breaking privacy laws. Stream is <a href=\"https://wordpress.org/plugins/stream/\">available for free</a> on the WordPress plugin directory.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Aug 2015 20:17:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:35:\"Akismet: Quantifying Reddit Bigotry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1859\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://blog.akismet.com/2015/08/27/quantifying-reddit-bigotry/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1729:\"<p><small><em><strong>Update (2015-08-30): It looks like the team who created the tool decided to retire it due to some reported accuracy concerns.</strong></em></small></p>\n<p>We never pass on the opportunity to mix in a little bit of humor with our passion for web content moderation.</p>\n<p>One of our engineers, Dan Walmsley, participated in <a href=\"http://www.comedyhackday.org/la-2015\">Cultivated Wit’s Comedy Hack Day</a> in Los Angeles last weekend, and his team’s resulting project has since surfaced on <a href=\"http://motherboard.vice.com/read/this-tool-quantifies-reddit-bigotry\">Motherboard</a> and <a href=\"http://www.engadget.com/2015/08/26/reddit-bigotry-check/\">Engadget</a>.</p>\n<p><a href=\"http://www.freeredditcheck.com/\">Free Reddit Check</a>, created by Dan’s team and crowned with the day’s top prize, is a site which attempts to quantify the terribleness of Reddit users based on their public comment content and subreddit participation. While perfectly suited for a hack day which pairs developers and comedians, there is certainly usefulness in determining the respectability of a potential online acquaintance. Or just knowing who to ignore.</p>\n<p>And being obsessed with content analysis, community moderation, and keeping the web’s underbelly in check, we can’t help but think it’s a nifty idea.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1859/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1859/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1859&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Aug 2015 11: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:13:\"Anthony Bubel\";s: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:63:\"WPTavern: WPWeekly Episode 205 – Interview With Miriam Schwab\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=47915\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wptavern.com/wpweekly-episode-205-interview-with-miriam-schwab\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2039:\"<p>In this episode of WordPress Weekly, I’m joined by Miriam Schwab, founder and CEO of <a href=\"http://illuminea.com/\">Illuminea</a>, a web development company based in Israel. She’s also on the Steering Board of <a href=\"http://digitaleveisrael.com/\">Digital Eve Israel</a>, one of the leading communities for professional women in Israel to help empower women economically.</p>\n<p>Schwab explains her WordPress origin story, what it’s like to live in Israel, and how active the WordPress community is in her area. She shares her thoughts on the future of WordPress and warns that if it doesn’t improve the user experience, it will drive users away to competing platforms. At the end of the interview, she tells us her favorite plugins that she installs on most of her client sites.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/first-look-at-the-twenty-sixteen-default-wordpress-theme\">First Look at the Twenty Sixteen Default WordPress Theme</a><br />\n<a href=\"http://wptavern.com/sessions-from-buddycamp-brighton-uk-now-available-to-watch-on-wordpress-tv\">Sessions From BuddyCamp Brighton, UK Now Available to Watch on WordPress.tv</a><br />\n<a href=\"http://wptavern.com/ostraining-makes-pods-framework-video-training-series-available-for-free\">OSTraining Makes Pods Framework Video Training Series Available for Free</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, September 2nd 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #205:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Aug 2015 04:24: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: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:66:\"WPTavern: First Look at the Twenty Sixteen Default WordPress Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=47897\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/first-look-at-the-twenty-sixteen-default-wordpress-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2281:\"<p>WordPress 4.4 is the last scheduled major release of the year and with it will come a new default theme to replace Twenty Fifteen. On the Make WordPress Core site, Tammie Lister <a href=\"https://make.wordpress.org/core/2015/08/25/introducing-twenty-sixteen/\">published an image gallery</a> that shows off the design of Twenty Sixteen.</p>\n<p>According to Lister, the process of determining the new default theme has taken months, “Lots of themes were considered, eventually settling on the one you see below. It’s a perfect fit,” she said.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/TwentySixteenConcept.png\"><img class=\"size-large wp-image-47898\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/TwentySixteenConcept.png?resize=433%2C500\" alt=\"Twenty Sixteen\" /></a>Twenty Sixteen\n<p>Twenty Sixteen is designed by <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie,</a> who also designed the <a href=\"http://takashiirie.com/2013/12/13/twenty-fourteen-wordpress-3-8-parker/\">Twenty Fourteen</a> and <a href=\"http://takashiirie.com/2015/03/19/twenty-fifteen-the-wordpress-default-theme-for-2015/\">Twenty Fifteen</a> default themes. Irie describes Twenty Sixteen as:</p>\n<blockquote><p>A modernized approach of an ever-popular layout — a horizontal masthead and an optional right sidebar that works well with both blogs and websites. It has custom color options that allow you to make your own Twenty Sixteen. The theme was designed on a harmonious fluid grid with a mobile first approach. This means it looks great on any device.</p></blockquote>\n<p>The new theme has hints of Twenty Fourteen but is different enough to stand on its own as a unique design. It doesn’t look as modern as <a href=\"https://twentyfifteendemo.wordpress.com/\">Twenty Fifteen</a> out-of-the box but the design could change during the 4.4 development cycle.</p>\n<p>If you want to help Twenty Sixteen be the best it can be, please join the weekly meetings held every Monday and Friday at 16:00 UTC in the #core-themes channel on <a href=\"https://make.wordpress.org/chat/\">SlackHQ</a>. The meetings are a half hour-long and start once the theme is initially added to WordPress core.</p>\n<p>What do you think of Twenty Sixteen?</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, 26 Aug 2015 01:20:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:85:\"WPTavern: Sessions From BuddyCamp Brighton, UK Now Available to Watch on 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://wptavern.com/?p=47892\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://wptavern.com/sessions-from-buddycamp-brighton-uk-now-available-to-watch-on-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:1354:\"<p>Earlier this month, the first <a href=\"https://brighton.buddycamp.org/2015/\">BuddyCamp Brighton, UK</a> successfully took place. Six speakers presented their sessions from within the venue while four participated remotely. Here’s a break down of the attendees:</p>\n<ul>\n<li>13 Sponsors.</li>\n<li>8 Sessions.</li>\n<li>7 Volunteers.</li>\n<li>6 Speakers plus another 4 via video message.</li>\n<li>33 Attendees.</li>\n</ul>\n<p>The conference featured sessions on the <a href=\"https://brighton.buddycamp.org/2015/session/the-origin-of-buddypress/\">origin of BuddyPress</a>, a <a href=\"https://brighton.buddycamp.org/2015/session/fireside-with-paul-gibbs/\">fireside chat with Paul Gibbs</a>, and <a href=\"https://brighton.buddycamp.org/2015/session/messages-from-contributors/\">messages from BuddyPress contributors</a>.</p>\n<p>Photographs of the event <a href=\"https://brighton.buddycamp.org/2015/photos/\">are available</a> on the official BuddyCamp Brighton website. In addition to photographs, sessions were recorded and are <a href=\"http://wordpress.tv/event/buddycamp-brighton-2015/\">available to watch for free</a> on WordPress.tv.</p>\n<p>In the following video, Gibbs explains the origins of <a href=\"https://buddypress.org/\">BuddyPress</a>.</p>\n<p></p>\n<p>If you attended BuddyCamp Brighton, UK please 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:\"Wed, 26 Aug 2015 01:11:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:82:\"WPTavern: OSTraining Makes Pods Framework Video Training Series Available for Free\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=47885\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wptavern.com/ostraining-makes-pods-framework-video-training-series-available-for-free\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2214:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/pods.jpg\"><img class=\"aligncenter size-full wp-image-40653\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/pods.jpg?resize=628%2C290\" alt=\"pods\" /></a><a href=\"https://www.ostraining.com/\">OSTraining</a>, a site that offers video training for WordPress, Joomla, Drupal, and other technologies <a href=\"https://www.ostraining.com/blog/wordpress/pods/\">announced</a> their <a href=\"http://pods.io/\">Pods Framework</a> video <a href=\"https://www.ostraining.com/courses/class/wordpress/pods/\">training series</a> is now available for free. Steve Burge, founder of OSTraining.com, says offering the video series for free is the result of a partnership with the Pods Framework project.</p>\n<p>“This project came about because the OSTraining and Pods teams bumped into each other on a regular basis. I often ran into Jim True and Josh Pollock from Pods. We met at WordCamps and WordPress meetups in Tampa, Orlando, and Miami, FL.</p>\n<p>“The Pods team explained that they were working on improving their documentation. They started a YouTube series, wrote tutorials, and started the <a href=\"http://wptavern.com/pods-lead-developer-scott-kingsley-clark-launches-friends-of-pods-funding-campaign\">Friends of Pods</a> initiative to support their efforts. Making the videos free is our way of contributing to the Pods project,” Burge told the Tavern.</p>\n<p>Burge recorded the series after using Pods to create the <a href=\"http://appalachiantrail.com/\">Appalachian Trail</a> website. The series provides an introduction to Pods, templates, creating a custom taxonomy, and more. Those interested can view the series on <a href=\"https://www.ostraining.com/courses/class/wordpress/pods/\">OSTraining.com</a> or <a href=\"https://www.youtube.com/watch?list=PLtaXuX0nEZk9dCVMQRmSptuJ6YdVzMkr5&v=4rm95kNxRXg\">YouTube</a>.</p>\n<p>Here’s a look at the first video in the series which introduces viewers to the Pods Framework.</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>Although it was created in 2014, the series contains great insight into the project and provides an educational foundation for learning Pods 3.0.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Aug 2015 21:20:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 25 Sep 2015 17:07:35 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"168404\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 25 Sep 2015 17:00:17 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20130911040210\";}','no'),(939,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1443244055','no'),(940,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1443200855','no'),(941,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1443244055','no'),(942,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Sep 2015 16:58: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Really Simple CAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/really-simple-captcha/#post-9542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Mar 2009 02:17:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"9542@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:9:\"Yoast SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Google Analytics by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 13 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:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25254@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Your WordPress, Streamlined.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29832@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"The Wordfence WordPress security plugin provides free enterprise-class WordPress security, protecting your website from hacks and malware.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"12073@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:\"Regenerate Thumbnails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 23 Aug 2008 14:38:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"6743@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:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Alex Mills (Viper007Bond)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 29 May 2008 22:11: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"5790@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:17;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2082@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP-PageNavi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 23:17: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"363@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:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Duplicate Post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 05 Dec 2007 17:40: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:\"2646@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:22:\"Clone posts and pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"lopo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Disable 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 27 May 2011 04:42:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26907@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:134:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Samir Shah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WP Multibyte Patch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Jul 2011 12:22: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"28395@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"plugin-master\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Black Studio TinyMCE Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Nov 2011 15:06:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"31973@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The visual editor widget for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Protect your WordPress site by hiding vital areas of your site, protecting access to important files, preventing brute-force login attempts, detecting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Chris Wiegman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"51888@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Meta Slider\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/ml-slider/#post-49521\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Feb 2013 16:56:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"49521@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:145:\"Easy to use WordPress slider plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Matcha Labs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"50539@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Duplicator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2011 12:15:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26607@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Cory Lamle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"UpdraftPlus Backup and Restoration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 May 2012 15:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"38058@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Anderson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Google Analytics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/googleanalytics/#post-11199\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Jun 2009 22:09: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"11199@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:38:\"Enables google analytics on all pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Kevin Sylvestre\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 25 Sep 2015 17:07:35 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Mon, 09 Mar 2009 02:17:35 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130911040210\";}','no'),(943,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1443244055','no'),(944,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1443200855','no'),(945,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1443244055','no'),(946,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2015/09/wordpress-4-3-1/\'>WordPress 4.3.1 Security and Maintenance Release</a> <span class=\"rss-date\">September 15, 2015</span><div class=\"rssSummary\">WordPress 4.3.1 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses three issues, including two cross-site scripting vulnerabilities and a potential privilege escalation. WordPress versions 4.3 and earlier are vulnerable to a cross-site scripting vulnerability when processing shortcode tags (CVE-2015-5714). Reported by […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wptavern.com/lessons-i-learned-moderating-comments-in-wordpress\'>WPTavern: Lessons I Learned Moderating Comments in WordPress</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/wp-super-cache-1-4-5-patches-xss-vulnerability\'>WPTavern: WP Super Cache 1.4.5 Patches XSS Vulnerability</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/the-wordpress-rest-api-draft-podcast/\'>Post Status: All about the WordPress REST API and its current state — Draft podcast</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/ml-slider/\' class=\'dashboard-news-plugin-link\'>Meta Slider</a> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=ml-slider&_wpnonce=657fd11eb7&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Meta Slider\'>Install</a>)</span></li></ul></div>','no'),(947,'recently_activated','a:0:{}','yes'),(951,'_site_transient_timeout_theme_roots','1443211507','yes'),(952,'_site_transient_theme_roots','a:4:{s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:10:\"zerif-lite\";s:7:\"/themes\";}','yes'),(953,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1443209707;s:7:\"checked\";a:4:{s:13:\"twentyfifteen\";s:3:\"1.2\";s:14:\"twentyfourteen\";s:3:\"1.4\";s:14:\"twentythirteen\";s:3:\"1.5\";s:10:\"zerif-lite\";s:5:\"1.7.6\";}s:8:\"response\";a:4:{s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.1.3.zip\";}s:14:\"twentyfourteen\";a:4:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.1.5.zip\";}s:14:\"twentythirteen\";a:4:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.1.6.zip\";}s:10:\"zerif-lite\";a:4:{s:5:\"theme\";s:10:\"zerif-lite\";s:11:\"new_version\";s:7:\"1.8.2.3\";s:3:\"url\";s:40:\"https://wordpress.org/themes/zerif-lite/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/zerif-lite.1.8.2.3.zip\";}}s:12:\"translations\";a:0:{}}','yes'),(954,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1443209707;s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.1.4\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.4.zip\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}}}','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=136 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (4,5,'_wp_attached_file','2015/05/chris-dorbandt-header.png'),(5,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:856;s:6:\"height\";i:60;s:4:\"file\";s:33:\"2015/05/chris-dorbandt-header.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"chris-dorbandt-header-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"chris-dorbandt-header-300x21.png\";s:5:\"width\";i:300;s:6:\"height\";i:21;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"chris-dorbandt-header-250x60.png\";s:5:\"width\";i:250;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:32:\"chris-dorbandt-header-750x60.png\";s:5:\"width\";i:750;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:32:\"chris-dorbandt-header-600x60.png\";s:5:\"width\";i:600;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:32:\"chris-dorbandt-header-400x60.png\";s:5:\"width\";i:400;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:32:\"chris-dorbandt-header-285x60.png\";s:5:\"width\";i:285;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:32:\"chris-dorbandt-header-174x60.png\";s:5:\"width\";i:174;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(7,6,'_wp_attached_file','2015/05/hero_box.png'),(8,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:336;s:4:\"file\";s:20:\"2015/05/hero_box.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"hero_box-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:20:\"hero_box-300x177.png\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"hero_box-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:20:\"hero_box-570x300.png\";s:5:\"width\";i:570;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:20:\"hero_box-400x200.png\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:20:\"hero_box-285x214.png\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:20:\"hero_box-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(9,7,'_wp_attached_file','2015/05/atx_background.gif'),(10,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:26:\"2015/05/atx_background.gif\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"atx_background-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"atx_background-300x200.gif\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"atx_background-1024x682.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"atx_background-250x250.gif\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:26:\"atx_background-750x500.gif\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:26:\"atx_background-600x300.gif\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"atx_background-400x200.gif\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"atx_background-285x214.gif\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"atx_background-174x174.gif\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(11,7,'_wp_attachment_is_custom_background','zerif-lite'),(12,8,'_wp_attached_file','2015/05/atx_back.gif'),(13,8,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1999;s:6:\"height\";i:811;s:4:\"file\";s:20:\"2015/05/atx_back.gif\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"atx_back-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"atx_back-300x122.gif\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"atx_back-1024x415.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"atx_back-250x250.gif\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:20:\"atx_back-750x500.gif\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:20:\"atx_back-600x300.gif\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:20:\"atx_back-400x200.gif\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:20:\"atx_back-285x214.gif\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:20:\"atx_back-174x174.gif\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(14,8,'_wp_attachment_is_custom_background','zerif-lite'),(18,11,'_edit_last','1'),(19,11,'_wp_page_template','default'),(20,11,'_edit_lock','1431551489:1'),(21,13,'_edit_last','1'),(22,13,'_wp_page_template','default'),(23,13,'_edit_lock','1432685277:1'),(24,15,'_edit_last','1'),(25,15,'_wp_page_template','default'),(26,15,'_edit_lock','1431551175:1'),(29,18,'_wp_attached_file','2015/05/chris2.png'),(30,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:268;s:6:\"height\";i:246;s:4:\"file\";s:18:\"2015/05/chris2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"chris2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"chris2-250x246.png\";s:5:\"width\";i:250;s:6:\"height\";i:246;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:18:\"chris2-268x200.png\";s:5:\"width\";i:268;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:18:\"chris2-268x214.png\";s:5:\"width\";i:268;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:18:\"chris2-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(31,19,'_wp_attached_file','2015/05/bridge_back.gif'),(32,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:840;s:4:\"file\";s:23:\"2015/05/bridge_back.gif\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"bridge_back-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"bridge_back-300x126.gif\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"bridge_back-1024x430.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"bridge_back-250x250.gif\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:23:\"bridge_back-750x500.gif\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:23:\"bridge_back-600x300.gif\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:23:\"bridge_back-400x200.gif\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:23:\"bridge_back-285x214.gif\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:23:\"bridge_back-174x174.gif\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(33,20,'_wp_attached_file','2015/05/capitol_back.gif'),(34,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:968;s:4:\"file\";s:24:\"2015/05/capitol_back.gif\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"capitol_back-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"capitol_back-300x145.gif\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"capitol_back-1024x496.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:496;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"capitol_back-250x250.gif\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:24:\"capitol_back-750x500.gif\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:24:\"capitol_back-600x300.gif\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:24:\"capitol_back-400x200.gif\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:24:\"capitol_back-285x214.gif\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:24:\"capitol_back-174x174.gif\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(35,21,'_wp_attached_file','2015/05/prac1.jpg'),(36,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:296;s:4:\"file\";s:17:\"2015/05/prac1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"prac1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"prac1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:17:\"prac1-250x200.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:17:\"prac1-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:17:\"prac1-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:25;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:22:\"Canon EOS-1Ds Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1240581940;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"90\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(37,22,'_wp_attached_file','2015/05/prac2.jpg'),(38,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:240;s:4:\"file\";s:17:\"2015/05/prac2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"prac2-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:17:\"prac2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"prac2-250x240.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:17:\"prac2-360x200.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:17:\"prac2-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:17:\"prac2-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(39,23,'_wp_attached_file','2015/05/prac3.jpg'),(40,23,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:546;s:6:\"height\";i:342;s:4:\"file\";s:17:\"2015/05/prac3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"prac3-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:17:\"prac3-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"prac3-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:17:\"prac3-546x300.jpg\";s:5:\"width\";i:546;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:17:\"prac3-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:17:\"prac3-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:17:\"prac3-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(41,24,'_wp_attached_file','2015/05/prac4.jpg'),(42,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:199;s:4:\"file\";s:17:\"2015/05/prac4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"prac4-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:17:\"prac4-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"prac4-250x199.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:17:\"prac4-285x199.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:17:\"prac4-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(43,25,'_edit_last','1'),(44,25,'_wp_page_template','default'),(45,25,'_edit_lock','1432581016:1'),(46,27,'_edit_last','1'),(47,27,'_wp_page_template','default'),(48,27,'_edit_lock','1431550850:1'),(49,29,'_edit_last','1'),(50,29,'_wp_page_template','default'),(51,29,'_edit_lock','1431550857:1'),(52,31,'_edit_last','1'),(53,31,'_wp_page_template','template-fullwidth.php'),(54,31,'_edit_lock','1432593846:1'),(60,38,'_wp_attached_file','2015/05/prac5.jpg'),(61,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:322;s:4:\"file\";s:17:\"2015/05/prac5.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"prac5-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:17:\"prac5-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"prac5-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:17:\"prac5-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:17:\"prac5-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:17:\"prac5-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:17:\"prac5-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(62,39,'_wp_attached_file','2015/05/prac6.jpg'),(63,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:357;s:4:\"file\";s:17:\"2015/05/prac6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"prac6-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:17:\"prac6-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"prac6-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:17:\"prac6-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:17:\"prac6-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:17:\"prac6-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:17:\"prac6-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(64,40,'_wp_attached_file','2015/05/prac7.jpg'),(65,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:320;s:4:\"file\";s:17:\"2015/05/prac7.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"prac7-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:17:\"prac7-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"prac7-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:17:\"prac7-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:17:\"prac7-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:17:\"prac7-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:17:\"prac7-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(66,41,'_wp_attached_file','2015/05/prac8.jpg'),(67,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:320;s:4:\"file\";s:17:\"2015/05/prac8.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"prac8-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:17:\"prac8-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"prac8-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:17:\"prac8-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:17:\"prac8-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:17:\"prac8-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:17:\"prac8-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(70,42,'_wp_attached_file','2015/05/FreeConsultBox.png'),(71,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:797;s:4:\"file\";s:26:\"2015/05/FreeConsultBox.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"FreeConsultBox-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:26:\"FreeConsultBox-300x133.png\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"FreeConsultBox-1024x453.png\";s:5:\"width\";i:1024;s:6:\"height\";i:453;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"FreeConsultBox-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:26:\"FreeConsultBox-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:26:\"FreeConsultBox-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:26:\"FreeConsultBox-400x200.png\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:26:\"FreeConsultBox-285x214.png\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:26:\"FreeConsultBox-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(72,43,'_wp_attached_file','2015/05/FreeConsultBox1.png'),(73,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:797;s:4:\"file\";s:27:\"2015/05/FreeConsultBox1.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FreeConsultBox1-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:27:\"FreeConsultBox1-300x133.png\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"FreeConsultBox1-1024x453.png\";s:5:\"width\";i:1024;s:6:\"height\";i:453;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"FreeConsultBox1-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:27:\"FreeConsultBox1-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:27:\"FreeConsultBox1-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:27:\"FreeConsultBox1-400x200.png\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:27:\"FreeConsultBox1-285x214.png\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:27:\"FreeConsultBox1-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(74,44,'_wp_attached_file','2015/05/hero.png'),(75,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:738;s:6:\"height\";i:435;s:4:\"file\";s:16:\"2015/05/hero.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"hero-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:16:\"hero-300x177.png\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"hero-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:16:\"hero-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:16:\"hero-400x200.png\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:16:\"hero-285x214.png\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:16:\"hero-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(79,61,'_wp_attached_file','2015/05/bigstock-Downtown-Austin-Texas-Cityscap-18985943.jpg'),(80,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:536;s:4:\"file\";s:60:\"2015/05/bigstock-Downtown-Austin-Texas-Cityscap-18985943.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"bigstock-Downtown-Austin-Texas-Cityscap-18985943-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:59:\"bigstock-Downtown-Austin-Texas-Cityscap-18985943-300x89.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"bigstock-Downtown-Austin-Texas-Cityscap-18985943-1024x305.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:305;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:60:\"bigstock-Downtown-Austin-Texas-Cityscap-18985943-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:60:\"bigstock-Downtown-Austin-Texas-Cityscap-18985943-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:60:\"bigstock-Downtown-Austin-Texas-Cityscap-18985943-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:60:\"bigstock-Downtown-Austin-Texas-Cityscap-18985943-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:60:\"bigstock-Downtown-Austin-Texas-Cityscap-18985943-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:60:\"bigstock-Downtown-Austin-Texas-Cityscap-18985943-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:95:\"Downtown Austin Texas Cityscape at night from across Lady Bird Lake formally known as Town Lake\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:95:\"Downtown Austin Texas Cityscape at night from across Lady Bird Lake formally known as Town Lake\";s:11:\"orientation\";i:1;}}'),(81,62,'_wp_attached_file','2015/05/bigstock-Downtown-Austin-Texas-Cityscap-189859431.jpg'),(82,62,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:536;s:4:\"file\";s:61:\"2015/05/bigstock-Downtown-Austin-Texas-Cityscap-189859431.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"bigstock-Downtown-Austin-Texas-Cityscap-189859431-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:60:\"bigstock-Downtown-Austin-Texas-Cityscap-189859431-300x89.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"bigstock-Downtown-Austin-Texas-Cityscap-189859431-1024x305.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:305;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:61:\"bigstock-Downtown-Austin-Texas-Cityscap-189859431-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:61:\"bigstock-Downtown-Austin-Texas-Cityscap-189859431-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:61:\"bigstock-Downtown-Austin-Texas-Cityscap-189859431-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:61:\"bigstock-Downtown-Austin-Texas-Cityscap-189859431-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:61:\"bigstock-Downtown-Austin-Texas-Cityscap-189859431-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:61:\"bigstock-Downtown-Austin-Texas-Cityscap-189859431-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:95:\"Downtown Austin Texas Cityscape at night from across Lady Bird Lake formally known as Town Lake\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:95:\"Downtown Austin Texas Cityscape at night from across Lady Bird Lake formally known as Town Lake\";s:11:\"orientation\";i:1;}}'),(83,63,'_wp_attached_file','2015/05/bigstock-Businessman-Speaking-53452693.jpg'),(84,63,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1291;s:6:\"height\";i:968;s:4:\"file\";s:50:\"2015/05/bigstock-Businessman-Speaking-53452693.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"bigstock-Businessman-Speaking-53452693-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:50:\"bigstock-Businessman-Speaking-53452693-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:51:\"bigstock-Businessman-Speaking-53452693-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"bigstock-Businessman-Speaking-53452693-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:50:\"bigstock-Businessman-Speaking-53452693-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:50:\"bigstock-Businessman-Speaking-53452693-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:50:\"bigstock-Businessman-Speaking-53452693-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:50:\"bigstock-Businessman-Speaking-53452693-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:50:\"bigstock-Businessman-Speaking-53452693-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:47:\"businessman speaking at sunset office, close up\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:20:\"Businessman Speaking\";s:11:\"orientation\";i:1;}}'),(85,64,'_wp_attached_file','2015/05/bigstock-Panoramic-and-perspective-wide-69981985-copy.jpg'),(86,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1553;s:6:\"height\";i:1000;s:4:\"file\";s:65:\"2015/05/bigstock-Panoramic-and-perspective-wide-69981985-copy.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"bigstock-Panoramic-and-perspective-wide-69981985-copy-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:65:\"bigstock-Panoramic-and-perspective-wide-69981985-copy-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"bigstock-Panoramic-and-perspective-wide-69981985-copy-1024x659.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:659;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:65:\"bigstock-Panoramic-and-perspective-wide-69981985-copy-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:65:\"bigstock-Panoramic-and-perspective-wide-69981985-copy-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:65:\"bigstock-Panoramic-and-perspective-wide-69981985-copy-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:65:\"bigstock-Panoramic-and-perspective-wide-69981985-copy-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:65:\"bigstock-Panoramic-and-perspective-wide-69981985-copy-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:65:\"bigstock-Panoramic-and-perspective-wide-69981985-copy-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:200:\"Panoramic and perspective wide angle view to steel light blue background of glass high rise building skyscraper commercial modern city of future. Business concept of successful industrial architecture\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:100:\"Panoramic and perspective wide angle view to steel light blue background of glass high rise building\";s:11:\"orientation\";i:1;}}'),(89,66,'_wp_attached_file','2015/05/Bigstock_66116977.jpg'),(90,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"height\";i:414;s:4:\"file\";s:29:\"2015/05/Bigstock_66116977.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_66116977-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:29:\"Bigstock_66116977-275x300.jpg\";s:5:\"width\";i:275;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_66116977-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:29:\"Bigstock_66116977-380x300.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Bigstock_66116977-380x200.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_66116977-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_66116977-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:1;}}'),(91,66,'_edit_lock','1432685703:1'),(92,66,'_edit_last','1'),(93,67,'_wp_attached_file','2015/05/Bigstock_2785571.jpg'),(94,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:310;s:4:\"file\";s:28:\"2015/05/Bigstock_2785571.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Bigstock_2785571-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:28:\"Bigstock_2785571-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Bigstock_2785571-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:28:\"Bigstock_2785571-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:28:\"Bigstock_2785571-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:28:\"Bigstock_2785571-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:28:\"Bigstock_2785571-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(95,68,'_wp_attached_file','2015/05/Bigstock_65888875.jpg'),(96,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:320;s:4:\"file\";s:29:\"2015/05/Bigstock_65888875.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_65888875-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:29:\"Bigstock_65888875-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_65888875-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:29:\"Bigstock_65888875-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Bigstock_65888875-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_65888875-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_65888875-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(97,69,'_wp_attached_file','2015/05/Bigstock_38463643.jpg'),(98,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:320;s:4:\"file\";s:29:\"2015/05/Bigstock_38463643.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_38463643-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:29:\"Bigstock_38463643-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_38463643-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:29:\"Bigstock_38463643-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Bigstock_38463643-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_38463643-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_38463643-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(99,70,'_wp_attached_file','2015/05/Bigstock_26425487.jpg'),(100,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:320;s:4:\"file\";s:29:\"2015/05/Bigstock_26425487.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_26425487-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:29:\"Bigstock_26425487-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_26425487-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:29:\"Bigstock_26425487-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Bigstock_26425487-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_26425487-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_26425487-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(101,71,'_wp_attached_file','2015/05/Bigstock_60689900.jpg'),(102,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:320;s:4:\"file\";s:29:\"2015/05/Bigstock_60689900.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_60689900-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:29:\"Bigstock_60689900-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_60689900-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:29:\"Bigstock_60689900-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Bigstock_60689900-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_60689900-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_60689900-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(103,72,'_wp_attached_file','2015/05/Bigstock_70240840.jpg'),(104,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:317;s:4:\"file\";s:29:\"2015/05/Bigstock_70240840.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_70240840-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:29:\"Bigstock_70240840-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_70240840-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:29:\"Bigstock_70240840-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Bigstock_70240840-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_70240840-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_70240840-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(105,73,'_wp_attached_file','2015/05/Bigstock_81100133.jpg'),(106,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:320;s:4:\"file\";s:29:\"2015/05/Bigstock_81100133.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_81100133-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:29:\"Bigstock_81100133-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_81100133-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:29:\"Bigstock_81100133-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Bigstock_81100133-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_81100133-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_81100133-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(107,74,'_wp_attached_file','2015/05/Bigstock_85785332.jpg'),(108,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:291;s:4:\"file\";s:29:\"2015/05/Bigstock_85785332.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_85785332-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:29:\"Bigstock_85785332-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Bigstock_85785332-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:29:\"Bigstock_85785332-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_85785332-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:29:\"Bigstock_85785332-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(109,69,'_edit_lock','1443121968:1'),(110,61,'_wp_attachment_is_custom_background','zerif-lite'),(111,76,'_wp_attached_file','2015/09/AustinNightCityFullBackground.png'),(112,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2235;s:6:\"height\";i:650;s:4:\"file\";s:41:\"2015/09/AustinNightCityFullBackground.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"AustinNightCityFullBackground-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:40:\"AustinNightCityFullBackground-300x87.png\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"AustinNightCityFullBackground-1024x298.png\";s:5:\"width\";i:1024;s:6:\"height\";i:298;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"AustinNightCityFullBackground-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:41:\"AustinNightCityFullBackground-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:41:\"AustinNightCityFullBackground-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:41:\"AustinNightCityFullBackground-400x200.png\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:41:\"AustinNightCityFullBackground-285x214.png\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:41:\"AustinNightCityFullBackground-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(113,76,'_wp_attachment_is_custom_background','zerif-lite'),(114,77,'_wp_attached_file','2015/09/AustinNightCityFullBackgroundTall.png'),(115,77,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2229;s:6:\"height\";i:999;s:4:\"file\";s:45:\"2015/09/AustinNightCityFullBackgroundTall.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"AustinNightCityFullBackgroundTall-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:45:\"AustinNightCityFullBackgroundTall-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"AustinNightCityFullBackgroundTall-1024x459.png\";s:5:\"width\";i:1024;s:6:\"height\";i:459;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"AustinNightCityFullBackgroundTall-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:45:\"AustinNightCityFullBackgroundTall-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:45:\"AustinNightCityFullBackgroundTall-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:45:\"AustinNightCityFullBackgroundTall-400x200.png\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:45:\"AustinNightCityFullBackgroundTall-285x214.png\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:45:\"AustinNightCityFullBackgroundTall-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(116,77,'_wp_attachment_is_custom_background','zerif-lite'),(117,78,'_wp_attached_file','2015/09/AustinNightCityFullBackgroundTallBlue.png'),(118,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2229;s:6:\"height\";i:999;s:4:\"file\";s:49:\"2015/09/AustinNightCityFullBackgroundTallBlue.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"AustinNightCityFullBackgroundTallBlue-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:49:\"AustinNightCityFullBackgroundTallBlue-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"AustinNightCityFullBackgroundTallBlue-1024x459.png\";s:5:\"width\";i:1024;s:6:\"height\";i:459;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"AustinNightCityFullBackgroundTallBlue-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:49:\"AustinNightCityFullBackgroundTallBlue-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:49:\"AustinNightCityFullBackgroundTallBlue-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:49:\"AustinNightCityFullBackgroundTallBlue-400x200.png\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:49:\"AustinNightCityFullBackgroundTallBlue-285x214.png\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:49:\"AustinNightCityFullBackgroundTallBlue-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(119,78,'_wp_attachment_is_custom_background','zerif-lite'),(120,79,'_wp_attached_file','2015/09/AustinNightCityFullBackgroundTallOrange.png'),(121,79,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2229;s:6:\"height\";i:999;s:4:\"file\";s:51:\"2015/09/AustinNightCityFullBackgroundTallOrange.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"AustinNightCityFullBackgroundTallOrange-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:51:\"AustinNightCityFullBackgroundTallOrange-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"AustinNightCityFullBackgroundTallOrange-1024x459.png\";s:5:\"width\";i:1024;s:6:\"height\";i:459;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"AustinNightCityFullBackgroundTallOrange-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:51:\"AustinNightCityFullBackgroundTallOrange-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:51:\"AustinNightCityFullBackgroundTallOrange-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:51:\"AustinNightCityFullBackgroundTallOrange-400x200.png\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:51:\"AustinNightCityFullBackgroundTallOrange-285x214.png\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:51:\"AustinNightCityFullBackgroundTallOrange-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(122,79,'_wp_attachment_is_custom_background','zerif-lite'),(123,80,'_wp_attached_file','2015/09/2200bigstock-Panoramic-and-perspective-wide-69981985-copy.jpg'),(124,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:832;s:4:\"file\";s:69:\"2015/09/2200bigstock-Panoramic-and-perspective-wide-69981985-copy.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"2200bigstock-Panoramic-and-perspective-wide-69981985-copy-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:69:\"2200bigstock-Panoramic-and-perspective-wide-69981985-copy-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:70:\"2200bigstock-Panoramic-and-perspective-wide-69981985-copy-1024x387.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:69:\"2200bigstock-Panoramic-and-perspective-wide-69981985-copy-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:69:\"2200bigstock-Panoramic-and-perspective-wide-69981985-copy-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:69:\"2200bigstock-Panoramic-and-perspective-wide-69981985-copy-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:69:\"2200bigstock-Panoramic-and-perspective-wide-69981985-copy-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:69:\"2200bigstock-Panoramic-and-perspective-wide-69981985-copy-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:69:\"2200bigstock-Panoramic-and-perspective-wide-69981985-copy-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:200:\"Panoramic and perspective wide angle view to steel light blue background of glass high rise building skyscraper commercial modern city of future. Business concept of successful industrial architecture\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:100:\"Panoramic and perspective wide angle view to steel light blue background of glass high rise building\";s:11:\"orientation\";i:1;}}'),(125,81,'_wp_attached_file','2015/09/JailFenceBackgroundImage.jpg'),(126,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:320;s:4:\"file\";s:36:\"2015/09/JailFenceBackgroundImage.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"JailFenceBackgroundImage-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:\"JailFenceBackgroundImage-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"JailFenceBackgroundImage-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:36:\"JailFenceBackgroundImage-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:36:\"JailFenceBackgroundImage-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:36:\"JailFenceBackgroundImage-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:36:\"JailFenceBackgroundImage-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(127,82,'_wp_attached_file','2015/09/LawLibraryBackgroundIMage.jpg'),(128,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:320;s:4:\"file\";s:37:\"2015/09/LawLibraryBackgroundIMage.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"LawLibraryBackgroundIMage-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:37:\"LawLibraryBackgroundIMage-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"LawLibraryBackgroundIMage-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:37:\"LawLibraryBackgroundIMage-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:37:\"LawLibraryBackgroundIMage-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:37:\"LawLibraryBackgroundIMage-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:37:\"LawLibraryBackgroundIMage-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(129,83,'_wp_attached_file','2015/09/BackgroundGravelImage.jpg'),(130,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:320;s:4:\"file\";s:33:\"2015/09/BackgroundGravelImage.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"BackgroundGravelImage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"BackgroundGravelImage-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"BackgroundGravelImage-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:33:\"BackgroundGravelImage-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:33:\"BackgroundGravelImage-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:33:\"BackgroundGravelImage-285x214.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:33:\"BackgroundGravelImage-174x174.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(131,84,'_wp_attached_file','2015/09/StockImagesFavorites.png'),(132,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2519;s:6:\"height\";i:382;s:4:\"file\";s:32:\"2015/09/StockImagesFavorites.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"StockImagesFavorites-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:31:\"StockImagesFavorites-300x45.png\";s:5:\"width\";i:300;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"StockImagesFavorites-1024x155.png\";s:5:\"width\";i:1024;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"StockImagesFavorites-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"post-thumbnail-large\";a:4:{s:4:\"file\";s:32:\"StockImagesFavorites-750x382.png\";s:5:\"width\";i:750;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"post-thumbnail-large-table\";a:4:{s:4:\"file\";s:32:\"StockImagesFavorites-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"post-thumbnail-large-mobile\";a:4:{s:4:\"file\";s:32:\"StockImagesFavorites-400x200.png\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"zerif_project_photo\";a:4:{s:4:\"file\";s:32:\"StockImagesFavorites-285x214.png\";s:5:\"width\";i:285;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"zerif_our_team_photo\";a:4:{s:4:\"file\";s:32:\"StockImagesFavorites-174x174.png\";s:5:\"width\";i:174;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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:\"\";s:11:\"orientation\";i:0;}}'),(133,82,'_edit_lock','1443129556:1'),(134,83,'_edit_lock','1443201849:1'),(135,79,'_edit_lock','1443201997: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 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (5,1,'2015-05-13 16:47:39','2015-05-13 16:47:39','','chris-dorbandt-header','','inherit','open','open','','chris-dorbandt-header','','','2015-05-13 16:47:39','2015-05-13 16:47:39','',0,'http://104.236.173.138/wp-content/uploads/2015/05/chris-dorbandt-header.png',0,'attachment','image/png',0),(6,1,'2015-05-13 17:16:34','2015-05-13 17:16:34','','hero_box','','inherit','open','open','','hero_box','','','2015-05-13 17:16:34','2015-05-13 17:16:34','',0,'http://104.236.173.138/wp-content/uploads/2015/05/hero_box.png',0,'attachment','image/png',0),(7,1,'2015-05-13 18:01:48','2015-05-13 18:01:48','','atx_background','','inherit','open','open','','atx_background','','','2015-05-13 18:01:48','2015-05-13 18:01:48','',0,'http://104.236.173.138/wp-content/uploads/2015/05/atx_background.gif',0,'attachment','image/gif',0),(8,1,'2015-05-13 18:07:32','2015-05-13 18:07:32','','atx_back','','inherit','open','open','','atx_back','','','2015-05-13 18:07:32','2015-05-13 18:07:32','',0,'http://104.236.173.138/wp-content/uploads/2015/05/atx_back.gif',0,'attachment','image/gif',0),(11,1,'2015-05-13 18:16:32','2015-05-13 18:16:32','','Testimonials','','publish','open','open','','testimonials','','','2015-05-13 21:08:48','2015-05-13 21:08:48','',0,'http://104.236.173.138/?page_id=11',9,'page','',0),(12,1,'2015-05-13 18:16:32','2015-05-13 18:16:32','','Testimonials','','inherit','open','open','','11-revision-v1','','','2015-05-13 18:16:32','2015-05-13 18:16:32','',11,'http://104.236.173.138/2015/05/13/11-revision-v1/',0,'revision','',0),(13,1,'2015-05-13 18:16:44','2015-05-13 18:16:44','','Contact Us','','publish','open','open','','contact-us','','','2015-05-13 18:16:44','2015-05-13 18:16:44','',0,'http://104.236.173.138/?page_id=13',0,'page','',0),(14,1,'2015-05-13 18:16:44','2015-05-13 18:16:44','','Contact Us','','inherit','open','open','','13-revision-v1','','','2015-05-13 18:16:44','2015-05-13 18:16:44','',13,'http://104.236.173.138/2015/05/13/13-revision-v1/',0,'revision','',0),(15,1,'2015-05-13 18:16:56','2015-05-13 18:16:56','','Other Practice Areas','','publish','open','open','','other-practice-areas','','','2015-05-13 21:08:38','2015-05-13 21:08:38','',0,'http://104.236.173.138/?page_id=15',10,'page','',0),(16,1,'2015-05-13 18:16:56','2015-05-13 18:16:56','','Other Practice Areas','','inherit','open','open','','15-revision-v1','','','2015-05-13 18:16:56','2015-05-13 18:16:56','',15,'http://104.236.173.138/2015/05/13/15-revision-v1/',0,'revision','',0),(18,1,'2015-05-13 18:42:30','2015-05-13 18:42:30','','chris2','','inherit','open','open','','chris2','','','2015-05-13 18:42:30','2015-05-13 18:42:30','',0,'http://104.236.173.138/wp-content/uploads/2015/05/chris2.png',0,'attachment','image/png',0),(19,1,'2015-05-13 19:41:02','2015-05-13 19:41:02','','bridge_back','','inherit','open','open','','bridge_back','','','2015-05-13 19:41:02','2015-05-13 19:41:02','',0,'http://104.236.173.138/wp-content/uploads/2015/05/bridge_back.gif',0,'attachment','image/gif',0),(20,1,'2015-05-13 20:15:28','2015-05-13 20:15:28','','capitol_back','','inherit','open','open','','capitol_back','','','2015-05-13 20:15:28','2015-05-13 20:15:28','',0,'http://104.236.173.138/wp-content/uploads/2015/05/capitol_back.gif',0,'attachment','image/gif',0),(21,1,'2015-05-13 20:50:50','2015-05-13 20:50:50','','prac1','','inherit','open','open','','prac1','','','2015-05-13 20:50:50','2015-05-13 20:50:50','',0,'http://104.236.173.138/wp-content/uploads/2015/05/prac1.jpg',0,'attachment','image/jpeg',0),(22,1,'2015-05-13 20:54:40','2015-05-13 20:54:40','','prac2','','inherit','open','open','','prac2','','','2015-05-13 20:54:40','2015-05-13 20:54:40','',0,'http://104.236.173.138/wp-content/uploads/2015/05/prac2.jpg',0,'attachment','image/jpeg',0),(23,1,'2015-05-13 20:56:24','2015-05-13 20:56:24','','prac3','','inherit','open','open','','prac3','','','2015-05-13 20:56:24','2015-05-13 20:56:24','',0,'http://104.236.173.138/wp-content/uploads/2015/05/prac3.jpg',0,'attachment','image/jpeg',0),(24,1,'2015-05-13 20:56:32','2015-05-13 20:56:32','','prac4','','inherit','open','open','','prac4','','','2015-05-13 20:56:32','2015-05-13 20:56:32','',0,'http://104.236.173.138/wp-content/uploads/2015/05/prac4.jpg',0,'attachment','image/jpeg',0),(25,1,'2015-05-13 21:02:34','2015-05-13 21:02:34','','DWI','','publish','open','open','','dwi','','','2015-05-13 21:02:34','2015-05-13 21:02:34','',0,'http://104.236.173.138/?page_id=25',0,'page','',0),(26,1,'2015-05-13 21:02:34','2015-05-13 21:02:34','','DWI','','inherit','open','open','','25-revision-v1','','','2015-05-13 21:02:34','2015-05-13 21:02:34','',25,'http://104.236.173.138/2015/05/13/25-revision-v1/',0,'revision','',0),(27,1,'2015-05-13 21:03:02','2015-05-13 21:03:02','','Parole','','publish','open','open','','parole','','','2015-05-13 21:03:02','2015-05-13 21:03:02','',0,'http://104.236.173.138/?page_id=27',0,'page','',0),(28,1,'2015-05-13 21:03:02','2015-05-13 21:03:02','','Parole','','inherit','open','open','','27-revision-v1','','','2015-05-13 21:03:02','2015-05-13 21:03:02','',27,'http://104.236.173.138/2015/05/13/27-revision-v1/',0,'revision','',0),(29,1,'2015-05-13 21:03:20','2015-05-13 21:03:20','','Expunction','','publish','open','open','','expunction','','','2015-05-13 21:03:20','2015-05-13 21:03:20','',0,'http://104.236.173.138/?page_id=29',0,'page','',0),(30,1,'2015-05-13 21:03:20','2015-05-13 21:03:20','','Expunction','','inherit','open','open','','29-revision-v1','','','2015-05-13 21:03:20','2015-05-13 21:03:20','',29,'http://104.236.173.138/2015/05/13/29-revision-v1/',0,'revision','',0),(31,1,'2015-05-13 21:03:28','2015-05-13 21:03:28','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container-fluid\" id=\"drug\">\r\n <div class=container>\r\n <div class=\"col-sm-12\">\r\n <h3>Drug Crimes / Possession of Marijuana</h3>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"col-sm-6 left-page\">\r\n <p>Our firm helps people who have been accused of a major drug offenses or drug trafficking crimes. Our motto is<span style=\"color: #4592D8;\"> <strong>“Texas Friendly Spoken Here.”</strong> </span>Although we are based in Austin, we have a state-wide practice, ensuring that your defense is fair and impartial. We are ready to travel anywhere to assist you. At Chris Dorbandt & Associates, we are very experienced in handling possession of marijuana, possession of controlled substance(s), search and seizure related money laundering cases, which include, but are not limited to:</p>\r\n <div class=\"page-list\">\r\n <ul>\r\n <li>Drug Importation, Possession, Trafficking, and Transportation</li>\r\n <li>Drug Manufacturing and Cultivation</li>\r\n <li>Drug Interdiction Arrests</li>\r\n <li>Marijuana Transportation, Possession, Distribution and Sales</li>\r\n <li>Cocaine and Crack Cocaine Possession</li>\r\n <li>Heroin Transportation, Possession, Distribution and Sales</li>\r\n <li>Methamphetamine Transportation, Possession, Distribution and Sales</li>\r\n <li>Possession of Precursor Chemicals for Drug Manufacturing</li>\r\n <li>Possession with Intent to Deliver</li>\r\n <li>Prescription Drug offenses, including Prescription Fraud.</li>\r\n </ul>\r\n </div><!--ul-->\r\n </div>\r\n <div class=\"col-sm-6 right-page\">\r\n <p>If you have been charged with a drug possession offense, you need to retain the services of a criminal defense attorney <strong><em>as soon as possible</em></strong>. We can help by investigating and collecting necessary evidence to defeat a drug charge.</p>\r\n <p>Remember, in the United States you are presumed innocent until proven guilty beyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime will leave you with a criminal record for the remainder of your life. A criminal conviction is a public record. How might this incident impact your personal or professional life, especially if you’ve been convicted of a felony or serious misdemeanor?</p>\r\n <p><strong>These are very serious charges</strong> and, upon conviction, one can be sentenced from five (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us immediately! Time is of the essence. Don’t wait until you have been indicted by a grand jury. Get help now! You should contact us immediately for a free initial review and consultation without obligation. We are available toll free at <span style=\"color: #4592D8;\">1.877.205.3425 or by calling (512) 407-9700</span>.</p>\r\n <p><strong>The Keys to Winning Drug Cases</strong></p>\r\n <p>The key to defending any case and suppressing the evidence in a “possession” case is showing that the defendant did not “knowingly” possess the drugs (i.e., “Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle or inside a persons house or apartment was left behind by someone other than the defendant, like a roommate, friend, family member, or guest. The defendant was completely unaware that there were drugs in the vehicle or home. There has to be an “affirmative link” to the drugs and the defendant.</p>\r\n <p>When defending against allegations of the “use” of the drugs, we must challenge any claims by the arresting officer of signs and symptoms of drug impairment and refute the claim that he could “smell” drugs in the air. This is accomplished by skillful cross examination. Crucial to any marijuana possession or use charge is suppressing the drug evidence. Without this evidence, the prosecution’s case is weak. It is also very important to thoroughly review the State’s chemical testing and laboratory procedures regarding the identification of the drug and the calculation of the amount of drug contained within the substance. A s with all drug cases, quantity matters!</p>\r\n <p>Additionally, we fight marijuana and potential drug convictions from all angles. We assert a wide range of defenses and challenges to constitutional violations that apply in these particular criminal cases. We frequently assert “Miranda rights violations.” In Texas, the standard of whether any incriminating statement (i.e., a statement which tends to admit guilt) is admissible into evidence is based upon “voluntariness.” If we can demonstrate to the Court that the police coerced you (i.e., intimidated or tricked you) into making a confession or inculpatory statement, or that they did not properly read you your Miranda Rights, then we can suppress those statements and any evidence gathered as a direct result of those statements. In addition, the “denial of right to Counsel” is another defense which is often raised. This occurs when a suspect is in custody and requests to speak to their attorney, but is denied the right to contact an attorney and police questioning continues. Other defenses may include challenging the validity of any search warrant or whether there were “forensic flaws” during the investigation of your case. Depending on what you have been charged with, this could include exposing flawed procedures regarding blood, breath, and urine testing, fingerprints analysis, DNA testing, ballistics, gunshot residue testing, computer analysis and the cloning of hard drives and other technical procedures. Finally, a common defense tactic is exposing sloppy or misleading police reports which include everything from misstatements to false statements, flawed search and seizure procedures, flawed photo line-ups and inaccurate crime scene reconstruction, to other general bias and prejudicial statements. It is important to hire a skilled Marijuana or drug crimes lawyer to defend you. You want an attorney on your side who has knowledge of all the possible defenses which can be asserted in your case.</p>\r\n </p>\r\n </div> \r\n </div>\r\n\r\n </div>\r\n\r\n </div>\r\n</div>','Drug Crimes','','publish','closed','closed','','drug-crimes','','','2015-05-25 22:44:34','2015-05-25 22:44:34','',0,'http://104.236.173.138/?page_id=31',0,'page','',0),(32,1,'2015-05-13 21:03:28','2015-05-13 21:03:28','','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-13 21:03:28','2015-05-13 21:03:28','',31,'http://104.236.173.138/2015/05/13/31-revision-v1/',0,'revision','',0),(38,1,'2015-05-13 21:29:37','2015-05-13 21:29:37','','prac5','','inherit','open','open','','prac5','','','2015-05-13 21:29:37','2015-05-13 21:29:37','',0,'http://104.236.173.138/wp-content/uploads/2015/05/prac5.jpg',0,'attachment','image/jpeg',0),(39,1,'2015-05-13 21:29:40','2015-05-13 21:29:40','','prac6','','inherit','open','open','','prac6','','','2015-05-13 21:29:40','2015-05-13 21:29:40','',0,'http://104.236.173.138/wp-content/uploads/2015/05/prac6.jpg',0,'attachment','image/jpeg',0),(40,1,'2015-05-13 21:29:42','2015-05-13 21:29:42','','prac7','','inherit','open','open','','prac7','','','2015-05-13 21:29:42','2015-05-13 21:29:42','',0,'http://104.236.173.138/wp-content/uploads/2015/05/prac7.jpg',0,'attachment','image/jpeg',0),(41,1,'2015-05-13 21:29:44','2015-05-13 21:29:44','','prac8','','inherit','open','open','','prac8','','','2015-05-13 21:29:44','2015-05-13 21:29:44','',0,'http://104.236.173.138/wp-content/uploads/2015/05/prac8.jpg',0,'attachment','image/jpeg',0),(42,1,'2015-05-14 00:07:46','2015-05-14 00:07:46','','FreeConsultBox','','inherit','open','open','','freeconsultbox','','','2015-05-14 00:07:46','2015-05-14 00:07:46','',0,'http://104.236.173.138/wp-content/uploads/2015/05/FreeConsultBox.png',0,'attachment','image/png',0),(43,1,'2015-05-14 00:09:27','2015-05-14 00:09:27','','FreeConsultBox','','inherit','open','open','','freeconsultbox-2','','','2015-05-14 00:09:27','2015-05-14 00:09:27','',0,'http://104.236.173.138/wp-content/uploads/2015/05/FreeConsultBox1.png',0,'attachment','image/png',0),(44,1,'2015-05-14 00:12:51','2015-05-14 00:12:51','','hero','','inherit','open','open','','hero','','','2015-05-14 00:12:51','2015-05-14 00:12:51','',0,'http://104.236.173.138/wp-content/uploads/2015/05/hero.png',0,'attachment','image/png',0),(46,1,'2015-05-25 19:36:04','2015-05-25 19:36:04','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container\">\r\n <p>\r\n If you have been charged with a drug possession offense, you need to\r\n retain the services of a criminal defense attorney as soon as\r\n possible. We can help by investigating and collecting necessary\r\n evidence to defeat a drug charge.\r\n\r\nRemember, in the United States you are presumed innocent until proven guilty\r\nbeyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime\r\nwill leave you with a criminal record for the remainder of your life. A criminal\r\nconviction is a public record. How might this incident impact your personal or\r\nprofessional life, especially if you’ve been convicted of a felony or serious\r\nmisdemeanor?\r\n\r\nThese are very serious charges and, upon conviction, one can be sentenced from\r\nfive (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us\r\nimmediately! Time is of the essence. Don’t wait until you have been indicted by\r\na grand jury. Get help now! You should contact us immediately for a free initial\r\nreview and consultation without obligation. We are available toll free at\r\n1.877.205.3425 or by calling (512) 407-9700.\r\n\r\nThe Keys to Winning Drug Cases\r\n\r\nThe key to defending any case and suppressing the evidence in a “possession”\r\ncase is showing that the defendant did not “knowingly” possess the drugs (i.e.,\r\n“Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle\r\nor inside a persons house or apartment was left behind by someone other than the\r\ndefendant, like a roommate, friend, family member, or guest. The defendant was\r\ncompletely unaware that there were drugs in the vehicle or home. There has to be\r\nan “affirmative link” to the drugs and the defendant.\r\n\r\nWhen defending against allegations of the “use” of the drugs, we must challenge\r\nany claims by the arresting officer of signs and symptoms of drug impairment and\r\nrefute the claim that he could “smell” drugs in the air. This is accomplished by\r\nskillful cross examination. Crucial to any marijuana possession or use charge is\r\nsuppressing the drug evidence. Without this evidence, the prosecution’s case is\r\nweak. It is also very important to thoroughly review the State’s chemical\r\ntesting and laboratory procedures regarding the identification of the drug and\r\nthe calculation of the amount of drug contained within the substance. A s with\r\nall drug cases, quantity matters!\r\n\r\nAdditionally, we fight marijuana and potential drug convictions from all angles.\r\nWe assert a wide range of defenses and challenges to constitutional violations\r\nthat apply in these particular criminal cases. We frequently assert “Miranda\r\nrights violations.” In Texas, the standard of whether any incriminating\r\nstatement (i.e., a statement which tends to admit guilt) is admissible into\r\nevidence is based upon “voluntariness.” If we can demonstrate to the Court that\r\nthe police coerced you (i.e., intimidated or tricked you) into making a\r\nconfession or inculpatory statement, or that they did not properly read you your\r\nMiranda Rights, then we can suppress those statements and any evidence gathered\r\nas a direct result of those statements. In addition, the “denial of right to\r\nCounsel” is another defense which is often raised. This occurs when a suspect is\r\nin custody and requests to speak to their attorney, but is denied the right to\r\ncontact an attorney and police questioning continues. Other defenses may include\r\nchallenging the validity of any search warrant or whether there were “forensic\r\nflaws” during the investigation of your case. Depending on what you have been\r\ncharged with, this could include exposing flawed procedures regarding blood,\r\nbreath, and urine testing, fingerprints analysis, DNA testing, ballistics,\r\ngunshot residue testing, computer analysis and the cloning of hard drives and\r\nother technical procedures. Finally, a common defense tactic is exposing sloppy\r\nor misleading police reports which include everything from misstatements to\r\nfalse statements, flawed search and seizure procedures, flawed photo line-ups\r\nand inaccurate crime scene reconstruction, to other general bias and prejudicial\r\nstatements. It is important to hire a skilled Marijuana or drug crimes lawyer to\r\ndefend you. You want an attorney on your side who has knowledge of all the\r\npossible defenses which can be asserted in your case.\r\n </p>\r\n </div>\r\n</div>\r\n','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 19:36:04','2015-05-25 19:36:04','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(48,1,'2015-05-25 22:30:30','2015-05-25 22:30:30','<div id=\"drug_crimes\">\n <div class=\"page-header\">\n <div class=\"header-box\">\n <h1>Drug Crimes</h1>\n </div>\n </div>\n <div class=\"container-fluid\" id=\"drug\">\n <div class=container>\n <div class=\"col-sm-6 left-page\">\n <p>Our firm helps people who have been accused of a major drug offenses or drug trafficking crimes. Our motto is<span style=\"color: #ffff00;\"> <strong>“Texas Friendly Spoken Here.”</strong> </span>Although we are based in Austin, we have a state-wide practice, ensuring that your defense is fair and impartial. We are ready to travel anywhere to assist you. At Chris Dorbandt & Associates, we are very experienced in handling possession of marijuana, possession of controlled substance(s), search and seizure related money laundering cases, which include, but are not limited to:</p>\n <div class=\"page-list\">\n <ul>\n <li>Drug Importation, Possession, Trafficking, and Transportation</li>\n <li>Drug Manufacturing and Cultivation</li>\n <li>Drug Interdiction Arrests</li>\n <li>Marijuana Transportation, Possession, Distribution and Sales</li>\n <li>Cocaine and Crack Cocaine Possession</li>\n <li>Heroin Transportation, Possession, Distribution and Sales</li>\n <li>Methamphetamine Transportation, Possession, Distribution and Sales</li>\n <li>Possession of Precursor Chemicals for Drug Manufacturing</li>\n <li>Possession with Intent to Deliver</li>\n <li>Prescription Drug offenses, including Prescription Fraud.</li>\n </ul>\n </div><!--ul-->\n </div>\n <div class=\"col-sm-6 right-page\">\n <p>\n If you have been charged with a drug possession offense, you need to\n retain the services of a criminal defense attorney as soon as\n possible. We can help by investigating and collecting necessary\n evidence to defeat a drug charge.\n \n Remember, in the United States you are presumed innocent until proven guilty\n beyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime\n will leave you with a criminal record for the remainder of your life. A criminal\n conviction is a public record. How might this incident impact your personal or\n professional life, especially if you’ve been convicted of a felony or serious\n misdemeanor?\n \n These are very serious charges and, upon conviction, one can be sentenced from\n five (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us\n immediately! Time is of the essence. Don’t wait until you have been indicted by\n a grand jury. Get help now! You should contact us immediately for a free initial\n review and consultation without obligation. We are available toll free at\n 1.877.205.3425 or by calling (512) 407-9700.\n \n The Keys to Winning Drug Cases\n \n The key to defending any case and suppressing the evidence in a “possession”\n case is showing that the defendant did not “knowingly” possess the drugs (i.e.,\n “Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle\n or inside a persons house or apartment was left behind by someone other than the\n defendant, like a roommate, friend, family member, or guest. The defendant was\n completely unaware that there were drugs in the vehicle or home. There has to be\n an “affirmative link” to the drugs and the defendant.\n \n When defending against allegations of the “use” of the drugs, we must challenge\n any claims by the arresting officer of signs and symptoms of drug impairment and\n refute the claim that he could “smell” drugs in the air. This is accomplished by\n skillful cross examination. Crucial to any marijuana possession or use charge is\n suppressing the drug evidence. Without this evidence, the prosecution’s case is\n weak. It is also very important to thoroughly review the State’s chemical\n testing and laboratory procedures regarding the identification of the drug and\n the calculation of the amount of drug contained within the substance. A s with\n all drug cases, quantity matters!\n \n Additionally, we fight marijuana and potential drug convictions from all angles.\n We assert a wide range of defenses and challenges to constitutional violations\n that apply in these particular criminal cases. We frequently assert “Miranda\n rights violations.” In Texas, the standard of whether any incriminating\n statement (i.e., a statement which tends to admit guilt) is admissible into\n evidence is based upon “voluntariness.” If we can demonstrate to the Court that\n the police coerced you (i.e., intimidated or tricked you) into making a\n confession or inculpatory statement, or that they did not properly read you your\n Miranda Rights, then we can suppress those statements and any evidence gathered\n as a direct result of those statements. In addition, the “denial of right to\n Counsel” is another defense which is often raised. This occurs when a suspect is\n in custody and requests to speak to their attorney, but is denied the right to\n contact an attorney and police questioning continues. Other defenses may include\n challenging the validity of any search warrant or whether there were “forensic\n flaws” during the investigation of your case. Depending on what you have been\n charged with, this could include exposing flawed procedures regarding blood,\n breath, and urine testing, fingerprints analysis, DNA testing, ballistics,\n gunshot residue testing, computer analysis and the cloning of hard drives and\n other technical procedures. Finally, a common defense tactic is exposing sloppy\n or misleading police reports which include everything from misstatements to\n false statements, flawed search and seizure procedures, flawed photo line-ups\n and inaccurate crime scene reconstruction, to other general bias and prejudicial\n statements. It is important to hire a skilled Marijuana or drug crimes lawyer to\n defend you. You want an attorney on your side who has knowledge of all the\n possible defenses which can be asserted in your case.\n </p> \n </div>\n </div>\n\n </div>\n</div>\n','Drug Crimes','','inherit','open','open','','31-autosave-v1','','','2015-05-25 22:30:30','2015-05-25 22:30:30','',31,'http://104.236.173.138/2015/05/25/31-autosave-v1/',0,'revision','',0),(50,1,'2015-05-25 21:06:54','2015-05-25 21:06:54','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <p>\r\n If you have been charged with a drug possession offense, you need to\r\n retain the services of a criminal defense attorney as soon as\r\n possible. We can help by investigating and collecting necessary\r\n evidence to defeat a drug charge.\r\n\r\nRemember, in the United States you are presumed innocent until proven guilty\r\nbeyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime\r\nwill leave you with a criminal record for the remainder of your life. A criminal\r\nconviction is a public record. How might this incident impact your personal or\r\nprofessional life, especially if you’ve been convicted of a felony or serious\r\nmisdemeanor?\r\n\r\nThese are very serious charges and, upon conviction, one can be sentenced from\r\nfive (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us\r\nimmediately! Time is of the essence. Don’t wait until you have been indicted by\r\na grand jury. Get help now! You should contact us immediately for a free initial\r\nreview and consultation without obligation. We are available toll free at\r\n1.877.205.3425 or by calling (512) 407-9700.\r\n\r\nThe Keys to Winning Drug Cases\r\n\r\nThe key to defending any case and suppressing the evidence in a “possession”\r\ncase is showing that the defendant did not “knowingly” possess the drugs (i.e.,\r\n“Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle\r\nor inside a persons house or apartment was left behind by someone other than the\r\ndefendant, like a roommate, friend, family member, or guest. The defendant was\r\ncompletely unaware that there were drugs in the vehicle or home. There has to be\r\nan “affirmative link” to the drugs and the defendant.\r\n\r\nWhen defending against allegations of the “use” of the drugs, we must challenge\r\nany claims by the arresting officer of signs and symptoms of drug impairment and\r\nrefute the claim that he could “smell” drugs in the air. This is accomplished by\r\nskillful cross examination. Crucial to any marijuana possession or use charge is\r\nsuppressing the drug evidence. Without this evidence, the prosecution’s case is\r\nweak. It is also very important to thoroughly review the State’s chemical\r\ntesting and laboratory procedures regarding the identification of the drug and\r\nthe calculation of the amount of drug contained within the substance. A s with\r\nall drug cases, quantity matters!\r\n\r\nAdditionally, we fight marijuana and potential drug convictions from all angles.\r\nWe assert a wide range of defenses and challenges to constitutional violations\r\nthat apply in these particular criminal cases. We frequently assert “Miranda\r\nrights violations.” In Texas, the standard of whether any incriminating\r\nstatement (i.e., a statement which tends to admit guilt) is admissible into\r\nevidence is based upon “voluntariness.” If we can demonstrate to the Court that\r\nthe police coerced you (i.e., intimidated or tricked you) into making a\r\nconfession or inculpatory statement, or that they did not properly read you your\r\nMiranda Rights, then we can suppress those statements and any evidence gathered\r\nas a direct result of those statements. In addition, the “denial of right to\r\nCounsel” is another defense which is often raised. This occurs when a suspect is\r\nin custody and requests to speak to their attorney, but is denied the right to\r\ncontact an attorney and police questioning continues. Other defenses may include\r\nchallenging the validity of any search warrant or whether there were “forensic\r\nflaws” during the investigation of your case. Depending on what you have been\r\ncharged with, this could include exposing flawed procedures regarding blood,\r\nbreath, and urine testing, fingerprints analysis, DNA testing, ballistics,\r\ngunshot residue testing, computer analysis and the cloning of hard drives and\r\nother technical procedures. Finally, a common defense tactic is exposing sloppy\r\nor misleading police reports which include everything from misstatements to\r\nfalse statements, flawed search and seizure procedures, flawed photo line-ups\r\nand inaccurate crime scene reconstruction, to other general bias and prejudicial\r\nstatements. It is important to hire a skilled Marijuana or drug crimes lawyer to\r\ndefend you. You want an attorney on your side who has knowledge of all the\r\npossible defenses which can be asserted in your case.\r\n </p>\r\n</div>\r\n','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 21:06:54','2015-05-25 21:06:54','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(51,1,'2015-05-25 21:08:07','2015-05-25 21:08:07','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container\">\r\n <p>\r\n If you have been charged with a drug possession offense, you need to\r\n retain the services of a criminal defense attorney as soon as\r\n possible. We can help by investigating and collecting necessary\r\n evidence to defeat a drug charge.\r\n\r\nRemember, in the United States you are presumed innocent until proven guilty\r\nbeyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime\r\nwill leave you with a criminal record for the remainder of your life. A criminal\r\nconviction is a public record. How might this incident impact your personal or\r\nprofessional life, especially if you’ve been convicted of a felony or serious\r\nmisdemeanor?\r\n\r\nThese are very serious charges and, upon conviction, one can be sentenced from\r\nfive (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us\r\nimmediately! Time is of the essence. Don’t wait until you have been indicted by\r\na grand jury. Get help now! You should contact us immediately for a free initial\r\nreview and consultation without obligation. We are available toll free at\r\n1.877.205.3425 or by calling (512) 407-9700.\r\n\r\nThe Keys to Winning Drug Cases\r\n\r\nThe key to defending any case and suppressing the evidence in a “possession”\r\ncase is showing that the defendant did not “knowingly” possess the drugs (i.e.,\r\n“Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle\r\nor inside a persons house or apartment was left behind by someone other than the\r\ndefendant, like a roommate, friend, family member, or guest. The defendant was\r\ncompletely unaware that there were drugs in the vehicle or home. There has to be\r\nan “affirmative link” to the drugs and the defendant.\r\n\r\nWhen defending against allegations of the “use” of the drugs, we must challenge\r\nany claims by the arresting officer of signs and symptoms of drug impairment and\r\nrefute the claim that he could “smell” drugs in the air. This is accomplished by\r\nskillful cross examination. Crucial to any marijuana possession or use charge is\r\nsuppressing the drug evidence. Without this evidence, the prosecution’s case is\r\nweak. It is also very important to thoroughly review the State’s chemical\r\ntesting and laboratory procedures regarding the identification of the drug and\r\nthe calculation of the amount of drug contained within the substance. A s with\r\nall drug cases, quantity matters!\r\n\r\nAdditionally, we fight marijuana and potential drug convictions from all angles.\r\nWe assert a wide range of defenses and challenges to constitutional violations\r\nthat apply in these particular criminal cases. We frequently assert “Miranda\r\nrights violations.” In Texas, the standard of whether any incriminating\r\nstatement (i.e., a statement which tends to admit guilt) is admissible into\r\nevidence is based upon “voluntariness.” If we can demonstrate to the Court that\r\nthe police coerced you (i.e., intimidated or tricked you) into making a\r\nconfession or inculpatory statement, or that they did not properly read you your\r\nMiranda Rights, then we can suppress those statements and any evidence gathered\r\nas a direct result of those statements. In addition, the “denial of right to\r\nCounsel” is another defense which is often raised. This occurs when a suspect is\r\nin custody and requests to speak to their attorney, but is denied the right to\r\ncontact an attorney and police questioning continues. Other defenses may include\r\nchallenging the validity of any search warrant or whether there were “forensic\r\nflaws” during the investigation of your case. Depending on what you have been\r\ncharged with, this could include exposing flawed procedures regarding blood,\r\nbreath, and urine testing, fingerprints analysis, DNA testing, ballistics,\r\ngunshot residue testing, computer analysis and the cloning of hard drives and\r\nother technical procedures. Finally, a common defense tactic is exposing sloppy\r\nor misleading police reports which include everything from misstatements to\r\nfalse statements, flawed search and seizure procedures, flawed photo line-ups\r\nand inaccurate crime scene reconstruction, to other general bias and prejudicial\r\nstatements. It is important to hire a skilled Marijuana or drug crimes lawyer to\r\ndefend you. You want an attorney on your side who has knowledge of all the\r\npossible defenses which can be asserted in your case.\r\n </p>\r\n </div>\r\n</div>\r\n','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 21:08:07','2015-05-25 21:08:07','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(52,1,'2015-05-25 21:39:10','2015-05-25 21:39:10','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container-fluid\" id=\"drug\">\r\n <p>\r\n If you have been charged with a drug possession offense, you need to\r\n retain the services of a criminal defense attorney as soon as\r\n possible. We can help by investigating and collecting necessary\r\n evidence to defeat a drug charge.\r\n\r\nRemember, in the United States you are presumed innocent until proven guilty\r\nbeyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime\r\nwill leave you with a criminal record for the remainder of your life. A criminal\r\nconviction is a public record. How might this incident impact your personal or\r\nprofessional life, especially if you’ve been convicted of a felony or serious\r\nmisdemeanor?\r\n\r\nThese are very serious charges and, upon conviction, one can be sentenced from\r\nfive (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us\r\nimmediately! Time is of the essence. Don’t wait until you have been indicted by\r\na grand jury. Get help now! You should contact us immediately for a free initial\r\nreview and consultation without obligation. We are available toll free at\r\n1.877.205.3425 or by calling (512) 407-9700.\r\n\r\nThe Keys to Winning Drug Cases\r\n\r\nThe key to defending any case and suppressing the evidence in a “possession”\r\ncase is showing that the defendant did not “knowingly” possess the drugs (i.e.,\r\n“Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle\r\nor inside a persons house or apartment was left behind by someone other than the\r\ndefendant, like a roommate, friend, family member, or guest. The defendant was\r\ncompletely unaware that there were drugs in the vehicle or home. There has to be\r\nan “affirmative link” to the drugs and the defendant.\r\n\r\nWhen defending against allegations of the “use” of the drugs, we must challenge\r\nany claims by the arresting officer of signs and symptoms of drug impairment and\r\nrefute the claim that he could “smell” drugs in the air. This is accomplished by\r\nskillful cross examination. Crucial to any marijuana possession or use charge is\r\nsuppressing the drug evidence. Without this evidence, the prosecution’s case is\r\nweak. It is also very important to thoroughly review the State’s chemical\r\ntesting and laboratory procedures regarding the identification of the drug and\r\nthe calculation of the amount of drug contained within the substance. A s with\r\nall drug cases, quantity matters!\r\n\r\nAdditionally, we fight marijuana and potential drug convictions from all angles.\r\nWe assert a wide range of defenses and challenges to constitutional violations\r\nthat apply in these particular criminal cases. We frequently assert “Miranda\r\nrights violations.” In Texas, the standard of whether any incriminating\r\nstatement (i.e., a statement which tends to admit guilt) is admissible into\r\nevidence is based upon “voluntariness.” If we can demonstrate to the Court that\r\nthe police coerced you (i.e., intimidated or tricked you) into making a\r\nconfession or inculpatory statement, or that they did not properly read you your\r\nMiranda Rights, then we can suppress those statements and any evidence gathered\r\nas a direct result of those statements. In addition, the “denial of right to\r\nCounsel” is another defense which is often raised. This occurs when a suspect is\r\nin custody and requests to speak to their attorney, but is denied the right to\r\ncontact an attorney and police questioning continues. Other defenses may include\r\nchallenging the validity of any search warrant or whether there were “forensic\r\nflaws” during the investigation of your case. Depending on what you have been\r\ncharged with, this could include exposing flawed procedures regarding blood,\r\nbreath, and urine testing, fingerprints analysis, DNA testing, ballistics,\r\ngunshot residue testing, computer analysis and the cloning of hard drives and\r\nother technical procedures. Finally, a common defense tactic is exposing sloppy\r\nor misleading police reports which include everything from misstatements to\r\nfalse statements, flawed search and seizure procedures, flawed photo line-ups\r\nand inaccurate crime scene reconstruction, to other general bias and prejudicial\r\nstatements. It is important to hire a skilled Marijuana or drug crimes lawyer to\r\ndefend you. You want an attorney on your side who has knowledge of all the\r\npossible defenses which can be asserted in your case.\r\n </p>\r\n </div>\r\n</div>\r\n','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 21:39:10','2015-05-25 21:39:10','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(53,1,'2015-05-25 22:13:43','2015-05-25 22:13:43','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container-fluid\" id=\"drug\">\r\n <div class=container>\r\n <p>\r\n If you have been charged with a drug possession offense, you need to\r\n retain the services of a criminal defense attorney as soon as\r\n possible. We can help by investigating and collecting necessary\r\n evidence to defeat a drug charge.\r\n \r\n Remember, in the United States you are presumed innocent until proven guilty\r\n beyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime\r\n will leave you with a criminal record for the remainder of your life. A criminal\r\n conviction is a public record. How might this incident impact your personal or\r\n professional life, especially if you’ve been convicted of a felony or serious\r\n misdemeanor?\r\n \r\n These are very serious charges and, upon conviction, one can be sentenced from\r\n five (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us\r\n immediately! Time is of the essence. Don’t wait until you have been indicted by\r\n a grand jury. Get help now! You should contact us immediately for a free initial\r\n review and consultation without obligation. We are available toll free at\r\n 1.877.205.3425 or by calling (512) 407-9700.\r\n \r\n The Keys to Winning Drug Cases\r\n \r\n The key to defending any case and suppressing the evidence in a “possession”\r\n case is showing that the defendant did not “knowingly” possess the drugs (i.e.,\r\n “Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle\r\n or inside a persons house or apartment was left behind by someone other than the\r\n defendant, like a roommate, friend, family member, or guest. The defendant was\r\n completely unaware that there were drugs in the vehicle or home. There has to be\r\n an “affirmative link” to the drugs and the defendant.\r\n \r\n When defending against allegations of the “use” of the drugs, we must challenge\r\n any claims by the arresting officer of signs and symptoms of drug impairment and\r\n refute the claim that he could “smell” drugs in the air. This is accomplished by\r\n skillful cross examination. Crucial to any marijuana possession or use charge is\r\n suppressing the drug evidence. Without this evidence, the prosecution’s case is\r\n weak. It is also very important to thoroughly review the State’s chemical\r\n testing and laboratory procedures regarding the identification of the drug and\r\n the calculation of the amount of drug contained within the substance. A s with\r\n all drug cases, quantity matters!\r\n \r\n Additionally, we fight marijuana and potential drug convictions from all angles.\r\n We assert a wide range of defenses and challenges to constitutional violations\r\n that apply in these particular criminal cases. We frequently assert “Miranda\r\n rights violations.” In Texas, the standard of whether any incriminating\r\n statement (i.e., a statement which tends to admit guilt) is admissible into\r\n evidence is based upon “voluntariness.” If we can demonstrate to the Court that\r\n the police coerced you (i.e., intimidated or tricked you) into making a\r\n confession or inculpatory statement, or that they did not properly read you your\r\n Miranda Rights, then we can suppress those statements and any evidence gathered\r\n as a direct result of those statements. In addition, the “denial of right to\r\n Counsel” is another defense which is often raised. This occurs when a suspect is\r\n in custody and requests to speak to their attorney, but is denied the right to\r\n contact an attorney and police questioning continues. Other defenses may include\r\n challenging the validity of any search warrant or whether there were “forensic\r\n flaws” during the investigation of your case. Depending on what you have been\r\n charged with, this could include exposing flawed procedures regarding blood,\r\n breath, and urine testing, fingerprints analysis, DNA testing, ballistics,\r\n gunshot residue testing, computer analysis and the cloning of hard drives and\r\n other technical procedures. Finally, a common defense tactic is exposing sloppy\r\n or misleading police reports which include everything from misstatements to\r\n false statements, flawed search and seizure procedures, flawed photo line-ups\r\n and inaccurate crime scene reconstruction, to other general bias and prejudicial\r\n statements. It is important to hire a skilled Marijuana or drug crimes lawyer to\r\n defend you. You want an attorney on your side who has knowledge of all the\r\n possible defenses which can be asserted in your case.\r\n </p> \r\n </div>\r\n\r\n </div>\r\n</div>\r\n','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 22:13:43','2015-05-25 22:13:43','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(54,1,'2015-05-25 22:18:54','2015-05-25 22:18:54','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container-fluid\" id=\"drug\">\r\n <div class=container>\r\n <div class=\"col-sm-6\">\r\n <h3>Drug Crimes / Possession of Marijuana </h3>\r\n <p>Our firm helps people who have been accused of a major drug offenses or drug trafficking crimes. Our motto is<span style=\"color: #ffff00;\"> <strong>“Texas Friendly Spoken Here.”</strong> </span>Although we are based in Austin, we have a state-wide practice, ensuring that your defense is fair and impartial. We are ready to travel anywhere to assist you. At Chris Dorbandt & Associates, we are very experienced in handling possession of marijuana, possession of controlled substance(s), search and seizure related money laundering cases, which include, but are not limited to:</p>\r\n <ul>\r\n <li>Drug Importation, Possession, Trafficking, and Transportation</li>\r\n <li>Drug Manufacturing and Cultivation</li>\r\n <li>Drug Interdiction Arrests</li>\r\n <li>Marijuana Transportation, Possession, Distribution and Sales</li>\r\n <li>Cocaine and Crack Cocaine Possession</li>\r\n <li>Heroin Transportation, Possession, Distribution and Sales</li>\r\n <li>Methamphetamine Transportation, Possession, Distribution and Sales</li>\r\n <li>Possession of Precursor Chemicals for Drug Manufacturing</li>\r\n <li>Possession with Intent to Deliver</li>\r\n <li>Prescription Drug offenses, including Prescription Fraud.</li>\r\n </ul>\r\n </div>\r\n <p>\r\n If you have been charged with a drug possession offense, you need to\r\n retain the services of a criminal defense attorney as soon as\r\n possible. We can help by investigating and collecting necessary\r\n evidence to defeat a drug charge.\r\n \r\n Remember, in the United States you are presumed innocent until proven guilty\r\n beyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime\r\n will leave you with a criminal record for the remainder of your life. A criminal\r\n conviction is a public record. How might this incident impact your personal or\r\n professional life, especially if you’ve been convicted of a felony or serious\r\n misdemeanor?\r\n \r\n These are very serious charges and, upon conviction, one can be sentenced from\r\n five (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us\r\n immediately! Time is of the essence. Don’t wait until you have been indicted by\r\n a grand jury. Get help now! You should contact us immediately for a free initial\r\n review and consultation without obligation. We are available toll free at\r\n 1.877.205.3425 or by calling (512) 407-9700.\r\n \r\n The Keys to Winning Drug Cases\r\n \r\n The key to defending any case and suppressing the evidence in a “possession”\r\n case is showing that the defendant did not “knowingly” possess the drugs (i.e.,\r\n “Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle\r\n or inside a persons house or apartment was left behind by someone other than the\r\n defendant, like a roommate, friend, family member, or guest. The defendant was\r\n completely unaware that there were drugs in the vehicle or home. There has to be\r\n an “affirmative link” to the drugs and the defendant.\r\n \r\n When defending against allegations of the “use” of the drugs, we must challenge\r\n any claims by the arresting officer of signs and symptoms of drug impairment and\r\n refute the claim that he could “smell” drugs in the air. This is accomplished by\r\n skillful cross examination. Crucial to any marijuana possession or use charge is\r\n suppressing the drug evidence. Without this evidence, the prosecution’s case is\r\n weak. It is also very important to thoroughly review the State’s chemical\r\n testing and laboratory procedures regarding the identification of the drug and\r\n the calculation of the amount of drug contained within the substance. A s with\r\n all drug cases, quantity matters!\r\n \r\n Additionally, we fight marijuana and potential drug convictions from all angles.\r\n We assert a wide range of defenses and challenges to constitutional violations\r\n that apply in these particular criminal cases. We frequently assert “Miranda\r\n rights violations.” In Texas, the standard of whether any incriminating\r\n statement (i.e., a statement which tends to admit guilt) is admissible into\r\n evidence is based upon “voluntariness.” If we can demonstrate to the Court that\r\n the police coerced you (i.e., intimidated or tricked you) into making a\r\n confession or inculpatory statement, or that they did not properly read you your\r\n Miranda Rights, then we can suppress those statements and any evidence gathered\r\n as a direct result of those statements. In addition, the “denial of right to\r\n Counsel” is another defense which is often raised. This occurs when a suspect is\r\n in custody and requests to speak to their attorney, but is denied the right to\r\n contact an attorney and police questioning continues. Other defenses may include\r\n challenging the validity of any search warrant or whether there were “forensic\r\n flaws” during the investigation of your case. Depending on what you have been\r\n charged with, this could include exposing flawed procedures regarding blood,\r\n breath, and urine testing, fingerprints analysis, DNA testing, ballistics,\r\n gunshot residue testing, computer analysis and the cloning of hard drives and\r\n other technical procedures. Finally, a common defense tactic is exposing sloppy\r\n or misleading police reports which include everything from misstatements to\r\n false statements, flawed search and seizure procedures, flawed photo line-ups\r\n and inaccurate crime scene reconstruction, to other general bias and prejudicial\r\n statements. It is important to hire a skilled Marijuana or drug crimes lawyer to\r\n defend you. You want an attorney on your side who has knowledge of all the\r\n possible defenses which can be asserted in your case.\r\n </p> \r\n </div>\r\n\r\n </div>\r\n</div>\r\n','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 22:18:54','2015-05-25 22:18:54','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(55,1,'2015-05-25 22:19:54','2015-05-25 22:19:54','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container-fluid\" id=\"drug\">\r\n <div class=container>\r\n <div class=\"col-sm-6\">\r\n <h3>Drug Crimes / Possession of Marijuana </h3>\r\n <p>Our firm helps people who have been accused of a major drug offenses or drug trafficking crimes. Our motto is<span style=\"color: #ffff00;\"> <strong>“Texas Friendly Spoken Here.”</strong> </span>Although we are based in Austin, we have a state-wide practice, ensuring that your defense is fair and impartial. We are ready to travel anywhere to assist you. At Chris Dorbandt & Associates, we are very experienced in handling possession of marijuana, possession of controlled substance(s), search and seizure related money laundering cases, which include, but are not limited to:</p>\r\n <ul>\r\n <li>Drug Importation, Possession, Trafficking, and Transportation</li>\r\n <li>Drug Manufacturing and Cultivation</li>\r\n <li>Drug Interdiction Arrests</li>\r\n <li>Marijuana Transportation, Possession, Distribution and Sales</li>\r\n <li>Cocaine and Crack Cocaine Possession</li>\r\n <li>Heroin Transportation, Possession, Distribution and Sales</li>\r\n <li>Methamphetamine Transportation, Possession, Distribution and Sales</li>\r\n <li>Possession of Precursor Chemicals for Drug Manufacturing</li>\r\n <li>Possession with Intent to Deliver</li>\r\n <li>Prescription Drug offenses, including Prescription Fraud.</li>\r\n </ul>\r\n </div>\r\n <div class=\"col-sm-6\">\r\n <p>\r\n If you have been charged with a drug possession offense, you need to\r\n retain the services of a criminal defense attorney as soon as\r\n possible. We can help by investigating and collecting necessary\r\n evidence to defeat a drug charge.\r\n \r\n Remember, in the United States you are presumed innocent until proven guilty\r\n beyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime\r\n will leave you with a criminal record for the remainder of your life. A criminal\r\n conviction is a public record. How might this incident impact your personal or\r\n professional life, especially if you’ve been convicted of a felony or serious\r\n misdemeanor?\r\n \r\n These are very serious charges and, upon conviction, one can be sentenced from\r\n five (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us\r\n immediately! Time is of the essence. Don’t wait until you have been indicted by\r\n a grand jury. Get help now! You should contact us immediately for a free initial\r\n review and consultation without obligation. We are available toll free at\r\n 1.877.205.3425 or by calling (512) 407-9700.\r\n \r\n The Keys to Winning Drug Cases\r\n \r\n The key to defending any case and suppressing the evidence in a “possession”\r\n case is showing that the defendant did not “knowingly” possess the drugs (i.e.,\r\n “Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle\r\n or inside a persons house or apartment was left behind by someone other than the\r\n defendant, like a roommate, friend, family member, or guest. The defendant was\r\n completely unaware that there were drugs in the vehicle or home. There has to be\r\n an “affirmative link” to the drugs and the defendant.\r\n \r\n When defending against allegations of the “use” of the drugs, we must challenge\r\n any claims by the arresting officer of signs and symptoms of drug impairment and\r\n refute the claim that he could “smell” drugs in the air. This is accomplished by\r\n skillful cross examination. Crucial to any marijuana possession or use charge is\r\n suppressing the drug evidence. Without this evidence, the prosecution’s case is\r\n weak. It is also very important to thoroughly review the State’s chemical\r\n testing and laboratory procedures regarding the identification of the drug and\r\n the calculation of the amount of drug contained within the substance. A s with\r\n all drug cases, quantity matters!\r\n \r\n Additionally, we fight marijuana and potential drug convictions from all angles.\r\n We assert a wide range of defenses and challenges to constitutional violations\r\n that apply in these particular criminal cases. We frequently assert “Miranda\r\n rights violations.” In Texas, the standard of whether any incriminating\r\n statement (i.e., a statement which tends to admit guilt) is admissible into\r\n evidence is based upon “voluntariness.” If we can demonstrate to the Court that\r\n the police coerced you (i.e., intimidated or tricked you) into making a\r\n confession or inculpatory statement, or that they did not properly read you your\r\n Miranda Rights, then we can suppress those statements and any evidence gathered\r\n as a direct result of those statements. In addition, the “denial of right to\r\n Counsel” is another defense which is often raised. This occurs when a suspect is\r\n in custody and requests to speak to their attorney, but is denied the right to\r\n contact an attorney and police questioning continues. Other defenses may include\r\n challenging the validity of any search warrant or whether there were “forensic\r\n flaws” during the investigation of your case. Depending on what you have been\r\n charged with, this could include exposing flawed procedures regarding blood,\r\n breath, and urine testing, fingerprints analysis, DNA testing, ballistics,\r\n gunshot residue testing, computer analysis and the cloning of hard drives and\r\n other technical procedures. Finally, a common defense tactic is exposing sloppy\r\n or misleading police reports which include everything from misstatements to\r\n false statements, flawed search and seizure procedures, flawed photo line-ups\r\n and inaccurate crime scene reconstruction, to other general bias and prejudicial\r\n statements. It is important to hire a skilled Marijuana or drug crimes lawyer to\r\n defend you. You want an attorney on your side who has knowledge of all the\r\n possible defenses which can be asserted in your case.\r\n </p> \r\n </div>\r\n </div>\r\n\r\n </div>\r\n</div>\r\n','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 22:19:54','2015-05-25 22:19:54','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(56,1,'2015-05-25 22:25:21','2015-05-25 22:25:21','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container-fluid\" id=\"drug\">\r\n <div class=container>\r\n <div class=\"col-sm-6 left-page\">\r\n <h3>Drug Crimes / Possession of Marijuana </h3>\r\n <p>Our firm helps people who have been accused of a major drug offenses or drug trafficking crimes. Our motto is<span style=\"color: #ffff00;\"> <strong>“Texas Friendly Spoken Here.”</strong> </span>Although we are based in Austin, we have a state-wide practice, ensuring that your defense is fair and impartial. We are ready to travel anywhere to assist you. At Chris Dorbandt & Associates, we are very experienced in handling possession of marijuana, possession of controlled substance(s), search and seizure related money laundering cases, which include, but are not limited to:</p>\r\n <div class=\"page-list\">\r\n <ul>\r\n <li>Drug Importation, Possession, Trafficking, and Transportation</li>\r\n <li>Drug Manufacturing and Cultivation</li>\r\n <li>Drug Interdiction Arrests</li>\r\n <li>Marijuana Transportation, Possession, Distribution and Sales</li>\r\n <li>Cocaine and Crack Cocaine Possession</li>\r\n <li>Heroin Transportation, Possession, Distribution and Sales</li>\r\n <li>Methamphetamine Transportation, Possession, Distribution and Sales</li>\r\n <li>Possession of Precursor Chemicals for Drug Manufacturing</li>\r\n <li>Possession with Intent to Deliver</li>\r\n <li>Prescription Drug offenses, including Prescription Fraud.</li>\r\n </ul>\r\n </div><!--ul-->\r\n </div>\r\n <div class=\"col-sm-6 right-page\">\r\n <p>\r\n If you have been charged with a drug possession offense, you need to\r\n retain the services of a criminal defense attorney as soon as\r\n possible. We can help by investigating and collecting necessary\r\n evidence to defeat a drug charge.\r\n \r\n Remember, in the United States you are presumed innocent until proven guilty\r\n beyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime\r\n will leave you with a criminal record for the remainder of your life. A criminal\r\n conviction is a public record. How might this incident impact your personal or\r\n professional life, especially if you’ve been convicted of a felony or serious\r\n misdemeanor?\r\n \r\n These are very serious charges and, upon conviction, one can be sentenced from\r\n five (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us\r\n immediately! Time is of the essence. Don’t wait until you have been indicted by\r\n a grand jury. Get help now! You should contact us immediately for a free initial\r\n review and consultation without obligation. We are available toll free at\r\n 1.877.205.3425 or by calling (512) 407-9700.\r\n \r\n The Keys to Winning Drug Cases\r\n \r\n The key to defending any case and suppressing the evidence in a “possession”\r\n case is showing that the defendant did not “knowingly” possess the drugs (i.e.,\r\n “Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle\r\n or inside a persons house or apartment was left behind by someone other than the\r\n defendant, like a roommate, friend, family member, or guest. The defendant was\r\n completely unaware that there were drugs in the vehicle or home. There has to be\r\n an “affirmative link” to the drugs and the defendant.\r\n \r\n When defending against allegations of the “use” of the drugs, we must challenge\r\n any claims by the arresting officer of signs and symptoms of drug impairment and\r\n refute the claim that he could “smell” drugs in the air. This is accomplished by\r\n skillful cross examination. Crucial to any marijuana possession or use charge is\r\n suppressing the drug evidence. Without this evidence, the prosecution’s case is\r\n weak. It is also very important to thoroughly review the State’s chemical\r\n testing and laboratory procedures regarding the identification of the drug and\r\n the calculation of the amount of drug contained within the substance. A s with\r\n all drug cases, quantity matters!\r\n \r\n Additionally, we fight marijuana and potential drug convictions from all angles.\r\n We assert a wide range of defenses and challenges to constitutional violations\r\n that apply in these particular criminal cases. We frequently assert “Miranda\r\n rights violations.” In Texas, the standard of whether any incriminating\r\n statement (i.e., a statement which tends to admit guilt) is admissible into\r\n evidence is based upon “voluntariness.” If we can demonstrate to the Court that\r\n the police coerced you (i.e., intimidated or tricked you) into making a\r\n confession or inculpatory statement, or that they did not properly read you your\r\n Miranda Rights, then we can suppress those statements and any evidence gathered\r\n as a direct result of those statements. In addition, the “denial of right to\r\n Counsel” is another defense which is often raised. This occurs when a suspect is\r\n in custody and requests to speak to their attorney, but is denied the right to\r\n contact an attorney and police questioning continues. Other defenses may include\r\n challenging the validity of any search warrant or whether there were “forensic\r\n flaws” during the investigation of your case. Depending on what you have been\r\n charged with, this could include exposing flawed procedures regarding blood,\r\n breath, and urine testing, fingerprints analysis, DNA testing, ballistics,\r\n gunshot residue testing, computer analysis and the cloning of hard drives and\r\n other technical procedures. Finally, a common defense tactic is exposing sloppy\r\n or misleading police reports which include everything from misstatements to\r\n false statements, flawed search and seizure procedures, flawed photo line-ups\r\n and inaccurate crime scene reconstruction, to other general bias and prejudicial\r\n statements. It is important to hire a skilled Marijuana or drug crimes lawyer to\r\n defend you. You want an attorney on your side who has knowledge of all the\r\n possible defenses which can be asserted in your case.\r\n </p> \r\n </div>\r\n </div>\r\n\r\n </div>\r\n</div>\r\n','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 22:25:21','2015-05-25 22:25:21','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(57,1,'2015-05-25 22:32:29','2015-05-25 22:32:29','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container-fluid\" id=\"drug\">\r\n <div class=container>\r\n <div class=\"col-sm-12\">\r\n <h3>Drug Crimes / Possession of Marijuana</h3>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"col-sm-6 left-page\">\r\n <p>Our firm helps people who have been accused of a major drug offenses or drug trafficking crimes. Our motto is<span style=\"color: #ffff00;\"> <strong>“Texas Friendly Spoken Here.”</strong> </span>Although we are based in Austin, we have a state-wide practice, ensuring that your defense is fair and impartial. We are ready to travel anywhere to assist you. At Chris Dorbandt & Associates, we are very experienced in handling possession of marijuana, possession of controlled substance(s), search and seizure related money laundering cases, which include, but are not limited to:</p>\r\n <div class=\"page-list\">\r\n <ul>\r\n <li>Drug Importation, Possession, Trafficking, and Transportation</li>\r\n <li>Drug Manufacturing and Cultivation</li>\r\n <li>Drug Interdiction Arrests</li>\r\n <li>Marijuana Transportation, Possession, Distribution and Sales</li>\r\n <li>Cocaine and Crack Cocaine Possession</li>\r\n <li>Heroin Transportation, Possession, Distribution and Sales</li>\r\n <li>Methamphetamine Transportation, Possession, Distribution and Sales</li>\r\n <li>Possession of Precursor Chemicals for Drug Manufacturing</li>\r\n <li>Possession with Intent to Deliver</li>\r\n <li>Prescription Drug offenses, including Prescription Fraud.</li>\r\n </ul>\r\n </div><!--ul-->\r\n </div>\r\n <div class=\"col-sm-6 right-page\">\r\n <p>\r\n If you have been charged with a drug possession offense, you need to\r\n retain the services of a criminal defense attorney as soon as\r\n possible. We can help by investigating and collecting necessary\r\n evidence to defeat a drug charge.\r\n \r\n Remember, in the United States you are presumed innocent until proven guilty\r\n beyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime\r\n will leave you with a criminal record for the remainder of your life. A criminal\r\n conviction is a public record. How might this incident impact your personal or\r\n professional life, especially if you’ve been convicted of a felony or serious\r\n misdemeanor?\r\n \r\n These are very serious charges and, upon conviction, one can be sentenced from\r\n five (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us\r\n immediately! Time is of the essence. Don’t wait until you have been indicted by\r\n a grand jury. Get help now! You should contact us immediately for a free initial\r\n review and consultation without obligation. We are available toll free at\r\n 1.877.205.3425 or by calling (512) 407-9700.\r\n \r\n The Keys to Winning Drug Cases\r\n \r\n The key to defending any case and suppressing the evidence in a “possession”\r\n case is showing that the defendant did not “knowingly” possess the drugs (i.e.,\r\n “Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle\r\n or inside a persons house or apartment was left behind by someone other than the\r\n defendant, like a roommate, friend, family member, or guest. The defendant was\r\n completely unaware that there were drugs in the vehicle or home. There has to be\r\n an “affirmative link” to the drugs and the defendant.\r\n \r\n When defending against allegations of the “use” of the drugs, we must challenge\r\n any claims by the arresting officer of signs and symptoms of drug impairment and\r\n refute the claim that he could “smell” drugs in the air. This is accomplished by\r\n skillful cross examination. Crucial to any marijuana possession or use charge is\r\n suppressing the drug evidence. Without this evidence, the prosecution’s case is\r\n weak. It is also very important to thoroughly review the State’s chemical\r\n testing and laboratory procedures regarding the identification of the drug and\r\n the calculation of the amount of drug contained within the substance. A s with\r\n all drug cases, quantity matters!\r\n \r\n Additionally, we fight marijuana and potential drug convictions from all angles.\r\n We assert a wide range of defenses and challenges to constitutional violations\r\n that apply in these particular criminal cases. We frequently assert “Miranda\r\n rights violations.” In Texas, the standard of whether any incriminating\r\n statement (i.e., a statement which tends to admit guilt) is admissible into\r\n evidence is based upon “voluntariness.” If we can demonstrate to the Court that\r\n the police coerced you (i.e., intimidated or tricked you) into making a\r\n confession or inculpatory statement, or that they did not properly read you your\r\n Miranda Rights, then we can suppress those statements and any evidence gathered\r\n as a direct result of those statements. In addition, the “denial of right to\r\n Counsel” is another defense which is often raised. This occurs when a suspect is\r\n in custody and requests to speak to their attorney, but is denied the right to\r\n contact an attorney and police questioning continues. Other defenses may include\r\n challenging the validity of any search warrant or whether there were “forensic\r\n flaws” during the investigation of your case. Depending on what you have been\r\n charged with, this could include exposing flawed procedures regarding blood,\r\n breath, and urine testing, fingerprints analysis, DNA testing, ballistics,\r\n gunshot residue testing, computer analysis and the cloning of hard drives and\r\n other technical procedures. Finally, a common defense tactic is exposing sloppy\r\n or misleading police reports which include everything from misstatements to\r\n false statements, flawed search and seizure procedures, flawed photo line-ups\r\n and inaccurate crime scene reconstruction, to other general bias and prejudicial\r\n statements. It is important to hire a skilled Marijuana or drug crimes lawyer to\r\n defend you. You want an attorney on your side who has knowledge of all the\r\n possible defenses which can be asserted in your case.\r\n </p> \r\n </div> \r\n </div>\r\n\r\n </div>\r\n\r\n </div>\r\n</div>\r\n','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 22:32:29','2015-05-25 22:32:29','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(58,1,'2015-05-25 22:38:03','2015-05-25 22:38:03','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container-fluid\" id=\"drug\">\r\n <div class=container>\r\n <div class=\"col-sm-12\">\r\n <h3>Drug Crimes / Possession of Marijuana</h3>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"col-sm-6 left-page\">\r\n <p>Our firm helps people who have been accused of a major drug offenses or drug trafficking crimes. Our motto is<span style=\"color: #ffff00;\"> <strong>“Texas Friendly Spoken Here.”</strong> </span>Although we are based in Austin, we have a state-wide practice, ensuring that your defense is fair and impartial. We are ready to travel anywhere to assist you. At Chris Dorbandt & Associates, we are very experienced in handling possession of marijuana, possession of controlled substance(s), search and seizure related money laundering cases, which include, but are not limited to:</p>\r\n <div class=\"page-list\">\r\n <ul>\r\n <li>Drug Importation, Possession, Trafficking, and Transportation</li>\r\n <li>Drug Manufacturing and Cultivation</li>\r\n <li>Drug Interdiction Arrests</li>\r\n <li>Marijuana Transportation, Possession, Distribution and Sales</li>\r\n <li>Cocaine and Crack Cocaine Possession</li>\r\n <li>Heroin Transportation, Possession, Distribution and Sales</li>\r\n <li>Methamphetamine Transportation, Possession, Distribution and Sales</li>\r\n <li>Possession of Precursor Chemicals for Drug Manufacturing</li>\r\n <li>Possession with Intent to Deliver</li>\r\n <li>Prescription Drug offenses, including Prescription Fraud.</li>\r\n </ul>\r\n </div><!--ul-->\r\n </div>\r\n <div class=\"col-sm-6 right-page\">\r\n <p>\r\n If you have been charged with a drug possession offense, you need to\r\n retain the services of a criminal defense attorney as soon as\r\n possible. We can help by investigating and collecting necessary\r\n evidence to defeat a drug charge.\r\n\r\n Remember, in the United States you are presumed innocent until proven guilty\r\n beyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime\r\n will leave you with a criminal record for the remainder of your life. A criminal\r\n conviction is a public record. How might this incident impact your personal or\r\n professional life, especially if you’ve been convicted of a felony or serious\r\n misdemeanor?\r\n\r\n These are very serious charges and, upon conviction, one can be sentenced from\r\n five (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us\r\n immediately! Time is of the essence. Don’t wait until you have been indicted by\r\n a grand jury. Get help now! You should contact us immediately for a free initial\r\n review and consultation without obligation. We are available toll free at\r\n 1.877.205.3425 or by calling (512) 407-9700.\r\n\r\n The Keys to Winning Drug Cases\r\n\r\n The key to defending any case and suppressing the evidence in a “possession”\r\n case is showing that the defendant did not “knowingly” possess the drugs (i.e.,\r\n “Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle\r\n or inside a persons house or apartment was left behind by someone other than the\r\n defendant, like a roommate, friend, family member, or guest. The defendant was\r\n completely unaware that there were drugs in the vehicle or home. There has to be\r\n an “affirmative link” to the drugs and the defendant.\r\n\r\n When defending against allegations of the “use” of the drugs, we must challenge\r\n any claims by the arresting officer of signs and symptoms of drug impairment and\r\n refute the claim that he could “smell” drugs in the air. This is accomplished by\r\n skillful cross examination. Crucial to any marijuana possession or use charge is\r\n suppressing the drug evidence. Without this evidence, the prosecution’s case is\r\n weak. It is also very important to thoroughly review the State’s chemical\r\n testing and laboratory procedures regarding the identification of the drug and\r\n the calculation of the amount of drug contained within the substance. A s with\r\n all drug cases, quantity matters!\r\n\r\n Additionally, we fight marijuana and potential drug convictions from all angles.\r\n We assert a wide range of defenses and challenges to constitutional violations\r\n that apply in these particular criminal cases. We frequently assert “Miranda\r\n rights violations.” In Texas, the standard of whether any incriminating\r\n statement (i.e., a statement which tends to admit guilt) is admissible into\r\n evidence is based upon “voluntariness.” If we can demonstrate to the Court that\r\n the police coerced you (i.e., intimidated or tricked you) into making a\r\n confession or inculpatory statement, or that they did not properly read you your\r\n Miranda Rights, then we can suppress those statements and any evidence gathered\r\n as a direct result of those statements. In addition, the “denial of right to\r\n Counsel” is another defense which is often raised. This occurs when a suspect is\r\n in custody and requests to speak to their attorney, but is denied the right to\r\n contact an attorney and police questioning continues. Other defenses may include\r\n challenging the validity of any search warrant or whether there were “forensic\r\n flaws” during the investigation of your case. Depending on what you have been\r\n charged with, this could include exposing flawed procedures regarding blood,\r\n breath, and urine testing, fingerprints analysis, DNA testing, ballistics,\r\n gunshot residue testing, computer analysis and the cloning of hard drives and\r\n other technical procedures. Finally, a common defense tactic is exposing sloppy\r\n or misleading police reports which include everything from misstatements to\r\n false statements, flawed search and seizure procedures, flawed photo line-ups\r\n and inaccurate crime scene reconstruction, to other general bias and prejudicial\r\n statements. It is important to hire a skilled Marijuana or drug crimes lawyer to\r\n defend you. You want an attorney on your side who has knowledge of all the\r\n possible defenses which can be asserted in your case. </p> \r\n </div> \r\n </div>\r\n\r\n </div>\r\n\r\n </div>\r\n</div>\r\n','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 22:38:03','2015-05-25 22:38:03','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(59,1,'2015-05-25 22:43:15','2015-05-25 22:43:15','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container-fluid\" id=\"drug\">\r\n <div class=container>\r\n <div class=\"col-sm-12\">\r\n <h3>Drug Crimes / Possession of Marijuana</h3>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"col-sm-6 left-page\">\r\n <p>Our firm helps people who have been accused of a major drug offenses or drug trafficking crimes. Our motto is<span style=\"color: #ffff00;\"> <strong>“Texas Friendly Spoken Here.”</strong> </span>Although we are based in Austin, we have a state-wide practice, ensuring that your defense is fair and impartial. We are ready to travel anywhere to assist you. At Chris Dorbandt & Associates, we are very experienced in handling possession of marijuana, possession of controlled substance(s), search and seizure related money laundering cases, which include, but are not limited to:</p>\r\n <div class=\"page-list\">\r\n <ul>\r\n <li>Drug Importation, Possession, Trafficking, and Transportation</li>\r\n <li>Drug Manufacturing and Cultivation</li>\r\n <li>Drug Interdiction Arrests</li>\r\n <li>Marijuana Transportation, Possession, Distribution and Sales</li>\r\n <li>Cocaine and Crack Cocaine Possession</li>\r\n <li>Heroin Transportation, Possession, Distribution and Sales</li>\r\n <li>Methamphetamine Transportation, Possession, Distribution and Sales</li>\r\n <li>Possession of Precursor Chemicals for Drug Manufacturing</li>\r\n <li>Possession with Intent to Deliver</li>\r\n <li>Prescription Drug offenses, including Prescription Fraud.</li>\r\n </ul>\r\n </div><!--ul-->\r\n </div>\r\n <div class=\"col-sm-6 right-page\">\r\n <p>If you have been charged with a drug possession offense, you need to retain the services of a criminal defense attorney <strong><em>as soon as possible</em></strong>. We can help by investigating and collecting necessary evidence to defeat a drug charge.</p>\r\n <p>Remember, in the United States you are presumed innocent until proven guilty beyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime will leave you with a criminal record for the remainder of your life. A criminal conviction is a public record. How might this incident impact your personal or professional life, especially if you’ve been convicted of a felony or serious misdemeanor?</p>\r\n <p><strong>These are very serious charges</strong> and, upon conviction, one can be sentenced from five (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us immediately! Time is of the essence. Don’t wait until you have been indicted by a grand jury. Get help now! You should contact us immediately for a free initial review and consultation without obligation. We are available toll free at <span style=\"color: #ffff00;\">1.877.205.3425 or by calling (512) 407-9700</span>.</p>\r\n <p><strong>The Keys to Winning Drug Cases</strong></p>\r\n <p>The key to defending any case and suppressing the evidence in a “possession” case is showing that the defendant did not “knowingly” possess the drugs (i.e., “Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle or inside a persons house or apartment was left behind by someone other than the defendant, like a roommate, friend, family member, or guest. The defendant was completely unaware that there were drugs in the vehicle or home. There has to be an “affirmative link” to the drugs and the defendant.</p>\r\n <p>When defending against allegations of the “use” of the drugs, we must challenge any claims by the arresting officer of signs and symptoms of drug impairment and refute the claim that he could “smell” drugs in the air. This is accomplished by skillful cross examination. Crucial to any marijuana possession or use charge is suppressing the drug evidence. Without this evidence, the prosecution’s case is weak. It is also very important to thoroughly review the State’s chemical testing and laboratory procedures regarding the identification of the drug and the calculation of the amount of drug contained within the substance. A s with all drug cases, quantity matters!</p>\r\n <p>Additionally, we fight marijuana and potential drug convictions from all angles. We assert a wide range of defenses and challenges to constitutional violations that apply in these particular criminal cases. We frequently assert “Miranda rights violations.” In Texas, the standard of whether any incriminating statement (i.e., a statement which tends to admit guilt) is admissible into evidence is based upon “voluntariness.” If we can demonstrate to the Court that the police coerced you (i.e., intimidated or tricked you) into making a confession or inculpatory statement, or that they did not properly read you your Miranda Rights, then we can suppress those statements and any evidence gathered as a direct result of those statements. In addition, the “denial of right to Counsel” is another defense which is often raised. This occurs when a suspect is in custody and requests to speak to their attorney, but is denied the right to contact an attorney and police questioning continues. Other defenses may include challenging the validity of any search warrant or whether there were “forensic flaws” during the investigation of your case. Depending on what you have been charged with, this could include exposing flawed procedures regarding blood, breath, and urine testing, fingerprints analysis, DNA testing, ballistics, gunshot residue testing, computer analysis and the cloning of hard drives and other technical procedures. Finally, a common defense tactic is exposing sloppy or misleading police reports which include everything from misstatements to false statements, flawed search and seizure procedures, flawed photo line-ups and inaccurate crime scene reconstruction, to other general bias and prejudicial statements. It is important to hire a skilled Marijuana or drug crimes lawyer to defend you. You want an attorney on your side who has knowledge of all the possible defenses which can be asserted in your case.</p>\r\n </p>\r\n </div> \r\n </div>\r\n\r\n </div>\r\n\r\n </div>\r\n</div>\r\n','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 22:43:15','2015-05-25 22:43:15','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(60,1,'2015-05-25 22:44:34','2015-05-25 22:44:34','<div id=\"drug_crimes\">\r\n <div class=\"page-header\">\r\n <div class=\"header-box\">\r\n <h1>Drug Crimes</h1>\r\n </div>\r\n </div>\r\n <div class=\"container-fluid\" id=\"drug\">\r\n <div class=container>\r\n <div class=\"col-sm-12\">\r\n <h3>Drug Crimes / Possession of Marijuana</h3>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"col-sm-6 left-page\">\r\n <p>Our firm helps people who have been accused of a major drug offenses or drug trafficking crimes. Our motto is<span style=\"color: #4592D8;\"> <strong>“Texas Friendly Spoken Here.”</strong> </span>Although we are based in Austin, we have a state-wide practice, ensuring that your defense is fair and impartial. We are ready to travel anywhere to assist you. At Chris Dorbandt & Associates, we are very experienced in handling possession of marijuana, possession of controlled substance(s), search and seizure related money laundering cases, which include, but are not limited to:</p>\r\n <div class=\"page-list\">\r\n <ul>\r\n <li>Drug Importation, Possession, Trafficking, and Transportation</li>\r\n <li>Drug Manufacturing and Cultivation</li>\r\n <li>Drug Interdiction Arrests</li>\r\n <li>Marijuana Transportation, Possession, Distribution and Sales</li>\r\n <li>Cocaine and Crack Cocaine Possession</li>\r\n <li>Heroin Transportation, Possession, Distribution and Sales</li>\r\n <li>Methamphetamine Transportation, Possession, Distribution and Sales</li>\r\n <li>Possession of Precursor Chemicals for Drug Manufacturing</li>\r\n <li>Possession with Intent to Deliver</li>\r\n <li>Prescription Drug offenses, including Prescription Fraud.</li>\r\n </ul>\r\n </div><!--ul-->\r\n </div>\r\n <div class=\"col-sm-6 right-page\">\r\n <p>If you have been charged with a drug possession offense, you need to retain the services of a criminal defense attorney <strong><em>as soon as possible</em></strong>. We can help by investigating and collecting necessary evidence to defeat a drug charge.</p>\r\n <p>Remember, in the United States you are presumed innocent until proven guilty beyond a reasonable doubt. Pleading “guilty” or “no contest” to a drug crime will leave you with a criminal record for the remainder of your life. A criminal conviction is a public record. How might this incident impact your personal or professional life, especially if you’ve been convicted of a felony or serious misdemeanor?</p>\r\n <p><strong>These are very serious charges</strong> and, upon conviction, one can be sentenced from five (5) to 99 years or LIFE in prison. Don’t wait to see what happens, call us immediately! Time is of the essence. Don’t wait until you have been indicted by a grand jury. Get help now! You should contact us immediately for a free initial review and consultation without obligation. We are available toll free at <span style=\"color: #4592D8;\">1.877.205.3425 or by calling (512) 407-9700</span>.</p>\r\n <p><strong>The Keys to Winning Drug Cases</strong></p>\r\n <p>The key to defending any case and suppressing the evidence in a “possession” case is showing that the defendant did not “knowingly” possess the drugs (i.e., “Lack of Knowledge”). Often we can demonstrate that what was found in a vehicle or inside a persons house or apartment was left behind by someone other than the defendant, like a roommate, friend, family member, or guest. The defendant was completely unaware that there were drugs in the vehicle or home. There has to be an “affirmative link” to the drugs and the defendant.</p>\r\n <p>When defending against allegations of the “use” of the drugs, we must challenge any claims by the arresting officer of signs and symptoms of drug impairment and refute the claim that he could “smell” drugs in the air. This is accomplished by skillful cross examination. Crucial to any marijuana possession or use charge is suppressing the drug evidence. Without this evidence, the prosecution’s case is weak. It is also very important to thoroughly review the State’s chemical testing and laboratory procedures regarding the identification of the drug and the calculation of the amount of drug contained within the substance. A s with all drug cases, quantity matters!</p>\r\n <p>Additionally, we fight marijuana and potential drug convictions from all angles. We assert a wide range of defenses and challenges to constitutional violations that apply in these particular criminal cases. We frequently assert “Miranda rights violations.” In Texas, the standard of whether any incriminating statement (i.e., a statement which tends to admit guilt) is admissible into evidence is based upon “voluntariness.” If we can demonstrate to the Court that the police coerced you (i.e., intimidated or tricked you) into making a confession or inculpatory statement, or that they did not properly read you your Miranda Rights, then we can suppress those statements and any evidence gathered as a direct result of those statements. In addition, the “denial of right to Counsel” is another defense which is often raised. This occurs when a suspect is in custody and requests to speak to their attorney, but is denied the right to contact an attorney and police questioning continues. Other defenses may include challenging the validity of any search warrant or whether there were “forensic flaws” during the investigation of your case. Depending on what you have been charged with, this could include exposing flawed procedures regarding blood, breath, and urine testing, fingerprints analysis, DNA testing, ballistics, gunshot residue testing, computer analysis and the cloning of hard drives and other technical procedures. Finally, a common defense tactic is exposing sloppy or misleading police reports which include everything from misstatements to false statements, flawed search and seizure procedures, flawed photo line-ups and inaccurate crime scene reconstruction, to other general bias and prejudicial statements. It is important to hire a skilled Marijuana or drug crimes lawyer to defend you. You want an attorney on your side who has knowledge of all the possible defenses which can be asserted in your case.</p>\r\n </p>\r\n </div> \r\n </div>\r\n\r\n </div>\r\n\r\n </div>\r\n</div>','Drug Crimes','','inherit','open','open','','31-revision-v1','','','2015-05-25 22:44:34','2015-05-25 22:44:34','',31,'http://104.236.173.138/2015/05/25/31-revision-v1/',0,'revision','',0),(61,1,'2015-05-26 23:38:39','2015-05-26 23:38:39','','Downtown Austin Texas Cityscape at night from across Lady Bird Lake formally known as Town Lake','Downtown Austin Texas Cityscape at night from across Lady Bird Lake formally known as Town Lake','inherit','open','open','','downtown-austin-texas-cityscape-at-night-from-across-lady-bird-lake-formally-known-as-town-lake','','','2015-05-26 23:38:39','2015-05-26 23:38:39','',0,'http://104.236.173.138/wp-content/uploads/2015/05/bigstock-Downtown-Austin-Texas-Cityscap-18985943.jpg',0,'attachment','image/jpeg',0),(62,1,'2015-05-26 23:38:51','2015-05-26 23:38:51','','Downtown Austin Texas Cityscape at night from across Lady Bird Lake formally known as Town Lake','Downtown Austin Texas Cityscape at night from across Lady Bird Lake formally known as Town Lake','inherit','open','open','','downtown-austin-texas-cityscape-at-night-from-across-lady-bird-lake-formally-known-as-town-lake-2','','','2015-05-26 23:38:51','2015-05-26 23:38:51','',0,'http://104.236.173.138/wp-content/uploads/2015/05/bigstock-Downtown-Austin-Texas-Cityscap-189859431.jpg',0,'attachment','image/jpeg',0),(63,1,'2015-05-26 23:46:44','2015-05-26 23:46:44','','Businessman Speaking','businessman speaking at sunset office, close up','inherit','open','open','','businessman-speaking','','','2015-05-26 23:46:44','2015-05-26 23:46:44','',0,'http://104.236.173.138/wp-content/uploads/2015/05/bigstock-Businessman-Speaking-53452693.jpg',0,'attachment','image/jpeg',0),(64,1,'2015-05-26 23:52:31','2015-05-26 23:52:31','','Panoramic and perspective wide angle view to steel light blue background of glass high rise building','Panoramic and perspective wide angle view to steel light blue background of glass high rise building skyscraper commercial modern city of future. Business concept of successful industrial architecture','inherit','open','open','','panoramic-and-perspective-wide-angle-view-to-steel-light-blue-background-of-glass-high-rise-building','','','2015-05-26 23:52:31','2015-05-26 23:52:31','',0,'http://104.236.173.138/wp-content/uploads/2015/05/bigstock-Panoramic-and-perspective-wide-69981985-copy.jpg',0,'attachment','image/jpeg',0),(66,1,'2015-05-27 00:13:26','2015-05-27 00:13:26','','keys','','inherit','open','open','','bigstock_66116977','','','2015-05-27 00:13:35','2015-05-27 00:13:35','',0,'http://104.236.173.138/wp-content/uploads/2015/05/Bigstock_66116977.jpg',0,'attachment','image/jpeg',0),(67,1,'2015-05-27 00:14:23','2015-05-27 00:14:23','','Bigstock_2785571','','inherit','open','open','','bigstock_2785571','','','2015-05-27 00:14:23','2015-05-27 00:14:23','',0,'http://104.236.173.138/wp-content/uploads/2015/05/Bigstock_2785571.jpg',0,'attachment','image/jpeg',0),(68,1,'2015-05-27 00:15:23','2015-05-27 00:15:23','','Bigstock_65888875','','inherit','open','open','','bigstock_65888875','','','2015-05-27 00:15:23','2015-05-27 00:15:23','',0,'http://104.236.173.138/wp-content/uploads/2015/05/Bigstock_65888875.jpg',0,'attachment','image/jpeg',0),(69,1,'2015-05-27 00:17:11','2015-05-27 00:17:11','','Bigstock_38463643','','inherit','open','open','','bigstock_38463643','','','2015-05-27 00:17:11','2015-05-27 00:17:11','',0,'http://104.236.173.138/wp-content/uploads/2015/05/Bigstock_38463643.jpg',0,'attachment','image/jpeg',0),(70,1,'2015-05-27 00:19:22','2015-05-27 00:19:22','','Bigstock_26425487','','inherit','open','open','','bigstock_26425487','','','2015-05-27 00:19:22','2015-05-27 00:19:22','',0,'http://104.236.173.138/wp-content/uploads/2015/05/Bigstock_26425487.jpg',0,'attachment','image/jpeg',0),(71,1,'2015-05-27 00:21:09','2015-05-27 00:21:09','','Bigstock_60689900','','inherit','open','open','','bigstock_60689900','','','2015-05-27 00:21:09','2015-05-27 00:21:09','',0,'http://104.236.173.138/wp-content/uploads/2015/05/Bigstock_60689900.jpg',0,'attachment','image/jpeg',0),(72,1,'2015-05-27 00:22:47','2015-05-27 00:22:47','','Bigstock_70240840','','inherit','open','open','','bigstock_70240840','','','2015-05-27 00:22:47','2015-05-27 00:22:47','',0,'http://104.236.173.138/wp-content/uploads/2015/05/Bigstock_70240840.jpg',0,'attachment','image/jpeg',0),(73,1,'2015-05-27 00:23:45','2015-05-27 00:23:45','','Bigstock_81100133','','inherit','open','open','','bigstock_81100133','','','2015-05-27 00:23:45','2015-05-27 00:23:45','',0,'http://104.236.173.138/wp-content/uploads/2015/05/Bigstock_81100133.jpg',0,'attachment','image/jpeg',0),(74,1,'2015-05-27 00:25:44','2015-05-27 00:25:44','','Bigstock_85785332','','inherit','open','open','','bigstock_85785332','','','2015-05-27 00:25:44','2015-05-27 00:25:44','',0,'http://104.236.173.138/wp-content/uploads/2015/05/Bigstock_85785332.jpg',0,'attachment','image/jpeg',0),(75,1,'2015-09-24 19:14:26','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-09-24 19:14:26','0000-00-00 00:00:00','',0,'http://104.236.173.138/?p=75',0,'post','',0),(76,1,'2015-09-24 19:34:02','2015-09-24 19:34:02','','AustinNightCityFullBackground','','inherit','open','open','','austinnightcityfullbackground','','','2015-09-24 19:34:02','2015-09-24 19:34:02','',0,'http://104.236.173.138/wp-content/uploads/2015/09/AustinNightCityFullBackground.png',0,'attachment','image/png',0),(77,1,'2015-09-24 19:44:34','2015-09-24 19:44:34','','AustinNightCityFullBackgroundTall','','inherit','open','open','','austinnightcityfullbackgroundtall','','','2015-09-24 19:44:34','2015-09-24 19:44:34','',0,'http://104.236.173.138/wp-content/uploads/2015/09/AustinNightCityFullBackgroundTall.png',0,'attachment','image/png',0),(78,1,'2015-09-24 19:46:40','2015-09-24 19:46:40','','AustinNightCityFullBackgroundTallBlue','','inherit','open','open','','austinnightcityfullbackgroundtallblue','','','2015-09-24 19:46:40','2015-09-24 19:46:40','',0,'http://104.236.173.138/wp-content/uploads/2015/09/AustinNightCityFullBackgroundTallBlue.png',0,'attachment','image/png',0),(79,1,'2015-09-24 20:19:17','2015-09-24 20:19:17','','AustinNightCityFullBackgroundTallOrange','','inherit','open','open','','austinnightcityfullbackgroundtallorange','','','2015-09-24 20:19:17','2015-09-24 20:19:17','',0,'http://104.236.173.138/wp-content/uploads/2015/09/AustinNightCityFullBackgroundTallOrange.png',0,'attachment','image/png',0),(80,1,'2015-09-24 20:23:59','2015-09-24 20:23:59','','Panoramic and perspective wide angle view to steel light blue background of glass high rise building','Panoramic and perspective wide angle view to steel light blue background of glass high rise building skyscraper commercial modern city of future. Business concept of successful industrial architecture','inherit','open','open','','panoramic-and-perspective-wide-angle-view-to-steel-light-blue-background-of-glass-high-rise-building-2','','','2015-09-24 20:23:59','2015-09-24 20:23:59','',0,'http://104.236.173.138/wp-content/uploads/2015/09/2200bigstock-Panoramic-and-perspective-wide-69981985-copy.jpg',0,'attachment','image/jpeg',0),(81,1,'2015-09-24 21:21:29','2015-09-24 21:21:29','','JailFenceBackgroundImage','','inherit','open','open','','jailfencebackgroundimage','','','2015-09-24 21:21:29','2015-09-24 21:21:29','',0,'http://104.236.173.138/wp-content/uploads/2015/09/JailFenceBackgroundImage.jpg',0,'attachment','image/jpeg',0),(82,1,'2015-09-24 21:21:29','2015-09-24 21:21:29','','LawLibraryBackgroundIMage','','inherit','open','open','','lawlibrarybackgroundimage','','','2015-09-24 21:21:29','2015-09-24 21:21:29','',0,'http://104.236.173.138/wp-content/uploads/2015/09/LawLibraryBackgroundIMage.jpg',0,'attachment','image/jpeg',0),(83,1,'2015-09-24 21:21:30','2015-09-24 21:21:30','','BackgroundGravelImage','','inherit','open','open','','backgroundgravelimage','','','2015-09-24 21:21:30','2015-09-24 21:21:30','',0,'http://104.236.173.138/wp-content/uploads/2015/09/BackgroundGravelImage.jpg',0,'attachment','image/jpeg',0),(84,1,'2015-09-24 21:21:31','2015-09-24 21:21:31','','StockImagesFavorites','','inherit','open','open','','stockimagesfavorites','','','2015-09-24 21:21:31','2015-09-24 21:21:31','',0,'http://104.236.173.138/wp-content/uploads/2015/09/StockImagesFavorites.png',0,'attachment','image/png',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp360_locks,wp390_widgets,wp410_dfw'),(13,1,'show_welcome_panel','1'),(14,1,'session_tokens','a:2:{s:64:\"29b49a8ea38fa781a82e9985aeb91d32a451b8d777a293618e59e8b74e52cd17\";a:4:{s:10:\"expiration\";i:1443294866;s:2:\"ip\";s:14:\"173.174.34.182\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36\";s:5:\"login\";i:1443122066;}s:64:\"7fd158efc71d75c2358edad7a60cff15ba1417a920ded09d4ab884605dcd2382\";a:4:{s:10:\"expiration\";i:1443373654;s:2:\"ip\";s:13:\"70.117.91.228\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36\";s:5:\"login\";i:1443200854;}}'),(15,1,'wp_dashboard_quick_press_last_post_id','75'),(16,1,'wp_user-settings','libraryContent=browse&editor=html'),(17,1,'wp_user-settings-time','1432582559'),(18,1,'closedpostboxes_page','a:0:{}'),(19,1,'metaboxhidden_page','a:0:{}'),(20,1,'meta-box-order_page','a:3:{s:4:\"side\";s:36:\"submitdiv,pageparentdiv,postimagediv\";s:6:\"normal\";s:70:\"revisionsdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),(21,1,'screen_layout_page','1'),(22,1,'wp_media_library_mode','list');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BCvTBN83l8ZI0a6J6aB9HBKhoGiD4A.','admin','info@consultpartners.us','','2015-05-13 16:13:24','',0,'admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2015-09-25 15:57:46