forked from PatmosStudios/baobab_website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaobab_web.sql
470 lines (411 loc) · 929 KB
/
baobab_web.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
-- MySQL dump 10.13 Distrib 5.7.21, for Linux (x86_64)
--
-- Host: 127.0.0.1 Database: baobab_web
-- ------------------------------------------------------
-- Server version 5.7.20
/*!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_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_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=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-01-16 09:48:25','2018-01-16 09:48:25','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0),(2,14,'Dr. Kathryne Franecki','aletha.kunze@example.co','https://www.okon.com/cum-necessitatibus-nobis-quia-laborum-repudiandae-fug','158.199.113.111','2018-02-11 03:20:01','2018-02-11 03:20:01','Doloribus qui eveniet sunt rerum asperiores dolores quod expedita. Et assumenda aspernatur assumenda enim quibusdam quod. Aut aperiam commodi non eum magnam aut quia.\r\n\r\nMolestiae quia at velit non dolores. Amet ad amet odio consequatur qui.\r\n\r\nAut suscipit vel earum eius fuga eaque. Qui aut voluptas expedita rerum. Cupiditate repellat cum omnis rem harum. Illum minima amet facilis architecto.\r\n\r\nQuod vero tempora eum fugit sequi enim. Quos voluptatem ut tenetur facere ipsa aut necessitatibus. Iste et pariatur quis harum. Repellat blanditiis consectetur et et neque temporibus repudiandae.\r\n\r\nSoluta corporis mollitia nemo sunt. Est commodi perferendis aut labore optio voluptatum.\r\n\r\nVelit aspernatur voluptas qui accusantium omnis et ut nulla. Optio non quam incidunt beatae. Doloremque qui et fugit modi quidem explicabo facilis.\r\n\r\nQuod asperiores hic est a. Eius quia nihil eum libero nesciunt. Sit repellat esse voluptatibus quasi dolorem. Placeat quaerat veniam veritatis molestias dicta.',0,'1','Mozilla/5.0 (iPhone; CPU iPhone OS 7_2_2 like Mac OS X; sl-SI) AppleWebKit/533.38.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B119 Safari/6533.38.4','',0,0),(3,40,'Thalia Crona','greenholt.nona@example.co','http://www.hane.com/voluptatem-et-est-et-iusto-et-ve','88.42.7.134','2018-02-11 03:20:01','2018-02-11 03:20:01','Maiores iste voluptas perspiciatis consequatur. Atque quibusdam nemo natus accusamus ut. Ipsa amet voluptates asperiores maxime laudantium voluptate dolorem.\r\n\r\nSunt eveniet odio veniam quam. Aliquid quia enim molestiae nihil. Nostrum molestiae omnis quis sunt quo consequatur quasi.\r\n\r\nSoluta culpa dolorum quae. Voluptas molestias reprehenderit in ut ipsam. Omnis culpa modi aut veritatis hic repellendus. Voluptas id voluptatem fuga neque perspiciatis.',0,'1','Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_6) AppleWebKit/5322 (KHTML, like Gecko) Chrome/40.0.844.0 Mobile Safari/5322','',0,0),(4,44,'Kaitlin Spinka Jr.','daniel.axel@example.or','http://ohara.com/voluptas-dolorum-itaque-voluptatem-et-fuga-distinctio-fugi','182.95.8.34','2018-02-11 03:20:01','2018-02-11 03:20:01','Est itaque ea et molestiae voluptatum velit et. Natus nobis inventore id harum. Rerum eos tempore ex in nemo ex.\r\n\r\nAut nihil dolore possimus qui. Et consectetur minima dolores laborum ullam quidem. Similique dolorem harum non cumque molestiae voluptas nemo.\r\n\r\nEt eligendi voluptatibus eligendi rem eveniet quibusdam. Optio tenetur est repudiandae tenetur exercitationem hic labore. Quaerat praesentium labore iusto excepturi cupiditate. Optio omnis cupiditate quibusdam non minus delectus architecto.\r\n\r\nEos quasi deserunt voluptatibus illum. Impedit pariatur neque molestiae ipsam in neque esse. Sit aut odit voluptas quaerat occaecati animi. Hic praesentium impedit eligendi eos perspiciatis inventore libero mollitia. Tenetur non minus possimus nihil voluptatem ab est.\r\n\r\nVel praesentium quam facilis aliquid aliquid quam. Mollitia perspiciatis dolores in perspiciatis ea nisi est. Odio qui explicabo sunt rerum. Nihil id ipsum et quia.\r\n\r\nPlaceat quae sed in inventore minus quia. Non dolorum amet recusandae fugiat voluptas consequatur.\r\n\r\nOfficia libero nam labore mollitia. Adipisci provident consequatur iste reiciendis voluptatum sequi. Dolorem error voluptatem aut aut. Aliquid repellendus enim quo.\r\n\r\nVoluptas delectus eligendi est. Modi et dicta ut odit. Dolor nam a reiciendis repellendus illo quos voluptate qui. Earum doloribus et voluptatem eum ut.\r\n\r\nVelit architecto ex neque quibusdam labore iure vero. Suscipit deleniti ea nam in sequi. Dolor animi sed ut.',0,'1','Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.2; Trident/5.0)','',0,0),(5,12,'Dr. Rita Mertz DDS','hermiston.louvenia@example.or','http://www.west.com/qui-sapiente-facilis-magnam-aut-e','7.86.88.44','2018-02-11 03:20:02','2018-02-11 03:20:02','Qui quos architecto temporibus rerum sapiente adipisci. Deserunt et corrupti quis quod. Temporibus officia consequatur beatae dolor exercitationem deserunt. Voluptas doloribus qui libero officia.\r\n\r\nSit voluptas voluptas possimus natus aperiam. Perspiciatis aut expedita itaque exercitationem accusantium quaerat ut voluptas. Omnis voluptatibus tenetur ut fugiat repudiandae dolores.\r\n\r\nRepellendus ad et unde et delectus. Minima ex dignissimos quaerat. Aperiam velit hic illum. Quia necessitatibus repellendus maiores eum voluptates vel.\r\n\r\nEa rerum facilis magnam vel voluptatem fugiat rerum quibusdam. Quo minima est dolore nisi aut quia. Et animi doloribus in corrupti et. Quidem et delectus culpa dolor.',0,'1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5341 (KHTML, like Gecko) Chrome/37.0.826.0 Mobile Safari/5341','',0,0),(6,20,'Madyson Cole Jr.','assunta87@example.ne','https://williamson.com/qui-natus-sit-illo-nemo-voluptatibus-vero-est.htm','215.183.72.210','2018-02-11 03:20:02','2018-02-11 03:20:02','Eos et itaque est doloremque vitae. Atque porro quos qui ipsam. Rerum ut est aut sint in.\r\n\r\nIpsa dolore sapiente ullam qui inventore omnis. Omnis molestiae reprehenderit qui fugit et eum provident. Tempore provident quasi labore veniam ut.\r\n\r\nNesciunt accusamus in est tenetur. Nostrum aut numquam temporibus. Consequatur veniam eum velit voluptatem exercitationem voluptas.',0,'1','Opera/9.54 (Windows NT 6.2; en-US) Presto/2.11.178 Version/12.00','',0,0),(7,12,'Mr. Olin Tillman','hermiston.keshaun@example.ne','https://www.harber.info/nostrum-earum-qui-numquam-voluptatem-adipisci-molliti','216.251.163.231','2018-02-11 03:20:02','2018-02-11 03:20:02','Est enim eum cumque odit. Quaerat et et a reprehenderit illo et earum. Fuga id officiis sequi velit. Dolore quo animi aperiam nam.\r\n\r\nVoluptatem sapiente molestiae dolorum officiis. Hic labore tempore suscipit illo. Et blanditiis officia amet consequuntur. Vero provident placeat alias illum quia est tenetur.\r\n\r\nQuos qui eum hic debitis commodi laboriosam aut. Eaque voluptatem et velit voluptatem et eos consequatur. Iste recusandae odit enim consequatur.\r\n\r\nPariatur placeat sed nisi et facere itaque. Error deserunt quibusdam quo officiis corporis iusto nesciunt. Et ratione quo qui voluptates repellat.\r\n\r\nIusto et est odit inventore non eaque. Voluptate excepturi sed quod ducimus illo eius occaecati. In maiores et vel ipsam voluptas eaque molestias eligendi. Est at pariatur illum enim.\r\n\r\nAut quia corporis sit consequatur consequuntur. Sed autem veritatis itaque fuga repellat perspiciatis id nobis. Harum sunt autem est at vel quis. Accusantium beatae perspiciatis ut in officiis omnis.',0,'1','Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/20140624 Firefox/35.0','',0,0),(8,36,'Wade Nolan','kamryn62@example.ne','http://friesen.com/asperiores-velit-nesciunt-quaerat-unde-ullam.htm','64.50.66.143','2018-02-11 03:20:02','2018-02-11 03:20:02','Voluptatem consequuntur magnam dolores molestiae sint cupiditate cupiditate iure. Qui eveniet earum placeat et animi accusamus omnis. Voluptatem inventore sint cupiditate itaque. Itaque voluptatem molestiae atque molestias et quibusdam doloribus eius.\r\n\r\nQuam est labore delectus deserunt dicta libero veritatis laboriosam. Dolorem ducimus enim esse nihil. Quos accusantium iure qui laboriosam.\r\n\r\nAut ex excepturi qui amet. Atque odit aut eius velit. Harum dicta voluptates itaque eum explicabo qui. In officia sit sint nostrum.\r\n\r\nQuidem accusantium dolore nihil ullam illum reprehenderit qui. Placeat rem doloribus ipsum iure. Numquam ut unde nihil autem animi sed nesciunt. Eos et dolores enim eum facilis ad qui.\r\n\r\nNecessitatibus ipsa iusto dignissimos. Cum est esse voluptatibus. Hic omnis eos laudantium velit et.\r\n\r\nRepudiandae nihil delectus dolores ullam dolorem expedita. Expedita enim eum cumque ducimus qui amet. Ut molestias iste rerum aut est omnis omnis incidunt. Iste aperiam illo beatae qui.\r\n\r\nHarum velit velit facere expedita atque aut maiores. Velit consequatur unde labore. Et impedit libero eos quo non odit. Unde sit nisi dolorem.\r\n\r\nOccaecati et nisi aut quibusdam. Magnam totam sint est non assumenda. Consectetur id fuga aut assumenda nemo. Enim voluptate modi saepe quidem.',0,'1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_5) AppleWebKit/5360 (KHTML, like Gecko) Chrome/39.0.885.0 Mobile Safari/5360','',0,0),(9,26,'Sarai Schultz I','iheidenreich@example.co','https://nader.info/et-facere-voluptatem-aliquam-veniam-fugit-ea-est.htm','190.119.96.130','2018-02-11 03:20:02','2018-02-11 03:20:02','Sint natus perspiciatis veritatis molestiae velit dolores sint. Sapiente tenetur voluptas voluptatem qui. Reiciendis totam minima autem id et nihil labore quia. Possimus quo distinctio qui unde repellendus ut dolores.\r\n\r\nAut animi dolores delectus. Ipsam neque quo deleniti cupiditate officia quisquam corporis et. Qui sit omnis voluptates nemo quia optio perspiciatis. Aliquid distinctio labore et debitis quasi adipisci.\r\n\r\nAb dolor at totam esse sint in deserunt. Doloremque sunt voluptas ducimus omnis voluptas odit quisquam. Incidunt nam aut praesentium occaecati. Occaecati ut ut optio temporibus et modi modi.\r\n\r\nEst molestiae velit ab magni nam aut eius praesentium. Quia earum ut hic eum hic voluptatem molestiae. Dicta quae corrupti blanditiis quidem. Assumenda qui rem nihil.\r\n\r\nNisi quis adipisci id rerum quibusdam aut neque. Esse rem quaerat recusandae asperiores in ratione totam sint. Et error repellat minus debitis ad voluptatem.\r\n\r\nBeatae praesentium iure necessitatibus. Eos quas veniam ut et ipsam exercitationem. Sit ut exercitationem dolor fugit inventore aut. Officiis eum quis quibusdam magnam molestiae.\r\n\r\nEst omnis architecto inventore odit nam. Ut id qui eum nam dolores. Aperiam molestiae eos ut quis.\r\n\r\nVoluptatem sit ex non sed sunt quia id. Dolorem alias odio minima. Distinctio voluptates nisi accusamus. Et nostrum ea qui consectetur. Eos fuga cumque odit repellendus nam commodi.',0,'1','Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_8 rv:2.0; sl-SI) AppleWebKit/533.19.3 (KHTML, like Gecko) Version/5.0.4 Safari/533.19.3','',0,0),(10,26,'Stella Champlin','theresia55@example.or','http://jacobs.com','102.141.30.196','2018-02-11 03:20:02','2018-02-11 03:20:02','Laudantium possimus ea et aliquam iusto voluptatem tempora. Voluptatem dolorem accusamus expedita ex recusandae quisquam. Aliquam facere neque quas eligendi. Dolore ratione soluta dolor corrupti voluptatem. Ullam voluptatem molestiae ut sed quidem.\r\n\r\nDeleniti illum reiciendis quam officia non totam consequatur. Laborum rerum perferendis nihil natus quae eos. Modi molestias itaque rerum dicta.\r\n\r\nTotam omnis id quasi fuga. Non impedit tenetur ab hic. Quis libero dolorum earum officia officia recusandae. Optio autem autem architecto dolorem reiciendis adipisci.\r\n\r\nFugiat est dolorum velit facilis expedita voluptatem dolorum. Sunt ut labore consequatur occaecati dolore excepturi ducimus. Consequatur similique quo id omnis dolor et vel temporibus. Doloremque aut et laudantium qui repellat nulla.\r\n\r\nExpedita atque atque sapiente fugit voluptates et vel. Optio distinctio nisi eos nobis quia expedita. Nobis quia deleniti quae molestias dolore.\r\n\r\nAspernatur sint quos ex quo pariatur sunt numquam et. Sit laudantium consequuntur vitae porro velit harum id. Sed voluptas quis voluptas vel voluptatem. Occaecati aut assumenda officia odit qui enim. Praesentium sunt aut quo.\r\n\r\nVoluptatem asperiores aspernatur dolores quia quod et qui. Velit minima minus veritatis recusandae aspernatur consequuntur. Fugit et consequatur vero sunt minima.',0,'1','Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.1)','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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_mp_timetable_data`
--
DROP TABLE IF EXISTS `wp_mp_timetable_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mp_timetable_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`column_id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`event_start` time NOT NULL,
`event_end` time NOT NULL,
`user_id` int(11) NOT NULL,
`description` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_mp_timetable_data`
--
LOCK TABLES `wp_mp_timetable_data` WRITE;
/*!40000 ALTER TABLE `wp_mp_timetable_data` DISABLE KEYS */;
INSERT INTO `wp_mp_timetable_data` VALUES (1,0,140,'09:00:00','17:00:00',-1,''),(2,146,140,'09:00:00','17:00:00',1,'');
/*!40000 ALTER TABLE `wp_mp_timetable_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_news_announcement`
--
DROP TABLE IF EXISTS `wp_news_announcement`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_news_announcement` (
`gNews_id` mediumint(9) NOT NULL AUTO_INCREMENT,
`gNews_text` text NOT NULL,
`gNews_order` int(11) NOT NULL DEFAULT '0',
`gNews_status` char(3) NOT NULL DEFAULT 'YES',
`gnews_redirect_link` varchar(255) DEFAULT NULL,
`gNews_date` date NOT NULL DEFAULT '0000-00-00',
`gNews_expiration` date NOT NULL DEFAULT '0000-00-00',
`gNews_type` varchar(100) NOT NULL DEFAULT 'GROUP1',
UNIQUE KEY `gNews_id` (`gNews_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_news_announcement`
--
LOCK TABLES `wp_news_announcement` WRITE;
/*!40000 ALTER TABLE `wp_news_announcement` DISABLE KEYS */;
INSERT INTO `wp_news_announcement` VALUES (1,'This plug-in will create a vertical scrolling announcement news <br><br> This plug-in will create a vertical scrolling announcement news',0,'YES',NULL,'0000-00-00','0000-00-00','WIDGET'),(2,'Dieses Plug-in wird ein vertikales Scrollen Ankündigung news',0,'YES',NULL,'0000-00-00','0000-00-00','SAMPLE');
/*!40000 ALTER TABLE `wp_news_announcement` 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(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=624 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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://localhost:8081','yes'),(2,'home','http://localhost:8081','yes'),(3,'blogname','BOABAB LIMS','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','patmos.cafe@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:144:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:18:\"timetable/event/?$\";s:28:\"index.php?post_type=mp-event\";s:48:\"timetable/event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=mp-event&feed=$matches[1]\";s:43:\"timetable/event/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=mp-event&feed=$matches[1]\";s:35:\"timetable/event/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=mp-event&paged=$matches[1]\";s:19:\"timetable/column/?$\";s:29:\"index.php?post_type=mp-column\";s:49:\"timetable/column/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=mp-column&feed=$matches[1]\";s:44:\"timetable/column/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=mp-column&feed=$matches[1]\";s:36:\"timetable/column/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=mp-column&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";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:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";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:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";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:43:\"timetable/event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"timetable/event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"timetable/event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"timetable/event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"timetable/event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"timetable/event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"timetable/event/([^/]+)/embed/?$\";s:41:\"index.php?mp-event=$matches[1]&embed=true\";s:36:\"timetable/event/([^/]+)/trackback/?$\";s:35:\"index.php?mp-event=$matches[1]&tb=1\";s:56:\"timetable/event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?mp-event=$matches[1]&feed=$matches[2]\";s:51:\"timetable/event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?mp-event=$matches[1]&feed=$matches[2]\";s:44:\"timetable/event/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mp-event=$matches[1]&paged=$matches[2]\";s:51:\"timetable/event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?mp-event=$matches[1]&cpage=$matches[2]\";s:40:\"timetable/event/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?mp-event=$matches[1]&page=$matches[2]\";s:32:\"timetable/event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"timetable/event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"timetable/event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"timetable/event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"timetable/event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"timetable/event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"timetable/column/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"timetable/column/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"timetable/column/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"timetable/column/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"timetable/column/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"timetable/column/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"timetable/column/([^/]+)/embed/?$\";s:42:\"index.php?mp-column=$matches[1]&embed=true\";s:37:\"timetable/column/([^/]+)/trackback/?$\";s:36:\"index.php?mp-column=$matches[1]&tb=1\";s:57:\"timetable/column/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?mp-column=$matches[1]&feed=$matches[2]\";s:52:\"timetable/column/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?mp-column=$matches[1]&feed=$matches[2]\";s:45:\"timetable/column/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?mp-column=$matches[1]&paged=$matches[2]\";s:52:\"timetable/column/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?mp-column=$matches[1]&cpage=$matches[2]\";s:41:\"timetable/column/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?mp-column=$matches[1]&page=$matches[2]\";s:33:\"timetable/column/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"timetable/column/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"timetable/column/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"timetable/column/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"timetable/column/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"timetable/column/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"timetable/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?mp-event_category=$matches[1]&feed=$matches[2]\";s:52:\"timetable/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?mp-event_category=$matches[1]&feed=$matches[2]\";s:33:\"timetable/category/(.+?)/embed/?$\";s:50:\"index.php?mp-event_category=$matches[1]&embed=true\";s:45:\"timetable/category/(.+?)/page/?([0-9]{1,})/?$\";s:57:\"index.php?mp-event_category=$matches[1]&paged=$matches[2]\";s:27:\"timetable/category/(.+?)/?$\";s:39:\"index.php?mp-event_category=$matches[1]\";s:54:\"timetable/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?mp-event_tag=$matches[1]&feed=$matches[2]\";s:49:\"timetable/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?mp-event_tag=$matches[1]&feed=$matches[2]\";s:30:\"timetable/tag/([^/]+)/embed/?$\";s:45:\"index.php?mp-event_tag=$matches[1]&embed=true\";s:42:\"timetable/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?mp-event_tag=$matches[1]&paged=$matches[2]\";s:24:\"timetable/tag/([^/]+)/?$\";s:34:\"index.php?mp-event_tag=$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:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=2&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";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:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";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:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";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:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";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:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";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:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";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:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:10:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:35:\"contact-us-page/contact-us-page.php\";i:2;s:25:\"fakerpress/fakerpress.php\";i:3;s:29:\"github-embed/github-embed.php\";i:4;s:53:\"github-release-downloads/github-release-downloads.php\";i:5;s:39:\"kiwi-social-share/kiwi-social-share.php\";i:6;s:29:\"mp-timetable/mp-timetable.php\";i:7;s:53:\"news-announcement-scroll/news-announcement-scroll.php\";i:8;s:38:\"recent-tweets-widget/recent-tweets.php\";i:9;s:37:\"shortcode-widget/shortcode-widget.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','trusted','yes'),(41,'stylesheet','trusted','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','0','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'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'),(79,'widget_text','a:3:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:12:\"Github Stats\";s:4:\"text\";s:52:\"123 Downloads, 1030 commits, 3400 comments\r\n\r\n \";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:29:\"mp-timetable/mp-timetable.php\";a:2:{i:0;s:13:\"Mp_Time_Table\";i:1;s:12:\"on_uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','2','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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: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'),(93,'fresh_site','0','yes'),(94,'widget_search','a:4:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:4;a:0:{}i:6;a:0:{}}','yes'),(95,'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'),(96,'widget_recent-comments','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;i:4;a:0:{}}','yes'),(97,'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'),(98,'widget_meta','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:4;a:0:{}}','yes'),(99,'sidebars_widgets','a:12:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"calendar-3\";i:1;s:13:\"media_audio-3\";i:2;s:8:\"search-6\";i:3;s:17:\"recent-comments-4\";i:4;s:6:\"meta-4\";i:5;s:8:\"search-4\";}s:12:\"mptt-sidebar\";a:0:{}s:15:\"trusted-sidebar\";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:24:\"trusted-homepage-sidebar\";a:3:{i:0;s:24:\"news announcement scroll\";i:1;s:25:\"tp_widget_recent_tweets-2\";i:2;s:14:\"mp-timetable-2\";}s:20:\"trusted-page-sidebar\";a:0:{}s:20:\"trusted-shop-sidebar\";a:0:{}s:15:\"trusted-top-bar\";a:0:{}s:15:\"trusted-footer1\";a:1:{i:0;s:6:\"text-2\";}s:15:\"trusted-footer2\";a:1:{i:0;s:18:\"shortcode-widget-3\";}s:15:\"trusted-footer3\";a:1:{i:0;s:18:\"shortcode-widget-4\";}s:20:\"trusted-about-footer\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:2:{i:3;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:9:{i:1516096112;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:1516096116;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1516115952;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"c9059feef497c200e69cb9956a81f005\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:5;}}}}i:1517913336;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"c9059feef497c200e69cb9956a81f005\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:5;}}}}i:1518318815;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1518613945;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1518774088;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"a6944bdac5bf04c2bc7a0d6b9abd42f6\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:126;}}}}i:1518774712;a:1:{s:17:\"github_embed_cron\";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'),(110,'_transient_doing_cron','1518819462.3120520114898681640625','yes'),(111,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.4.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.9.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.4-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.9.4-partial-1.zip\";s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.4\";s:7:\"version\";s:5:\"4.9.4\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:5:\"4.9.1\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.4.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.9.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.4-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.9.4-partial-1.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.4-rollback-1.zip\";}s:7:\"current\";s:5:\"4.9.4\";s:7:\"version\";s:5:\"4.9.4\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:5:\"4.9.1\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1518812984;s:15:\"version_checked\";s:5:\"4.9.1\";s:12:\"translations\";a:0:{}}','no'),(122,'can_compress_scripts','0','no'),(135,'theme_mods_twentyseventeen','a:3:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1518319771;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}s:18:\"nav_menu_locations\";a:0:{}}','yes'),(137,'_transient_timeout_plugin_slugs','1518901257','no'),(138,'_transient_plugin_slugs','a:12:{i:0;s:19:\"akismet/akismet.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:35:\"contact-us-page/contact-us-page.php\";i:3;s:25:\"fakerpress/fakerpress.php\";i:4;s:29:\"github-embed/github-embed.php\";i:5;s:53:\"github-release-downloads/github-release-downloads.php\";i:6;s:9:\"hello.php\";i:7;s:39:\"kiwi-social-share/kiwi-social-share.php\";i:8;s:53:\"news-announcement-scroll/news-announcement-scroll.php\";i:9;s:38:\"recent-tweets-widget/recent-tweets.php\";i:10;s:37:\"shortcode-widget/shortcode-widget.php\";i:11;s:29:\"mp-timetable/mp-timetable.php\";}','no'),(139,'recently_activated','a:1:{s:35:\"contact-us-page/contact-us-page.php\";i:1518814694;}','yes'),(143,'_transient_twentyseventeen_categories','1','yes'),(150,'_site_transient_timeout_browser_a22a97347ed7e833c5d77acdf81f9bac','1518082748','no'),(151,'_site_transient_browser_a22a97347ed7e833c5d77acdf81f9bac','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"58.0.3029.110\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(164,'widget_dazzling-social','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(165,'widget_dazzling_tabbed_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(168,'theme_mods_dazzling','a:5:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1518319347;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"home-widget-1\";a:0:{}s:13:\"home-widget-2\";a:0:{}s:13:\"home-widget-3\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:15:\"footer-widget-3\";a:0:{}}}s:12:\"header_image\";s:121:\"http://localhost:8081/wp-content/uploads/2018/02/cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:7;s:3:\"url\";s:121:\"http://localhost:8081/wp-content/uploads/2018/02/cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg\";s:13:\"thumbnail_url\";s:121:\"http://localhost:8081/wp-content/uploads/2018/02/cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg\";s:6:\"height\";i:65;s:5:\"width\";i:300;}}','yes'),(188,'current_theme','Trusted','yes'),(189,'theme_switched','','yes'),(199,'kiwi_social_sharing_version','2.0.5','yes'),(200,'kiwi_general_settings','a:9:{s:17:\"networks_ordering\";s:0:\"\";s:20:\"networks_article_bar\";a:4:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:11:\"google-plus\";i:3;s:9:\"pinterest\";}s:13:\"share_buttons\";s:2:\"on\";s:22:\"share_buttons_location\";s:3:\"top\";s:12:\"button_shape\";s:4:\"rect\";s:23:\"share_buttons_posttypes\";s:0:\"\";s:24:\"floating_panel_posttypes\";s:0:\"\";s:28:\"share_buttons_posttypes_list\";a:0:{}s:29:\"floating_panel_posttypes_list\";a:0:{}}','yes'),(235,'wpcf7','a:2:{s:7:\"version\";s:3:\"5.0\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1518318795;s:7:\"version\";s:3:\"5.0\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(239,'_transient_all_the_cool_cats','1','yes'),(242,'fakerpress.module_flag.term','a:2:{s:11:\"post_format\";a:2:{i:0;i:2;i:1;i:4;}s:8:\"post_tag\";a:1:{i:0;i:3;}}','yes'),(244,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1518813545;s:7:\"checked\";a:12:{s:19:\"akismet/akismet.php\";s:5:\"4.0.2\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"5.0\";s:35:\"contact-us-page/contact-us-page.php\";s:3:\"1.0\";s:25:\"fakerpress/fakerpress.php\";s:5:\"0.4.9\";s:29:\"github-embed/github-embed.php\";s:3:\"1.6\";s:53:\"github-release-downloads/github-release-downloads.php\";s:5:\"2.3.0\";s:9:\"hello.php\";s:3:\"1.6\";s:39:\"kiwi-social-share/kiwi-social-share.php\";s:5:\"2.0.5\";s:53:\"news-announcement-scroll/news-announcement-scroll.php\";s:5:\"8.8.4\";s:38:\"recent-tweets-widget/recent-tweets.php\";s:5:\"1.6.8\";s:37:\"shortcode-widget/shortcode-widget.php\";s:5:\"1.5.1\";s:29:\"mp-timetable/mp-timetable.php\";s:6:\"2.1.10\";}s:8:\"response\";a:1:{s:25:\"fakerpress/fakerpress.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:24:\"w.org/plugins/fakerpress\";s:4:\"slug\";s:10:\"fakerpress\";s:6:\"plugin\";s:25:\"fakerpress/fakerpress.php\";s:11:\"new_version\";s:6:\"0.4.10\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/fakerpress/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/plugin/fakerpress.zip\";s:5:\"icons\";a:4:{s:2:\"1x\";s:63:\"https://ps.w.org/fakerpress/assets/icon-128x128.png?rev=1129023\";s:2:\"2x\";s:63:\"https://ps.w.org/fakerpress/assets/icon-256x256.png?rev=1129023\";s:3:\"svg\";s:55:\"https://ps.w.org/fakerpress/assets/icon.svg?rev=1698202\";s:7:\"default\";s:55:\"https://ps.w.org/fakerpress/assets/icon.svg?rev=1698202\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/fakerpress/assets/banner-1544x500.png?rev=1152002\";s:2:\"1x\";s:65:\"https://ps.w.org/fakerpress/assets/banner-772x250.png?rev=1152002\";s:7:\"default\";s:66:\"https://ps.w.org/fakerpress/assets/banner-1544x500.png?rev=1152002\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.0.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.2.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:7:\"default\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";s:7:\"default\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"5.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:7:\"default\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";s:7:\"default\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";}s:11:\"banners_rtl\";a:0:{}}s:35:\"contact-us-page/contact-us-page.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/contact-us-page\";s:4:\"slug\";s:15:\"contact-us-page\";s:6:\"plugin\";s:35:\"contact-us-page/contact-us-page.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/contact-us-page/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/contact-us-page.zip\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:29:\"github-embed/github-embed.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/github-embed\";s:4:\"slug\";s:12:\"github-embed\";s:6:\"plugin\";s:29:\"github-embed/github-embed.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/github-embed/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/github-embed.1.6.zip\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/github-embed/assets/banner-772x250.png?rev=665706\";s:7:\"default\";s:66:\"https://ps.w.org/github-embed/assets/banner-772x250.png?rev=665706\";}s:11:\"banners_rtl\";a:0:{}}s:53:\"github-release-downloads/github-release-downloads.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/github-release-downloads\";s:4:\"slug\";s:24:\"github-release-downloads\";s:6:\"plugin\";s:53:\"github-release-downloads/github-release-downloads.php\";s:11:\"new_version\";s:5:\"2.3.0\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/github-release-downloads/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/github-release-downloads.2.3.0.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:77:\"https://ps.w.org/github-release-downloads/assets/icon-128x128.png?rev=1115752\";s:2:\"2x\";s:77:\"https://ps.w.org/github-release-downloads/assets/icon-256x256.png?rev=1115752\";s:7:\"default\";s:77:\"https://ps.w.org/github-release-downloads/assets/icon-256x256.png?rev=1115752\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:80:\"https://ps.w.org/github-release-downloads/assets/banner-1544x500.png?rev=1115752\";s:2:\"1x\";s:79:\"https://ps.w.org/github-release-downloads/assets/banner-772x250.png?rev=1115752\";s:7:\"default\";s:80:\"https://ps.w.org/github-release-downloads/assets/banner-1544x500.png?rev=1115752\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";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\";s:5:\"icons\";a:3:{s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:7:\"default\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";s:7:\"default\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"kiwi-social-share/kiwi-social-share.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/kiwi-social-share\";s:4:\"slug\";s:17:\"kiwi-social-share\";s:6:\"plugin\";s:39:\"kiwi-social-share/kiwi-social-share.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/kiwi-social-share/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/kiwi-social-share.2.0.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/kiwi-social-share/assets/icon-256x256.png?rev=1445882\";s:7:\"default\";s:70:\"https://ps.w.org/kiwi-social-share/assets/icon-256x256.png?rev=1445882\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:72:\"https://ps.w.org/kiwi-social-share/assets/banner-772x250.png?rev=1445902\";s:7:\"default\";s:72:\"https://ps.w.org/kiwi-social-share/assets/banner-772x250.png?rev=1445902\";}s:11:\"banners_rtl\";a:0:{}}s:53:\"news-announcement-scroll/news-announcement-scroll.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/news-announcement-scroll\";s:4:\"slug\";s:24:\"news-announcement-scroll\";s:6:\"plugin\";s:53:\"news-announcement-scroll/news-announcement-scroll.php\";s:11:\"new_version\";s:5:\"8.8.4\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/news-announcement-scroll/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/news-announcement-scroll.8.8.4.zip\";s:5:\"icons\";a:4:{s:2:\"1x\";s:77:\"https://ps.w.org/news-announcement-scroll/assets/icon-128x128.png?rev=1472251\";s:2:\"2x\";s:77:\"https://ps.w.org/news-announcement-scroll/assets/icon-256x256.png?rev=1472251\";s:0:\"\";s:77:\"https://ps.w.org/news-announcement-scroll/assets/icon-512x512.png?rev=1472251\";s:7:\"default\";s:77:\"https://ps.w.org/news-announcement-scroll/assets/icon-256x256.png?rev=1472251\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:79:\"https://ps.w.org/news-announcement-scroll/assets/banner-772x250.png?rev=1472251\";s:7:\"default\";s:79:\"https://ps.w.org/news-announcement-scroll/assets/banner-772x250.png?rev=1472251\";}s:11:\"banners_rtl\";a:0:{}}s:38:\"recent-tweets-widget/recent-tweets.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/recent-tweets-widget\";s:4:\"slug\";s:20:\"recent-tweets-widget\";s:6:\"plugin\";s:38:\"recent-tweets-widget/recent-tweets.php\";s:11:\"new_version\";s:5:\"1.6.8\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/recent-tweets-widget/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/recent-tweets-widget.1.6.8.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:73:\"https://ps.w.org/recent-tweets-widget/assets/icon-128x128.png?rev=1170576\";s:2:\"2x\";s:73:\"https://ps.w.org/recent-tweets-widget/assets/icon-256x256.png?rev=1170562\";s:7:\"default\";s:73:\"https://ps.w.org/recent-tweets-widget/assets/icon-256x256.png?rev=1170562\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:75:\"https://ps.w.org/recent-tweets-widget/assets/banner-772x250.png?rev=1170562\";s:7:\"default\";s:75:\"https://ps.w.org/recent-tweets-widget/assets/banner-772x250.png?rev=1170562\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"shortcode-widget/shortcode-widget.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/shortcode-widget\";s:4:\"slug\";s:16:\"shortcode-widget\";s:6:\"plugin\";s:37:\"shortcode-widget/shortcode-widget.php\";s:11:\"new_version\";s:5:\"1.5.1\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/shortcode-widget/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/shortcode-widget.1.5.1.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:69:\"https://ps.w.org/shortcode-widget/assets/icon-128x128.png?rev=1718887\";s:2:\"2x\";s:69:\"https://ps.w.org/shortcode-widget/assets/icon-256x256.png?rev=1718887\";s:7:\"default\";s:69:\"https://ps.w.org/shortcode-widget/assets/icon-256x256.png?rev=1718887\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:29:\"mp-timetable/mp-timetable.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/mp-timetable\";s:4:\"slug\";s:12:\"mp-timetable\";s:6:\"plugin\";s:29:\"mp-timetable/mp-timetable.php\";s:11:\"new_version\";s:6:\"2.1.10\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/mp-timetable/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/mp-timetable.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:65:\"https://ps.w.org/mp-timetable/assets/icon-128x128.jpg?rev=1386080\";s:7:\"default\";s:65:\"https://ps.w.org/mp-timetable/assets/icon-128x128.jpg?rev=1386080\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:67:\"https://ps.w.org/mp-timetable/assets/banner-772x250.jpg?rev=1386080\";s:7:\"default\";s:67:\"https://ps.w.org/mp-timetable/assets/banner-772x250.jpg?rev=1386080\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(248,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1518818765;s:7:\"checked\";a:7:{s:8:\"dazzling\";s:5:\"2.1.1\";s:13:\"generatepress\";s:5:\"2.0.2\";s:6:\"primer\";s:5:\"1.8.1\";s:7:\"trusted\";s:6:\"1.1.11\";s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.4\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:1:{s:6:\"primer\";a:4:{s:5:\"theme\";s:6:\"primer\";s:11:\"new_version\";s:5:\"1.8.2\";s:3:\"url\";s:36:\"https://wordpress.org/themes/primer/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/primer.1.8.2.zip\";}}s:12:\"translations\";a:0:{}}','no'),(250,'theme_mods_trusted','a:33:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:6;s:6:\"footer\";i:6;}s:18:\"custom_css_post_id\";i:-1;s:15:\"featured_enable\";i:1;s:19:\"featured_page_icon1\";s:17:\"fa fa-info-circle\";s:12:\"about_enable\";i:0;s:15:\"about_page_link\";i:2;s:10:\"cta_enable\";i:0;s:15:\"cta_button_link\";i:53;s:22:\"front_page_content_off\";i:0;s:19:\"featured_page_link1\";i:49;s:19:\"featured_page_icon2\";s:14:\"fa fa-download\";s:19:\"featured_page_link2\";i:50;s:19:\"featured_page_icon3\";s:11:\"fa fa-gears\";s:19:\"featured_page_link3\";i:52;s:12:\"about_layout\";s:6:\"style2\";s:6:\"tel_no\";s:17:\"(+27) 21 959 3645\";s:16:\"header_textcolor\";s:6:\"1e73be\";s:20:\"site_title_uppercase\";i:0;s:8:\"hi_color\";s:7:\"#396395\";s:9:\"sec_color\";s:7:\"#396395\";s:15:\"body_text_color\";s:7:\"#1e1e1e\";s:16:\"background_color\";s:6:\"e8e8e8\";s:12:\"header_light\";s:5:\"light\";s:10:\"animate_on\";i:1;s:11:\"menu_center\";i:0;s:14:\"menu_uppercase\";i:0;s:11:\"menu_search\";i:1;s:18:\"headings_underline\";i:1;s:12:\"header_image\";s:68:\"http://localhost:8081/wp-content/uploads/2018/02/cropped-OGA5I60.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:94;s:3:\"url\";s:68:\"http://localhost:8081/wp-content/uploads/2018/02/cropped-OGA5I60.jpg\";s:13:\"thumbnail_url\";s:68:\"http://localhost:8081/wp-content/uploads/2018/02/cropped-OGA5I60.jpg\";s:6:\"height\";i:640;s:5:\"width\";i:1920;}s:11:\"custom_logo\";i:97;s:17:\"enable_about_link\";i:1;}','yes'),(260,'nav_menu_options','a:1:{s:8:\"auto_add\";a:1:{i:0;i:6;}}','yes'),(283,'_site_transient_timeout_browser_47b946c9e2c5166ce747f6926357bc17','1519204842','no'),(284,'_site_transient_browser_47b946c9e2c5166ce747f6926357bc17','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"58.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(300,'WPLANG','','yes'),(301,'new_admin_email','patmos.cafe@gmail.com','yes'),(304,'category_children','a:0:{}','yes'),(305,'_transient_timeout_kiwi_36_share_count_transient','1518621100','no'),(306,'_transient_kiwi_36_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(380,'_transient_timeout_kiwi_51_share_count_transient','1518771751','no'),(381,'_transient_kiwi_51_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(397,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1518777524','no'),(398,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4427;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:2584;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2535;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2400;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1857;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1628;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1625;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1444;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1380;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1378;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1372;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1296;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1282;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1182;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1084;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1056;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1012;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:990;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:860;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:856;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:822;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:792;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:789;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:689;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:689;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:682;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:674;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:667;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:652;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:650;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:639;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:630;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:629;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:605;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:604;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:597;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:595;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:584;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:584;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:582;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:553;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:541;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:535;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:526;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:517;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:510;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:510;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:502;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:489;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:484;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:483;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:477;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:474;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:464;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:462;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:462;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:452;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:449;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:433;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:423;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:422;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:416;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:416;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:413;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:411;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:408;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:401;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:393;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:388;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:383;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:364;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:360;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:354;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:352;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:341;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:341;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:339;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:337;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:334;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:333;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:333;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:332;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:330;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:328;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:328;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:320;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:313;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:309;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:304;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:301;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:301;}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";i:300;}s:7:\"adsense\";a:3:{s:4:\"name\";s:7:\"adsense\";s:4:\"slug\";s:7:\"adsense\";s:5:\"count\";i:294;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:291;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:290;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:288;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:287;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:285;}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";i:283;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:282;}}','no'),(399,'ftp_credentials','a:3:{s:8:\"hostname\";s:9:\"localhost\";s:8:\"username\";s:14:\"masinquletanga\";s:15:\"connection_type\";s:3:\"ftp\";}','yes'),(400,'grd_user','BaobabLims','yes'),(401,'grd_repo','baobab.lims','yes'),(402,'grd_token','','yes'),(441,'_transient_timeout_kiwi_132_share_count_transient','1518777239','no'),(442,'_transient_kiwi_132_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(446,'widget_shortcode-widget','a:3:{i:3;a:3:{s:5:\"title\";s:8:\"Partners\";s:4:\"text\";s:23:\"MRC | B3 Africa | SANBI\";s:6:\"filter\";b:0;}i:4;a:3:{s:5:\"title\";s:10:\"Case Study\";s:4:\"text\";s:26:\"Tygerberg Hospital Biobank\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(447,'tp_twitter_global_notification','0','yes'),(448,'widget_tp_widget_recent_tweets','a:2:{i:2;a:9:{s:5:\"title\";s:6:\"Social\";s:11:\"consumerkey\";s:0:\"\";s:14:\"consumersecret\";s:0:\"\";s:11:\"accesstoken\";s:0:\"\";s:17:\"accesstokensecret\";s:0:\"\";s:9:\"cachetime\";s:0:\"\";s:8:\"username\";s:0:\"\";s:12:\"tweetstoshow\";s:1:\"1\";s:14:\"excludereplies\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(453,'widget_mp-timetable','a:2:{i:2;a:14:{s:5:\"title\";s:6:\"Events\";s:5:\"limit\";s:1:\"3\";s:13:\"mp_categories\";s:0:\"\";s:13:\"view_settings\";s:5:\"today\";s:9:\"next_days\";s:1:\"1\";s:13:\"time_settings\";s:0:\"\";s:10:\"custom_url\";s:0:\"\";s:11:\"disable_url\";s:1:\"0\";s:16:\"background_color\";s:0:\"\";s:22:\"hover_background_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"hover_text_color\";s:0:\"\";s:17:\"item_border_color\";s:0:\"\";s:23:\"hover_item_border_color\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(455,'mp_timetable_general','a:1:{s:10:\"theme_mode\";s:6:\"plugin\";}','yes'),(459,'github_oembed_key','8059036c69e1f7f9516c00f9f807ad26','yes'),(482,'_transient_timeout_kiwi_151_share_count_transient','1518785734','no'),(483,'_transient_kiwi_151_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(492,'_transient_timeout_kiwi_152_share_count_transient','1518785863','no'),(493,'_transient_kiwi_152_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(501,'_site_transient_timeout_browser_7e7aebd48fc505f2986aa5081d9e430e','1519383582','no'),(502,'_site_transient_browser_7e7aebd48fc505f2986aa5081d9e430e','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"64.0.3282.140\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(512,'gNews_pluginversion','8.3','yes'),(513,'gNewsAnnouncementtitle','News','yes'),(514,'gNewsAnnouncementfont','verdana,arial,sans-serif','yes'),(515,'gNewsAnnouncementfontsize','11px','yes'),(516,'gNewsAnnouncementfontweight','normal','yes'),(517,'gNewsAnnouncementfontcolor','#000000','yes'),(518,'gNewsAnnouncementwidth','180','yes'),(519,'gNewsAnnouncementheight','100','yes'),(520,'gNewsAnnouncementslidedirection','0','yes'),(521,'gNewsAnnouncementslidetimeout','3000','yes'),(522,'gNewsAnnouncementtextalign','center','yes'),(523,'gNewsAnnouncementtextvalign','middle','yes'),(524,'gNewsAnnouncementnoannouncement','No announcement available','yes'),(525,'gNewsAnnouncementorder','0','yes'),(526,'gNewsAnnouncementtype','WIDGET','yes'),(527,'_current_nas_db_version','8.8.3','yes'),(537,'_transient_timeout_kiwi_180_share_count_transient','1518788137','no'),(538,'_transient_kiwi_180_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(539,'_transient_timeout_kiwi_49_share_count_transient','1518821587','no'),(540,'_transient_kiwi_49_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(545,'_transient_timeout_kiwi_211_share_count_transient','1518822227','no'),(546,'_transient_kiwi_211_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(547,'_transient_timeout_kiwi_148_share_count_transient','1518823252','no'),(548,'_transient_kiwi_148_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(549,'_transient_timeout_kiwi_149_share_count_transient','1518820397','no'),(550,'_transient_kiwi_149_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(551,'_transient_timeout_kiwi_219_share_count_transient','1518820411','no'),(552,'_transient_kiwi_219_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(553,'_transient_timeout_kiwi_220_share_count_transient','1518820418','no'),(554,'_transient_kiwi_220_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(555,'_transient_timeout_kiwi_153_share_count_transient','1518824180','no'),(556,'_transient_kiwi_153_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(557,'_transient_timeout_kiwi_154_share_count_transient','1518820541','no'),(558,'_transient_kiwi_154_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(559,'_transient_timeout_kiwi_175_share_count_transient','1518820546','no'),(560,'_transient_kiwi_175_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(561,'_transient_timeout_kiwi_174_share_count_transient','1518824252','no'),(562,'_transient_kiwi_174_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(563,'_transient_timeout_kiwi_176_share_count_transient','1518820557','no'),(564,'_transient_kiwi_176_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(565,'_transient_timeout_kiwi_178_share_count_transient','1518820562','no'),(566,'_transient_kiwi_178_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(567,'_transient_timeout_kiwi_67_share_count_transient','1518823291','no'),(568,'_transient_kiwi_67_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(569,'cup_address','Robert Sobukwe, Sacks Circle Industrial, Bellville, 7530','yes'),(570,'cup_phone','021 959 3645','yes'),(571,'cup_fax','021 959 3646','yes'),(572,'cup_email','info@baobab.org.za','yes'),(573,'cup_form_shortcode','','yes'),(574,'cup_info','','yes'),(575,'cup_facebook','https://www.facebook.com/baobablims','yes'),(576,'cup_twitter','https://www.twitter.com/baobablims','yes'),(577,'cup_google','','yes'),(578,'_transient_timeout_settings_errors','1518819414','no'),(579,'_transient_settings_errors','a:1:{i:0;a:4:{s:7:\"setting\";s:7:\"general\";s:4:\"code\";s:16:\"settings_updated\";s:7:\"message\";s:15:\"Settings saved.\";s:4:\"type\";s:7:\"updated\";}}','no'),(580,'_site_transient_timeout_available_translations','1518824515','no'),(581,'_site_transient_available_translations','a:112:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-01 13:40:41\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.1/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-27 09:27:02\";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.9.1/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:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.7/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";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.7.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:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2018-01-10 13:42:43\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.1/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-15 09:53:15\";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.9.1/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:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.8.5\";s:7:\"updated\";s:19:\"2017-10-01 12:57:10\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.5/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.7.9\";s:7:\"updated\";s:19:\"2018-02-15 08:05:58\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.9/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";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.7.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.9.1\";s:7:\"updated\";s:19:\"2017-12-29 05:52:09\";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.9.1/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:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2018-01-10 17:55:47\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-22 16:19:20\";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.9.1/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.9.1\";s:7:\"updated\";s:19:\"2017-12-07 17:05:51\";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.9.1/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:8:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-22 15:38:30\";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.9.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-28 20:27:03\";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.9.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-28 20:27:48\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.9.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-22 15:43:53\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.9.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2018-01-06 10:31:42\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.1/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.9.1\";s:7:\"updated\";s:19:\"2017-11-23 18:53:44\";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.9.1/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_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-15 14:51:39\";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.9.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2018-01-04 09:12:07\";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.9.1/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_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2018-01-04 09:10:37\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/en_NZ.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_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-15 09:54:30\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/en_ZA.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.9.1\";s:7:\"updated\";s:19:\"2017-11-14 01:23:37\";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.9.1/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_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-15 15:03:42\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.8.5\";s:7:\"updated\";s:19:\"2017-07-30 16:09:17\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.5/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.8.5\";s:7:\"updated\";s:19:\"2017-07-31 15:12:02\";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.8.5/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"4.8.3\";s:7:\"updated\";s:19:\"2017-10-01 17:54:52\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.3/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-28 20:09:49\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;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.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";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.7.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-16 03:15:17\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-15 23:17:08\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;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.9.1\";s:7:\"updated\";s:19:\"2017-12-18 11:09:35\";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.9.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-19 14:11:29\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.1/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-09 21:12:23\";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.9.1/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:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-09 15:50:45\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/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.9.1\";s:7:\"updated\";s:19:\"2017-11-15 09:48:14\";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.9.1/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_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2018-01-09 09:23:29\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2018-01-02 12:37:17\";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.9.1/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:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-19 23:55:33\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:5:\"4.8.5\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.5/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/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.9.1\";s:7:\"updated\";s:19:\"2017-11-16 10:40:05\";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.9.1/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:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-16 11:06:53\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.1/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";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.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;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.9.1\";s:7:\"updated\";s:19:\"2017-12-06 13:23:01\";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.9.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-02 23:26:33\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}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.9.1\";s:7:\"updated\";s:19:\"2017-11-14 13:03:07\";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.9.1/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.9.1\";s:7:\"updated\";s:19:\"2017-12-14 10:14:07\";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.9.1/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:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-21 02:45:34\";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.9.1/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.7.7\";s:7:\"updated\";s:19:\"2017-04-13 13:55:54\";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.7.7/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.9.1\";s:7:\"updated\";s:19:\"2018-01-08 14:46:48\";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.9.1/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.9.1\";s:7:\"updated\";s:19:\"2017-11-17 09:56:44\";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.9.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-14 11:47:57\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-07 12:32:16\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2018-01-09 14:06:54\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.1/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-07 02:07:59\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-04 01:44:20\";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.9.1/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:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:25\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-15 19:40:23\";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.9.1/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:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-03-17 20:40:40\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.7/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.8.5\";s:7:\"updated\";s:19:\"2018-02-13 07:38:55\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.5/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-09 00:51:20\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.20\";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:65:\"https://downloads.wordpress.org/translation/core/4.1.20/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.9.1\";s:7:\"updated\";s:19:\"2017-11-17 19:14:57\";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.9.1/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:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.8.5\";s:7:\"updated\";s:19:\"2017-10-05 06:45:20\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.5/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-22 08:05:07\";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.9.1/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:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-22 08:13:09\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.9.1/nl_NL_formal.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:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-06 06:13:30\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/nl_BE.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.8.5\";s:7:\"updated\";s:19:\"2018-01-20 23:16:23\";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.8.5/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.8.3\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";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.8.3/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:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-28 19:24:26\";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.9.1/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:6:\"4.1.20\";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:62:\"https://downloads.wordpress.org/translation/core/4.1.20/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-18 12:10:14\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/4.9.1/pt_PT_ao90.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.9.1\";s:7:\"updated\";s:19:\"2018-01-01 14:17:04\";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.9.1/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:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-19 23:04:20\";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.9.1/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:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2018-01-04 18:30:47\";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.9.1/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.9.1\";s:7:\"updated\";s:19:\"2017-12-15 20:59:00\";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.9.1/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:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2018-01-08 12:38:03\";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.9.1/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.9.1\";s:7:\"updated\";s:19:\"2018-01-04 13:33:13\";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.9.1/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:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-30 17:20:03\";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.9.1/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.9.1\";s:7:\"updated\";s:19:\"2017-11-15 23:19:48\";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.9.1/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.9.1\";s:7:\"updated\";s:19:\"2018-01-08 22:15:45\";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.9.1/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:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.8.5\";s:7:\"updated\";s:19:\"2018-02-06 01:05:56\";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.8.5/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-20 16:20:13\";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.9.1/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:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-05 09:23:39\";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.7.2/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.8.3\";s:7:\"updated\";s:19:\"2017-11-02 17:05:02\";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.8.3/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:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-07 09:26:23\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.1/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-28 12:41:50\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-15 10:43:28\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.1/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-11-17 22:20:52\";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.9.1/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.9.1\";s:7:\"updated\";s:19:\"2017-12-02 09:46:12\";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.9.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"4.9.1\";s:7:\"updated\";s:19:\"2017-12-09 02:29:44\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.1/zh_HK.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:\"繼續\";}}}','no'),(582,'_site_transient_timeout_community-events-6718ef04d3f46d7f6ff6aabe77f33591','1518857324','no'),(583,'_site_transient_community-events-6718ef04d3f46d7f6ff6aabe77f33591','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"172.18.0.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:34:\"Monthly WordPress Cape Town Meetup\";s:3:\"url\";s:60:\"https://www.meetup.com/WordPress-Cape-Town/events/246575223/\";s:6:\"meetup\";s:19:\"WordPress Cape Town\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/WordPress-Cape-Town/\";s:4:\"date\";s:19:\"2018-02-22 18:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Cape Town, South Africa\";s:7:\"country\";s:2:\"za\";s:8:\"latitude\";d:-33.927544;s:9:\"longitude\";d:18.457083;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:34:\"Monthly WordPress Cape Town Meetup\";s:3:\"url\";s:60:\"https://www.meetup.com/WordPress-Cape-Town/events/246575223/\";s:6:\"meetup\";s:19:\"WordPress Cape Town\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/WordPress-Cape-Town/\";s:4:\"date\";s:19:\"2018-02-22 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Cape Town, South Africa\";s:7:\"country\";s:2:\"za\";s:8:\"latitude\";d:-33.927544;s:9:\"longitude\";d:18.457083;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:34:\"Monthly WordPress Cape Town Meetup\";s:3:\"url\";s:60:\"https://www.meetup.com/WordPress-Cape-Town/events/246711600/\";s:6:\"meetup\";s:19:\"WordPress Cape Town\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/WordPress-Cape-Town/\";s:4:\"date\";s:19:\"2018-03-29 18:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Cape Town, South Africa\";s:7:\"country\";s:2:\"za\";s:8:\"latitude\";d:-33.927544;s:9:\"longitude\";d:18.457083;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:34:\"Monthly WordPress Cape Town Meetup\";s:3:\"url\";s:60:\"https://www.meetup.com/WordPress-Cape-Town/events/246711600/\";s:6:\"meetup\";s:19:\"WordPress Cape Town\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/WordPress-Cape-Town/\";s:4:\"date\";s:19:\"2018-03-29 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Cape Town, South Africa\";s:7:\"country\";s:2:\"za\";s:8:\"latitude\";d:-33.927544;s:9:\"longitude\";d:18.457083;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:34:\"Monthly WordPress Cape Town Meetup\";s:3:\"url\";s:63:\"https://www.meetup.com/WordPress-Cape-Town/events/wllshpyxgbjc/\";s:6:\"meetup\";s:19:\"WordPress Cape Town\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/WordPress-Cape-Town/\";s:4:\"date\";s:19:\"2018-04-26 18:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Cape Town, South Africa\";s:7:\"country\";s:2:\"za\";s:8:\"latitude\";d:-33.927544;s:9:\"longitude\";d:18.457083;}}}}','no'),(584,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1518857325','no'),(585,'_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:4:{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:34:\"\n Thu, 08 Feb 2018 18:43: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: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:40:\"https://wordpress.org/?v=5.0-alpha-42716\";s:7:\"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:36:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.9.4 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:71:\"https://wordpress.org/news/2018/02/wordpress-4-9-4-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Feb 2018 16:17:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5559\";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:350:\"WordPress 4.9.4 is now available. This maintenance release fixes a severe bug in 4.9.3, which will cause sites that support automatic background updates to fail to update automatically, and will require action from you (or your host) for it to be updated to 4.9.4. Four years ago with WordPress 3.7 “Basie”, we added the ability […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Dion Hulse\";s: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:1823:\"<p>WordPress 4.9.4 is now available.</p>\n<p>This maintenance release fixes a severe bug in 4.9.3, which will cause sites that support automatic background updates to fail to update automatically, and will require action from you (or your host) for it to be updated to 4.9.4.</p>\n<p>Four years ago with <a href=\"https://wordpress.org/news/2013/10/basie/\">WordPress 3.7 “Basie”</a>, we added the ability for WordPress to self-update, keeping your website secure and bug-free, even when you weren’t available to do it yourself. For four years it’s helped keep millions of installs updated with very few issues over that time. Unfortunately <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/\">yesterdays 4.9.3 release</a> contained a severe bug which was only discovered after release. The bug will cause WordPress to encounter an error when it attempts to update itself to WordPress 4.9.4, and will require an update to be performed through the WordPress dashboard or hosts update tools.</p>\n<p>WordPress managed hosting companies who install updates automatically for their customers can install the update as normal, and we’ll be working with other hosts to ensure that as many customers of theirs who can be automatically updated to WordPress 4.9.4 can be.</p>\n<p>For more technical details of the issue, we’ve <a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\">posted on our Core Development blog</a>. For a full list of changes, consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.9.4&group=component\">list of tickets</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.4</a> or visit Dashboard → Updates and click “Update Now.”</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5559\";s: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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.9.3 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Feb 2018 19:47:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5545\";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:372:\"WordPress 4.9.3 is now available. This maintenance release fixes 34 bugs in 4.9, including fixes for Customizer changesets, widgets, visual editor, and PHP 7.2 compatibility. For a full list of changes, consult the list of tickets and the changelog. Download WordPress 4.9.3 or visit Dashboard → Updates and click “Update Now.” Sites that support automatic […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Sergey Biryukov\";s: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:3421:\"<p>WordPress 4.9.3 is now available.</p>\n<p>This maintenance release fixes 34 bugs in 4.9, including fixes for Customizer changesets, widgets, visual editor, and PHP 7.2 compatibility. For a full list of changes, consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.9.3&group=component\">list of tickets</a> and the <a href=\"https://core.trac.wordpress.org/log/branches/4.9?rev=42630&stop_rev=42521\">changelog</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.3</a> or visit Dashboard → Updates and click “Update Now.” Sites that support automatic background updates are already beginning to update automatically.</p>\n<p>Thank you to everyone who contributed to WordPress 4.9.3:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan/\">abdullahramzan</a>, <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/andreiglingeanu/\">andreiglingeanu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/coleh/\">coleh</a>, <a href=\"https://profiles.wordpress.org/darko-a7/\">Darko A7</a>, <a href=\"https://profiles.wordpress.org/desertsnowman/\">David Cramer</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/lizkarkoski/\">lizkarkoski</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/ndavison/\">ndavison</a>, <a href=\"https://profiles.wordpress.org/nickmomrik/\">Nick Momrik</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rishishah/\">rishishah</a>, <a href=\"https://profiles.wordpress.org/othellobloke/\">Ryan Paul</a>, <a href=\"https://profiles.wordpress.org/sasiddiqui/\">Sami Ahmed Siddiqui</a>, <a href=\"https://profiles.wordpress.org/sayedwp/\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</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/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/manikmist09/\">Sultan Nasir Uddin</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, and <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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5545\";s: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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"The Month in WordPress: January 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/news/2018/02/the-month-in-wordpress-january-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Feb 2018 08:10: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month 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:34:\"https://wordpress.org/news/?p=5541\";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:339:\"Things got off to a gradual start in 2018 with momentum starting to pick up over the course of the month. There were some notable developments in January, including a new point release and work being done on other important areas of the WordPress project. WordPress 4.9.2 Security and Maintenance Release On January 16, 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:15:\"Hugh Lashbrooke\";s: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:3863:\"\n<p>Things got off to a gradual start in 2018 with momentum starting to pick up over the course of the month. There were some notable developments in January, including a new point release and work being done on other important areas of the WordPress project.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 4.9.2 Security and Maintenance Release</h2>\n\n\n\n<p>On January 16, <a href=\"https://wordpress.org/news/2018/01/wordpress-4-9-2-security-and-maintenance-release/\">WordPress 4.9.2 was released</a> to fix an important security issue with the media player, as well as a number of other smaller bugs. This release goes a long way to smoothing out the 4.9 release cycle with the next point release, v4.9.3, <a href=\"https://make.wordpress.org/core/2018/01/31/wordpress-4-9-3-release-pushed-to-february-5th/\">due in early February</a>.</p>\n\n\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n\n\n<h2>Updated Plugin Directory Guidelines</h2>\n\n\n\n<p>At the end of 2017, <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\">the guidelines for the Plugin Directory</a> received a significant update to make them clearer and expanded to address certain situations. This does not necessarily make these guidelines complete, but rather more user-friendly and practical; they govern how developers build plugins for the Plugin Directory, so they need to evolve with the global community that the Directory serves.</p>\n\n\n\n<p>If you would like to contribute to these guidelines, you can make a pull request to <a href=\"https://github.com/WordPress/wporg-plugin-guidelines\">the GitHub repository</a> or email <a href=\"mailto:plugins@wordpress.org\">plugins@wordpress.org</a>. You can also jump into the #pluginreview channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul>\n <li>Near the end of last year a lot of work was put into improving the standards in the WordPress core codebase and now <a href=\"https://make.wordpress.org/core/2017/11/30/wordpress-php-now-mostly-conforms-to-wordpress-coding-standards/\">the entire platform is at nearly 100% compliance with the WordPress coding standards</a>.</li>\n <li>Gutenberg, the new editor coming to WordPress core in the next major release, <a href=\"https://make.wordpress.org/core/2018/01/25/whats-new-in-gutenberg-25th-january/\">was updated to v2.1 this month</a> with some great usability and technical improvements.</li>\n <li>The Global Community Team is <a href=\"https://make.wordpress.org/community/2018/01/16/2018-goals-for-the-global-community-team-suggestions-time/\">taking suggestions for the goals of the Community program in 2018</a>.</li>\n <li><a href=\"https://online.wpcampus.org/\">WPCampus Online</a>, a digital conference focused on WordPress in higher education, took place on January 30. The videos of the event sessions will be online soon.</li>\n <li>A WordPress community member <a href=\"https://wptavern.com/new-toolkit-simplifies-the-process-of-creating-gutenberg-blocks\">has released a toolkit</a> to help developers build blocks for Gutenberg.</li>\n <li>The community team that works to improve the WordPress hosting experience is relatively young, but <a href=\"https://make.wordpress.org/hosting/2018/01/25/hosting-meeting-notes-january-10-2018/\">they have been making some great progress recently</a>.</li>\n</ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5541\";s: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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.9.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2018/01/wordpress-4-9-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Jan 2018 23:00: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: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.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5376\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"WordPress 4.9.2 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. An XSS vulnerability was discovered in the Flash fallback files in MediaElement, a library that is included with WordPress. Because the Flash files are no longer needed 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:8:\"Ian Dunn\";s: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:3965:\"\n<p>WordPress 4.9.2 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>An XSS vulnerability was discovered in the Flash fallback files in MediaElement, a library that is included with WordPress. Because the Flash files are no longer needed for most use cases, they have been removed from WordPress.</p>\n\n\n\n<p>MediaElement has released a new version that contains a fix for the bug, and <a href=\"https://wordpress.org/plugins/mediaelement-flash-fallbacks/\">a WordPress plugin containing the fixed files</a> is available in the plugin repository.</p>\n\n\n\n<p>Thank you to the reporters of this issue for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible security disclosure</a>: <a href=\"https://opnsec.com\">Enguerran Gillier</a> and <a href=\"https://widiz.com/\">Widiz</a>.</p>\n\n\n\n<p>21 other bugs were fixed in WordPress 4.9.2. Particularly of note were:</p>\n\n\n\n<ul>\n <li>JavaScript errors that prevented saving posts in Firefox have been fixed.</li>\n <li>The previous taxonomy-agnostic behavior of <code>get_category_link()</code> and <code>category_description()</code> was restored.</li>\n <li>Switching themes will now attempt to restore previous widget assignments, even when there are no sidebars to map.<br /></li>\n</ul>\n\n\n\n<p>The Codex has <a href=\"https://codex.wordpress.org/Version_4.9.2\">more information about all of the issues fixed in 4.9.2</a>, if you'd like to learn more.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\"></a><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.2</a> or venture over to Dashboard → Updates and click "Update Now." Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 4.9.2:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/0x6f0/\">0x6f0</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/chasewg/\">chasewg</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/hardik-amipara/\">Hardik Amipara</a>, <a href=\"https://profiles.wordpress.org/ionvv/\">ionvv</a>, <a href=\"https://profiles.wordpress.org/jaswrks/\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnschulz/\">johnschulz</a>, <a href=\"https://profiles.wordpress.org/juiiee8487/\">Juhi Patel</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999/\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.<strong></strong><br /></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5376\";s: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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: December 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wordpress.org/news/2018/01/the-month-in-wordpress-december-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jan 2018 10:00:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month 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:34:\"https://wordpress.org/news/?p=5424\";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:\"Activity slowed down in December in the WordPress community, particularly in the last two weeks. However, the month started off with a big event and work pushed forward in a number of key areas of the project. Read on to find out more about what transpired in the WordPress community as 2017 came to a […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s: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:4744:\"\n<p>Activity slowed down in December in the WordPress community, particularly in the last two weeks. However, the month started off with a big event and work pushed forward in a number of key areas of the project. Read on to find out more about what transpired in the WordPress community as 2017 came to a close.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordCamp US 2017 Brings the Community Together</h2>\n\n\n\n<p>The latest edition of <a href=\"https://2017.us.wordcamp.org/\">WordCamp US</a> took place last month in Nashville on December 1-3. The event brought together over 1,400 WordPress enthusiasts from around the world, fostering a deeper, more engaged global community.</p>\n\n\n\n<p>While attending a WordCamp is always a unique experience, you can catch up on <a href=\"https://wordpress.tv/event/wordcamp-us-2017/\">the sessions on WordPress.tv</a> and look through <a href=\"https://www.facebook.com/pg/WordCampUSA/photos/?tab=albums\">the event photos on Facebook</a> to get a feel for how it all happened. Of course, <a href=\"https://wordpress.tv/2017/12/04/matt-mullenweg-state-of-the-word-2017/\">Matt Mullenweg’s State of the Word</a> talk is always one of the highlights at this event.</p>\n\n\n\n<p>The next WordCamp US will be held in Nashville again in 2018, but if you would like to see it hosted in your city in 2019 and 2020, then <a href=\"https://make.wordpress.org/community/2017/12/19/apply-to-host-wordcamp-us-2019-2020/\">you have until February 2 to apply</a>.</p>\n\n\n\n<h2>WordPress User Survey Data Is Published</h2>\n\n\n\n<p>Over the last few years, tens of thousands of WordPress users all over the world have filled out the annual WordPress user survey. The results of that survey are used to improve the WordPress project, but that data has mostly remained private. This has changed now and <a href=\"https://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-2017/\">the results from the last three surveys are now publicly available</a> for everyone to analyze.</p>\n\n\n\n<p>The data will be useful to anyone involved in WordPress since it provides a detailed look at who uses WordPress and what they do with it — information that can help inform product development decisions across the board.</p>\n\n\n\n<h2>New WordPress.org Team for the Tide Project</h2>\n\n\n\n<p>As announced at WordCamp US, <a href=\"https://make.wordpress.org/tide/2017/12/02/new-home/\">the Tide project is being brought under the WordPress.org umbrella</a> to be managed and developed by the community.</p>\n\n\n\n<p>Tide is a series of automated tests run against every plugin and theme in the directory to help WordPress users make informed decisions about the plugins and themes that they choose to install.</p>\n\n\n\n<p>To get involved in developing Tide, jump into the #tide channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/tide/\">the Tide team blog</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul>\n <li>If you’re following the development of Gutenberg, or if you want a primer on where it’s headed, then <a href=\"https://wordpress.tv/2017/12/10/morten-rand-hendriksen-gutenberg-and-the-wordpress-of-tomorrow/\">Morten Rand-Hendriksen’s talk from WordCamp US</a> is a must watch.</li>\n <li>The annual surveys for WordPress <a href=\"https://wordpressdotorg.polldaddy.com/s/2017-annual-meetup-member-survey\">meetup members</a> and <a href=\"https://wordpressdotorg.polldaddy.com/s/2017-annual-meetup-organizer-survey\">meetup organizers</a> are available for people to fill out — if you’re involved in or attend your local meetup group then be sure to complete those.</li>\n <li>10up has <a href=\"https://distributorplugin.com/\">a brand new plugin in beta</a> that will assist with powerful and flexible content publishing and syndication across WordPress sites.</li>\n <li><a href=\"https://make.wordpress.org/community/2017/12/07/should-we-change-the-default-wordcamp-theme-to-campsite-2017/\">The Community Team is exploring a move</a> to make the recently developed CampSite theme the default theme for all new WordCamp websites. This is the theme that was developed and employed for <a href=\"https://2017.europe.wordcamp.org\">WordCamp Europe 2017</a>.</li>\n <li>The team working on the multisite features of WordPress Core has recently published <a href=\"https://make.wordpress.org/core/2017/12/19/multisite-roadmap-published/\">their planned roadmap for development</a>.</li>\n</ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5424\";s: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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress User Survey Data for 2015-2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Dec 2017 21:40: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s: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:\"WrapUp\";s: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:6:\"survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wordpress.org/news/?p=5310\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:321:\"For many years, we’ve invited folks to tell us how they use WordPress by filling out an annual survey. In the past, interesting results from this survey have been shared in the annual State of the Word address. This year, for the first time, the results of the 2017 survey are being published on 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: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:64131:\"<p>For many years, we’ve invited folks to tell us how they use WordPress by filling out an annual survey. In the past, interesting results from this survey have been shared in the annual <a href=\"https://ma.tt/2017/12/state-of-the-word-2017/\">State of the Word</a> address. This year, for the first time, the results of the 2017 survey are being published on WordPress News, along with the results of the 2015 and 2016 survey.</p>\n<p>So that information from the survey doesn’t reveal anything that respondents might consider private, we do not publish a full export of the raw data. We’d love to make this information as accessible as possible, though, so if you have a suggestion for an OS project or tool we can put the data into that allows people to play with it that still protects individual response privacy, please leave a comment on this post!</p>\n<h4>Major Groups</h4>\n<p>This survey features multiple groups, dividing respondents at the first question:</p>\n<blockquote><p>Which of the following best describes how you use WordPress? (<em>Mandatory</em>)</p></blockquote>\n<p>Those who selected “I’m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, or other custom work.)” were served questions from what we’ll call the “WordPress Professionals” group.</p>\n<p>This “WordPress Professionals” group is further divided into WordPress Company and WordPress Freelancer/Hobbyist groups, based on how the respondent answered the question, “Which of the following best describes your involvement with WordPress? (2015) / Do you work for a company, or on your own? (2016-17).”</p>\n<p>Those who selected “I own, run, or contribute to a blog or website that is built with WordPress.” were served questions in what we’re calling the “WordPress Users” group.</p>\n<p>The relevant survey group is noted in each table below. In the case of questions that were served to different groups in 2015 but then served to all respondents in 2016 and 2017, the group responses from 2015 have been consolidated into one set of data for easier comparison between years.</p>\n<h4>Survey results</h4>\n<p><a href=\"#pro\">Jump to answers from WordPress Professionals</a></p>\n<p><a href=\"#user\">Jump to answers from WordPress Users</a></p>\n<p><a href=\"#all\">Jump to answers from All Respondents</a></p>\n<p><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></p>\n<h3>Which of the following best describes how you use WordPress? (Mandatory)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td>Number of responses (since this question was mandatory, the number of responses here is the total number for the survey)</td>\n<td>45,995</td>\n<td></td>\n<td>15,585</td>\n<td></td>\n<td>16,029</td>\n<td></td>\n</tr>\n<tr>\n<td>I’m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, other custom work.)</td>\n<td>26,662</td>\n<td>58%</td>\n<td>8,838</td>\n<td>57%</td>\n<td>9,099</td>\n<td>57%</td>\n</tr>\n<tr>\n<td>I own, run, or contribute to a blog or website that is built with WordPress.</td>\n<td>16,130</td>\n<td>35%</td>\n<td>5,293</td>\n<td>34%</td>\n<td>5,625</td>\n<td>35%</td>\n</tr>\n<tr>\n<td>Neither of the above.</td>\n<td>3,204</td>\n<td>7%</td>\n<td>1,460</td>\n<td>9%</td>\n<td>1,306</td>\n<td>8%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"pro\">WordPress Professionals</h2>\n<h3><strong>Which of the following best describes your involvement with WordPress? (Mandatory, 2015) / Do you work for a company, or on your own? (Mandatory, 2016-17)</strong></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>26,699</td>\n<td></td>\n<td>8,838</td>\n<td></td>\n<td>9,101</td>\n<td></td>\n</tr>\n<tr>\n<td>My primary job is working for a company or organization that uses WordPress.</td>\n<td>9,505</td>\n<td>36%</td>\n<td>3,529</td>\n<td>40%</td>\n<td>3,660</td>\n<td>40%</td>\n</tr>\n<tr>\n<td>My primary job is as a self-employed designer or developer that uses WordPress.</td>\n<td>9,310</td>\n<td>35%</td>\n<td>3,188</td>\n<td>36%</td>\n<td>3,440</td>\n<td>38%</td>\n</tr>\n<tr>\n<td>I earn money from part-time or occasional freelance work involving WordPress.</td>\n<td>5,954</td>\n<td>22%</td>\n<td>1,633</td>\n<td>18%</td>\n<td>1,590</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>Work that I do involving WordPress is just a hobby, I don’t make money from it.</td>\n<td>1,930</td>\n<td>7%</td>\n<td>491</td>\n<td>6%</td>\n<td>411</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>How does your company or organization work with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,342</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations.</td>\n<td>7,772</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or customize themes.</td>\n<td>5,404</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for my own use.</td>\n<td>4,733</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Host websites for customers.</td>\n<td>4,397</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or distribute plugins.</td>\n<td>3,181</td>\n<td>11%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress.</td>\n<td>1,349</td>\n<td>5%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps.</td>\n<td>1,127</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core.</td>\n<td>914</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>182</td>\n<td> 1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,457</td>\n<td></td>\n<td>3,598</td>\n<td></td>\n</tr>\n<tr>\n<td>We make websites for others.</td>\n<td></td>\n<td></td>\n<td>2,695</td>\n<td>24%</td>\n<td>2,722</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>We make websites for ourselves.</td>\n<td></td>\n<td></td>\n<td>2,355</td>\n<td>21%</td>\n<td>2,470</td>\n<td>21%</td>\n</tr>\n<tr>\n<td>We develop or customize themes.</td>\n<td></td>\n<td></td>\n<td>1,866</td>\n<td>16%</td>\n<td>1,910</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>We host websites for others.</td>\n<td></td>\n<td></td>\n<td>1,564</td>\n<td>14%</td>\n<td>1,595</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>We develop or distribute plugins.</td>\n<td></td>\n<td></td>\n<td>1,283</td>\n<td>11%</td>\n<td>1,342</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>We provide educational resources to help others to use WordPress.</td>\n<td></td>\n<td></td>\n<td>581</td>\n<td>5%</td>\n<td>631</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We sponsor and/or attend WordCamps.</td>\n<td></td>\n<td></td>\n<td>561</td>\n<td>5%</td>\n<td>579</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We contribute bug reports and/or patches to WordPress core.</td>\n<td></td>\n<td></td>\n<td>444</td>\n<td>4%</td>\n<td>468</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>98</td>\n<td>1%</td>\n<td>96</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How would you describe the business of your typical client(s)? (2015) / How would you describe the business of your typical client/customer? (2016, 2017)</strong></p>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,154</td>\n<td></td>\n<td>3,317</td>\n<td></td>\n<td>3,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>6,893</td>\n<td>32%</td>\n<td>2,398</td>\n<td>31%</td>\n<td>2,510</td>\n<td>31%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>3,635</td>\n<td>17%</td>\n<td>1,361</td>\n<td>18%</td>\n<td>1,447</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>2,644</td>\n<td>12%</td>\n<td>934</td>\n<td>12%</td>\n<td>992</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>2,600</td>\n<td>12%</td>\n<td>888</td>\n<td>12%</td>\n<td>1,022</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>2,344</td>\n<td>11%</td>\n<td>854</td>\n<td>11%</td>\n<td>966</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>2,065</td>\n<td>10%</td>\n<td>637</td>\n<td>8%</td>\n<td>677</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,410</td>\n<td>6%</td>\n<td>524</td>\n<td>7%</td>\n<td>552</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>127</td>\n<td>1%</td>\n<td>66</td>\n<td>1%</td>\n<td>64</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How does your company or organization use WordPress when developing websites? (2015) / When making websites, how does your company or organization use WordPress? (2016, 2017)</strong></p>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,078</td>\n<td></td>\n<td>3,369</td>\n<td></td>\n<td>3,552</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>6,361</td>\n<td>70%</td>\n<td>2,482</td>\n<td>74%</td>\n<td>2,640</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>1,222</td>\n<td>13%</td>\n<td>370</td>\n<td>11%</td>\n<td>383</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>721</td>\n<td>8%</td>\n<td>137</td>\n<td>4%</td>\n<td>129</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>629</td>\n<td>7%</td>\n<td>303</td>\n<td>9%</td>\n<td>303</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>145</td>\n<td>2%</td>\n<td>78</td>\n<td>2%</td>\n<td>97</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,054</td>\n<td></td>\n<td>3,302</td>\n<td></td>\n<td>3,473</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>5,651</td>\n<td>62%</td>\n<td>2,025</td>\n<td>61%</td>\n<td>2,105</td>\n<td>61%</td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>2,230</td>\n<td>25%</td>\n<td>799</td>\n<td>24%</td>\n<td>905</td>\n<td>26%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as the original download.</td>\n<td>756</td>\n<td>8%</td>\n<td>302</td>\n<td>9%</td>\n<td>298</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>417</td>\n<td>5%</td>\n<td>177</td>\n<td>5%</td>\n<td>165</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly how many currently active WordPress sites has your company or organization built?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,801</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>1,074</td>\n<td>12%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 – 200</td>\n<td>1,721</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 – 50</td>\n<td>1,718</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 – 20</td>\n<td>1,284</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 – 10</td>\n<td>1,109</td>\n<td>13%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 – 5</td>\n<td>1,418</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>390</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>87</td>\n<td>1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,358</td>\n<td></td>\n<td>3,540</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>291</td>\n<td>9%</td>\n<td>331</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>770</td>\n<td>23%</td>\n<td>894</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>1,144</td>\n<td>34%</td>\n<td>1,177</td>\n<td>33%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>926</td>\n<td>28%</td>\n<td>896</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>228</td>\n<td>7%</td>\n<td>242</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many person-hours (of your company’s work) does the typical site take to complete?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,091</td>\n<td></td>\n<td>3,353</td>\n<td></td>\n<td>3,522</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>939</td>\n<td>10%</td>\n<td>309</td>\n<td>9%</td>\n<td>325</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>100 – 200</td>\n<td>1080</td>\n<td>12%</td>\n<td>329</td>\n<td>10%</td>\n<td>367</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 – 100</td>\n<td>1541</td>\n<td>17%</td>\n<td>527</td>\n<td>16%</td>\n<td>513</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 – 60</td>\n<td>1854</td>\n<td>20%</td>\n<td>583</td>\n<td>17%</td>\n<td>620</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>20 – 40</td>\n<td>2066</td>\n<td>23%</td>\n<td>691</td>\n<td>21%</td>\n<td>685</td>\n<td>19%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>1611</td>\n<td>18%</td>\n<td>479</td>\n<td>14%</td>\n<td>519</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>Prefer not to answer (2016, 2017)</td>\n<td></td>\n<td></td>\n<td>436</td>\n<td>13%</td>\n<td>493</td>\n<td>14%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your company or organization’s output is based around WordPress (as opposed to other platforms or software)?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,950</td>\n<td></td>\n<td>3,345</td>\n<td></td>\n<td>3,503</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>1,089</td>\n<td>12%</td>\n<td>438</td>\n<td>13%</td>\n<td>480</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,043</td>\n<td>12%</td>\n<td>417</td>\n<td>12%</td>\n<td>459</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>955</td>\n<td>11%</td>\n<td>367</td>\n<td>11%</td>\n<td>424</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>831</td>\n<td>9%</td>\n<td>305</td>\n<td>9%</td>\n<td>344</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>534</td>\n<td>6%</td>\n<td>246</td>\n<td>7%</td>\n<td>226</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>973</td>\n<td>11%</td>\n<td>335</td>\n<td>10%</td>\n<td>338</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>613</td>\n<td>7%</td>\n<td>245</td>\n<td>7%</td>\n<td>202</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>877</td>\n<td>10%</td>\n<td>335</td>\n<td>10%</td>\n<td>310</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>806</td>\n<td>9%</td>\n<td>242</td>\n<td>7%</td>\n<td>280</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,039</td>\n<td>12%</td>\n<td>344</td>\n<td>10%</td>\n<td>348</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>190</td>\n<td>2%</td>\n<td>72</td>\n<td>2%</td>\n<td>92</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>In which of the following ways do you work with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>17,009</td>\n<td></td>\n<td>5,221</td>\n<td></td>\n<td>5,425</td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations</td>\n<td>15,342</td>\n<td>34%</td>\n<td>4,795</td>\n<td>34%</td>\n<td>5,064</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Develop or customize themes</td>\n<td>10,549</td>\n<td>24%</td>\n<td>2,997</td>\n<td>21%</td>\n<td>3,021</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Host websites for customers</td>\n<td>8,142</td>\n<td>18%</td>\n<td>2,466</td>\n<td>17%</td>\n<td>2,728</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Develop or distribute plugins</td>\n<td>4,125</td>\n<td>9%</td>\n<td>1,395</td>\n<td>10%</td>\n<td>1,416</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress</td>\n<td>3,276</td>\n<td>7%</td>\n<td>1,187</td>\n<td>8%</td>\n<td>1,308</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps</td>\n<td>1,559</td>\n<td>4%</td>\n<td>648</td>\n<td>5%</td>\n<td>724</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core</td>\n<td>1,107</td>\n<td>2%</td>\n<td>381</td>\n<td>3%</td>\n<td>393</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>389</td>\n<td>1%</td>\n<td>243</td>\n<td>2%</td>\n<td>299</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How would you describe the business of your typical client(s)?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,863</td>\n<td></td>\n<td>5,151</td>\n<td></td>\n<td>5,353</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>14,185</td>\n<td>35%</td>\n<td>4,342</td>\n<td>35%</td>\n<td>4,622</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>8,513</td>\n<td>21%</td>\n<td>2,581</td>\n<td>21%</td>\n<td>2,583</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>6,585</td>\n<td>16%</td>\n<td>2,004</td>\n<td>16%</td>\n<td>2,113</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>4,301</td>\n<td>11%</td>\n<td>1,258</td>\n<td>10%</td>\n<td>1,216</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>3,458</td>\n<td>8%</td>\n<td>1,049</td>\n<td>8%</td>\n<td>1,139</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>2,391</td>\n<td>6%</td>\n<td>805</td>\n<td>6%</td>\n<td>857</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,150</td>\n<td>3%</td>\n<td>300</td>\n<td>2%</td>\n<td>329</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>173</td>\n<td>0%</td>\n<td>101</td>\n<td>1%</td>\n<td>99</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How do you use WordPress in your development?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,768</td>\n<td></td>\n<td>5,145</td>\n<td></td>\n<td>5,372</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>11,754</td>\n<td>70%</td>\n<td>3,641</td>\n<td>71%</td>\n<td>3,959</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>2,825</td>\n<td>17%</td>\n<td>812</td>\n<td>16%</td>\n<td>721</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>1,012</td>\n<td>6%</td>\n<td>343</td>\n<td>7%</td>\n<td>344</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>992</td>\n<td>6%</td>\n<td>246</td>\n<td>5%</td>\n<td>226</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>185</td>\n<td>1%</td>\n<td>105</td>\n<td>2%</td>\n<td>122</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,699</td>\n<td></td>\n<td>5,131</td>\n<td></td>\n<td>5,317</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>9,457</td>\n<td>57%</td>\n<td>2,837</td>\n<td>55%</td>\n<td>2,998</td>\n<td>56%</td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>5,526</td>\n<td>33%</td>\n<td>1,694</td>\n<td>33%</td>\n<td>1,781</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as the original download.</td>\n<td>977</td>\n<td>6%</td>\n<td>341</td>\n<td>7%</td>\n<td>310</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>739</td>\n<td>4%</td>\n<td>261</td>\n<td>5%</td>\n<td>228</td>\n<td>4%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many currently active WordPress sites have you built? (2015) / Roughly how many currently active WordPress sites have you built? (2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,690</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>514</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 – 200</td>\n<td>1,728</td>\n<td>10%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 – 50</td>\n<td>3,000</td>\n<td>18%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 – 20</td>\n<td>3,146</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 – 10</td>\n<td>3,405</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 – 5</td>\n<td>3,838</td>\n<td>23%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>698</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>361</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,165</td>\n<td></td>\n<td>5367</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>110</td>\n<td>2%</td>\n<td>104</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>603</td>\n<td>12%</td>\n<td>713</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>2,264</td>\n<td>44%</td>\n<td>2,457</td>\n<td>46%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>1,871</td>\n<td>36%</td>\n<td>1,813</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>319</td>\n<td>6%</td>\n<td>280</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your working time is spent working with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,658</td>\n<td></td>\n<td>5,039</td>\n<td></td>\n<td>5,241</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>949</td>\n<td>6%</td>\n<td>459</td>\n<td>9%</td>\n<td>461</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,300</td>\n<td>8%</td>\n<td>527</td>\n<td>10%</td>\n<td>540</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>1,784</td>\n<td>11%</td>\n<td>637</td>\n<td>13%</td>\n<td>711</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>1,850</td>\n<td>11%</td>\n<td>608</td>\n<td>12%</td>\n<td>627</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>1,313</td>\n<td>8%</td>\n<td>438</td>\n<td>9%</td>\n<td>465</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>2,095</td>\n<td>13%</td>\n<td>612</td>\n<td>12%</td>\n<td>639</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>1,438</td>\n<td>9%</td>\n<td>391</td>\n<td>8%</td>\n<td>384</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>2,076</td>\n<td>12%</td>\n<td>530</td>\n<td>11%</td>\n<td>511</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>1,743</td>\n<td>10%</td>\n<td>445</td>\n<td>9%</td>\n<td>429</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,819</td>\n<td>11%</td>\n<td>342</td>\n<td>7%</td>\n<td>419</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>291</td>\n<td>2%</td>\n<td>52</td>\n<td>1%</td>\n<td>55</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many hours of your work does the typical site take to complete? (2015) / How many hours of work does your typical WordPress project take to launch? (2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,670</td>\n<td></td>\n<td>5,164</td>\n<td></td>\n<td>5,378</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>503</td>\n<td>3%</td>\n<td>222</td>\n<td>4%</td>\n<td>245</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>100 – 200</td>\n<td>973</td>\n<td>6%</td>\n<td>386</td>\n<td>7%</td>\n<td>393</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>60 – 100</td>\n<td>2,277</td>\n<td>14%</td>\n<td>788</td>\n<td>15%</td>\n<td>815</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 – 60</td>\n<td>3,896</td>\n<td>23%</td>\n<td>1,153</td>\n<td>22%</td>\n<td>1,216</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>20 – 40</td>\n<td>6,068</td>\n<td>36%</td>\n<td>1,487</td>\n<td>29%</td>\n<td>1,582</td>\n<td>29%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>2,953</td>\n<td>18%</td>\n<td>712</td>\n<td>14%</td>\n<td>751</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>418</td>\n<td>8%</td>\n<td>376</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which of the following have you done with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" /> </colgroup>\n</table>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional (Company/Freelancer/Hobbyist)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>20,687</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a theme from scratch.</td>\n<td>11,894</td>\n<td>25%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a plugin.</td>\n<td>9,719</td>\n<td>21%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve answered a question in the WordPress forum.</td>\n<td>8,805</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve attended a WordPress meetup.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve submitted a WordPress bug report.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve attended a WordCamp.</td>\n<td>3,571</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve contributed to WordPress documentation.</td>\n<td>1,778</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1,739</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve contributed a WordPress core patch.</td>\n<td>1,055</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the best thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>22,718</td>\n<td></td>\n<td>7,891</td>\n<td></td>\n<td>8,267</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>9,450</td>\n<td>42%</td>\n<td>3,454</td>\n<td>44%</td>\n<td>3,852</td>\n<td>47%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>8,601</td>\n<td>38%</td>\n<td>3,116</td>\n<td>39%</td>\n<td>3,555</td>\n<td>43%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>3,806</td>\n<td>17%</td>\n<td>1,211</td>\n<td>15%</td>\n<td>1,340</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>2,291</td>\n<td>10%</td>\n<td>802</td>\n<td>10%</td>\n<td>908</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>249</td>\n<td>1%</td>\n<td>86</td>\n<td>1%</td>\n<td>187</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3> What’s the most frustrating thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>21,144</td>\n<td></td>\n<td>7,294</td>\n<td></td>\n<td>7,691</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins & themes (abandoned/conflicts/coding standards)</td>\n<td>6,122</td>\n<td>29%</td>\n<td>2,194</td>\n<td>30%</td>\n<td>2,187</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilities/hacks</td>\n<td>2,321</td>\n<td>11%</td>\n<td>712</td>\n<td>10%</td>\n<td>829</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>1,544</td>\n<td>7%</td>\n<td>422</td>\n<td>6%</td>\n<td>508</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Nothing/I don’t know/can’t think of anything</td>\n<td>1,276</td>\n<td>6%</td>\n<td>344</td>\n<td>5%</td>\n<td>476</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Speed/performance/slow/heavy</td>\n<td>1,196</td>\n<td>6%</td>\n<td>644</td>\n<td>9%</td>\n<td>516</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not asked in the 2015 survey)</td>\n<td></td>\n<td></td>\n<td>8,672</td>\n<td></td>\n<td>9,059</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>7551</td>\n<td>87%</td>\n<td>7836</td>\n<td>87%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>754</td>\n<td>9%</td>\n<td>795</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>370</td>\n<td>4%</td>\n<td>428</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"user\">WordPress Users</h2>\n<h3>Which of the following describes how you use WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,169</td>\n<td></td>\n<td>5,043</td>\n<td></td>\n<td>5,521</td>\n<td></td>\n</tr>\n<tr>\n<td>My personal blog (or blogs) uses WordPress.</td>\n<td>9,395</td>\n<td>36%</td>\n<td>3,117</td>\n<td>36%</td>\n<td>3,424</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>My company or organization’s website is built with WordPress software.</td>\n<td>7,480</td>\n<td>29%</td>\n<td>2,519</td>\n<td>29%</td>\n<td>2,841</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>I have a hobby or side project that has a website built with WordPress.</td>\n<td>6,112</td>\n<td>23%</td>\n<td>1,973</td>\n<td>23%</td>\n<td>2,200</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>I write (or otherwise work) for an online publication that uses WordPress.</td>\n<td>2,329</td>\n<td>9%</td>\n<td>806</td>\n<td>9%</td>\n<td>821</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>872</td>\n<td>3%</td>\n<td>234</td>\n<td>3%</td>\n<td>288</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>Who installed your WordPress website?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,055</td>\n<td></td>\n<td>5,020</td>\n<td></td>\n<td>5,523</td>\n<td></td>\n</tr>\n<tr>\n<td>I did.</td>\n<td>11,216</td>\n<td>66%</td>\n<td>3,659</td>\n<td>73%</td>\n<td>4,129</td>\n<td>75%</td>\n</tr>\n<tr>\n<td>My hosting provider</td>\n<td>2,236</td>\n<td>13%</td>\n<td>667</td>\n<td>13%</td>\n<td>767</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>An external company</td>\n<td>909</td>\n<td>5%</td>\n<td>182</td>\n<td>4%</td>\n<td>178</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>An internal web person/team or a colleague</td>\n<td>874</td>\n<td>5%</td>\n<td>178</td>\n<td>4%</td>\n<td>191</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>A friend or family member</td>\n<td>787</td>\n<td>5%</td>\n<td>192</td>\n<td>4%</td>\n<td>172</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>I don’t know</td>\n<td>502</td>\n<td>3%</td>\n<td>145</td>\n<td>3%</td>\n<td>87</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>345</td>\n<td>2%</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n</tr>\n</tbody>\n</table>\n<h3>How much has the site been customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,789</td>\n<td></td>\n<td>4,997</td>\n<td></td>\n<td>5,494</td>\n<td></td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>7,465</td>\n<td>50%</td>\n<td>2,337</td>\n<td>47%</td>\n<td>2,660</td>\n<td>48%</td>\n</tr>\n<tr>\n<td>A lot of work has been done, the site itself is unrecognizable from the original theme, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>4,715</td>\n<td>32%</td>\n<td>1,707</td>\n<td>34%</td>\n<td>1,872</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as it was when I started out.</td>\n<td>1,841</td>\n<td>12%</td>\n<td>635</td>\n<td>13%</td>\n<td>673</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything has been customized.</td>\n<td>768</td>\n<td>5%</td>\n<td>321</td>\n<td>6%</td>\n<td>290</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the best thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,328</td>\n<td></td>\n<td>4,613</td>\n<td></td>\n<td>5,076</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>7,391</td>\n<td>52%</td>\n<td>2,276</td>\n<td>49%</td>\n<td>2,511</td>\n<td>49%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>4,219</td>\n<td>29%</td>\n<td>1,569</td>\n<td>34%</td>\n<td>1,632</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>1,586</td>\n<td>11%</td>\n<td>493</td>\n<td>11%</td>\n<td>538</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>1,085</td>\n<td>8%</td>\n<td>388</td>\n<td>8%</td>\n<td>458</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>223</td>\n<td>2%</td>\n<td>74</td>\n<td>2%</td>\n<td>48</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the most frustrating thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>13,681</td>\n<td></td>\n<td>4,287</td>\n<td></td>\n<td>4,758</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins & themes (abandoned/conflicts/coding standards)</td>\n<td>2,531</td>\n<td>19%</td>\n<td>1,183</td>\n<td>28%</td>\n<td>1,300</td>\n<td>27%</td>\n</tr>\n<tr>\n<td>Customization/design/look/template</td>\n<td>1,273</td>\n<td>9%</td>\n<td>381</td>\n<td>9%</td>\n<td>408</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Code/coding/PHP</td>\n<td>931</td>\n<td>7%</td>\n<td>306</td>\n<td>7%</td>\n<td>277</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>926</td>\n<td>7%</td>\n<td>209</td>\n<td>5%</td>\n<td>296</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilites/hacks</td>\n<td>785</td>\n<td>6%</td>\n<td>255</td>\n<td>6%</td>\n<td>292</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,026</td>\n<td></td>\n<td>5,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>4,038</td>\n<td>80%</td>\n<td>4,462</td>\n<td>81%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>737</td>\n<td>15%</td>\n<td>782</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>5%</td>\n<td>255</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"all\">All Respondents</h2>\n<h3>Can you (truthfully!) say “I make my living from WordPress”?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,236</td>\n<td></td>\n<td>14,906</td>\n<td></td>\n<td>15,616</td>\n<td></td>\n</tr>\n<tr>\n<td>Not really, but I do get some or all of my income as a result of working with WordPress.</td>\n<td>16,607</td>\n<td>39%</td>\n<td>5,408</td>\n<td>36%</td>\n<td>5,702</td>\n<td>37%</td>\n</tr>\n<tr>\n<td>Yes.</td>\n<td>9,635</td>\n<td>23%</td>\n<td>4,791</td>\n<td>32%</td>\n<td>5,033</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>No.</td>\n<td>15,995</td>\n<td>38%</td>\n<td>4,713</td>\n<td>32%</td>\n<td>4,882</td>\n<td>31%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which devices do you access WordPress on?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,433</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Web</td>\n<td>40,503</td>\n<td>95%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android phone</td>\n<td>15,396</td>\n<td>36%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPhone</td>\n<td>12,353</td>\n<td>29%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPad</td>\n<td>11,748</td>\n<td>28%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android tablet</td>\n<td>9,223</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Desktop app, like MarsEdit</td>\n<td>6,018</td>\n<td>14%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1837</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not broken out by group in 2016-2017)</td>\n<td></td>\n<td></td>\n<td>14,840</td>\n<td></td>\n<td>15,597</td>\n<td></td>\n</tr>\n<tr>\n<td>Web browser on a desktop or laptop</td>\n<td></td>\n<td></td>\n<td>14,160</td>\n<td>54%</td>\n<td>15,052</td>\n<td>55%</td>\n</tr>\n<tr>\n<td>Web browser on a mobile device (tablet or phone)</td>\n<td></td>\n<td></td>\n<td>7,952</td>\n<td>30%</td>\n<td>8,248</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>An app on a mobile device (table or phone)</td>\n<td></td>\n<td></td>\n<td>3,309</td>\n<td>13%</td>\n<td>3,311</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>A desktop app like MarsEdit</td>\n<td></td>\n<td></td>\n<td>517</td>\n<td>2%</td>\n<td>498</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>282</td>\n<td>1%</td>\n<td>240</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress now updates minor & security releases automatically for you. Check all that apply: (question not asked in 2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups)</td>\n<td>39,726</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I love auto-updates.</td>\n<td>17,367</td>\n<td>44%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto-updates for plugins.</td>\n<td>12,796</td>\n<td>32%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Initially, I was nervous about auto updates.</td>\n<td>11,868</td>\n<td>30%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates still make me nervous.</td>\n<td>10,809</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates don’t make me nervous now.</td>\n<td>10,708</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto-updates for themes.</td>\n<td>10,449</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto updates for major versions of WordPress.</td>\n<td>10,225</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>This is the first I’ve heard of auto-updates.</td>\n<td>8,660</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I hate auto-updates.</td>\n<td>3,293</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What is your gender?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>13,953</td>\n<td></td>\n<td>14,680</td>\n<td></td>\n</tr>\n<tr>\n<td>Male</td>\n<td></td>\n<td></td>\n<td>10,978</td>\n<td>78.68%</td>\n<td>11,570</td>\n<td>78.81%</td>\n</tr>\n<tr>\n<td>Female</td>\n<td></td>\n<td></td>\n<td>2,340</td>\n<td>16.77%</td>\n<td>2,511</td>\n<td>21.70%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>601</td>\n<td>4.31%</td>\n<td>562</td>\n<td>3.83%</td>\n</tr>\n<tr>\n<td>Transgender</td>\n<td></td>\n<td></td>\n<td>11</td>\n<td>0.08%</td>\n<td>8</td>\n<td>0.05%</td>\n</tr>\n<tr>\n<td>Nonbinary</td>\n<td></td>\n<td></td>\n<td>8</td>\n<td>0.06%</td>\n<td>17</td>\n<td>0.12%</td>\n</tr>\n<tr>\n<td>Genderqueer</td>\n<td></td>\n<td></td>\n<td>4</td>\n<td>0.03%</td>\n<td>3</td>\n<td>0.02%</td>\n</tr>\n<tr>\n<td>Androgynous</td>\n<td></td>\n<td></td>\n<td>6</td>\n<td>0.04%</td>\n<td>5</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Fluid</td>\n<td></td>\n<td></td>\n<td>3</td>\n<td>0.02%</td>\n<td>4</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Demimale</td>\n<td></td>\n<td></td>\n<td>2</td>\n<td>0.01%</td>\n<td>0</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n<h3>Where are you located?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>14,562</td>\n<td></td>\n<td>15,343</td>\n<td></td>\n</tr>\n<tr>\n<td>United States</td>\n<td></td>\n<td></td>\n<td>3,770</td>\n<td>25.89%</td>\n<td>4,067</td>\n<td>26.51%</td>\n</tr>\n<tr>\n<td>India</td>\n<td></td>\n<td></td>\n<td>1,456</td>\n<td>10.00%</td>\n<td>1,424</td>\n<td>9.28%</td>\n</tr>\n<tr>\n<td>United Kingdom</td>\n<td></td>\n<td></td>\n<td>810</td>\n<td>5.56%</td>\n<td>900</td>\n<td>5.87%</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td></td>\n<td></td>\n<td>555</td>\n<td>3.81%</td>\n<td>729</td>\n<td>4.75%</td>\n</tr>\n<tr>\n<td>Canada</td>\n<td></td>\n<td></td>\n<td>511</td>\n<td>3.51%</td>\n<td>599</td>\n<td>3.90%</td>\n</tr>\n<tr>\n<td>Australia</td>\n<td></td>\n<td></td>\n<td>389</td>\n<td>2.67%</td>\n<td>460</td>\n<td>3.00%</td>\n</tr>\n<tr>\n<td>Italy</td>\n<td></td>\n<td></td>\n<td>298</td>\n<td>2.05%</td>\n<td>356</td>\n<td>2.32%</td>\n</tr>\n<tr>\n<td>Netherlands</td>\n<td></td>\n<td></td>\n<td>343</td>\n<td>2.36%</td>\n<td>350</td>\n<td>2.28%</td>\n</tr>\n<tr>\n<td>France</td>\n<td></td>\n<td></td>\n<td>232</td>\n<td>1.59%</td>\n<td>283</td>\n<td>1.84%</td>\n</tr>\n<tr>\n<td>Bangladesh</td>\n<td></td>\n<td></td>\n<td>257</td>\n<td>1.76%</td>\n<td>263</td>\n<td>1.71%</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td></td>\n<td></td>\n<td>271</td>\n<td>1.86%</td>\n<td>252</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Brazil</td>\n<td></td>\n<td></td>\n<td>239</td>\n<td>1.64%</td>\n<td>251</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Pakistan</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>1.74%</td>\n<td>240</td>\n<td>1.56%</td>\n</tr>\n<tr>\n<td>Indonesia</td>\n<td></td>\n<td></td>\n<td>230</td>\n<td>1.58%</td>\n<td>226</td>\n<td>1.47%</td>\n</tr>\n<tr>\n<td>Iran, Islamic Republic of</td>\n<td></td>\n<td></td>\n<td>190</td>\n<td>1.30%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Sweden</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Nigeria</td>\n<td></td>\n<td></td>\n<td>196</td>\n<td>1.35%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>South Africa</td>\n<td></td>\n<td></td>\n<td>193</td>\n<td>1.33%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td></td>\n<td></td>\n<td>181</td>\n<td>1.24%</td>\n<td>151</td>\n<td>0.98%</td>\n</tr>\n<tr>\n<td>Poland</td>\n<td></td>\n<td></td>\n<td>129</td>\n<td>0.89%</td>\n<td>137</td>\n<td>0.89%</td>\n</tr>\n<tr>\n<td>Romania</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>132</td>\n<td>0.86%</td>\n</tr>\n<tr>\n<td>Switzerland</td>\n<td></td>\n<td></td>\n<td>122</td>\n<td>0.84%</td>\n<td>130</td>\n<td>0.85%</td>\n</tr>\n<tr>\n<td>Philippines</td>\n<td></td>\n<td></td>\n<td>92</td>\n<td>0.63%</td>\n<td>125</td>\n<td>0.81%</td>\n</tr>\n<tr>\n<td>China</td>\n<td></td>\n<td></td>\n<td>136</td>\n<td>0.93%</td>\n<td>123</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>122</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Ukraine</td>\n<td></td>\n<td></td>\n<td>105</td>\n<td>0.72%</td>\n<td>118</td>\n<td>0.77%</td>\n</tr>\n<tr>\n<td>Denmark</td>\n<td></td>\n<td></td>\n<td>107</td>\n<td>0.73%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Greece</td>\n<td></td>\n<td></td>\n<td>120</td>\n<td>0.82%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>109</td>\n<td>0.71%</td>\n</tr>\n<tr>\n<td>Vietnam</td>\n<td></td>\n<td></td>\n<td>101</td>\n<td>0.69%</td>\n<td>108</td>\n<td>0.70%</td>\n</tr>\n<tr>\n<td>Mexico</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>105</td>\n<td>0.68%</td>\n</tr>\n<tr>\n<td>Nepal</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>97</td>\n<td>0.63%</td>\n</tr>\n<tr>\n<td>Ireland</td>\n<td></td>\n<td></td>\n<td>72</td>\n<td>0.49%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>Israel</td>\n<td></td>\n<td></td>\n<td>78</td>\n<td>0.54%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>New Zealand</td>\n<td></td>\n<td></td>\n<td>77</td>\n<td>0.53%</td>\n<td>91</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Finland</td>\n<td></td>\n<td></td>\n<td>63</td>\n<td>0.43%</td>\n<td>90</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Turkey</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>86</td>\n<td>0.56%</td>\n</tr>\n<tr>\n<td>Malaysia</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>81</td>\n<td>0.53%</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td></td>\n<td></td>\n<td>84</td>\n<td>0.58%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Norway</td>\n<td></td>\n<td></td>\n<td>66</td>\n<td>0.45%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Argentina</td>\n<td></td>\n<td></td>\n<td>65</td>\n<td>0.45%</td>\n<td>76</td>\n<td>0.50%</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td></td>\n<td></td>\n<td>74</td>\n<td>0.51%</td>\n<td>72</td>\n<td>0.47%</td>\n</tr>\n<tr>\n<td>Japan</td>\n<td></td>\n<td></td>\n<td>61</td>\n<td>0.42%</td>\n<td>68</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Thailand</td>\n<td></td>\n<td></td>\n<td>69</td>\n<td>0.47%</td>\n<td>67</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Czech Republic</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>66</td>\n<td>0.43%</td>\n</tr>\n<tr>\n<td>Serbia</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>63</td>\n<td>0.41%</td>\n</tr>\n<tr>\n<td>Kenya</td>\n<td></td>\n<td></td>\n<td>58</td>\n<td>0.40%</td>\n<td>62</td>\n<td>0.40%</td>\n</tr>\n<tr>\n<td>Colombia</td>\n<td></td>\n<td></td>\n<td>39</td>\n<td>0.27%</td>\n<td>59</td>\n<td>0.38%</td>\n</tr>\n<tr>\n<td>Egypt</td>\n<td></td>\n<td></td>\n<td>40</td>\n<td>0.27%</td>\n<td>52</td>\n<td>0.34%</td>\n</tr>\n</tbody>\n</table>\n<h3>What is your age?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (This question was not asked in 2015.)</td>\n<td></td>\n<td></td>\n<td>14,944</td>\n<td></td>\n<td>15,636</td>\n<td></td>\n</tr>\n<tr>\n<td>60 and over</td>\n<td></td>\n<td></td>\n<td>1,139</td>\n<td>8%</td>\n<td>1,641</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>50-59</td>\n<td></td>\n<td></td>\n<td>1,537</td>\n<td>10%</td>\n<td>1,996</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>40-49</td>\n<td></td>\n<td></td>\n<td>2,205</td>\n<td>15%</td>\n<td>2,643</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>30-39</td>\n<td></td>\n<td></td>\n<td>3,914</td>\n<td>26%</td>\n<td>3,972</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>20-29</td>\n<td></td>\n<td></td>\n<td>5,013</td>\n<td>34%</td>\n<td>4,444</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Under 20</td>\n<td></td>\n<td></td>\n<td>1142</td>\n<td>8%</td>\n<td>941</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<p>Thank you to everyone who made time to fill out the survey — we’re so happy you use WordPress, and we’re very grateful that you’re willing to share your experiences with us! Thanks also to everyone who spread the word about this survey, and to those of you who read all the way to the bottom of this post. <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n<p><small><a id=\"text\"></a>*Text Field Questions: Each survey included some questions that could be answered only by filling out a text field. In the case of the questions “What is the best thing about WordPress?” and “What is the most frustrating thing about WordPress?” we listed the five most common responses, aggregated when applicable. In the case of the question “What is your gender?” in the 2016 and 2017 surveys, we aggregated responses as best we could. Responses meant to obscure respondents’ gender entirely are aggregated in “prefer not to answer.”</small></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5310\";s: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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: November 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wordpress.org/news/2017/12/the-month-in-wordpress-november-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Dec 2017 11:00:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month 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:34:\"https://wordpress.org/news/?p=5290\";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:354:\"The WordPress project recently released WordPress 4.9, “Tipton” — a new major release named in honor of musician and band leader Billy Tipton. Read on to find out more about this and other interesting news from around the WordPress world in November. WordPress 4.9 “Tipton” On November 16, WordPress 4.9 was released with new features […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Hugh Lashbrooke\";s: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:4234:\"\n<p>The WordPress project recently released WordPress 4.9, “Tipton” — a new major release named in honor of musician and band leader Billy Tipton. Read on to find out more about this and other interesting news from around the WordPress world in November.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 4.9 “Tipton”</h2>\n\n\n\n<p>On November 16, <a href=\"https://wordpress.org/news/2017/11/tipton/\">WordPress 4.9 was released</a> with new features for publishers and developers alike. Release highlights include design locking, scheduling, and previews in the Customizer, an even more secure and usable code editing experience, a new gallery widget, and text widget improvements.</p>\n\n\n\n<p>The follow up security and maintenance, v4.9.1, <a href=\"https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/\">has now been released</a> to tighten up the security of WordPress as a whole.</p>\n\n\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n\n\n<h2>Apply to Speak At WordCamp Europe 2018</h2>\n\n\n\n<p>The next edition of WordCamp Europe takes place in June, 2018. While the organizing team is still in the early stages of planning, <a href=\"https://2018.europe.wordcamp.org/2017/11/15/are-you-ready-to-speak-at-the-largest-wordpress-event-in-europe/\">they are accepting speaker applications</a>.</p>\n\n\n\n<p>WordCamp Europe is the largest WordCamp in the world and, along with WordCamp US, one of the flagship events of the WordCamp program — speaking at this event is a great way to give back to the global WordPress community by sharing your knowledge and expertise with thousands of WordPress enthusiasts.</p>\n\n\n\n<h2>Diversity Outreach Speaker Training Initiative</h2>\n\n\n\n<p>To help WordPress community organizers offer diverse speaker lineups, <a href=\"https://make.wordpress.org/community/2017/11/13/call-for-volunteers-diversity-outreach-speaker-training/\">a new community initiative has kicked off</a> to use existing <a href=\"https://make.wordpress.org/training/handbook/speaker-training/\">speaker training workshops</a> to demystify speaking requirements and help participants gain confidence in their ability to share their WordPress knowledge in a WordCamp session.</p>\n\n\n\n<p>The working group behind this initiative will be meeting regularly to discuss and plan how they can help local communities to train speakers for WordCamps and other events.</p>\n\n\n\n<p>To get involved in this initiative, you can join the meetings at 5pm UTC every other Wednesday in the #community-team channel of the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul>\n <li><a href=\"https://2017.us.wordcamp.org/\">WordCamp US 2017</a> is happening on December 1-3 in Nashville, with the annual State of the Word talk happening on Saturday afternoon — <a href=\"https://2017.us.wordcamp.org/live-stream/\">the live stream of the entire event is available to view for free</a>.</li>\n <li><a href=\"https://xwp.co/tide-a-path-to-better-code-across-the-wordpress-ecosystem/\">Tide</a>, a new service from XWP designed to help users make informed plugin choices, is due to launch at WordCamp US.</li>\n <li>Gutenberg development is continuing rapidly, with <a href=\"https://make.wordpress.org/core/2017/11/28/whats-new-in-gutenberg-28th-november/\">a packed new release</a> and a focus on <a href=\"https://make.wordpress.org/test/2017/11/22/testing-flow-in-gutenberg/\">usability testing</a>.</li>\n <li>After some discussion among the community, <a href=\"https://make.wordpress.org/community/2017/11/10/discussion-micro-regional-wordcamps/\">a new type of micro-regional WordCamp</a> is going to be introduced into the global WordCamp program.</li>\n</ul>\n\n\n\n<p><em></em></p>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\n\n\n<p><em></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5290\";s: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:36:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.9.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:84:\"https://wordpress.org/news/2017/11/wordpress-4-9-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Nov 2017 20:33: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5215\";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:359:\"WordPress 4.9.1 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. WordPress versions 4.9 and earlier are affected by four security issues which could potentially be exploited as part of a multi-vector attack. As part of the core team's […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4287:\"\n<p>WordPress 4.9.1 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>WordPress versions 4.9 and earlier are affected by four security issues which could potentially be exploited as part of a multi-vector attack. As part of the core team's ongoing commitment to security hardening, the following fixes have been implemented in 4.9.1:</p>\n\n\n\n<ol>\n <li>Use a properly generated hash for the <code>newbloguser</code> key instead of a determinate substring.</li>\n <li>Add escaping to the language attributes used on <code>html</code> elements.</li>\n <li>Ensure the attributes of enclosures are correctly escaped in RSS and Atom feeds.</li>\n <li>Remove the ability to upload JavaScript files for users who do not have the <code>unfiltered_html</code> capability.</li>\n</ol>\n\n\n\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible security disclosure</a>: <a href=\"https://twitter.com/0x62626262\">Rahul Pratap Singh</a> and John Blackbourn.</p>\n\n\n\n<p>Eleven other bugs were fixed in WordPress 4.9.1. Particularly of note were:</p>\n\n\n\n<ul>\n <li>Issues relating to the caching of theme template files.</li>\n <li>A MediaElement JavaScript error preventing users of certain languages from being able to upload media files.</li>\n <li>The inability to edit theme and plugin files on Windows based servers.</li>\n</ul>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2017/11/28/wordpress-4-9-1-scheduled-for-november-29th/\">This post has more information about all of the issues fixed in 4.9.1 if you'd like to learn more</a>.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.1</a> or venture over to Dashboard → Updates and click "Update Now." Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 4.9.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/edo888/\">edo888</a>, <a href=\"https://profiles.wordpress.org/erich_k4wp/\">Erich Munz</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/ibenic/\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">jeremyescott</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/lenasterg/\">lenasterg</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mariovalney/\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/natacado/\">natacado</a>, <a href=\"https://profiles.wordpress.org/odysseygate/\">odyssey</a>, <a href=\"https://profiles.wordpress.org/precies/\">precies</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Saša</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, and <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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5215\";s: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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 4.9 “Tipton”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2017/11/tipton/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 16 Nov 2017 01:16: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:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4968\";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:227:\"Announcing version 4.9 of WordPress, named “Tipton” in honor of jazz pianist and band leader Billy Tipton. New features in 4.9 will smooth your design workflow and keep you safe from coding errors. Download or update 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mel Choyce\";s: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:42482:\"<h2 style=\"text-align: center\">Major Customizer Improvements, Code Error Checking, and More! ?</h2>\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/02/header-update.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Version 4.9 of WordPress, named “Tipton” in honor of jazz musician and band leader Billy Tipton, is available for download or update in your WordPress dashboard. New features in 4.9 will smooth your design workflow and keep you safe from coding errors.</p>\n\n\n\n<p>Featuring design drafts, scheduling, and locking, along with preview links, the Customizer workflow improves collaboration for content creators. What’s more, code syntax highlighting and error checking will make for a clean and smooth site building experience. Finally, if all that wasn’t pretty great, we’ve got an awesome new Gallery widget and improvements to theme browsing and switching.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Customizer Workflow Improved </h2>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2017/11/customizer-workflow-improved-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3>Draft and Schedule Site Design Customizations</h3>\n\n\n\n<p>Yes, you read that right. Just like you can draft and revise posts and schedule them to go live on the date and time you choose, you can now tinker with your site’s design and schedule those design changes to go live as you please.</p>\n\n\n\n<h3>Collaborate with Design Preview Links</h3>\n\n\n\n<p>Need to get some feedback on proposed site design changes? WordPress 4.9 gives you a preview link you can send to colleagues and customers so that you can collect and integrate feedback before you schedule the changes to go live. Can we say collaboration++?</p>\n\n\n\n<h3>Design Locking Guards Your Changes</h3>\n\n\n\n<p>Ever encounter a scenario where two designers walk into a project and designer A overrides designer B’s beautiful changes? WordPress 4.9’s design lock feature (similar to post locking) secures your draft design so that no one can make changes to it or erase all your hard work.</p>\n\n\n\n<h3>A Prompt to Protect Your Work</h3>\n\n\n\n<p>Were you lured away from your desk before you saved your new draft design? Fear not, when you return, WordPress 4.9 will politely ask whether or not you’d like to save your unsaved changes.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Coding Enhancements</h2>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2017/11/coding-enhancements-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3>Syntax Highlighting and Error Checking? Yes, Please!</h3>\n\n\n\n<p>You’ve got a display problem but can’t quite figure out exactly what went wrong in the CSS you lovingly wrote. With syntax highlighting and error checking for CSS editing and the Custom HTML widget introduced in WordPress 4.8.1, you’ll pinpoint coding errors quickly. Practically guaranteed to help you scan code more easily, and suss out & fix code errors quickly.</p>\n\n\n\n<h3>Sandbox for Safety</h3>\n\n\n\n<p>The dreaded white screen. You’ll avoid it when working on themes and plugin code because WordPress 4.9 will warn you about saving an error. You’ll sleep better at night.</p>\n\n\n\n<h3>Warning: Potential Danger Ahead!</h3>\n\n\n\n<p>When you edit themes and plugins directly, WordPress 4.9 will politely warn you that this is a dangerous practice and will recommend that you draft and test changes before updating your file. Take the safe route: You’ll thank you. Your team and customers will thank you.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Even More Widget Updates </h2>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/even-more-widget-updates-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3>The New Gallery Widget</h3>\n\n\n\n<p>An incremental improvement to the media changes hatched in WordPress 4.8, you can now add a gallery via this new widget. Yes!</p>\n\n\n\n<h3>Press a Button, Add Media</h3>\n\n\n\n<p>Want to add media to your text widget? Embed images, video, and audio directly into the widget along with your text, with our simple but useful Add Media button. Woo!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Site Building Improvements </h2>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/site-building-improvements-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3>More Reliable Theme Switching</h3>\n\n\n\n<p>When you switch themes, widgets sometimes think they can just move location. Improvements in WordPress 4.9 offer more persistent menu and widget placement when you decide it’s time for a new theme. </p>\n\n\n\n<h3>Find and Preview the Perfect Theme</h3>\n\n\n\n<p>Looking for a new theme for your site? Now, from within the Customizer, you can search, browse, and preview over 2600 themes before deploying changes to your site. What’s more, you can speed your search with filters for subject, features, and layout.</p>\n\n\n\n<h3>Better Menu Instructions = Less Confusion</h3>\n\n\n\n<p>Were you confused by the steps to create a new menu? Perhaps no longer! We’ve ironed out the UX for a smoother menu creation process. Newly updated copy will guide you.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Lend a Hand with Gutenberg ?</h2>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2017/11/gutenberg-1.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>WordPress is working on a new way to create and control your content and we’d love to have your help. Interested in being an <a href=\"https://wordpress.org/plugins/gutenberg/\">early tester</a> or getting involved with the Gutenberg project? <a href=\"https://github.com/WordPress/gutenberg\">Contribute on GitHub</a>.</p>\n\n\n\n<p>(PS: this post was written in Gutenberg!)</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Developer Happiness ?</h2>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/\">Customizer JS API Improvements</a></h3>\n\n\n\n<p>We’ve made numerous improvements to the Customizer JS API in WordPress 4.9, eliminating many pain points. (Hello, default parameters for constructs! Goodbye repeated ID for constructs!) There are also new base control templates, a date/time control, and section/panel/global notifications to name a few. <a href=\"https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/\">Check out the full list.</a></p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2017/10/22/code-editing-improvements-in-wordpress-4-9/\">CodeMirror available for use in your themes and plugins</a></h3>\n\n\n\n<p>We’ve introduced a new code editing library, CodeMirror, for use within core. CodeMirror allows for syntax highlighting, error checking, and validation when creating code writing or editing experiences within your plugins, like CSS or JavaScript include fields.</p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2017/10/30/mediaelement-upgrades-in-wordpress-4-9/\">MediaElement.js upgraded to 4.2.6</a></h3>\n\n\n\n<p>WordPress 4.9 includes an upgraded version of MediaElement.js, which removes dependencies on jQuery, improves accessibility, modernizes the UI, and fixes many bugs.</p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2017/10/15/improvements-for-roles-and-capabilities-in-4-9/\">Roles and Capabilities Improvements</a></h3>\n\n\n\n<p>New capabilities have been introduced that allow granular management of plugins and translation files. In addition, the site switching process in multisite has been fine-tuned to update the available roles and capabilities in a more reliable and coherent way.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"https://choycedesign.com/\">Mel Choyce</a> and <a href=\"https://weston.ruter.net/\">Weston Ruter</a>, with the help of the following fabulous folks. There are 443 contributors with props in this release, with 185 of them contributing for the first time. Pull up some Billy Tipton on your music service of choice, and check out some of their profiles:</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/0x6f0\">0x6f0</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/aaronrutley\">Aaron Rutley</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan\">abdullahramzan</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/kawauso\">Adam Harley (Kawauso)</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamwills\">AdamWills</a>, <a href=\"https://profiles.wordpress.org/adhun\">Adhun Anand</a>, <a href=\"https://profiles.wordpress.org/aegis123\">aegis123</a>, <a href=\"https://profiles.wordpress.org/afzalmultani\">Afzal Multani</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ajayghaghretiya1\">Ajay Ghaghretiya</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/soniakash\">Akash Soni</a>, <a href=\"https://profiles.wordpress.org/akbarhusen\">akbarhusen</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/alpipego\">Alex Goller</a>, <a href=\"https://profiles.wordpress.org/alexvorn2\">Alexandru Vornicescu</a>, <a href=\"https://profiles.wordpress.org/alibasheer\">alibasheer</a>, <a href=\"https://profiles.wordpress.org/alxndr\">alxndr</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreagobetti\">andreagobetti</a>, <a href=\"https://profiles.wordpress.org/euthelup\">Andrei Lupu</a>, <a href=\"https://profiles.wordpress.org/andreiglingeanu\">andreiglingeanu</a>, <a href=\"https://profiles.wordpress.org/aduth\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/norcross\">Andrew Norcross</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewtaylor-1\">Andrew Taylor</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/la-geek\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/anhskohbo\">anhskohbo</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/antonrinas\">antonrinas</a>, <a href=\"https://profiles.wordpress.org/appchecker\">appchecker</a>, <a href=\"https://profiles.wordpress.org/arena94\">arena94</a>, <a href=\"https://profiles.wordpress.org/bsop\">Arnaud Coolsaet</a>, <a href=\"https://profiles.wordpress.org/arnaudban\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/aryamaaru\">Arun</a>, <a href=\"https://profiles.wordpress.org/mrasharirfan\">Ashar Irfan</a>, <a href=\"https://profiles.wordpress.org/atachibana\">atachibana</a>, <a href=\"https://profiles.wordpress.org/atanasangelovdev\">Atanas Angelov</a>, <a href=\"https://profiles.wordpress.org/avinapatel\">Avina Patel</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/barryceelen\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/bduclos\">bduclos</a>, <a href=\"https://profiles.wordpress.org/pixolin\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/behzod\">Behzod Saidov</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/benoitchantre\">Benoit Chantre</a>, <a href=\"https://profiles.wordpress.org/bnap00\">Bharat Parsiya</a>, <a href=\"https://profiles.wordpress.org/bhaveshkhadodara\">bhavesh khadodara</a>, <a href=\"https://profiles.wordpress.org/bplv\">Biplav</a>, <a href=\"https://profiles.wordpress.org/biranit\">Biranit</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/biskobe\">biskobe</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/blackbam\">Blackbam</a>, <a href=\"https://profiles.wordpress.org/blobfolio\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/bradparbs\">Brad Parbs</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bpayton\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/brentjettgmailcom\">Brent Jett</a>, <a href=\"https://profiles.wordpress.org/brianlayman\">Brian Layman</a>, <a href=\"https://profiles.wordpress.org/monopine\">Brian Meyer</a>, <a href=\"https://profiles.wordpress.org/borgesbruno\">Bruno Borges</a>, <a href=\"https://profiles.wordpress.org/bseddon\">bseddon</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90\">Bunty</a>, <a href=\"https://profiles.wordpress.org/icaleb\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/carldanley\">Carl Danley</a>, <a href=\"https://profiles.wordpress.org/poena\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/carolinegeven\">carolinegeven</a>, <a href=\"https://profiles.wordpress.org/caercam\">Charlie Merland</a>, <a href=\"https://profiles.wordpress.org/chasewg\">chasewg</a>, <a href=\"https://profiles.wordpress.org/chetanchauhan\">Chetan Chauhan</a>, <a href=\"https://profiles.wordpress.org/chetan200891\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrishardie\">Chris Hardie</a>, <a href=\"https://profiles.wordpress.org/crunnells\">Chris Runnells</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Christian Herrmann</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/chsxf\">chsxf</a>, <a href=\"https://profiles.wordpress.org/chrisvendiadvertisingcom\">cjhaas</a>, <a href=\"https://profiles.wordpress.org/cliffseal\">Cliff Seal</a>, <a href=\"https://profiles.wordpress.org/code-monkey\">code-monkey</a>, <a href=\"https://profiles.wordpress.org/coleh\">coleh</a>, <a href=\"https://profiles.wordpress.org/collizo4sky\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/corvidism\">corvidism</a>, <a href=\"https://profiles.wordpress.org/csloisel\">csloisel</a>, <a href=\"https://profiles.wordpress.org/daedalon\">Daedalon</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danieltj\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dany2217\">dany2217</a>, <a href=\"https://profiles.wordpress.org/darko-a7\">Darko A7</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/davefx\">DaveFX</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davilera\">David Aguilera</a>, <a href=\"https://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/desertsnowman\">David Cramer</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/straussd\">David Strauss</a>, <a href=\"https://profiles.wordpress.org/jdtrower\">David Trower</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/daymobrew\">daymobrew</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/diedeexterkate\">DiedeExterkate</a>, <a href=\"https://profiles.wordpress.org/dingo_bastard\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/div33\">Divyesh Ladani</a>, <a href=\"https://profiles.wordpress.org/dency\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/dixitadusara\">dixitadusara</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dominikschwind-1\">Dominik Schwind</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsawardekar\">dsawardekar</a>, <a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>, <a href=\"https://profiles.wordpress.org/eatonz\">Eaton</a>, <a href=\"https://profiles.wordpress.org/eclev91\">eclev91</a>, <a href=\"https://profiles.wordpress.org/eddhurst\">Edd Hurst</a>, <a href=\"https://profiles.wordpress.org/edo888\">edo888</a>, <a href=\"https://profiles.wordpress.org/egregor\">EGregor</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elvishp2006\">elvishp2006</a>, <a href=\"https://profiles.wordpress.org/enricosorcinelli\">enrico.sorcinelli</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/erich_k4wp\">Erich Munz</a>, <a href=\"https://profiles.wordpress.org/circlecube\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/eventualo\">eventualo</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/psiico\">FancyThought</a>, <a href=\"https://profiles.wordpress.org/felipeelia\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fergbrain\">fergbrain</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/gmariani405\">Gabriel Mariani</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/girishpanchal\">Girish Lohar</a>, <a href=\"https://profiles.wordpress.org/gkloveweb\">Govind Kumar</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/gregross\">Greg Ross</a>, <a href=\"https://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"https://profiles.wordpress.org/grosbouff\">grosbouff</a>, <a href=\"https://profiles.wordpress.org/wido\">Guido Scialfa</a>, <a href=\"https://profiles.wordpress.org/ghosttoast\">Gustave F. Gerhardt</a>, <a href=\"https://profiles.wordpress.org/guzzilar\">guzzilar</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/hardik-amipara\">Hardik Amipara</a>, <a href=\"https://profiles.wordpress.org/hazemnoor\">Hazem Noor</a>, <a href=\"https://profiles.wordpress.org/hazimayesh\">hazimayesh</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright-1\">Henry</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herregroen\">herregroen</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/jcc9873\">Iacopo C</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ibenic\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ionvv\">ionvv</a>, <a href=\"https://profiles.wordpress.org/ippei-sumida\">Ippei Sumida</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ireneyoast\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/ivankristianto\">Ivan Kristianto</a>, <a href=\"https://profiles.wordpress.org/ixmati\">ixmati</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jhoffmann\">j.hoffmann</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/janak007\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/jankimoradiya\">Janki Moradiya</a>, <a href=\"https://profiles.wordpress.org/jaswrks\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/octalmage\">Jason Stallings</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd\">Jennifer M. Dodd</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/jeremyescott\">Jeremy Scott</a>, <a href=\"https://profiles.wordpress.org/jjcomack\">Jimmy Comack</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jkhongusc\">jkhongusc</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/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johneckman\">John Eckman</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/johnroper100\">johnroper100</a>, <a href=\"https://profiles.wordpress.org/johnschulz\">johnschulz</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/chanthaboune\">Josepha</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshuawold\">Joshua Wold</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jsepia\">jsepia</a>, <a href=\"https://profiles.wordpress.org/jsonfry\">jsonfry</a>, <a href=\"https://profiles.wordpress.org/juiiee8487\">Juhi Patel</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/jlambe\">Julien</a>, <a href=\"https://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/thekt12\">Karthik Thayyil</a>, <a href=\"https://profiles.wordpress.org/zoonini\">Kathryn Presner</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/wraithkenny\">Ken Newman</a>, <a href=\"https://profiles.wordpress.org/captainn\">Kevin Newman</a>, <a href=\"https://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"https://profiles.wordpress.org/kiranpotphode\">Kiran Potphode</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kmgalanakis\">Konstantinos Galanakis</a>, <a href=\"https://profiles.wordpress.org/koopersmith\">koopersmith</a>, <a href=\"https://profiles.wordpress.org/kristastevens\">Krista Stevens</a>, <a href=\"https://profiles.wordpress.org/kekkakokkers\">Kristin Kokkersvold</a>, <a href=\"https://profiles.wordpress.org/lalitpendhare\">lalitpendhare</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/lemacarl\">lemacarl</a>, <a href=\"https://profiles.wordpress.org/lenasterg\">lenasterg</a>, <a href=\"https://profiles.wordpress.org/lessbloat\">lessbloat</a>, <a href=\"https://profiles.wordpress.org/lizkarkoski\">lizkarkoski</a>, <a href=\"https://profiles.wordpress.org/llemurya\">llemurya</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/m1tk00\">m1tk00</a>, <a href=\"https://profiles.wordpress.org/maedahbatool\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/mp518\">Mahesh Prajapati</a>, <a href=\"https://profiles.wordpress.org/mahvash-fatima\">Mahvash Fatima</a>, <a href=\"https://profiles.wordpress.org/travel_girl\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mako09\">Mako</a>, <a href=\"https://profiles.wordpress.org/manolis09\">manolis09</a>, <a href=\"https://profiles.wordpress.org/manuelaugustin\">Manuel Augustin</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mariusvetrici\">Marius Vetrici</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/markcallen\">markcallen</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/matveb\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mgibbs189\">Matt Gibbs</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/matthiasthiel\">matthias.thiel</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mdifelice\">mdifelice</a>, <a href=\"https://profiles.wordpress.org/megane9988\">megane9988</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/menakas\">Menaka S.</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/mizejewski\">Michele Mizejewski</a>, <a href=\"https://profiles.wordpress.org/michelleweber\">Michelle Weber</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/milindmore22\">Milind More</a>, <a href=\"https://profiles.wordpress.org/mirucon\">Mirucon</a>, <a href=\"https://profiles.wordpress.org/studionashvegas\">Mitch Canter</a>, <a href=\"https://profiles.wordpress.org/mitraval192\">Mithun Raval</a>, <a href=\"https://profiles.wordpress.org/mkomar\">mkomar</a>, <a href=\"https://profiles.wordpress.org/monikarao\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/msebel\">msebel</a>, <a href=\"https://profiles.wordpress.org/munyagu\">munyagu</a>, <a href=\"https://profiles.wordpress.org/mythemeshop\">MyThemeShop</a>, <a href=\"https://profiles.wordpress.org/ndoublehwp\">N\'DoubleH</a>, <a href=\"https://profiles.wordpress.org/nathanatmoz\">Nathan Johnson</a>, <a href=\"https://profiles.wordpress.org/ndavison\">ndavison</a>, <a href=\"https://profiles.wordpress.org/nenad\">nenad</a>, <a href=\"https://profiles.wordpress.org/nicbertino\">nic.bertino</a>, <a href=\"https://profiles.wordpress.org/ndiego\">Nick Diego</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\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nicollle\">nicollle</a>, <a href=\"https://profiles.wordpress.org/jainnidhi\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/nileshdudakiya94\">Nileshdudakiya94</a>, <a href=\"https://profiles.wordpress.org/nishitlangaliya\">Nishit Langaliya</a>, <a href=\"https://profiles.wordpress.org/justnorris\">Norris</a>, <a href=\"https://profiles.wordpress.org/obradovic\">obradovic</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/ov3rfly\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/paaljoachim\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak\">palmiak</a>, <a href=\"https://profiles.wordpress.org/parthsanghvi\">Parth Sanghvi</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/obrienlabs\">Pat O\'Brien</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pauldechov\">Paul Dechov</a>, <a href=\"https://profiles.wordpress.org/natacado\">Paul Paradise</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pcarvalho\">pcarvalho</a>, <a href=\"https://profiles.wordpress.org/pedromendonca\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/gungeekatx\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/pessoft\">Peter \"Pessoft\" Kolínek</a>, <a href=\"https://profiles.wordpress.org/donutz\">Peter J. Herrel</a>, <a href=\"https://profiles.wordpress.org/petertoi\">Peter Toi</a>, <a href=\"https://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/philipjohn\">Philip John</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/plastikschnitzer\">Plastikschnitzer</a>, <a href=\"https://profiles.wordpress.org/powerzilly\">powerzilly</a>, <a href=\"https://profiles.wordpress.org/pratikgandhi\">Pratik Gandhi</a>, <a href=\"https://profiles.wordpress.org/precies\">precies</a>, <a href=\"https://profiles.wordpress.org/presslabs\">Presslabs</a>, <a href=\"https://profiles.wordpress.org/punit5658\">Punit Patel</a>, <a href=\"https://profiles.wordpress.org/purnendu\">Purnendu Dash</a>, <a href=\"https://profiles.wordpress.org/r-a-y\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rafa8626\">Rafael Miranda</a>, <a href=\"https://profiles.wordpress.org/rahmohn\">Rahmohn</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramon-fincken\">ramon fincken</a>, <a href=\"https://profiles.wordpress.org/jontyravi\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/rclations\">RC Lations</a>, <a href=\"https://profiles.wordpress.org/redrambles\">redrambles</a>, <a href=\"https://profiles.wordpress.org/arena\">RENAUT</a>, <a href=\"https://profiles.wordpress.org/greuben\">Reuben Gunday</a>, <a href=\"https://profiles.wordpress.org/rfair404\">rfair404</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/riddhiehta02\">Riddhi Mehta</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/rishishah\">rishishah</a>, <a href=\"https://profiles.wordpress.org/rcutmore\">Rob Cutmore</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/ronakganatra\">Ronak Ganatra</a>, <a href=\"https://profiles.wordpress.org/rugved\">rugved</a>, <a href=\"https://profiles.wordpress.org/rushabh4486\">Rushabh Shah</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/ryanduff\">Ryan Duff</a>, <a href=\"https://profiles.wordpress.org/stunnedbeast\">Ryan Holmes</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/othellobloke\">Ryan Paul</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/ryanrolds\">ryanrolds</a>, <a href=\"https://profiles.wordpress.org/ryotsun\">ryotsun</a>, <a href=\"https://profiles.wordpress.org/stodorovic\">Saša</a>, <a href=\"https://profiles.wordpress.org/manchumahara\">Sabuj Kundu</a>, <a href=\"https://profiles.wordpress.org/sagarprajapati\">Sagar Prajapati</a>, <a href=\"https://profiles.wordpress.org/sagarladani\">sagarladani</a>, <a href=\"https://profiles.wordpress.org/sa3idho\">Said El Bakkali</a>, <a href=\"https://profiles.wordpress.org/sasiddiqui\">Sami Ahmed Siddiqui</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/viralsampat\">Sampat Viral</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/sathyapulse\">sathyapulse</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/sboisvert\">sboisvert</a>, <a href=\"https://profiles.wordpress.org/scottdeluzio\">Scott DeLuzio</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</a>, <a href=\"https://profiles.wordpress.org/scottlee\">Scott Lee</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sebsz\">SeBsZ</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/shamim51\">Shamim Hasan</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/shital-patel\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shramee\">shramee</a>, <a href=\"https://profiles.wordpress.org/nomnom99\">Siddharth Thevaril</a>, <a href=\"https://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/slaffik\">Slava Abakumov</a>, <a href=\"https://profiles.wordpress.org/someecards\">someecards</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/spencerfinnell\">spencerfinnell</a>, <a href=\"https://profiles.wordpress.org/spocke\">spocke</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/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevepuddick\">Steve Puddick</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/skostadinov\">Stoyan Kostadinov</a>, <a href=\"https://profiles.wordpress.org/dualcube_subrata\">Subrata Mal</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/manikmist09\">Sultan Nasir Uddin</a>, <a href=\"https://profiles.wordpress.org/musus\">Susumu Seino</a>, <a href=\"https://profiles.wordpress.org/svrooij\">svrooij</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/buley\">Taylor</a>, <a href=\"https://profiles.wordpress.org/tejas5989\">tejas5989</a>, <a href=\"https://profiles.wordpress.org/terwdan\">terwdan</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/thulshof\">Thijs Hulshof</a>, <a href=\"https://profiles.wordpress.org/thingsym\">thingsym</a>, <a href=\"https://profiles.wordpress.org/tfirdaus\">Thoriq Firdaus</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tigertech\">tigertech</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobi823\">tobi823</a>, <a href=\"https://profiles.wordpress.org/toddnestor\">Todd Nestor</a>, <a href=\"https://profiles.wordpress.org/tobifjellner\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/toscho\">toscho</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tuanmh\">tuanmh</a>, <a href=\"https://profiles.wordpress.org/tv-productions\">TV productions</a>, <a href=\"https://profiles.wordpress.org/uicestone\">uicestone</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/umangvaghela123\">Umang Vaghela</a>, <a href=\"https://profiles.wordpress.org/umeshnevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/upadalavipul\">upadalavipul</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/vhauri\">vhauri</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/withinboredom\">withinboredom</a>, <a href=\"https://profiles.wordpress.org/wojtekszkutnik\">Wojtek Szkutnik</a>, <a href=\"https://profiles.wordpress.org/xkon\">Xenos (xkon) Konstantinos</a>, <a href=\"https://profiles.wordpress.org/yahil\">Yahil Madakiya</a>, <a href=\"https://profiles.wordpress.org/yonivh\">yonivh</a>, <a href=\"https://profiles.wordpress.org/yrpwayne\">yrpwayne</a>, <a href=\"https://profiles.wordpress.org/zachwtx\">zachwtx</a>, and <a href=\"https://profiles.wordpress.org/zanematthew\">Zane Matthew</a>.\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 4.9. Their efforts bring WordPress 4.9 fully translated to 43 languages at release time, with more on the way.</p>\n\n\n\n<p>Do you want to report on WordPress 4.9? <a href=\"https://s.w.org/images/core/4.9/wp-4-9_press-kit.zip\">We've compiled a press kit featuring information about the release features, and some media assets to help you along</a>.</p>\n\n\n\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>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4968\";s: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:36:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 4.9 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2017/11/wordpress-4-9-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Nov 2017 06:53: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:13:\"Documentation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5184\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:345:\"The third release candidate for WordPress 4.9 is now available. A release candidate (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. In fact, we did miss some things in RC1 and RC2. This third release candidate was not originally scheduled, but […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Weston Ruter\";s: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:4169:\"<p>The third release candidate for WordPress 4.9 is now available.</p>\n<p>A release candidate (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. In fact, we did miss some things in RC1 and RC2. This third release candidate was not originally scheduled, but due a number of defects uncovered through your testing of RC2 (thank you!), we are putting out another 4.9 release candidate.</p>\n<p>We hope to ship WordPress 4.9 on <strong>Tuesday, November 14</strong> (that’s <em>tomorrow</em>) at 23:00 UTC, but we still need your help to get there. If you haven’t tested 4.9 yet, now is the time! If there are additional defects uncovered through testing between now and the release time, we may delay the 4.9 release to the following day.</p>\n<p>To test WordPress 4.9, 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.9-RC3.zip\">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/branches/4.9?action=stop_on_copy&mode=stop_on_copy&rev=42178&stop_rev=42133\">just over 20 changes</a> since releasing RC2 last week (as we did between RC1 and RC2). For more details about what’s new in version 4.9, check out the <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-3/\">Beta 3</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-4/\">Beta 4</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-release-candidate/\">RC1</a>, and <a href=\"https://wordpress.org/news/2017/11/wordpress-4-9-release-candidate-2/\">RC2</a> blog posts. A few specific areas to test in RC3:</p>\n<ul>\n<li>Switching between the Visual and Text tabs of the editor, and the syncing of the cursor between those two tabs.</li>\n<li>Overriding linting errors in the Customizer’s Additional CSS editor.</li>\n<li>Adding nav menu items for Custom Links in the Customizer.</li>\n<li>Scheduling customization drafts (stubbed posts/pages) for publishing in the Customizer.</li>\n<li>Autosave revisions for changes in the Customizer.</li>\n<li>About page styling.</li>\n</ul>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.9 and update your plugin’s <em>Tested up to</em> version in the readme to 4.9. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release — we work hard to avoid breaking things. Please see the summative <a href=\"https://make.wordpress.org/core/2017/11/07/wordpress-4-9-field-guide/\">field guide</a> to the 4.9 <a href=\"https://make.wordpress.org/core/tag/4.9+dev-notes/\">developer notes</a> on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></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 WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Didn’t squash them all <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f41b.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em><br />\n<em>We want to release Tuesday</em><br />\n<em>New features not bugs <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em></p>\n<p>Thanks for your continued help testing out the latest versions of WordPress.</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5184\";s: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:9:\"\n 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:4:\"\n 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:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Feb 2018 20:48:44 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 08 Feb 2018 18:43:17 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20180213214203\";}','no'),(586,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1518857325','no'),(587,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1518814125','no'),(588,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1518857328','no'),(589,'_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:25:\"Matt: No Office Workstyle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47949\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2018/02/no-office-workstyle/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3947:\"<p>Reed Albergotti has a great article titled <a href=\"https://www.theinformation.com/articles/latest-amenity-for-startups-no-office\">Latest Amenity for Startups: No Office</a>. You can put in your email to read I believe but it's behind a paywall otherwise. <a href=\"https://www.theinformation.com/\">The Information</a> is a pretty excellent site that alongside (former Automattician) <a href=\"https://stratechery.com/\">Ben Thompson's Stratechery</a> I recommend subscribing to. Here are some quotes from the parts of the article that quote me or talk about <a href=\"https://automattic.com/\">Automattic</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n <p>So it’s no coincidence that one of the first companies to operate with a distributed workforce has roots in the open source movement. Automattic, the company behind open source software tools like WordPress, was founded in 2005 and has always allowed its employees to work from anywhere. The company’s 680 employees are based in 63 countries and speak 79 languages. Last year, it closed its San Francisco office, a converted warehouse — because so few employees were using it. It still has a few coworking spaces scattered around the globe.</p>\n <p>Matt Mullenweg, Automattic’s founder and CEO, said that when the company first started, its employees communicated via IRC, an early form of instant messaging. Now it uses a whole host of software that’s tailor-made for remote work, and as the technology evolves, Automattic adopts what they need.</p>\n <p>Mr. Mullenweg said Automattic only started having regular meetings, for instance, after it started using Zoom, a video conferencing tool that works even on slow internet connections.</p>\n <p>He’s become a proponent of office-less companies and shares what he’s learned with other founders who are attempting it. Mr. Mullenweg said he believes the distributed approach has led to employees who are even more loyal to the company and that his employees especially appreciate that they don’t need to spend a chunk of their day on a commute.</p>\n <p>“Our retention is off the charts,” he said.</p>\n</blockquote>\n\n\n\n<p>And:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n <p>“Where it goes wrong is if they don’t have a strong network outside of work—they can become isolated and fall into bad habits,” Mr. Mullenweg said. He said he encourages employees to join groups, play sports and have friends outside of work. That kind of thing wouldn’t be a risk at big tech companies, where employees are encouraged to socialize and spend a lot of time with colleagues.</p>\n <p>But for those who ask him about the negatives, Mr. Mullenweg offers anecdotal proof of a workaround.</p>\n <p>For example, he said he has 14 employees in Seattle who wanted to beat the isolation by meeting up for work once a week. So they found a local bar that didn’t open until 5 p.m., pooled together the $250 per month co-working stipends that Automattic provides and convinced the bar’s owner to let them rent out the place every Friday.</p>\n</blockquote>\n\n\n\n<p>The didn't need to pool all their co-working allowance to get the bar, I recall it was pretty cheap! Finally:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n <p>For Automattic, flying 700 employees to places like Whistler, British Columbia or Orlando, Florida, has turned into a seven-figure expense.</p>\n <p>“I used to joke that we save it on office space and blow it on travel. But the reality is that in-person is really important. That’s a worthwhile investment,” Mr. Mullenweg said.It might take a while, but some people are convinced that a distributed workforce is the way of the future.</p>\n <p>“Facebook is never going to work like this. Google is never going to work like this. But whatever replaces them will look more like a distributed company than a centralized one,” Mr. Mullenweg said.</p>\n</blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Feb 2018 18:44: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Matt: Kinsey Joins Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47931\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2018/02/kinsey-joins-automattic/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:229:\"<p>Kinsey Wilson is joining Automattic to run WordPress.com. <a href=\"https://www.poynter.org/news/one-time-npr-and-nyt-digital-chief-new-adventure-wordpress\">Poynter covers the news and has a great interview with Kinsey.</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, 15 Feb 2018 18:56:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:93:\"WPTavern: WPWeekly Episode 305 – 10up, JavaScript for WordPress Conference, and Jetpack 5.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=78136&preview=true&preview_id=78136\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/wpweekly-episode-305-10up-javascript-for-wordpress-conference-and-jetpack-5-8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1599:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss the news of the week. We also chat about the Winter Olympics, crypto mining in order to access content on the web, and the joys of taking care of a puppy. Last but not least, we talk about Elasticsearch in Jetpack 5.8 and whether or not improving WordPress’ native search functionality through a service is the way to go.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/jetpack-5-8-adds-lazy-loading-for-images-module\">Jetpack 5.8 Adds Lazy Loading for Images Module</a><br />\n<a href=\"https://wptavern.com/free-virtual-wordpress-for-javascript-conference-june-29th\">Free Virtual WordPress for JavaScript Conference June 29th</a><br />\n<a href=\"https://wptavern.com/10up-turns-seven\">10up Turns Seven</a><br />\n<a href=\"https://make.wordpress.org/plugins/2018/02/13/not-updated-in-warning/\">“Not Updated In …” Warning</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 21st 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #305:</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, 15 Feb 2018 02:14:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:26:\"WPTavern: 10up Turns Seven\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://wptavern.com/10up-turns-seven\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2986:\"<p><a href=\"https://10up.com/\">10up</a>, a web development agency founded by Jake Goldman in 2011, has turned seven years old. In a <a href=\"https://10up.com/blog/2018/10up-seven-year-anniversary/\">blog post celebrating the occasion</a>, Goldman reviews the previous year and highlights some notable events for the company.</p>\n<p>“We welcomed more than 30 new clients to our portfolio in another record sales year,” Goldman said. “We launched new websites along with web and mobile apps for major brands across verticals as diverse as finance, healthcare, academia, high-tech, big media, consumer packaged goods, food and beverage, and fitness… to name a few.”</p>\n<p>He also highlighted the company’s commitment to open source and giving back to WordPress. Throughout the past year, the company has released a number of WordPress plugins and developer tools including, <a href=\"https://10up.com/blog/2017/distributor-plugin/\">Distributor</a>, <a href=\"https://10up.com/blog/2017/wp-snapshots-share-wordpress-setup/\">WP Snapshots</a>, <a href=\"https://10up.com/blog/2017/wp-docker/\">WP Local Docker</a>, <a href=\"https://10up.com/blog/2018/improving-wordpress-transients/\">Async Transients</a>, and more.</p>\n<p>Goldman describes three trends he’s noticed in the past few years.</p>\n<ol>\n<li>Integrations with innovation happening in other projects and platforms has become increasingly important as the web matures. You see it in React.js and Vue.js emerging as popular front end standards, in the rise of Elasticsearch and NoSQL platforms, with two factor authentication and Google single sign on, with the rise of modern Asset Management Systems.</li>\n<li>For publishers, it’s increasingly becoming about distribution to multiple platforms, more so than<em> just</em> building a website. Google AMP, Facebook Articles, Apple News, Alexa, YouTube channels to name a few.</li>\n<li>If you need any more evidence of WordPress dominance, look no further than how highly in demand top-tier engineering talent is. It’s probably – literally – around a factor of 1.5x – 2x what great engineers were earning 3-4 years ago.</li>\n</ol>\n<p>With seven years of experience under his belt, Goldman offers the following advice for those who are in their first or second year of running an agency or in a leadership position.</p>\n<ol>\n<li> Don’t be quite so hard on yourself – when you run a business – when you’re a lease – there will always be highs and lows – don’t dwell on the lows.</li>\n<li>Put more emphasis on building systems, routines, and check-ins that offer a better pulse on the collective and individual fulfillment, engagement, and health of the team, rather than relying on transparent upwards communication.</li>\n</ol>\n<p>Congrats to 10up on seven years in business. To learn more about the company and employment opportunities, visit their <a href=\"https://10up.com/\">official site</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Feb 2018 19:16: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: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:37:\"HeroPress: My WordPress Anniversaries\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2452\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://heropress.com/essays/my-wordpress-anniversaries/#utm_source=rss&utm_medium=rss&utm_campaign=my-wordpress-anniversaries\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13243:\"<img width=\"960\" height=\"480\" src=\"https://heropress.com/wp-content/uploads/2018/02/021418-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I feel that I am responsible to be on stage for all the women who haven’t found the courage yet to share their stories.\" /><p>I never remember dates. I know the birthday of more or less five people. I insist on saying that my son was born on May 11. Incorrect, I was born on May 11, he on May 17. But for some reason, my WordPress dates are permanently etched into my brain. I think it’s because meeting the global WordPress community and helping restart the Italian community are very meaningful moments in my adult life. Please join me in a walk down memory lane <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<h3>May 15, 2015</h3>\n<p>I started building websites with WordPress in 2010: my first website was my own blog, whose only purpose was to publish photos of my son so all the grandparents could enjoy seeing him grow. I enjoyed tinkering around with it, and to my surprise someone wrote asking me to build something similar for them. And they wanted to pay me for it!</p>\n<p>For a few years I worked as an administrative manager during the day and as a web designer at night until I decided to make the jump and become a freelancer.</p>\n<p>I never thought about contributing to WordPress because I wasn’t a back end developer and I didn’t think the project needed people that were not code wizards. Heck, I didn’t even know how WordPress was made or how open source worked exactly!</p>\n<blockquote><p>And then I went to a Freelancers conference in Italy and on May 15 I gave my first talk ever.</p></blockquote>\n<p>Up until that moment I taught small classes, but I never talked in front of more than ten people. I was terrified: in the audience there were more than a hundred people. Some of my friends, but also a lot of seasoned professionals that I respected and admired, and here I was talking about how they should and shouldn’t build a website. I was so nervous, when I grabbed the mic I did such a wide gesture with my arms that the bracelet I was wearing flew through the air to the other side of the room.</p>\n<p>After my talk a guy came to compliment my talk, and I realised that he was one of those people that I respected and admired from afar: <a href=\"https://twitter.com/lucasartoni\">Luca Sartoni</a>, an Automattician whose blog I have been following for a while.</p>\n<p>For the three days of the event we kept chatting about websites, WordPress, entrepreneurship, open source until he convinced me to start a WordPress meetup in my hometown of Torino, Italy. He put me in contact with other people that he knew wanted to do something similar and in less than a month from that conversation we started a meetup. The group now has more than one thousand members, and in March we will celebrate thirty events.</p>\n<h3>November 7, 2015</h3>\n<p>Luca didn’t stop his proselytism in Torino <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> That same year, WordCamp Europe was held in Seville and at the Polyglots table a revolution was started. A small group of Italians, used to travelling abroad to attend WordCamps, met there and decided that it was time to organise the Italian community.</p>\n<p>The first step was to revive the blog on the Italian WordPress website: it was dormant for seven years and the first thing we did was publish the dates of meetups that were slowly but surely appearing in the whole country. At the beginning of 2015 there were two meetups in Italy, by August there were eight and their number kept growing.</p>\n<p>Now, if you have met Italians, you know we talk a lot. The two Francescos from Apulia, <a href=\"https://twitter.com/franzvitulli\">Franz Vitulli</a> and <a href=\"https://twitter.com/fra83\">Francesco Di Candia</a>, took the second initiative that was crucial to bringing us together: they opened a Slack workspace for the Italians, modeled after the UK workspace. For the whole summer we chatted every single day: about WordPress, about how to grow and manage the community that was forming in front of our eyes, how to communicate, how to contribute.</p>\n<p>And then chatting wasn’t enough, we wanted to meet in person. We wanted to put a face and a voice to the avatars. With the help of <a href=\"https://twitter.com/rosso\">Sara Rosso</a> and <a href=\"https://twitter.com/miss_jwo\">Jenny Wong</a> we carried out a bizarre plan, almost unheard of: a <a href=\"https://wordpress.tv/2017/12/10/francesca-marano-standalone-contributor-days-help-make-wordpress-with-your-community/\">stand alone WordPress Contributor Day</a>. We would meet in Milano for a day to get to know each other and to learn how to Contribute to WordPress.</p>\n<blockquote><p>I like to think that November 7 2015 is the day we became a community: we were not an abstract idea anymore, we were people, meeting in person to make WordPress in Italy.</p></blockquote>\n<p> </p>\n<h3>April 10, 2016</h3>\n<p>The next few months went by in a blur of activities: the meetup organisers in Torino applied to host the first WordCamp in Italy in three years and I lead the organising team, I applied to attend the Community Summit in Philadelphia and I got accepted, I attended the first WordCamp US, my first WordCamp, and volunteered at it. I met a lot of people that helped me become more active and more focused: as a new contributor it’s easy to get overwhelmed by the abundance of amazing projects and tasks you can be part of, but it’s important to keep your focus to be more effective.</p>\n<blockquote><p>After meeting people from all over the world and sharing our experiences I realised the story of the Italian community could be inspiring for other communities and it was worth telling it to a wider audience, so I got completely out of my comfort zone and submitted a talk to WordCamp London.</p></blockquote>\n<p>On April 10th 2016 I gave <a href=\"https://wordpress.tv/2016/05/30/francesca-marano-rebirth-italian-community/\">my first talk at a WordCamp</a> and my first talk in English. I think I didn’t sleep for days before and after the event. It was nerve wracking, but I did it without throwing any bracelet in the air this time.</p>\n<a href=\"https://heropress.com/wp-content/uploads/2018/02/WCEU2016.jpg\"><img class=\"wp-image-2457 size-large\" src=\"https://heropress.com/wp-content/uploads/2018/02/WCEU2016-1024x684.jpg\" alt=\"\" width=\"960\" height=\"641\" /></a>I gave the same talk at WordCamp Europe in 2016 and realised the story was relatable to many communities. Photographer unknown, sorry <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f641.png\" alt=\"?\" class=\"wp-smiley\" />\n<h3>September 17, 2017</h3>\n<p>Over the following year I kept contributing to WordPress, mostly in the Community team. I participated in the Polyglots activities for a while but then I had to pick and focus my attention. The more I interacted with people from all over the world as a hobby, the more I wanted that to become my job. Although my business as a web designer in Italy was doing good, I felt I wanted to be able to reach more people and find a way to be more involved with the community.<br />\nSo I started looking for a job. I was hesitant at first: all the insecurities I had about myself came back to haunt me. The voice in my head was telling me: you are too old, you don’t have enough technical expertise, you have been contributing for a very short time, English is not your native language, you are a single mom from Italy for crying out loud, who would want to employ you?</p>\n<blockquote><p>Well, it turns out that if you actually look for a job instead of just telling yourself that you really would like a job, chances are you might get one.</p></blockquote>\n<p>Last September I started a new chapter in my career as the <a href=\"https://www.siteground.com/blog/francesca-marano/\">WordPress Community Manager</a> at SiteGround and I couldn’t be happier.</p>\n<p>The past 33 months have completely changed my life, personally and professionally: along the way I learned a number of lessons that I know will stay with me forever.</p>\n<h3>Step Up</h3>\n<p>If you want to achieve something, start today. Just start. Start a meetup, leave a comment to encourage someone else, volunteer to take notes of a meeting, participate in the discussion, bring your own ideas to the table. Be a fire starter, for yourself and for the people around you.</p>\n<h3>Step Back</h3>\n<p>None of the above is about you: the community is bigger than you, you are here to build a path for the future. Once you started something, don’t become too attached, let it go and let other people step up and shine. Mentor them, if they ask and if you can.</p>\n<h3>If you want to go faster go alone, if you want to go further go together</h3>\n<p>I am not a huge fan of motivational quotes, but this one is very dear to my heart and it’s one I have to remind myself quite often. I am a perfectionist and a quick learner: this is ok when you start your own business (and it’s ok only at the beginning, but this is a topic for another article!), but when you are part of a team, you are part of something bigger. It might move slower, but its impact is immensely more powerful than anything you’ll be able to achieve on your own.</p>\n<h3>Representation matters</h3>\n<p>I dislike speaking in public. When I say this people tend to laugh it off because I am good on stage. It doesn’t mean that I like it. I am much more at ease when I am behind the scenes, making things happen.</p>\n<p><img class=\"aligncenter wp-image-2454 size-full\" src=\"https://heropress.com/wp-content/uploads/2018/02/slack-imgs.jpg\" alt=\"Four women seated on a low wall at a WordPress meetup.\" width=\"600\" height=\"400\" /></p>\n<blockquote><p>But representation matters: I feel that I am responsible to be on stage for all the women who haven’t found the courage yet to share their stories.</p></blockquote>\n<p>I am responsible for the young ones, so they can see that it’s possible to create a life when you can be both a good, albeit a bit absent mom, and a kick ass professional. I am responsible for the older ones, so they can see that we are represented, that this industry accepts us and recognizes our contributions. I am responsible to show my eleven year old son that women can do whatever they set out to do.</p>\n<h3>Make it better, give it back</h3>\n<p>I wish I came up with this, because it’s an incredibly powerful sentence. <a href=\"https://heropress.com/essays/make-better-give-back/\">John did</a> and I am grateful every day that I get to share my life with him and his wisdom.</p>\n<p>Contributing to open source can be very frustrating: things go slow, sometimes things don’t go at all (there are numerous tickets in the WordPress bug tracker that are five or more years old), sometimes you might disagree with that will be decided, sometimes you might work alongside people that you dislike.</p>\n<p>When this happens, remind yourself that you are working on a brilliant piece of software that is helping the lives and the businesses of millions of people.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: My WordPress Anniversaries\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=My%20WordPress%20Anniversaries&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fmy-wordpress-anniversaries%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: My WordPress Anniversaries\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fmy-wordpress-anniversaries%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fmy-wordpress-anniversaries%2F&title=My+WordPress+Anniversaries\" rel=\"nofollow\" target=\"_blank\" title=\"Share: My WordPress Anniversaries\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/my-wordpress-anniversaries/&media=https://heropress.com/wp-content/uploads/2018/02/021418-150x150.jpg&description=My WordPress Anniversaries\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: My WordPress Anniversaries\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/my-wordpress-anniversaries/\" title=\"My WordPress Anniversaries\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/my-wordpress-anniversaries/\">My WordPress Anniversaries</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Feb 2018 07:00: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:16:\"Francesca Marano\";s: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:68:\"WPTavern: Free Virtual WordPress for JavaScript Conference June 29th\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78116\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/free-virtual-wordpress-for-javascript-conference-june-29th\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1714:\"<p>Zac Gordon, who <a href=\"https://wptavern.com/zac-gordon-launches-gutenberg-development-course-includes-more-than-30-videos\">launched his Gutenberg development course</a> earlier this year, is organizing a virtual conference called <a href=\"https://javascriptforwp.com/conference/\">JavaScript for WordPress.</a> The conference will take place June 29th and is free to watch.</p>\n<p>“Making the event free and online was really important for me so we could have as few barriers to entry for folks wanting to learn,” Gordon said. “I have a feeling a lot of folks who can’t tune live will still appreciate having all the talks available on YouTube for free.”</p>\n<p>So far, 15 speakers have been confirmed with more to be announced soon. The speakers include WordPress core developers, theme and plugin developers, agency owners, and educators. Some of the talks will be from designers allowing user experience and usability to be part of the conversation.</p>\n<p>Gordon says he’s been wanting to an in-person event for a while but considering the challenges involved, a virtual conference was the next best thing.</p>\n<p>“I used to run in-person workshops in the Washington DC area, which I miss, and have wanted to do an event for a while,” he said. “But doing in-person events is so difficult, so the online format seemed like the best option to go with. I got some good advice from Human Made and WP Campus, who both have experience doing online events, so hopefully everything will go smooth.”</p>\n<p>To reserve a seat and receive updates, visit the <a href=\"https://javascriptforwp.com/conference/\">JavaScript for WordPress conference site</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, 13 Feb 2018 01:30: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:51:\"Mark Jaquith: Updating plugins using Git and WP-CLI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://markjaquith.wordpress.com/?p=5552\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://markjaquith.wordpress.com/2018/02/12/updating-plugins-using-git-and-wp-cli/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4046:\"<p>Now that you know <a href=\"https://markjaquith.wordpress.com/2018/01/30/simple-wordpress-deploys-using-git/\">how I deploy WordPress sites</a> and <a href=\"https://markjaquith.wordpress.com/2018/02/05/tips-for-configuring-wordpress-environments/\">how I configure WordPress environments</a>, what about the maintenance of keeping a WordPress site’s plugins up-to-date?</p>\n<p>Since I’m using Git, I cannot use WordPress built-in plugin updater on the live site (and I wouldn’t want to — if a plugin update goes wrong, my live site could be in trouble!)</p>\n<p>The simple way to update all your plugins from a staging or local development site is to use WP-CLI:</p>\n<pre class=\"brush: bash; title: ; notranslate\">wp plugin update-all\ngit commit -am \'update all plugins\' wp-content/plugins</pre>\n<p>That works. I used to do that.</p>\n<p>I don’t do that anymore.</p>\n<p>Why? <strong>Granularity</strong>.</p>\n<p>One of the benefits of using version control like Git is that when things go wrong, you can pinpoint when they went wrong, and identify what code caused the issue.</p>\n<p>Git has a great tool called <strong>bisect</strong> that takes a known good state in the past and a current broken state, and then jumps around between revisions, efficiently, asking you to report whether that revision is <strong>good</strong> or <strong>bad</strong>. Then it tells you what revision broke your site.</p>\n<p>If you lump all your plugin updates into one commit, you won’t get that granularity. You’ll likely get the <strong>git bisect</strong> result of “great… one of EIGHTEEN PLUGINS I updated was the issue”. That doesn’t help.</p>\n<p>Here’s how you do it with granularity:</p>\n<pre class=\"brush: bash; title: ; notranslate\">for plugin in $(wp plugin list --update=available --field=name);\ndo\n echo \"wp plugin update $plugin\" &&\n echo \"git add -A wp-content/plugins/$plugin\" &&\n echo \"git commit -m \'update $plugin plugin\'\";\ndone;</pre>\n<p>This code loops through plugins with updates available, updates each one, and commits it with a message that references the plugin being updated. Great! Now <strong>git bisect</strong> will be able to tell you <strong>which</strong> plugin update broke your site.</p>\n<p>And what if you can only run WP-CLI commands from within a VM, and Git commands from your local machine? For instance, if you’re using my favorite tool, <a href=\"https://local.getflywheel.com/\">Local by Flywheel</a>, you have to SSH into the site’s container to issue WP-CLI commands, but from within that container, you might not have Git configured like it is on your host machine.</p>\n<p>So what you can do is break the process into two steps.</p>\n<p>On the VM, run this:</p>\n<pre class=\"brush: bash; title: ; notranslate\">wp plugin list --update=available --field=name > plugins.txt\nwp plugin update-all</pre>\n<p>That grabs a list of plugins with updates and writes them to a file <strong>plugins.txt</strong>, and then updates all the plugins.</p>\n<p>And then on your local machine, run this:</p>\n<pre class=\"brush: bash; title: ; notranslate\">while read plugin;\ndo\n echo \"git add -A wp-content/plugins/$plugin\" &&\n echo \"git commit -m \'update $plugin plugin\'\";\ndone; < plugins.txt</pre>\n<p>That slurps in that list of updated plugins and does a distinct <strong>git add</strong> and <strong>git commit</strong> for each.</p>\n<p>When that’s done, remove <b>plugins.txt</b>.</p>\n<p>All your plugins are quickly updated with WP-CLI, but you get nice granular Git commits and messages.</p>\n<hr />\n<p><b>Do you need <a href=\"https://coveredwebservices.com/\">WordPress services?</a></b></p>\n<p>Mark runs <a href=\"https://coveredwebservices.com/\">Covered Web Services</a> which specializes in custom WordPress solutions with focuses on security, speed optimization, plugin development and customization, and complex migrations.</p>\n<p>Please reach out to start a conversation!</p>\n[contact-form]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Feb 2018 14:42:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";s: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:79:\"Post Status: WordPress market opportunities: Upmarket edition — 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=42360\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://poststatus.com/wordpress-market-opportunities-upmarket-edition-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:2284:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Brian and Brian continue their discussion on WordPress market opportunities with a focus on the upper-market and enterprise clients. They take a look at discovery projects, pitching WordPress against competing platforms, and considerations to make before pitching on these high-budget projects. There are plenty of positives and negatives when working on long-term projects that may have a dramatic impact on your company in many ways.</p>\n<p>In addition to these market opportunities, the boys also discuss recent news including iThemes acquisition by Liquid Web, a welcome change to the WordPress.org plugin directory, and an unfortunate and far-reaching bug that shipped with the 4.9.3 release last week.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://poststatus.com/liquid-web-acquired-ithemes/\">Liquid Web acquires iThemes</a></li>\n<li><a href=\"https://generatewp.com/new-policy-changes-wordpress-plugin-directory/\">Plugin directory notice changes</a></li>\n<li><a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\">4.9.4 technical details</a></li>\n<li><a href=\"https://wpsessions.com/sessions/infusing-websites-brand-voice/\">Infusing Websites with Brand Voice</a><a href=\"https://wpsessions.com/teams\">WPS Team Training</a></li>\n</ul>\n<h3>Sponsor: WooCommerce</h3>\n<p><a href=\"https://woocommerce.com/\">WooCommerce</a> makes the most customizable eCommerce software on the planet, and it’s the most popular too. You can build just about anything with WooCommerce. <a href=\"https://woocommerce.com/\">Try it today</a>, and thanks to the team at WooCommerce being a Post Status partner</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, 09 Feb 2018 20:43: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: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: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:57:\"WPTavern: Jetpack 5.8 Adds Lazy Loading for Images Module\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78112\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/jetpack-5-8-adds-lazy-loading-for-images-module\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2079:\"<p>Jetpack 5.8 <a href=\"https://jetpack.com/2018/02/06/jetpack-5-8-release/\">is available</a> for download and includes a handful of new features for Professional, Premium, and Personal plan users. In <a href=\"https://wptavern.com/jetpack-5-4-introduces-beta-version-of-new-search-module-powered-by-elasticsearch-for-professional-plan-users\">October of last year</a>, Jetpack 5.4 began beta testing a new <a href=\"https://jetpack.com/support/search/\">search module</a> based on <a href=\"https://www.elastic.co/\">Elasticsearch</a>. Jetpack 5.8 concludes the beta and the new search service is available to Professional plan customers.</p>\n<p>The new search module replaces the native search functionality in WordPress and Jetpack developers claim sites with a large amount of content, images, or products will see significant speed improvements and more relevant results. Developers can fine-tune the user experience by using custom queries and template tags. Users can sort results by categories, tags, month/year, post type, or any taxonomy.</p>\n<p>In addition to the Content Delivery Network, users have another method to optimize their sites with a new module named Lazy Load Images. When activated, Jetpack will display a page’s textual content first. When a user scrolls down the page, Jetpack will request and download images so they appear when that section of the page comes into view. Sites with a large amount of images will benefit most from having this module activated.</p>\n<p>Premium plan customers can now perform security scans on their sites at any time, upload an unlimited amount of videos, and access SEO tools that were once restricted to Business plan customers.</p>\n<p>Other notable improvements include:</p>\n<ul>\n<li>Support for timezone and site language settings</li>\n<li>Improved display of notices</li>\n<li>The GettyImages shortcode now uses the new format required by GettyImages</li>\n</ul>\n<p>To view all of the additions in this release, check out the <a href=\"https://wordpress.org/plugins/jetpack/#developers\">Jetpack 5.8 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:\"Fri, 09 Feb 2018 07:54: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: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:15:\"Matt: The Laity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47918\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2018/02/the-laity/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:310:\"<blockquote class=\"wp-block-quote\">\n <p>In the last analysis, every profession is a conspiracy against the laity.</p><cite>The Sir Patrick Cullen character in George Bernard Shaw’s play <a href=\"https://en.m.wikipedia.org/wiki/The_Doctor%27s_Dilemma_(play)\">The Doctor’s Dilemma</a></cite></blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Feb 2018 21:48:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: WPWeekly Episode 304 – DesktopServer, Life, and Health with Marc Benzakein\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=78105&preview=true&preview_id=78105\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wpweekly-episode-304-desktopserver-life-and-health-with-marc-benzakein\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1931:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://twitter.com/MarcBenzak\">Marc Benzakein</a>, Operations Manager for ServerPress, LLC. We discussed recent updates to DesktopServer and received a progress report on 4.0. Marc also shared some of the struggles the team encountered throughout 2017.</p>\n<p>We learned what’s new with <a href=\"https://wpsitesync.com/\">WP SiteSync</a> and what customers can look forward too later this year. We also talked about <a href=\"https://wordpress.tv/2017/12/08/marc-benzakein-fat-happy-and-fifty/\">Marc’s journey</a> of becoming a healthier person both physically and mentally. He recalls the issues he had to overcome and shares advice on how others can improve their health.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/woocommerce-3-3-1-released-addresses-template-conflicts\">WooCommerce 3.3.1 Released, Addresses Template Conflicts</a><br />\n<a href=\"https://wptavern.com/wordpress-4-9-4-fixes-critical-auto-update-bug-in-4-9-3\">WordPress 4.9.4 Fixes Critical Auto Update Bug in 4.9.3</a><br />\n<a href=\"https://thehackernews.com/2018/02/wordpress-dos-exploit.html\">Unpatched DoS Flaw Could Help Anyone Take Down WordPress Websites</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 14th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #304:</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, 08 Feb 2018 01:48: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: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:55:\"HeroPress: Becoming a Better Designer Through 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:56:\"https://heropress.com/?post_type=heropress-essays&p=2441\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"https://heropress.com/essays/becoming-better-designer-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=becoming-better-designer-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:19189:\"<img width=\"960\" height=\"480\" src=\"https://heropress.com/wp-content/uploads/2018/02/020718-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The connections I\'ve made, the skills I\'ve honed, and the mentorship I\'ve received have all contributed to making me the designer I am today.\" /><h3>The early years</h3>\n<p>I’ve always been an art kid. One of my first school memories is of drawing a clown and my art teacher being so enamored with it, she hung it up on her door for the whole year.</p>\n<p>The first time in my educational life I didn’t take an art class was my first year of college. By the end of the year, my fingers were itching and I was ready to scream — I had to take art. It didn’t take long for me to declare a Studio Art minor, which eventually became an Arts and Technology minor my senior year.</p>\n<p>I’ve also always been an internet kid. We received our first internet-connected Windows desktop in 1997. I’ll never forget the sound of dial-up as I signed into AOL, day after day for years to come. When my older brother started working for an ISP, we were able to go beyond just using AOL to connect, and I started spending more time exploring websites (rather than just AOL’s apps and chat rooms). I wanted to be like my older brother and learn how to make sites. I taught myself basic HTML by using View Source on existing sites — even back then, I was benefiting from the open web!</p>\n<p>Angelfire was my earliest web canvas. A couple of my friends eventually got into making websites, but I was always a little disdainful of them for using Homestead’s GUI builder, while I was making my sites from scratch. I had a blast making image-rich personal and fan sites with tables and HTML styles. Landing a copy of Photoshop Elements in high school only intensified my enjoyment of web design. I kept that passion up through college, when I found my first design gig.</p>\n<p><a href=\"https://heropress.com/wp-content/uploads/2018/02/old_web_site.jpg\"><img class=\"size-large wp-image-2442 aligncenter\" src=\"https://heropress.com/wp-content/uploads/2018/02/old_web_site-1024x479.jpg\" alt=\"Old Website, best viewed on AOL\" width=\"960\" height=\"449\" /></a></p>\n<h3>Could this be a career?</h3>\n<p>My first year of college got off to a bit of a rough financial start. By the time my financial aid was finalized and I was finally able to pick a work study job, my options were pretty limited. A dance professor needed an assistant to help her with some photocopying and organization tasks, along with helping her build out a print and web portfolio.</p>\n<p>I was honestly a terrible assistant, but I did a pretty good job with the design work. I continued to refine my skills working in the computers labs in subsequent years, and in my Junior year of college (ten years ago!) I landed an internship at a local web design agency. That internship turned into a part-time job, which opened up doors to more local web design opportunities, and soon I was graduating college and pretty well situated into the start of my career.</p>\n<p><a href=\"https://heropress.com/wp-content/uploads/2018/02/early-site.jpg\"><img class=\"aligncenter size-large wp-image-2443\" src=\"https://heropress.com/wp-content/uploads/2018/02/early-site-1024x666.jpg\" alt=\"Skeumorphic website design that looks like a notepad with pen ink all over it.\" width=\"960\" height=\"624\" /></a></p>\n<p>It was at these agencies that I started learning how to build WordPress websites. I’d used WordPress a couple times in college and felt comfortable with it, but now I was focusing a lot more on building my skills as a designer and front-end developer. My girlfriend (who was working at the same web agency) and I managed to convince our boss to start letting us create totally custom websites, rather than customizing existing themes, and that opened up a whole new world of design opportunities.</p>\n<h3>My first WordCamp</h3>\n<p>It was around then that my girlfriend, who attended WordCamp NYC the previous year, noticed the conference organizers were <a href=\"https://2010.nyc.wordcamp.org/volunteer-designer-needed/\">looking for some volunteer designers</a> to help create some graphics. She passed along the information, and I got in touch.</p>\n<p>I collaborated with a few other designers to create the WordCamp branding, which was used across the website, t-shirt, signage, and stickers:</p>\n<p><a href=\"https://heropress.com/wp-content/uploads/2018/02/wcnyc.png\"><img class=\"aligncenter size-full wp-image-2444\" src=\"https://heropress.com/wp-content/uploads/2018/02/wcnyc.png\" alt=\"WCNYC Banner\" width=\"429\" height=\"286\" /></a></p>\n<p>It was amazing to see it everywhere at the WordCamp. It felt really special. Though I didn’t get “props” for this, I still consider it my first contribution to WordPress.</p>\n<p>WordCamp NYC was a ton of fun. I met interesting people, learned a lot about WordPress, and started to get a feel for the community. I left with a desire to get more involved. I browsed through WordPress.org, stumbling upon the “Make” section. I was stoked to see that there was a design group. I couldn’t write much code beyond CSS, but I could contribute my design skills. I joined a couple of the core channels on IRC, including the design channel (#wordpress-ui), and observed for while. I watched how the other designers in the project communicated, what they worked on, where they presented their work, etc. By observing before participating, I could learn the social queues and mores of the community. I didn’t want to embarass myself — I wanted to do things the established way based on community standards.</p>\n<p>What I found to be one of the most difficult parts of contributing was adapting to the technology used to build WordPress. I had to learn how to use command line and SVN. Getting set up in SVN and terminal was probably the biggest thing that stopped me from contributing code during my early years.</p>\n<p>But most of all, it came down to conquering fear. Fear that my design skills would be unwanted and unwelcome; fear that other contributors would look down on me or ignore me, or that they’d find me irritating; fear that I just wasn’t good enough to contribute. Some of this fear persists today, albeit greatly reduced.</p>\n<p>There’s a point at which I managed to conquer a little bit of that fear, stop observing, and really start to pitch in. Slowly, I started chiming in and volunteering for design tasks in IRC and the Make Design p2. I ended up doing a lot of small projects on the community side (rather than the core side) at first — some new landing pages and redesigns of sections on WordPress.org, graphics, and design for my own local meetups. I started feeling more and more confident with my contributions.</p>\n<h3>Core Props</h3>\n<p>By this point, I had done some wireframes and mockups for the core WordPress software — I’d even spoken at a WordCamp! — but I hadn’t actually gotten any code committed. Which meant, at this point in time, I didn’t have any “core props.” I was still really intimidated by Trac and SVN. I was a designer, and most design conversations happened in explicitly design space. But I really wanted to get some code committed into core, so I needed to find a CSS bug I felt qualified to fix.</p>\n<p>At WordCamp Philly in 2012, I finally got a chance. Sunday was devoted to contributing to WordPress. There were experienced core contributors present who could teach people how to make a patch, how to submit a ticket, and suggest tickets for people to work on.</p>\n<p>Aaron Jorbin, a core contributor and fellow speaker (and, now a friend), found a CSS issue I could work on: bringing the alternate “blue” color scheme into sync with the default “grey” scheme. He helped me get set up, helped me through saving my changes as a patch, and then helped me submit that patch to Trac. Andy Nacin, another core contributor (and future friend!) subsequently committed that patch, and I received my first core props.</p>\n<p><a href=\"https://heropress.com/wp-content/uploads/2018/02/first-props2.png\"><img class=\"aligncenter size-large wp-image-2445\" src=\"https://heropress.com/wp-content/uploads/2018/02/first-props2-1024x370.png\" alt=\"Screenshot of ticket giving Mel props\" width=\"960\" height=\"347\" /></a></p>\n<p>After creating my first patch, contributing became easier and easier. My confidence grew, and I spent more time participating in IRC, p2s, and Trac discussions. Then, in January of 2013, major design changes started coming to WordPress.</p>\n<h3>My WordPress apprenticeship</h3>\n<p>It started with icons.</p>\n<p>Ben Dunkle, WordPress’s official icon designer, proposed some shiny new icons for the WordPress dashboard. They were “flat” — one color, not a ton of details. The icons were awesome, but they didn’t really fit stylistically with the rest of the admin. The flat styles clashed with WordPress’ heavy use of gradients.</p>\n<p>So, I helped imagine what the admin could look like totally flat. We tried out a couple ideas, got them committed, and refined in code. The stark styles looked really fresh after years of gradients!</p>\n<p>Unfortunately, flattening the admin unearthed a whole lot of other issues. There wasn’t enough time to flesh out the new design before the next version of WordPress launched, so the flat styles got reverted and tabled for another time.</p>\n<p>Pretty soon after, I received an email via my site’s contact form:</p>\n<p><em><strong>Name</strong>: Matt</em><br />\n<em><strong> Comment</strong>: Add me on Skype when you get a chance.</em></p>\n<p>I think my heart stopped when I realized I had been emailed by the co-founder of WordPress, Matt Mullenweg. Matt invited me to come join a group that would take a broader look at redesigning the admin (codenamed “MP6”). It meant a lot for someone as important as Matt to recognize my skills. I spent a lot of my early years as a designer plagued with self-doubt, and suddenly I had someone pointing at me, going “I believe in you!”</p>\n<p>I leapt at the chance.</p>\n<p>Our group worked together on Skype. We quickly scoped the goal of MP6 to only update CSS and a little bit of JS. I helped Ben make some new vector icons, gave feedback and critiqued design proposals, and made some design proposals of my own. It was an intimate group where we all felt free to safely share and critique each other’s work. The mentorship I received from more experienced WordPress designers was invaluable to my growth. Working with these veterans of WordPress really helped me to grow into my fledgling wings.</p>\n<p><a href=\"https://make.wordpress.org/core/2013/10/23/mp6-3-8-proposal/\">WordPress 3.8 shipped with the updated admin interface</a>, and I knew it was time to take my design career to a new level.</p>\n<p><a href=\"https://heropress.com/wp-content/uploads/2018/02/4-8-credits-smaller.jpg\"><img class=\"aligncenter size-large wp-image-2446\" src=\"https://heropress.com/wp-content/uploads/2018/02/4-8-credits-smaller-1024x895.jpg\" alt=\"WordPress 4.8 Credits\" width=\"960\" height=\"839\" /></a></p>\n<h3>Leaving the nest</h3>\n<p>I’d had my eye on Automattic, the makers of WordPress.com, the Jetpack plugin, and many other products, for most of my time contributing to WordPress. A couple of the designers I worked with on MP6 were Automattic designers, and it was an absolute joy to collaborate with them. At this point I’d spent so much of my career as either a lone designer, or in a competitive environment, that having a supportive, collaborative group of people helping me improve my work was a revelation.</p>\n<p>I desperately wanted to work at Automattic.</p>\n<p>While MP6 was in the works, I participated in a three month long design apprenticeship at a local agency. I worked alongside experienced mentors and fellow apprentices to hone my interface and user experience design skills. It was challenging and thrilling and totally complemented the mentorship I was receiving from WordPress folks. Plus, working in a positive environment reinforced my desire to work somewhere similar.</p>\n<p>After the apprenticeship, I finally felt like I had the skills and confidence to apply. I spent a lot of time writing my cover letter, and redesigning my portfolio to use in-depth case studies on a small number of recent projects. I finally sent off my application and crossed my fingers.</p>\n<p>A couple weeks later, I received a reply back asking to schedule an interview. I was terrified, but luckily, Automattic conducts interviews via text, so I was able to hide my fear behind my keyboard and hopefully try to project confidence. (Aside: I also show all my emotions on my face, so online communication is the best.)</p>\n<p>It must have worked, because I was moved on to the next phase of the application, doing a self-contained trial project, which was a whole ton of fun. I was able to put my recently refined research, interviewing, and user testing skills to use. I loved being given a real challenge to tackle. My trial went well, so I was moved along to the final interview with Matt Mullenweg. We spent a couple hours chatting on Skype, and at the end of our conversation I was given an offer. Welcome to Automattic!</p>\n<p>After working so hard on my apprenticeship, and on MP6, joining Automattic felt incredibly validating. The work I put in, the mentorship I received, all of the collaboration, led to this moment. I felt like I had graduated from apprentice and was now embarking on my adventure as a design journeyman. And boy, has it been an adventure!</p>\n<h3><a href=\"https://heropress.com/wp-content/uploads/2018/02/automattic-2-smaller.jpg\"><img class=\"aligncenter size-large wp-image-2447\" src=\"https://heropress.com/wp-content/uploads/2018/02/automattic-2-smaller-1024x678.jpg\" alt=\"Automattic Group Photo\" width=\"960\" height=\"636\" /></a></h3>\n<h3>Design leadership</h3>\n<p>The past four and a half years at Automattic have been fantastic. I have the best coworkers anyone can ask for. I’ve worked with some incredibly talented and empathetic designers, whose guidance and feedback constantly encourage me to improve my skills.</p>\n<p>I’ve continued to contribute to WordPress, slowly gaining more responsibility in the project the longer I stuck around. That’s the secret to becoming an open source leader, I discovered — <strong>decisions are made by the people who show up</strong>.</p>\n<p>In 2016, I was asked to by the Release Design Lead for <a href=\"https://wordpress.org/news/2016/04/coleman/\">WordPress 4.5 “Coleman.”</a> I worked alongside the other release leads to make design-related decisions that impacted the release. This was the first release we experimented with having a Design Lead. I felt like design finally had a seat at the table.</p>\n<p>This continued to be the case last year, when Matt Mullenweg announced core focuses for the year: Editing, Customization, and the API. Both Editing and Customization had designers co-leading their focus. I was named the Customization co-lead. I’d been working on customization and site building on WordPress.com for over a year, so I had relevant experience.</p>\n<p>I worked with my developer co-lead, Weston Ruter, on low-hanging fruit, most of which we released in WordPress 4.8. The release was smaller, focused more on improvements than new features. We made a lot of updates to widgets, which had been long neglected.</p>\n<p>After that, we turned our sights to some more ambitious projects: drafting and scheduling changes in the Customizer, improvements to code editing in the WordPress admin, even more widget updates, and upgrades around the flow of changing themes and building menus for your site. We took a design-first approach to building out these new features, and I think it really shows in the work that we produced during the 4.9 release cycle, which Weston and I co-led.</p>\n<p><a href=\"https://wordpress.org/news/2017/11/tipton/\">WordPress 4.9 “Tipton”</a> launched in November. Since then, I’ve pivoted to work on <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a>, the new editing experience for WordPress which should be released in 5.0. Once the editing experience wraps up, we’re going to start looking at how we can extend Gutenberg to cover site building and customization. It’s a big, audacious goal that I hope to pursue with caution, humility, and a spirit of adventure.</p>\n<p>I owe WordPress a great deal. The connections I’ve made, the skills I’ve honed, and the mentorship I’ve received have all contributed to making me the designer I am today. I hope to give back for years to come!</p>\n<p><a href=\"https://heropress.com/wp-content/uploads/2018/02/community-summit-smaller.jpg\"><img class=\"aligncenter size-full wp-image-2448\" src=\"https://heropress.com/wp-content/uploads/2018/02/community-summit-smaller.jpg\" alt=\"Community Summit Group Photo\" width=\"960\" height=\"556\" /></a></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Becoming a Better Designer Through WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Becoming%20a%20Better%20Designer%20Through%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-better-designer-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Becoming a Better Designer Through WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-better-designer-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-better-designer-wordpress%2F&title=Becoming+a+Better+Designer+Through+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Becoming a Better Designer Through WordPress\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/becoming-better-designer-wordpress/&media=https://heropress.com/wp-content/uploads/2018/02/020718-150x150.jpg&description=Becoming a Better Designer Through WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Becoming a Better Designer Through WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/becoming-better-designer-wordpress/\" title=\"Becoming a Better Designer Through WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/becoming-better-designer-wordpress/\">Becoming a Better Designer Through WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Feb 2018 12:00:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mel Choyce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: WooCommerce 3.3.1 Released, Addresses Template Conflicts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/woocommerce-3-3-1-released-addresses-template-conflicts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1330:\"<p>WooCommerce 3.3.1 <a href=\"https://woocommerce.wordpress.com/2018/02/06/woocommerce-3-3-1-fix-release-notes/\">is available</a> and fixes template conflicts discovered in a handful of WordPress themes that forced the team to <a href=\"https://wptavern.com/woocommerce-3-3-removed-from-plugin-directory-due-to-theme-conflicts\">revert WooCommerce 3.3</a>. The team reviewed handful of the most common themes running WooCommerce and tested them for compatibility with 3.3.1.</p>\n<p><a href=\"https://github.com/woocommerce/woocommerce/wiki/Template-File-Guidelines-for-Devs-and-Theme-Authors#hook-vs-override---when-to-use-what\">WooCommerce developers recommend</a> that theme authors use hooks instead of template overrides to ensure maximum compatibility.</p>\n<p>According to Mike Jolley, WooCommerce lead developer, this release highlighted issues with the template system’s extensibility and a disconnect between theme authors on external marketplaces. “We hope to find solutions to these problems in the near future,” Jolley said.</p>\n<p>WooCommerce 3.3.1 has at least <a href=\"https://github.com/woocommerce/woocommerce/compare/3.3.0...3.3.1\">90 commits</a>. Users are encouraged to create a full-backup of their sites and then browse to Dashboard > Updates to update WooCommerce from within WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Feb 2018 09:46:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordPress 4.9.4 Fixes Critical Auto Update Bug in 4.9.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:29:\"https://wptavern.com/?p=78087\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/wordpress-4-9-4-fixes-critical-auto-update-bug-in-4-9-3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1984:\"<p>Hours after <a href=\"https://wptavern.com/wordpress-4-9-3-released-fixes-34-bugs\">WordPress 4.9.3 was released</a>, the WordPress development team followed it up <a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\">with 4.9.4</a> to fix a critical bug with the auto update process. The bug generates a fatal PHP error when WordPress attempts to update itself.</p>\n<p>This error requires WordPress site owners and administrators to manually update to WordPress 4.9.4 by visiting your Dashboard and clicking the Update Now button on the Updates page. Alternatively, you can update by uploading the files via SFTP or by using WP-CLI.</p>\n<p>Dion Hulse, WordPress lead developer, says managed hosts that apply updates automatically for their customers will be able to update sites as they normally do. This may explain why some users have reported that sites running 4.9.3 have automatically updated to 4.9.4 without issue.</p>\n<p>The bug stems from an attempt to <a href=\"https://core.trac.wordpress.org/ticket/43103\">reduce the number of API calls</a> made when the auto update cron job is run. Unfortunately, the code committed had unintended consequences. “It triggers a fatal error as not all of the dependencies of <code>find_core_auto_update()</code> are met,” Hulse said.</p>\n<p>A postmortem will be published once the team determines how to prevent this mistake from happening in the future. “We don’t like bugs in WordPress any more than you do, and we’ll be taking steps to both increase automated coverage of our updates and improve tools to aid in the detection of similar bugs before they become an issue in the future,” Hulse said.</p>\n<p>While WordPress 4.9.3 and 4.9.4 do not include any security fixes, it’s important to note that in order to receive automatic security updates in the future, sites using the 4.9 branch must be running at least 4.9.4. Older branches are unaffected.</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, 07 Feb 2018 09:19:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Dev Blog: WordPress 4.9.4 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5559\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/news/2018/02/wordpress-4-9-4-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1814:\"<p>WordPress 4.9.4 is now available.</p>\n<p>This maintenance release fixes a severe bug in 4.9.3, which will cause sites that support automatic background updates to fail to update automatically, and will require action from you (or your host) for it to be updated to 4.9.4.</p>\n<p>Four years ago with <a href=\"https://wordpress.org/news/2013/10/basie/\">WordPress 3.7 “Basie”</a>, we added the ability for WordPress to self-update, keeping your website secure and bug-free, even when you weren’t available to do it yourself. For four years it’s helped keep millions of installs updated with very few issues over that time. Unfortunately <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/\">yesterdays 4.9.3 release</a> contained a severe bug which was only discovered after release. The bug will cause WordPress to encounter an error when it attempts to update itself to WordPress 4.9.4, and will require an update to be performed through the WordPress dashboard or hosts update tools.</p>\n<p>WordPress managed hosting companies who install updates automatically for their customers can install the update as normal, and we’ll be working with other hosts to ensure that as many customers of theirs who can be automatically updated to WordPress 4.9.4 can be.</p>\n<p>For more technical details of the issue, we’ve <a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\">posted on our Core Development blog</a>. For a full list of changes, consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.9.4&group=component\">list of tickets</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.4</a> or visit Dashboard → Updates and click “Update Now.”</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, 06 Feb 2018 16:17:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dion Hulse\";s: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:49:\"WPTavern: WordPress 4.9.3 Released, Fixes 34 Bugs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78081\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordpress-4-9-3-released-fixes-34-bugs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:681:\"<p>WordPress 4.9.3 <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/\">is available</a> and fixes 34 bugs. Customizer changesets, the visual editor, widgets, and compatibility for PHP 7.2 highlight this release. You can view all of the changes via the <a href=\"https://core.trac.wordpress.org/log/branches/4.9?rev=42630&stop_rev=42521\">changelog</a> or <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.9.3&group=component\">trac tickets</a>. Most sites will update automatically. However, if you want to trigger the update ahead of time or manually update, visit your Dashboard, click the Updates link, and click Update Now.</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, 06 Feb 2018 08:35:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"WPTavern: Liquid Web Acquires iThemes in Multi-Million Dollar Deal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77907\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/liquid-web-acquires-ithemes-in-multi-million-dollar-deal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4149:\"<p>Liquid Web, a managed hosting service founded in 1997, <a href=\"https://www.liquidweb.com/blog/liquid-web-acquires-ithemes/\">has acquired</a> <a href=\"https://ithemes.com/\">iThemes</a>. iThemes recently <a href=\"https://ithemes.com/10-years-in-wordpress/\">celebrated its 10th year</a> in business. <a href=\"https://poststatus.com/liquid-web-acquired-ithemes/\">PostStatus reports</a> that it was an all cash deal and sources confirmed to the Tavern that it was a multi-million dollar acquisition.</p>\n<p>iThemes will continue to operate as an independent unit within Liquid Web. Cory Miller will remain as General Manager of iThemes and the company will keep its office and employees in Oklahoma City, OK.</p>\n<p>iThemes was founded in 2008 and is part of a group of WordPress focused companies that started <a href=\"https://medium.com/@jasonpatricksc/a-brief-history-of-a-wordpress-theme-business-3847e16fcba4\">around the same time</a>. The group includes WooThemes, Revolution Themes now known as StudioPress, Press75, WPZoom, and others.</p>\n<p>WooThemes was <a href=\"https://wptavern.com/automattic-acquires-woocommerce\">acquired by Automattic</a>. StudioPress has branched off into content marketing with CopyBlogger and hosting via StudioPress sites. Press75 was acquired by Westwerk in 2014 and WPZoom continues to operate independently.</p>\n<p>iThemes diversified its business a number of times over the years, adding plugins and services to its portfolio. Some of the most notable products include, FlexxTheme, BackupBuddy, Builder, iThemes Sync, and iThemes Security. In 2013, the company branched off into the e-commerce space <a href=\"https://wptavern.com/ithemes-launches-e-commerce-plugin-exchange\">with Exchange</a>. In 2017, <a href=\"https://ithemes.com/2017/07/13/ithemes-exchange-new-home-exchangewpcom/\">Exchange was acquired</a> by AJ Morris allowing the company to focus on iThemes Sales Accelerator, a new product that works exclusively with WooCommerce.</p>\n<p>Considering Liquid Web recently launched <a href=\"https://www.liquidweb.com/products/managed-woocommerce-hosting/\">its managed WooCommerce hosting</a>, iThemes Sales Accelerator should pair nicely with its services.</p>\n<p>This isn’t the first time a large webhosting company has acquired a WordPress business. In the last two years, GoDaddy has acquired three companies with a presence in the WordPress ecosystem.</p>\n<ul>\n<li><strong>April 2013</strong> EIG Acquires MOJO-Themes</li>\n<li><strong>September 2016</strong> GoDaddy Acquires ManageWP</li>\n<li><strong>December 2016</strong> GoDaddy Acquires WP Curve</li>\n<li><strong>March 2017</strong> GoDaddy Acquires Sucuri</li>\n</ul>\n<h2>After 10 Years, Cory Miller Lets Go</h2>\n<p>Miller founded iThemes 10 years ago and helped navigate it through the ups and downs that come with running a business. Although Miller no longer owns the company he founded, he’s excited about the next chapter and the opportunities it presents to him and his team.</p>\n<p>“One of the keys that has contributed greatly to our success over the last 10 years is being willing to adapt and to innovate and to try new things,” Miller said. “For instance, If we’d kept focusing solely on WordPress themes, which was our primary business for the early years, we wouldn’t be around today.</p>\n<p>“As we surveyed the landscape in WordPress, one thing was very obvious to us: hosting is the future. As a bootstrapped company from the beginning, with our DNA as a software company, and seeing where Liquid Web is going, it just made sense for us to join forces.</p>\n<p>“We view this is as another chapter in our story of our willingness to adapt and try new things so we can keep doing what we do best — Make People’s Lives Awesome. So we’re tremendously excited about our future with Liquid Web, and what we’re going to be able to do for the WordPress community together.”</p>\n<p>Miller says they’re in the middle of the transition process and are working towards tighter integration between iThemes’ products and Liquid Web’s managed hosting services.</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, 06 Feb 2018 00:33:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:45:\"Dev Blog: WordPress 4.9.3 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5545\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/news/2018/02/wordpress-4-9-3-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3408:\"<p>WordPress 4.9.3 is now available.</p>\n<p>This maintenance release fixes 34 bugs in 4.9, including fixes for Customizer changesets, widgets, visual editor, and PHP 7.2 compatibility. For a full list of changes, consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.9.3&group=component\">list of tickets</a> and the <a href=\"https://core.trac.wordpress.org/log/branches/4.9?rev=42630&stop_rev=42521\">changelog</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.3</a> or visit Dashboard → Updates and click “Update Now.” Sites that support automatic background updates are already beginning to update automatically.</p>\n<p>Thank you to everyone who contributed to WordPress 4.9.3:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan/\">abdullahramzan</a>, <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/andreiglingeanu/\">andreiglingeanu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/coleh/\">coleh</a>, <a href=\"https://profiles.wordpress.org/darko-a7/\">Darko A7</a>, <a href=\"https://profiles.wordpress.org/desertsnowman/\">David Cramer</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/lizkarkoski/\">lizkarkoski</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/ndavison/\">ndavison</a>, <a href=\"https://profiles.wordpress.org/nickmomrik/\">Nick Momrik</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rishishah/\">rishishah</a>, <a href=\"https://profiles.wordpress.org/othellobloke/\">Ryan Paul</a>, <a href=\"https://profiles.wordpress.org/sasiddiqui/\">Sami Ahmed Siddiqui</a>, <a href=\"https://profiles.wordpress.org/sayedwp/\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</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/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/manikmist09/\">Sultan Nasir Uddin</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Feb 2018 19:47:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Sergey Biryukov\";s: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:57:\"Mark Jaquith: Tips for configuring WordPress environments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://markjaquith.wordpress.com/?p=5476\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://markjaquith.wordpress.com/2018/02/05/tips-for-configuring-wordpress-environments/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4626:\"<p>Many WordPress hosts will give your site a “staging” environment. You can also use tools like <a href=\"https://local.getflywheel.com/\">Local by Flywheel</a>, or <a href=\"https://www.mamp.info/\">MAMP Pro</a> to run a local “dev” version of your site. These are great ways of testing code changes, playing with new plugins, or making theme tweaks, without risking breaking your live “production” site.</p>\n<p>Here is my advice for working with different WordPress environments.</p>\n<h2>Handling Credentials</h2>\n<p>The live (“production”) version of your site should be opt-in. That is, your site’s Git repo should <strong>not</strong> store production credentials in <strong>wp-config.php</strong>. You don’t want something to happen like <a href=\"https://www.reddit.com/r/cscareerquestions/comments/6ez8ag/accidentally_destroyed_production_database_on/\">when this developer accidentally connected to the production database</a> and destroyed all the company data on his first day.</p>\n<p>Instead of keeping database credentials in <strong>wp-config.php</strong>, have <strong>wp-config.php</strong> look for a <strong>local-config.php</strong> file. Replace the section that defines the database credentials with something like this:</p>\n<pre class=\"brush: php; title: ; notranslate\">if ( file_exists( __DIR__ . \'/local-config.php\' ) ) {\n include( __DIR__ . \'/local-config.php\' );\n} else {\n die( \'local-config.php not found\' );\n}</pre>\n<p>Make sure you add <strong>local-config.php</strong> to your <strong>.gitignore</strong> so that no one commits their local version to the repo.</p>\n<p>On production, you’ll create a <strong>local-config.php</strong> with production credentials. On staging or development environments, you’ll create a <strong>local-config.php</strong> with the credentials for those environments.</p>\n<h2>Production is a Choice</h2>\n<p>Right after the section that calls out <strong>local-config.php</strong>, put something like this:</p>\n<pre class=\"brush: php; title: ; notranslate\">if ( ! defined( \'WP_ENVIRONMENT\' ) ) {\n define( \'WP_ENVIRONMENT\', \'development\' );\n}</pre>\n<p>The idea here is that there will always be a <strong>WP_ENVIRONMENT</strong> constant available to you that tells you what kind of environment your site is being run in. In production, you will put this in <strong>local-config.php</strong> along with the database credentials:</p>\n<pre class=\"brush: php; title: ; notranslate\">define( \'WP_ENVIRONMENT\', \'production\' );</pre>\n<p>Now, in your theme, or your custom plugins, or other code, you can do things like this:</p>\n<pre class=\"brush: php; title: ; notranslate\">if ( \'production\' === WP_ENVIRONMENT ) {\n add_filter( \'option_gravityformsaddon_gravityformsstripe_settings\', function( $stripe_settings ) {\n $stripe_settings[\'api_mode\'] = \'live\';\n return $stripe_settings;\n });\n} else {\n add_filter( \'option_gravityformsaddon_gravityformsstripe_settings\', function( $stripe_settings ) {\n $stripe_settings[\'api_mode\'] = \'test\';\n return $stripe_settings;\n });\n}</pre>\n<p>This bit of code is for the Easy Digital Downloads Stripe gateway plugin. It makes sure that on the production environment, the payment gateway is always in <strong>live</strong> mode, and the anywhere else, it is always in <strong>test</strong> mode. This protects against two very bad situations: connecting to live services from a test environment (which could result in customers being charged for test transactions) and connecting to test services from a live environment (which could prevent customers from purchasing products on your site).</p>\n<p>You can also use this pattern to do things like hide Google Analytics on your test sites, or make sure debug plugins are only active on development sites (more on that, in a future post!)</p>\n<p>Don’t rely on complicated procedures (“step 34: make sure you go into the Stripe settings and switch the site to test mode on your local test site”) — make these things explicit in code. Make it impossible to screw it up, and working on your sites will become faster and less stressful.</p>\n<hr />\n<p><b>Do you need <a href=\"https://coveredwebservices.com/\">WordPress services?</a></b></p>\n<p>Mark runs <a href=\"https://coveredwebservices.com/\">Covered Web Services</a> which specializes in custom WordPress solutions with focuses on security, speed optimization, plugin development and customization, and complex migrations.</p>\n<p>Please reach out to start a conversation!</p>\n[contact-form]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Feb 2018 14:59: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:12:\"Mark Jaquith\";s: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:40:\"Matt: National Magazine Award Nomination\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47900\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2018/02/national-magazine-award-nomination/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:761:\"<p>Longreads <a href=\"http://www.magazine.org/asme/about-asme/pressroom/asme-press-releases/ellies-2018-finalists-announced\">was nominated today</a> for its first-ever <a href=\"https://en.wikipedia.org/wiki/National_Magazine_Awards\">National Magazine Award</a>, in the category of columns and commentary, alongside ESPN The Magazine, BuzzFeed News, Pitchfork, and New York magazine. Laurie Penny's Longreads columns <a href=\"https://longreads.com/tag/metoo-and-consent/\">explore important questions of consent and female desire</a> that have strongly resonated in our current moment. In addition to this nomination, Penny's columns have been translated and republished in Italian and German newspapers, and will be collected in a forthcoming book.</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, 02 Feb 2018 21: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: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: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:46:\"Dev Blog: The Month in WordPress: January 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wordpress.org/news/?p=5541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/news/2018/02/the-month-in-wordpress-january-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3861:\"<p>Things got off to a gradual start in 2018 with momentum starting to pick up over the course of the month. There were some notable developments in January, including a new point release and work being done on other important areas of the WordPress project.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 4.9.2 Security and Maintenance Release</h2>\n\n\n\n<p>On January 16, <a href=\"https://wordpress.org/news/2018/01/wordpress-4-9-2-security-and-maintenance-release/\">WordPress 4.9.2 was released</a> to fix an important security issue with the media player, as well as a number of other smaller bugs. This release goes a long way to smoothing out the 4.9 release cycle with the next point release, v4.9.3, <a href=\"https://make.wordpress.org/core/2018/01/31/wordpress-4-9-3-release-pushed-to-february-5th/\">due in early February</a>.</p>\n\n\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n\n\n<h2>Updated Plugin Directory Guidelines</h2>\n\n\n\n<p>At the end of 2017, <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\">the guidelines for the Plugin Directory</a> received a significant update to make them clearer and expanded to address certain situations. This does not necessarily make these guidelines complete, but rather more user-friendly and practical; they govern how developers build plugins for the Plugin Directory, so they need to evolve with the global community that the Directory serves.</p>\n\n\n\n<p>If you would like to contribute to these guidelines, you can make a pull request to <a href=\"https://github.com/WordPress/wporg-plugin-guidelines\">the GitHub repository</a> or email <a href=\"mailto:plugins@wordpress.org\">plugins@wordpress.org</a>. You can also jump into the #pluginreview channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul>\n <li>Near the end of last year a lot of work was put into improving the standards in the WordPress core codebase and now <a href=\"https://make.wordpress.org/core/2017/11/30/wordpress-php-now-mostly-conforms-to-wordpress-coding-standards/\">the entire platform is at nearly 100% compliance with the WordPress coding standards</a>.</li>\n <li>Gutenberg, the new editor coming to WordPress core in the next major release, <a href=\"https://make.wordpress.org/core/2018/01/25/whats-new-in-gutenberg-25th-january/\">was updated to v2.1 this month</a> with some great usability and technical improvements.</li>\n <li>The Global Community Team is <a href=\"https://make.wordpress.org/community/2018/01/16/2018-goals-for-the-global-community-team-suggestions-time/\">taking suggestions for the goals of the Community program in 2018</a>.</li>\n <li><a href=\"https://online.wpcampus.org/\">WPCampus Online</a>, a digital conference focused on WordPress in higher education, took place on January 30. The videos of the event sessions will be online soon.</li>\n <li>A WordPress community member <a href=\"https://wptavern.com/new-toolkit-simplifies-the-process-of-creating-gutenberg-blocks\">has released a toolkit</a> to help developers build blocks for Gutenberg.</li>\n <li>The community team that works to improve the WordPress hosting experience is relatively young, but <a href=\"https://make.wordpress.org/hosting/2018/01/25/hosting-meeting-notes-january-10-2018/\">they have been making some great progress recently</a>.</li>\n</ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Feb 2018 08:10: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:\"Hugh Lashbrooke\";s: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:54:\"WPTavern: WordPress 4.9.3 Rescheduled for February 5th\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=78058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wptavern.com/wordpress-4-9-3-rescheduled-for-february-5th\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1336:\"<p>WordPress 4.9.3 is a maintenance release and was originally scheduled to be available on January 30th. However, due to ongoing tickets and a short time frame to test the <a href=\"https://make.wordpress.org/core/2018/02/01/wordpress-4-9-3-rc/\">release candidate</a>, it has <a href=\"https://make.wordpress.org/core/2018/01/31/wordpress-4-9-3-release-pushed-to-february-5th/\">been pushed back</a> to February 5th.</p>\n<p><a href=\"https://make.wordpress.org/core/2018/02/01/wordpress-4-9-3-rc/\">WordPress 4.9.3 RC 1</a> is available for testing. This release <a href=\"https://make.wordpress.org/core/2018/01/24/jshint-removed-from-codemirror-in-4-9-3/\">removes JSHint from the code editors</a> due to conflicts with the GPL License. If your code relies on JSHint from Core, <a href=\"https://core.trac.wordpress.org/ticket/42850\">developers encourage</a> you to update it to use a copy of JSHint.</p>\n<p>Other changes in 4.9.3 include, avoiding page scrolling when navigating the media modal, a handful of improvements to the customizer, <a href=\"https://make.wordpress.org/core/2018/01/26/wordpress-4-9-3-beta/\">and more</a>. Please test WordPress 4.9.3 on a staging site and if you encounter any bugs, you can report them on the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta section</a> of the support forums.</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, 02 Feb 2018 08:09: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: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:78:\"WPTavern: WooCommerce 3.3 Removed From Plugin Directory Due to Theme Conflicts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77962\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/woocommerce-3-3-removed-from-plugin-directory-due-to-theme-conflicts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3081:\"<p>Earlier this week, WooCommerce 3.3 <a href=\"https://wptavern.com/woocommerce-3-3-increases-theme-compatibility-auto-regenerates-thumbnails\">was released</a> and among the features was increased theme compatibility. However, soon after release, users of third-party themes <a href=\"https://wordpress.org/support/topic/wc-3-3-issues-with-categories-displaying-in-shop/\">reported issues</a> with categories displaying improperly.</p>\n<p>Despite it being a minor release that should be fully backwards compatible with previous releases up to 3.0, WooCommerce has removed 3.3 from the plugin directory and replaced it with 3.2.6.</p>\n<p>According <a href=\"https://woocommerce.wordpress.com/2018/02/01/woocommerce-3-3-1-status-update/\">to a post</a> on the project’s official blog, WooCommerce 3.3.1 will take the place of 3.3 and will include a fix for the category display issue.</p>\n<blockquote class=\"wp-block-quote\"><p>The issue affected themes with template overrides from 3.2.x which hadn’t been made compatible with 3.3. In general, <a href=\"https://github.com/woocommerce/woocommerce/wiki/Template-File-Guidelines-for-Devs-and-Theme-Authors#hook-vs-override---when-to-use-what\">we recommend that themes use hooks instead of template overrides.</a> Themes such as <a href=\"https://en-gb.wordpress.org/themes/storefront/\">Storefront</a> (which does not use template overrides) were compatible at launch.</p>\n<p><cite>WooCommerce Blog</cite></p></blockquote>\n<p>If you’ve already updated to WooCommerce 3.3 and your theme is compatible, you don’t need to make any changes. If your theme is not compatible, WooCommerce recommends checking with your theme’s author to see if a compatibility fix has been released.</p>\n<p>Users can also wait for the release of 3.3.1, update to the <a href=\"https://github.com/woocommerce/woocommerce/releases/tag/3.3.1-rc.1\">pre-release version</a> of 3.3.1, or use the <a href=\"https://wordpress.org/plugins/wp-rollback/\">WP-Rollback plugin</a> and revert back to 3.2.6. WooCommerce developers suggest only going the WP-Rollback route if you’re not comfortable installing pre-release software.</p>\n<p>Coen Jacobs, a former member of the WooCommerce development team, commented on Twitter that this was the first time he can remember that a release was reverted.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Fun fact: As far as I recall, there has never been a release of WooCommerce that has been withdrawn before. During my time on the development team we have pushed fix releases on the same day as a big releases, but never was it reverted like this.</p>\n<p>— Coen Jacobs (@CoenJacobs) <a href=\"https://twitter.com/CoenJacobs/status/958768816808497152?ref_src=twsrc%5Etfw\">January 31, 2018</a></p></blockquote>\n<p></p>\n<p>The development team has tested 3.3.1 with more than 40 different themes and believe it is stable. However, they are exercising caution and thoroughly testing the fixes with more themes. Users can expect to see 3.3.1 officially released the week of February 5th.</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, 02 Feb 2018 07:06: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: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:81:\"WPTavern: WPWeekly Episode 303 – Interview With Zac Gordon, Technology Educator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=77901&preview=true&preview_id=77901\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/wpweekly-episode-303-interview-with-zac-gordon-technology-educator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1902:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"http://zacgordon.com/\">Zac Gordon</a>. We discussed a wide range of topics including, balancing freelance work with educating, an overview of Gutenberg from an educator’s perspective, and potential brand issues if the Gutenberg name <a href=\"githubhttps://github.com/WordPress/gutenberg/issues/4681\">was deprecated</a>. We also talked about some of the difficulties involved with <a href=\"https://gutenberg.courses/\">creating a course</a> around a feature that’s not yet part of WordPress core.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://ithemes.com/2018/01/31/ithemes-joining-the-liquid-web-family/\">iThemes Acquired by LiquidWeb</a><br />\n<a href=\"https://woocommerce.com/2018/01/whats-new-woocommerce-3-3/\">WooCommerce 3.3 Released</a><br />\n<a href=\"https://wptavern.com/updraftplus-acquires-easy-updates-manager-plugin\">Easy Updates Manager Acquired by UpdraftPlus</a></p>\n<h2>Picks of the Week:</h2>\n<p>John James Jacoby suggested <a href=\"https://www.beamauthentic.com/\">Beam Authentic</a>. Beam Authentic is a wearable, connected, smart button that can be programmed to display different images through an app.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 7th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #303:</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, 01 Feb 2018 02:12: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: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:100:\"WPTavern: Efrain Rivera, A Longtime Community Member, WordCamp Organizer, and Volunteer, Passes Away\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77893\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/efrain-rivera-a-longtime-community-member-wordcamp-organizer-and-volunteer-passes-away\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2776:\"<p>Efrain Rivera, who helped organize and volunteer at numerous WordCamps in Florida has passed away at the age of 47. The news was shared on Facebook by his sister on January 28th.</p>\n<img />Efrain Rivera and his wife at WordCamp Miami. Photo courtesy of David Bisset\n<p>David Bisset, organizer of WordCamp Miami and a well-known figure in the Florida WordPress community, <a href=\"http://davidbisset.com/efrain-rivera/\">shared his thoughts</a> on Rivera’s passing.</p>\n<blockquote><p>Efrain wasn’t just a fellow organizer, but also a supporter of the local WordPress meetups. There was no ulterior motive in anything that he did. Never once did he ask for anything – he was just happy to be there and help out. He was 100% about giving back to the WordPress community, but even if the community didn’t exist he would find a way to help out folks.</p>\n<p>Efrain wasn’t just a supporter and volunteer. He was a good friend to have – someone you could speak frankly too.</p></blockquote>\n<p>Rivera is being remembered as a kind, compassionate, and happy person by members of the community.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I’m so sorry, he was a pleasure volunteering with, <a href=\"https://twitter.com/EfrainWp?ref_src=twsrc%5Etfw\">@EfrainWp</a> was always happy to help and answer questions.</p>\n<p>— Rian M. Kinney, Esq. (@TheKinneyFirm) <a href=\"https://twitter.com/TheKinneyFirm/status/958855848784252928?ref_src=twsrc%5Etfw\">February 1, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I remember his kindness David. What a great person and sad loss.</p>\n<p>— Diane Kinney (@dkinney) <a href=\"https://twitter.com/dkinney/status/958858994843611138?ref_src=twsrc%5Etfw\">February 1, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Efrain was one of happiest, smiliest, caring people I’d ever hung out with at any WordPress event. <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/qW7ChUmjX0\">https://t.co/qW7ChUmjX0</a></p>\n<p>— J ³ (@JJJ) <a href=\"https://twitter.com/JJJ/status/958448885030182913?ref_src=twsrc%5Etfw\">January 30, 2018</a></p></blockquote>\n<p></p>\n<p><a href=\"https://memorials.serenitymemorialchapels.com/efrain-rivera/3417849/obituary.php\">Memorial services are scheduled</a> for Saturday, February 3, 2018 from 4:00 P.M.-9:00 P.M. EST at Serenity Funeral Home and Cremation, 1450 S State Road 7, North Lauderdale, Florida 33068. The service will take place during visitation at 7PM. If you have any memories of meeting or hanging out with Efrain at any of the WordPress events in Florida, please share them in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Feb 2018 01:13:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:44:\"Post Status: Liquid Web has acquired iThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=41738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/liquid-web-acquired-ithemes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5096:\"<p><a href=\"https://www.liquidweb.com/\">Liquid Web</a> has acquired <a href=\"https://ithemes.com/\">iThemes</a>, in an all cash deal that includes the entire iThemes team moving over to Liquid Web as an independent unit. Cory Miller — CEO of iThemes — will be the Business Manager of the new unit, with iThemes COO Matt Danner as the Director of Technology and Operations for iThemes. The entire team of twenty three people is staying on, and will continue to be headquartered in Oklahoma.</p>\n<p>This is not the first or last time we’ll see longstanding WordPress companies get rolled into large hosting providers. It’s a trend that is natural in any ecosystem as it matures, and iThemes was a clear and quality candidate for a host to target. Cory said the culture around Liquid Web, including their “heroic support,” but also the quality he sees in their management team, was a key motivator for them to go work with Liquid Web.</p>\n<p>As hosting companies evolve more and more to provide broader services for customers with managed WordPress offerings, there is less room for utility product creators to fill that gap.</p>\n<p>Backups are a fine example: customers may see less need for external backups if they have confidence that their hosting is managing backups properly. Security is another. These have been great products for iThemes, and still are — but their current markets are more for hosts without a managed experience, and that slice of the pie has been narrowing.</p>\n<p>iThemes has had a partnership with Liquid Web for about a year and a half now, which started by licensing iThemes Sync for Liquid Web’s WordPress hosting offering. They’ve slowly been integrating more features into the platform, and the acquisition will allow Liquid Web to further integrate iThemes’ offerings, and allow iThemes to improve some of their product offerings with the backing of Liquid’s Web’s hosting infrastructure.</p>\n<p>I spoke to Cory Miller about the move, which is occurring not long after iThemes’ ten year anniversary in business. He said he looks back every year and sees them as chapters in the iThemes story, and this feels just the same. He’s excited about what the backing from Liquid Web will allow them to do, and most importantly for him, the ability to keep supporting the team they have built over the years.</p>\n<p>Cory tells me he’s amazed that they’ve been able to build the company they have built, and neither he nor his business partners would have imagined it ten years ago. All equity holders had their shares purchased by Liquid Web, and Cory and the team will be Liquid Web employees.</p>\n<p>iThemes has iterated on the business many times over the years — as the name implies. Their theme business slowly dwindled in terms of the overall ratio of sales revenue it provided. BackupBuddy has long been a flagship, and they’ve found great success the past couple of years since they acquired and iterated on the iThemes Security product. He said that it took them experimenting a great deal — and like Exchange for eCommerce, and others — it didn’t always work out the way they hoped. But because they stayed agile and kept working at it, they’ve consistently been able to grow and diversify their product line.</p>\n<p>One practical component Liquid Web will be able to provide, as an example, is their data centers to power BackupBuddy and iThemes Stash storage and processing. iThemes has historically used Amazon, which Cory said really adds up and has started to eat into their own margins. Liquid Web will help them not only improve the offering but also to be able to perform those functions more affordably.</p>\n<p>For Liquid Web, this acquisition furthers their goal to integrate WordPress-specific functionality into their suite of WordPress hosting tools. They recently launched WooCommerce hosting on their platform, and the iThemes Sales Accelerator product can now be a core component of that offering. Additionally, the technology iThemes has built with BackupBuddy and Sync will further add to their platform.</p>\n<p>Beyond the technology and products, Liquid Web Vice President of Products and Innovation Chris Lema tells me it’s about the team:</p>\n<blockquote><p>This adds so much to what we’re doing with managed WordPress and managed WooCommerce, that it just made a lot of sense — both from a product perspective, and even more from a team perspective.</p></blockquote>\n<p>Having spent a lot of time with the management teams for each of these companies, I would agree that the culture fit is a really good one. And for Liquid Web, a company continuing to make its big push into the WordPress market, it is a solid strategic acquisition move that offers product dividends but more importantly adds a great and experienced WordPress team to their company.</p>\n<p><a href=\"https://ithemes.com/2018/01/31/ithemes-joining-the-liquid-web-family/\">Cory shares more</a> about the news on the iThemes blog.</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, 31 Jan 2018 17:12:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:60:\"HeroPress: The Journey: Curiosity, Challenge, Transformation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2431\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:158:\"https://heropress.com/essays/journey-curiosity-challenge-transformation/#utm_source=rss&utm_medium=rss&utm_campaign=journey-curiosity-challenge-transformation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9293:\"<img width=\"960\" height=\"480\" src=\"https://heropress.com/wp-content/uploads/2018/01/013118-2-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: My place in the world has transformed.\" /><p>When I look back on the past five years I’ve been working with WordPress, I feel the real weight of the journey I’ve had to get where I am. Much of it has been filled with challenge of both of the difficult and welcome variety. I’m an optimist and problem-solver to the core, but I sometimes wonder how I got through these past years. One thing is for certain, my involvement with WordPress, the opportunities and community around it, has been a force for so much good, motivation, and satisfaction in my life.</p>\n<h2>The Beginning</h2>\n<p>When I was introduced to WordPress, I was going through one of the most trying times of my adult life. My dad had suddenly passed away just a few years before. We didn’t have the best relationship, but his quirkiness, interest in esoteric things, and passion for food certainly rubbed off on me.</p>\n<p>I was living with roommates, but moved back home to be with my mom. Not too long after, she developed debilitating osteoarthritis in both of her hips. From a physically healthy yet grieving 52-year-old woman to eventually becoming handicap and walker-bound, needless to say, impacted our lives greatly. I became her caretaker, and I also worked retail part-time for the flexible schedule.</p>\n<blockquote><p>I felt emotionally exhausted, uninspired and quite lost with what my next steps would be.</p></blockquote>\n<p>I grew up using the internet fervently as a youth and in my college years. I met new friends, learned new skills, and traveled to new places thanks the endless source of information it provided for my active mind. So when a friend, now my mentor, John Bolyard, approached me to help him in his web marketing and development consultancy using “WordPress” I just said “yes.” It was mysterious, being unknown to me, and intriguing, which is usually a green light in my book!</p>\n<p>I started doing administrative work on a website he helped develop for a national guild. Like many situations, he had finished their website and they would circle back to him for minor updates. I took on the minor updates, started tinkering on my own, and fell in love in the process.</p>\n<p>The accessibility with which one could make changes and produce content dynamically was just mind blowing to me. It was my gateway to web development and now I could make web content with the ability to work with code, if I so chose. It seemed an endless source of learning and knowledge- it was a great fit.</p>\n<h2>Levelling Up</h2>\n<p>That went well and he brought me on a larger project to help the artist, Dorothy Braudy, create her website archive. I was able to blend my affinity for the technical and handy visual memory to help an all around amazing person (she’s still one of closest people in my life) tell her story through her art. I was thrilled to have the challenge and the privilege to bring her vibrant and prolific work (hundreds of pieces) to the web.</p>\n<p>I also started assisting John with teaching WordPress classes at SCORE, a government organization that helps people develop and sustain small businesses.</p>\n<blockquote><p>We volunteered our time teaching business owners WordPress to help them build their own websites.</p></blockquote>\n<p>It was challenging yet rewarding to see them feel empowered that they could take a hands-on role in making their web presence.</p>\n<p>Nevertheless, I ended up with several clients and that’s how my freelancing career began :). I also started going to meetups. John brought me to my first one in the San Fernando Valley. I was like wait…this software is cool and people gather to talk about it? I can also learn stuff too?! Get outta town!</p>\n<p>Well, I started attending fairly frequently. Particularly, the meetup in the West Valley lead by Andrew Behla (then at the Topanga Canyon Library). I soaked up info from presentations given by Roy Sivan, Suzette Franck, and Lucy Beer (who is now my teammate). Just to name a few ;).</p>\n<p>After building a consistent client base, I also started working part-time as a project assistant at a boutique museum exhibit development firm. My first project was for the Huntington Library, Art Collections and Botanical Gardens supporting the development of an educational WordPress website for their Junípero Serra exhibition. What were the chances? My skills in WordPress proved helpful for the project and the firm’s website.</p>\n<h2>Pivoting</h2>\n<p>At this point, I had seen my mom through her first hip replacement and recovery, and she was moving on to her next one. I thought about where I saw myself and also where I could build a sustainable future given the circumstances. I thought WordPress, and so I did a trial as a Happiness Engineer at WordPress.com.</p>\n<p>While I didn’t get the position, I met some great people and learned exponentially more in that short time than I had on my own. More so, I learned about the users, WordPress’ strengths and weaknesses, and how to fill that gap in an accessible way. I was sad, but also motivated. I took on more client work and just did the thing.</p>\n<p>After three years, it was time to leave the exhibit development firm. It was fascinating, it provided me a design, development and project management vocabulary I had never encountered before. However, I needed a firmer career path and I still thought WordPress. My mom was recovered, I had also just recovered from some health issues, and I knew it was time for a change.</p>\n<p>While doing client work for several months, I also explored options on how I could “level up.” Maybe it was my time to dig into web development: should I learn on my own, go to a school?</p>\n<blockquote><p>In my gut, I knew I had to find work that supported my endeavors, so I started applying in the WordPress and tech ecosystem.</p></blockquote>\n<p>I networked, attended workshops, and met some awesome folks in the local tech and WordPress communities. I was also approached about joining the organizer team for WordCamp Los Angeles (WCLAX). I said “yes” (that magic word) and last year we had a great event.</p>\n<p>When we started planning, I had also heard from WP Media, (the company behind the WP Rocket and Imagify plugins), that I was hired for their Customer Support position. We’re a remote crew spread across 8 countries. However, I’ve been lucky enough to spend time with them at WordCamp Europe, WordCamp US, and our annual retreat last year.</p>\n<h2>Transformation</h2>\n<p>My place in the world has transformed. I’ve traveled to places once out of reach, work every day with some of the most brilliant and kind people in the WordPress space, and grow day by day with new challenges and opportunities. I’m happy, mom is healthy, and the journey continues…</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: The Journey: Curiosity, Challenge, Transformation\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=The%20Journey%3A%20Curiosity%2C%20Challenge%2C%20Transformation&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fjourney-curiosity-challenge-transformation%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: The Journey: Curiosity, Challenge, Transformation\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fjourney-curiosity-challenge-transformation%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fjourney-curiosity-challenge-transformation%2F&title=The+Journey%3A+Curiosity%2C+Challenge%2C+Transformation\" rel=\"nofollow\" target=\"_blank\" title=\"Share: The Journey: Curiosity, Challenge, Transformation\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/journey-curiosity-challenge-transformation/&media=https://heropress.com/wp-content/uploads/2018/01/013118-2-150x150.jpg&description=The Journey: Curiosity, Challenge, Transformation\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: The Journey: Curiosity, Challenge, Transformation\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/journey-curiosity-challenge-transformation/\" title=\"The Journey: Curiosity, Challenge, Transformation\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/journey-curiosity-challenge-transformation/\">The Journey: Curiosity, Challenge, Transformation</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Jan 2018 11:00:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Renee Johnson\";s: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:84:\"WPTavern: WooCommerce 3.3 Increases Theme Compatibility, Auto Regenerates 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77795\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/woocommerce-3-3-increases-theme-compatibility-auto-regenerates-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3108:\"<p>WooCommerce 3.3 <a href=\"https://woocommerce.com/2018/01/whats-new-woocommerce-3-3/\">is available</a> and is considered a minor release. Based on the project’s <a href=\"https://github.com/woocommerce/woocommerce/wiki/Roadmap-and-release-process\">new release process</a>, it should be fully backwards compatible with previous releases up to 3.0.</p>\n<p>The orders screen has been redesigned with large buttons that indicate an order’s status. You can also view an order’s details from the order screen without having to edit the order.</p>\n<img class=\"aligncenter\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/01/WC33OrdersScreen.png?w=627&ssl=1\" alt=\"\" width=\"627\" height=\"261\" />WooCommerce 3.3 Orders Screen\n<p>For products that are on backorder and have stock management enabled, WooCommerce 3.3 will automatically transition from ‘In stock’ to ‘On backorder’ or ‘Out of stock’ as the inventory decreases. Once inventory is added, the status will switch back to ‘In Stock’.</p>\n<img class=\"aligncenter\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/01/WC33OrderStatus.png?w=627&ssl=1\" alt=\"\" width=\"627\" height=\"328\" />WooCommerce 3.3 Order Status Screen\n<p>For full compatibility, users generally needed to use a WordPress theme that specifically supported WooCommerce. In 3.3, improvements have been made so that WooCommerce renders on themes that don’t fully support it, making it compatible with nearly every WordPress theme.</p>\n<p>Users can now set the number of columns and rows for shops with the ability to preview the results live via the Customizer. The columns will resize to fill the entire width of the area and is available on all themes.</p>\n<p>In earlier versions of WooCommerce, shop owners needed to use the <a href=\"https://wordpress.org/plugins/regenerate-thumbnails/\">Regenerate Thumbnails</a> after updating a product’s image as WordPress did not automatically resize the image and generate new thumbnails. WooCommerce 3.3 adds on-the-fly thumbnail regeneration and background thumbnail resizing.</p>\n<p>In addition, users can customize the aspect ratios of product images. The choices are classic square images, custom cropped images, or uncropped images</p>\n<img class=\"aligncenter\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/01/WC33ImageAspectRatio.png?w=627&ssl=1\" alt=\"\" width=\"627\" height=\"402\" />WooCommerce 3.3 Image Aspect Ratio Options\n<p>Shop owners can now view logs of product downloads with a couple of built-in filters including, by order, by product, by customer, and by file. You can also search for extensions now from the Extensions administration screen.</p>\n<p>WooCommerce 3.3 includes more features and changes than what’s listed here. For a detailed overview of what’s new in 3.3, <a href=\"https://github.com/woocommerce/woocommerce/blob/release/3.3/readme.txt\">check out the changelog</a>. If you think you’ve discovered a bug, please report it on the <a href=\"https://github.com/woothemes/woocommerce/issues\">project’s GitHub page</a>.</p>\n<p><!-- /wp:core/paragraph --></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jan 2018 22:53:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:48:\"Mark Jaquith: Simple WordPress deploys using Git\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://markjaquith.wordpress.com/?p=5422\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://markjaquith.wordpress.com/2018/01/30/simple-wordpress-deploys-using-git/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3328:\"<p>A few weeks back, Clifton Griffin asked me a question about deploying WordPress sites:</p>\n<div class=\"embed-twitter\">\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/markjaquith?ref_src=twsrc%5Etfw\">@markjaquith</a> Hey Mark, quick question: Do you still use and recommend Capistrano?</p>\n<p>— Clifton Griffin (@clifgriffin) <a href=\"https://twitter.com/clifgriffin/status/948373150680707073?ref_src=twsrc%5Etfw\">January 3, 2018</a></p></blockquote>\n<p></div>\n<p>I <b>do not</b> use Capistrano for deployments anymore, for one simple reason: it was massive overkill for most of the sites I manage, and maintaining it was not worth the benefit.</p>\n<p>My current deployment system for WordPress sites is simple: I use Git.</p>\n<p>I’m already using Git for version control of the site’s code, so using Git for deployments is not that much more work. There are a few ways to do this, but the simplest way is to just make your site root a Git checkout of your site files.</p>\n<p>Then, if your server has read-access to your Git remote, you can run some Git commands to sync everything. Here are your options:</p>\n<ol>\n<li><strong>git pull</strong> — Simple, but might fail if someone naughty has made code modifications on the server.</li>\n<li><strong>git fetch && git reset –hard origin/master</strong> — The hard reset method will wipe any local modifications that someone has mistakenly made.</li>\n</ol>\n<p>But wait. Before you implement this, it is very important that you ensure that your server’s <strong>.git</strong> directory is not readable, as it might be able to leak sensitive information about your site’s code. How you do this will depend on what web server you’re running. In Nginx, I do the following:</p>\n<pre class=\"brush: plain; title: ; notranslate\">location ~ /\\.(ht[a-z]+|git|svn) {\ndeny all;\n}</pre>\n<p>In Apache, you could put the following in your <strong>.htaccess</strong> file:</p>\n<pre class=\"brush: plain; title: ; notranslate\">RedirectMatch 404 /\\.git</pre>\n<p>SSHing into your server every time is tedious, so let’s script that:</p>\n<pre class=\"brush: bash; title: ; notranslate\">#!/bin/bash\nssh example.com \'cd /srv/www/example.com && git pull\'</pre>\n<p>Save that to <strong>deploy.sh</strong> in your Git repo, run <strong>chmod +x deploy.sh</strong>, and commit it to the repo. Now when you’re ready to deploy the site, just type <strong>./deploy.sh</strong> and the public site will pull down the latest changes from your main Git remote.</p>\n<p>Bonus points if you make <strong>deploy.sh</strong> take an optional commit hash, so you can also use this tool to roll back to a previous hash, in case a commit goes wrong.</p>\n<p>This method has served me well, for years, and has required no maintenance.</p>\n<p>What methods are you using for WordPress code deploys?</p>\n<hr />\n<p><b>Do you need <a href=\"https://coveredwebservices.com/\">WordPress services?</a></b></p>\n<p>Mark runs <a href=\"https://coveredwebservices.com/\">Covered Web Services</a> which specializes in custom WordPress solutions with focuses on security, speed optimization, plugin development and customization, and complex migrations.</p>\n<p>Please reach out to start a conversation!</p>\n[contact-form]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jan 2018 15:31: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:12:\"Mark Jaquith\";s: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:58:\"WPTavern: UpdraftPlus Acquires Easy Updates Manager 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:29:\"https://wptavern.com/?p=77700\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/updraftplus-acquires-easy-updates-manager-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:2048:\"<p><a href=\"https://updraftplus.com/\">UpdraftPlus</a>, a popular WordPress backup plugin actively installed on more than 1 million sites has acquired the <a href=\"https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/\">Easy Updates Manager</a> plugin for an undisclosed amount.</p>\n<p>Easy Updates Manager disables core, theme, and plugin updates in WordPress and provides granular control over them. It was created in 2015, is actively installed on more than 100K sites, and is maintained by <a href=\"https://profiles.wordpress.org/kidsguide/\">Matthew Sparrow</a>, <a href=\"https://profiles.wordpress.org/ronalfy/\">Ronald Huereca</a>, <a href=\"https://profiles.wordpress.org/roary86/\">Roary Tubbs</a>, and <a href=\"https://profiles.wordpress.org/bigwing/\">BigWing Interactive</a>.</p>\n<img />Easy Updates manager User Interface\n<p>Burnout was a contributing factor for selling the plugin. “Matthew Sparrow and I were both burnt out on the project, so the offer to sell was a no-brainer,” Huereca said. “It’s bittersweet letting our baby go, but it’s in good hands.”</p>\n<p>Without proper vetting, selling established plugins to individuals or companies can be harmful to sites and tarnish its reputation. Because UpdraftPlus is a well established company, Huereca didn’t have to do a lot of research.</p>\n<p>“We were looking for more backend plugins that we understand and it’s a great plugin, highly rated and growing,” A company representative said. “Updates and backups go hand-in-hand as people should really backup before updating.”</p>\n<p>UpdraftPlus will focus its marketing efforts towards <a href=\"https://updraftplus.com/updraftcentral/\">UpdraftCentral</a> later this year. UpdraftCentral provides the ability for users to update, backup, and manage their sites from one dashboard. Easy Updates Manager and UpdraftCentral are complimentary products.</p>\n<p>Users can expect to see more updates later this year and continued refinement of the user interface.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jan 2018 00:30: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: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:61:\"BuddyPress: BuddyPress 2.9.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=270325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://buddypress.org/2018/01/buddypress-2-9-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1312:\"<p>BuddyPress 2.9.3 is now available. This is a security and maintenance release. We strongly encourage all BuddyPress sites to upgrade as soon as possible.</p>\n<p>The 2.9.3 release addresses two security issues:</p>\n<ul>\n<li>A dynamic template loading feature could be used in some cases for unauthorized file execution and directory traversal. Reported by <a href=\"https://pritect.net\">James Golovich</a>.</li>\n<li>Some permissions checks and path validations in the attachment deletion process were hardened. Reported by <a href=\"https://www.ripstech.com/\">RIPSTech</a> and <a href=\"https://profiles.wordpress.org/slaFFik/\">Slava Abakumov</a> of the BuddyPress security team.</li>\n</ul>\n<p>These vulnerabilities were reported privately to the BuddyPress team, in accordance with <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">WordPress’s security policies</a>. Our thanks to all reporters for practicing coordinated disclosure.</p>\n<p>In addition, 2.9.3 includes a change that fixes the ability to install legacy bbPress 1.x forums. Please note that legacy forum support will be removed altogether in BuddyPress 3.0; see <a href=\"https://bpdevel.wordpress.com/2017/12/07/legacy-forums-support-will-be/\">the announcement blog post</a> for more details.</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, 26 Jan 2018 18: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Boone Gorges\";s: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:61:\"Post Status: WordPress Market Opportunities — 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=41485\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://poststatus.com/wordpress-market-opportunities-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:2459:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Brian and Brian discuss market segmentation across the WordPress ecosystem. The focus for this discussion focused entirely on the entry-level segment of site assemblers and their small-business clients as well as the mid-level market of contractors and agencies selling additional levels of service. The duo talked through a few different strategies employed in each segment, including service differentiation, regional focus, building a network of complementary contractors, systemizing processes, delivering quality customer support flow, and selling ongoing service.</p>\n<p>In addition to this look at market segmentation, the Brians shared a few useful resources for both Gutenberg and WP-CLI.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li>Mike McAlister’s <a href=\"http://gutenberg.news/\">Gutenberg News</a></li>\n<li>Ahmed Awais’s <a href=\"https://github.com/ahmadawais/create-guten-block\">create-gutenberg-block</a></li>\n<li>Delicious Brain’s <a href=\"https://deliciousbrains.com/wordpress-cli-packages-review/\">WP-CLI packages reviews</a></li>\n<li>WordPress Website: <a href=\"https://poststatus.com/wordpress-website-cost/\">How much should it cost?</a></li>\n<li><a href=\"https://wpsessions.com/sessions/selling-ongoing-service/\">Selling Ongoing Services with Sara Dunn</a></li>\n</ul>\n<h3>Sponsor: iThemes</h3>\n<p>This episode is sponsored by <a href=\"https://ithemes.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">iThemes</a>. The team at iThemes offers WordPress plugins, themes and training to help take the guesswork out of building, maintaining and securing WordPress websites. For more information, check out their <a href=\"https://ithemes.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">website</a> and thank you to iThemes for being a Post Status partner.</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, 26 Jan 2018 16:50: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: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: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:72:\"WPTavern: WPWeekly Episode 302 – Brian Gardner, Founder of StudioPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=77689&preview=true&preview_id=77689\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/wpweekly-episode-302-brian-gardner-founder-of-studiopress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1338:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://briangardner.com/\">Brian Gardner</a>, founder of <a href=\"https://www.studiopress.com/\">StudioPress</a>. We talk about the past, present, and future of the company including various milestones such as the Genesis framework and merger with CopyBlogger Media in 2010. We also discuss the community surrounding StudioPress’ products and the role it plays in the company’s continued success.</p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://wptavern.com/new-toolkit-simplifies-the-process-of-creating-gutenberg-blocks\">Ahmad Awais Create Guten Block toolkit</a>.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 31st 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #302:</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, 26 Jan 2018 04:15:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:38:\"WPTavern: WordPress Turns 15 Years Old\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordpress-turns-15-years-old\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1120:\"<p><!-- wp:core/paragraph --><br />\nWordPress, the free open source project, <a href=\"https://ma.tt/2003/01/the-blogging-software-dilemma/\">turns 15 years</a> old today. Here is the comment that started it all.<br />\n<!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/image {\"id\":51095} --></p>\n<img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/MikeLittleForkB2Comment.png?w=627&ssl=1\" alt=\"Mike Little's Comment\" />Mike Little's Comment\n<p><!-- /wp:core/image --></p>\n<p><!-- wp:core/paragraph --><br />\nIn addition to celebrating 15 years as a successful software project, it's also a good opportunity to reflect on the number of people across the world who are making a great living and <a href=\"http://heropress.com/\">turning dreams into reality</a> thanks to the project.<br />\n<!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --><br />\nThank you Matt Mullenweg and Mike Little for creating WordPress, its contributors for keeping the ball rolling all these years, and providing opportunities for so many people. Happy birthday WordPress!<br />\n<!-- /wp:core/paragraph --></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, 26 Jan 2018 03:41:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:73:\"WPTavern: WordCamp Miami Celebrates Its 10th Consecutive Year March 16-18\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77595\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordcamp-miami-celebrates-its-10th-consecutive-year-march-16-18\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3689:\"<p><!-- wp:core/paragraph --></p>\n<p><a href=\"https://2018.miami.wordcamp.org/\">WordCamp Miami</a> is celebrating its 10th anniversary on March 16-18th. This year's event is organized by twelve people and organizers expect more than 800 people to attend. Speakers will arrive from Italy, Germany, London, Brazil, and other international locations to share their knowledge.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>In addition to a <a href=\"https://2018.miami.wordcamp.org/kids/\">two-day Kids Camp</a> with a Kids Panel, WordCamp Miami will feature two new workshops. The first is developer focused and will prepare developers for <a href=\"https://2018.miami.wordcamp.org/2017/12/19/developer-workshop-announcement-future-of-wordpress/\">the future of WordPress</a>. The second is <a href=\"https://2018.miami.wordcamp.org/2017/12/21/ecommerce-workshop-coming-to-wcmia/\">focused on eCommerce</a>.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Attendees will receive their own site and be able to apply what they've learned to it. The sites will have pre-installed plugins and access to various tools mentioned by the workshop teachers.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>The 'Learn JavaScript Deeply' track is returning this year, featuring local and international JavaScript developers. This is the third time WordCamp Miami has had this track and according to David Bisset, one of the organizers, the focus will be on JavaScript basics, React, plus using JavaScript to create 'cool and unique' projects with or without WordPress.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Joshua Strebel, Syed Balkhi, and Christie Chirinos will highlight Saturday's business track. </p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>For the first time in recent years, WordCamp Miami will have a closing keynote on Saturday, March 17th by John James Jacoby. Jacoby was one of the founders of WordCamp Miami a decade ago, and his talk will cover both nostalgic moments and what the future of WordPress holds for users.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Finally, WordCamp Miami will be doing a 'game show hour' before the official after party. \"We wanted to do something fun and interactive for everyone – and we think we found a great way to segue people from the talks to unwinding at the after party,\" Bisset explained. </p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>\"We are even planning on having our sponsors form teams in a trivia contest battle. There will be provisions at the party for those who want to network or just relax in a quiet setting.\"</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Bisset praised volunteers and organizers for helping make 10 years of WordCamp Miami a reality.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>\"Each and every one of our organizers and speakers deserve a huge amount of thanks and praise for their hard work.\" He said. \"We couldn't have done ten years without the support of the WordPress community.\"</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Tickets are <a href=\"https://2018.miami.wordcamp.org/tickets/\">on sale</a> with a number of purchasing options. Workshops cost $15 each and general admission tickets are $40 each. General admission tickets provide access to Saturday and Sunday sessions, lunch, swag, and the after party. </p>\n<p><!-- /wp:core/paragraph --></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, 25 Jan 2018 01:56: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: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:30:\"HeroPress: Believe In Yourself\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2420\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://heropress.com/essays/believe-in-yourself/#utm_source=rss&utm_medium=rss&utm_campaign=believe-in-yourself\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10510:\"<img width=\"960\" height=\"480\" src=\"https://heropress.com/wp-content/uploads/2018/01/012418-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Working in WordPress has allowed my curiosity to run wild.\" /><p>You ever have a moment where you blink your eyes and you wonder how you’ve gotten to where you are today? I’m having one of those moments right now as I sit here to share my story with you. It’s bizarre to think of how far I’ve come because I truly thought that I was not good enough to be where I am today. Let’s get into it.</p>\n<h3>The Beginning</h3>\n<p>As a child, I was always around technology. My dad was a computer scientist and considered it a great idea to get each of his four children their own computer so they would stay away from his. So as the years went by with system administrative tasks being “one of the hard-knocks of life”, I went off to Drexel University in 2005 to pursue a degree in Computer Science. I remember when I walked into my first class and instantly saw how different I was. Everyone was white. Everyone was male. And I was not. In fact, I couldn’t even check off one of those boxes. I was opposite. I was female and I was black.</p>\n<p>The first year pursuing my degree actually went really well and finished off the year, completing my C++ final project to create a matching cards game using objects and classes. All was swell. I found that I was doing just as well as everyone else. And I found that was struggling in certain areas just like everyone else.</p>\n<h3>Leaning In</h3>\n<p>Next semester came and that’s when the more difficult course load began. There was one class in particular called “Data Algorithms & Theories” that was incredibly and frustratingly difficult. As someone who always wanted to do well and is inclined to beat herself up for not being “perfect”, it was an incredibly stressful time for me. But once again, I was not the only one who was struggling because the class was difficult for all of my classmates. But as the class progressed, I decided to step out of my comfort zone and ask for help. This was the first time I would actually utilize the teaching assistant (TA) that was often present during this class. So our scheduled meeting comes around and it doesn’t go as I’d hoped. It wasn’t at all a welcoming atmosphere.</p>\n<blockquote><p>The demeanor of the TA made it clear that he didn’t want to be there but my happy-go-lucky personality brushed it aside.</p></blockquote>\n<p>To make things worse, I wasn’t understanding the “simple” concepts that he was explaining and was subject to the TA’s dismissive glances of judgement and shame. I remember at one point, my mind shifted into trying to make him like me rather than realize that he was discriminating against me. Then he said to me “You know, maybe this just isn’t for you. I’ve explained this to you multiple times and you’re just not getting.” This was a very upsetting moment in my life because someone who was supposed to be helping me learn was telling me that you’re too stupid to learn. Needless to say, I left that session very upset and I ultimately ended up changing my major to something “easier” because apparently it “wasn’t for me”.</p>\n<h3>Accepting A Career</h3>\n<p>After I graduated in 2010 with my degree in Information Technology, I moved to DC to pursue an unfulfilling Systems Engineering career in government contracting. Don’t get me wrong. I learned a plethora of valuable skills that I will use for the rest of my life. But I wasn’t doing something that was enriching me. Not only that, I was often made to feel ostracized in the work culture because of the lack of diversity.</p>\n<blockquote><p>I’m not sure if anyone’s told you…but it’s extremely hard being a minority and working with people who don’t look like you and who can’t relate to you.</p></blockquote>\n<p>If someone said something racially insensitive or offensive (and there have been multiple instances), that was always a battle I had to fight on my own. And to be honest, sometimes I didn’t fight because I knew no one would give a damn and the person would get away with it with a slap on the wrist.</p>\n<h3>Remembering Joy</h3>\n<p>So in the mist of all of this, no matter how upset, beaten-up and angry I felt after a work day, I could always come back to my love for the metal music genre. I would spend so much time listening to new metal music after work that co-workers nicknamed me “the DJ”. Which isn’t completely untrue. In college, one of my extracurriculars was to host a weekly metal radio show on the college radio station. But I didn’t have that anymore so I essentially felt a bit lost.</p>\n<p>That’s when I decided to get it back! Not in the form of an actual radio show. But in the form of a metal music blog. Outside of having played around with making marque-filled pages on GeoCities and changing the backgrounds of my MySpace and Xanga profiles to be neon-colored or highly pixelated images, I didn’t have any experience making a website. So I GOOGLED it! And in that research I learned how hosting providers work and the best blogging platform for me to use for my blog. And that platform was WordPress. So in 2015, I launched my first website ever on WordPress: metalandcoffee.com. And this point I didn’t really know anything super WordPress-nerdy outside of being able to select a theme and add/organize content on the navigation bar. But I finally had my own voice live and anyone can see it!</p>\n<h3>Looking Deep</h3>\n<p>Now – the year was 2017 and words cannot describe how miserable I am in my current work position. I thought transferring to a position within the company that brought me back to Philadelphia would help my pain and suffering but it only numbed it for a couple months. I still didn’t like the environment, I didn’t like what I was doing, and although I was able to look at the occasional code snippet that would give me a spark of confidence when I understood what the code was doing, I wasn’t given an opportunity to be on the other side. This is what lit a fire under me to finally do everything in my power to move towards a developer career. I felt like that was where I was supposed to be. Sure, I was told that I wasn’t smart enough to be anywhere near code but why did it excite me to see it and recognize it? Why was I able to troubleshoot errors even though I wasn’t a developer? Why was I excelling at quality assuring software by being able to understand the code’s logic thus thinking of scenarios that were unaccounted for?</p>\n<h3>Breaking Through</h3>\n<p>So I signed up for a couple online courses focused on web development and eventually found myself having been accepted to <a href=\"http://www.interactivemechanics.com/fellowship\">a front-end developer fellowship program</a> that provided me with an amazing mentor and a final project to work towards. For my final project, I chose to learn how to create a custom WordPress theme for my Metal & Coffee website because the current one that I was using did not fully suite my needs.</p>\n<blockquote><p>And there you have it – throughout the next 9 months, the doubt and shame instilled in me since college kept coming up and I kept having to find ways to break through it whether it’d be a pep talk from my mentor, talking to developers who look like me (black women) or using meditation to help me through the anxiety.</p></blockquote>\n<p>And by the end of that, not only did I finish my final project (<a href=\"http://metalandcoffee.github.io\">http://metalandcoffee.github.io</a>) and come to really love WordPress theming, I got a job offer from Tracy Levesque and Mia Levesque to work at their WordPress web agency, <a href=\"https://www.yikesinc.com/\">Yikes Inc.</a></p>\n<h3>Finding My Place</h3>\n<p>Now, I’m a full-time WordPress developer and I couldn’t be more satisfied. Working at Yikes has sent my developer skills soaring over mountains and valleys. My curiosity is allowed to run wild and I’ve actually been diving into the plugin world, completely re-coding an internal plugin from the ground up and learning essential web programming practices in the process.</p>\n<p>My next goal in the WordPress community is to see more WordPress developers who look like me. And one step I’ve taken towards that goal is to co-teach a Intro to WordPress workshop at Codeland 2018 which I’m very excited (and nervous) for. And I’ll continue to be as visible and outspoken as possible to encourage diversity in this community.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Believe In Yourself\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Believe%20In%20Yourself&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbelieve-in-yourself%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Believe In Yourself\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbelieve-in-yourself%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbelieve-in-yourself%2F&title=Believe+In+Yourself\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Believe In Yourself\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/believe-in-yourself/&media=https://heropress.com/wp-content/uploads/2018/01/012418-150x150.jpg&description=Believe In Yourself\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Believe In Yourself\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/believe-in-yourself/\" title=\"Believe In Yourself\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/believe-in-yourself/\">Believe In Yourself</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jan 2018 13:00: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:\"Ebonie Butler\";s: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:73:\"WPTavern: New Toolkit Simplifies the Process of Creating Gutenberg Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77521\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/new-toolkit-simplifies-the-process-of-creating-gutenberg-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5470:\"<p><!-- wp:core/paragraph --></p>\n<p><a href=\"https://ahmadawais.com/\">Ahmad Awais</a>, who <a href=\"https://wptavern.com/gutenberg-boilerplate-demonstrates-how-to-build-custom-blocks\">created the Gutenberg Boilerplate</a> last year, has <a href=\"https://ahmadawais.com/create-guten-block-toolkit/\">released</a> a <a href=\"https://github.com/ahmadawais/create-guten-block\">Guten Block Toolkit</a>. The toolkit substantially simplifies the creation of Gutenberg Blocks by providing no configuration, one dependency, and no lock-in.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Awais created the toolkit after receiving feedback that configuring things like Webpack, React, ES 6/7/8/Next, ESLint, Babel and keeping up with their development was too difficult.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>\"Developers told me that they built Gutenberg blocks with ES5 because the amount of time required to configure, set up, and learn tools like Babel, Webpack, ESLint, Prettier, etc. wasn’t worth it,\" Awais said.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>\"So, yes! I went ahead and built a solution — a zero-config-js #0CJS WordPress developers’ toolkit called create-guten-block!\"</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Creating blocks using the toolkit is a three-step process. </p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Developers begin by installing Node version 8 or higher on a local server. The next step is to run the create-guten-block command and provide a name for the plugin that will be created. This command also creates the folder structure necessary to maintain the project. The last step is to run the NPM start command which runs the plugin in development mode.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Once these steps are completed, the WordPress plugin will be compatible with Gutenberg and have React.js, ES 6/7/8/Next, and Babel, which also has ESLint configurations for code editors to detect and use automatically. </p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>The Guten Block Toolkit comes with the following:</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/list --></p>\n<ul>\n<li>React, JSX, and ES6 syntax support. </li>\n<li>Webpack dev/production build process behind the scene. </li>\n<li>Language extras beyond ES6 like the object spread operator. </li>\n<li>Auto-prefixed CSS, so you don’t need -webkit or other prefixes. </li>\n<li>A build script to bundle JS, CSS, and images for production with source-maps. </li>\n<li>Hassle-free updates for the above tools with a single dependency cgb-scripts.</li>\n</ul>\n<p><!-- /wp:core/list --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>The project has received positive feedback, including from members of Gutenberg's development team.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/embed {\"url\":\"https://twitter.com/GaryPendergast/status/954559771910193152\"} --></p>\n\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Mad props to <a href=\"https://twitter.com/MrAhmadAwais?ref_src=twsrc%5Etfw\">@MrAhmadAwais</a> for making a super useful Gutenberg tool that I\'ve been really looking forward to! ?</p>\n<p>I\'m excited about the possibilities for this, and I love how it\'s embraced WordPress\' \"decisions, not options\" philosophy, doing all of the hard work for you. ?? <a href=\"https://t.co/hUAQVDL7S1\">https://t.co/hUAQVDL7S1</a></p>\n<p>— Gary (@GaryPendergast) <a href=\"https://twitter.com/GaryPendergast/status/954559771910193152?ref_src=twsrc%5Etfw\">January 20, 2018</a></p></blockquote>\n<p><br />\n\n<p><!-- /wp:core/embed --></p>\n<p><!-- wp:core/embed {\"url\":\"https://twitter.com/igorbenic/status/955539392273281025\"} --></p>\n\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Tried the <a href=\"https://t.co/WkvhwSVBh6\">https://t.co/WkvhwSVBh6</a> from <a href=\"https://twitter.com/MrAhmadAwais?ref_src=twsrc%5Etfw\">@MrAhmadAwais</a>, had a block within a minute. Now it\'s time to finish the <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a> course from <a href=\"https://twitter.com/zgordon?ref_src=twsrc%5Etfw\">@zgordon</a> to actually build something useful :D</p>\n<p>— Igor Benić (@igorbenic) <a href=\"https://twitter.com/igorbenic/status/955539392273281025?ref_src=twsrc%5Etfw\">January 22, 2018</a></p></blockquote>\n<p><br />\n\n<p><!-- /wp:core/embed --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>With a stable release now available to the public, Awais is working on <a href=\"https://github.com/ahmadawais/create-guten-block/issues/11\">2.0.0</a>. \"The next step is to get this toolkit tested and mature the entire app to release version 2.0.0 for that not only do I need your <a href=\"https://ahmadawais.com/contact/\">support</a>, I ask that you hop on board and contribute — that’s the only way forward,\" he said.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Create Guten Block Toolkit is <a href=\"https://github.com/ahmadawais/create-guten-block/blob/master/LICENSE\">MIT licensed</a> and available for free <a href=\"https://github.com/ahmadawais/create-guten-block\">on GitHub</a>. Contributions are welcomed! </p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p><!-- /wp:core/paragraph --></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, 24 Jan 2018 03:30:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:97:\"WPTavern: Free Conference Dedicated to WordPress in Higher Ed Takes Place January 30th at 9AM CST\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77514\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/free-conference-dedicated-to-wordpress-in-higher-ed-takes-place-january-30th-at-9am-cst\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1380:\"<p>If you’re interested in learning how WordPress is used in Higher Ed, tune in to <a href=\"https://online.wpcampus.org/\">WPCampus Online</a>, January 30th at 9AM Central Standard Time. WPCampus Online is a virtual conference that people can watch for free, no traveling necessary. The event uses <a href=\"https://www.crowdcast.io/\">Crowdcast</a> allowing viewers to switch between rooms, interact with each other, and ask questions.</p>\n<p>Some of the topics that <a href=\"https://online.wpcampus.org/schedule/\">will be presented</a> include, <a href=\"https://online.wpcampus.org/schedule/wordpress-and-real-world-data-with-students/\">WordPress and Real-World Data with Students</a>, <a href=\"https://online.wpcampus.org/schedule/headless-brainless-wordpress/\">Headless and Brainless WordPress</a>, and <a href=\"https://online.wpcampus.org/schedule/using-wordpress-support-run-student-government-elections/\">Using WordPress to Support and Run Student Government Elections</a>. If in-person conferences are more your style, keep an eye out for information on WPCampus 2018 tentatively planned for this Summer.</p>\n<p>To learn more about WPCampus and the people behind it, <a href=\"https://wptavern.com/wpweekly-episode-301-wordpress-in-highered-accessibility-and-more-with-rachel-cherry\">listen to our interview</a> with Rachel Cherry on episode 301 of WordPress Weekly.</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, 22 Jan 2018 22:14: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: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:70:\"Mark Jaquith: How I fixed Yoast SEO sitemaps on a large WordPress site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://markjaquith.wordpress.com/?p=5392\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://markjaquith.wordpress.com/2018/01/22/how-i-fixed-yoast-seo-sitemaps-on-a-large-wordpress-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4852:\"<p>One of my Covered Web Services clients recently came to me with a problem: <a href=\"https://yoast.com/wordpress/plugins/seo/\">Yoast SEO</a> sitemaps were broken on their largest, highest-traffic WordPress site. Yoast SEO breaks your sitemap up into chunks. On this site, the individual chunks were loading, but the sitemap index (its “table of contents”) would not load, and was giving a timeout error. This prevented search engines from finding the individual sitemap chunks.</p>\n<p>Sitemaps are really helpful for providing information to search engines about the content on your site, so fixing this issue was a high priority to the client! They were frustrated, and confused, because this was working just fine on their other sites.</p>\n<p>Given that this site has over a decade of content, I figured that Yoast SEO’s dynamic generation of the sitemap was simply taking too long, and the server was giving up.</p>\n<p>So I increased the site’s various timeout settings to 120 seconds.</p>\n<p><strong>No good.</strong></p>\n<p>I increased the timeout settings to 300 seconds. Five whole minutes!</p>\n<p><strong>Still no good.</strong></p>\n<p>This illustrates one of the problems that WordPress sites can face when they accumulate a lot of content: <strong>dynamic processes start to take longer</strong>. A process that takes a reasonable 5 seconds with 5,000 posts might take 100 seconds with 500,000 posts. I could have eventually made the Yoast SEO sitemap index work if I increased the timeout high enough, but that wouldn’t have been a good solution.</p>\n<ol>\n<li>It would have meant increasing the timeout settings irresponsibly high, leaving the server potentially open to abuse.</li>\n<li>Even though it is search engines, not people, who are requesting the sitemap, it is unreasonable to expect them to wait over 5 minutes for it to load. They’re likely to give up. They might even penalize the site in their rankings for being slow.</li>\n</ol>\n<p>I needed the sitemap to be reliably generated without making the search engines wait.</p>\n<p><strong>When something intensive needs to happen reliably on a site, look to the command line.</strong></p>\n<h2>The Solution</h2>\n<p>Yoast SEO doesn’t have <a href=\"http://wp-cli.org/\">WP-CLI</a> (WordPress command line interface) commands, but that doesn’t matter — you can just use <a href=\"https://developer.wordpress.org/cli/commands/eval/\"><b>wp eval</b></a> to run arbitrary WordPress PHP code.</p>\n<p>After a little digging through the <a href=\"https://github.com/Yoast/wordpress-seo/blob/46802dbcf8e7d2ac0d6552f4de0923cd0eba2b07/inc/sitemaps/class-sitemaps.php#L345-L364\">Yoast SEO code</a>, I determined that this WP-CLI command would output the index sitemap:</p>\n<pre class=\"brush: bash; title: ; notranslate\">wp eval \'\n$sm = new WPSEO_Sitemaps;\n$sm->build_root_map();\n$sm->output();\n\'</pre>\n<p>That took a good while to run on the command line, but that doesn’t matter, because I just set a <a href=\"https://help.ubuntu.com/community/CronHowto\">cron job</a> to run it once a day and save its output to a static file.</p>\n<pre class=\"brush: plain; title: ; notranslate\">0 3 * * * cd /srv/www/example.com && /usr/local/bin/wp eval \'$sm = new WPSEO_Sitemaps;$sm->build_root_map();$sm->output();\' > /srv/www/example.com/wp-content/uploads/sitemap_index.xml</pre>\n<p>The final step that was needed was to modify a rewrite in the site’s Nginx config that would make the <b>/sitemap_index.xml</b> path point to the cron-created static file, instead of resolving to Yoast SEO’s dynamic generation URL.</p>\n<pre class=\"brush: plain; highlight: [4]; title: ; notranslate\">location ~ ([^/]*)sitemap(.*).x(m|s)l$ {\n rewrite ^/sitemap.xml$ /sitemap_index.xml permanent;\n rewrite ^/([a-z]+)?-?sitemap.xsl$ /index.php?xsl=$1 last;\n rewrite ^/sitemap_index.xml$ /wp-content/uploads/sitemap_index.xml last;\n rewrite ^/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$2 last;\n}</pre>\n<p>Now the sitemap index loads instantly (because it’s a static file), and is kept up-to-date with a reliable background process. The client is happy that they didn’t have to switch SEO plugins or install a separate sitemap plugin. Everything just works, thanks to a little bit of command line magic.</p>\n<p>What other WordPress processes would benefit from this kind of approach?</p>\n<hr />\n<p><b>Do you need <a href=\"https://coveredwebservices.com/\">WordPress services?</a></b></p>\n<p>Mark runs <a href=\"https://coveredwebservices.com/\">Covered Web Services</a> which specializes in custom WordPress solutions with focuses on security, speed optimization, plugin development and customization, and complex migrations.</p>\n<p>Please reach out to start a conversation!</p>\n[contact-form]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Jan 2018 15:15:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";s: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:66:\"Post Status: Hosted versus self-hosted eCommerce — 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=41084\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://poststatus.com/hosted-versus-self-hosted-ecommerce-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:2130:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Brian and Brian discuss self-hosted vs managed ecommerce and whether or not conferences have outlived their usefulness. Specifically, they look at WooCommerce vs other solutions and explore Shopify and Liquid Web’s Managed WooCommerce hosting as viable done-for-you strategies. On the conference front, they talk about the good and the bad of conferences and ponder how tech conferences of the future may need to change to attract more attendees.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://marco.org/2018/01/17/end-of-conference-era\">The End of the Conference Era</a></li>\n<li><a href=\"https://www.liquidweb.com/blog/liquid-web-announces-the-launch-of-managed-woocommerce-hosting/\">Liquid Web introduces Managed WooCommerce</a></li>\n<li><a href=\"https://github.com/liquidweb/woocommerce-order-tables\">Liquid Web’s WooCommerce Order Tables Plugin</a></li>\n<li><a href=\"https://metorik.com/\">Metorik</a></li>\n<li><a href=\"https://www.ecommercefuel.com/\">eCommerceFuel</a></li>\n</ul>\n<h3>Sponsor: Pippin’s Plugins</h3>\n<p>This episode is sponsored by Pippin’s Plugins. <a href=\"http://pippinsplugins.com/\">Pippin’s Plugins</a> creates a suite of plugins that work great alone, or together. Whether you need to restrict content, sell downloads, or start an affiliate program, they’ve got you covered. For more information, check out their <a href=\"http://pippinsplugins.com/\">website</a> and thank you to Pippin’s Plugins for being a Post Status partner.</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, 19 Jan 2018 20:56:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:16:\"Matt: R.I.P Dean\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47840\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2018/01/r-i-p-dean/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3493:\"<p>Dean Allen, a web pioneer and good man, has passed away. I've been processing the news for a few days and still don't know where to begin. Dean was a writer, who wrote the software he wrote on. His websites were crafted, designed, and typeset so well you would have visited them even if they were filled with Lorem Ipsum, and paired with his writing you were drawn into an impossibly rich world. His blog was called Textism, and among many other things it introduced me to the art of typography.</p>\n\n\n\n<p>Later, he created Textpattern, without which WordPress wouldn't exist. Later, he created Textdrive with Jason Hoffman, without which WordPress wouldn't have found an early business model or had a home on the web. He brought a care and craft to everything he touched that inspires me to this day. As <a href=\"https://daringfireball.net/2018/01/dean_allen\">John Gruber said</a>, \"Dean strove for perfection and often achieved it.\" (Aside: Making typography better on the web led John Gruber to release Smarty Pants, Dean a tool called Textile, and myself something called Texturize all within a few months of each other; John continued his work and created Markdown, I put Texturize into WP, and Dean released Textile in Textpattern.)</p>\n\n\n\n<p>Years later, we became friends and shared many trips, walks, drinks, and meals together, often with Hanni and <a href=\"https://om.co/2018/01/18/dean-allen-rest-in-peace/\">Om</a>. (When we overlapped in Vancouver he immediately texted \"I'll show you some butt-kicking food and drink.\") His zest for life was matched with an encyclopedic knowledge of culture and voracious reading (and later podcast listening) habits. I learned so much in our time together, a web inspiration who turned for me into a real-life mensch. He was endlessly generous with his time and counsel in design, prose, and fashion. I learned the impossibly clever sentences he wrote, that you assumed were the product of a small writing crew or at least a few revisions, came annoyingly easily to him, an extension of how he actually thought and wrote and the culmination of a lifetime of telling stories and connecting to the human psyche.</p>\n\n\n\n<p>Dean, who (of course) was also a great photographer, didn't love having his own photo taken but would occasionally tolerate me when I pointed a camera at him <a href=\"https://om.co/2018/01/18/dean-allen-rest-in-peace/\">and Om has a number of the photos on his post</a>. There's one that haunts me: before getting BBQ we were at his friend's apartment in Vancouver, listening to Mingus and enjoying hand-crafted old fashioneds with <a href=\"https://ma.tt/files/2018/01/IMG_7147.jpg\">antique bitters</a>, and despite the rain we went on the roof to see the art that was visible from there. He obliged to a photo this time though and we took photos of each other individually in front of a sign that said \"EVERYTHING IS GOING TO BE ALRIGHT.\" It wasn't, but it's what I imagine Dean would say right now if he could.</p>\n\n\n\n<div class=\"wp-block-gallery alignnone columns-2 is-cropped\">\n <img src=\"https://i2.wp.com/ma.tt/files/2018/01/IMG_7151.jpg?w=604&ssl=1\" />\n <img src=\"https://i0.wp.com/ma.tt/files/2018/01/IMG_7158.jpg?w=604&ssl=1\" />\n</div>\n\n\n\n<img src=\"https://i1.wp.com/ma.tt/files/2018/01/104050690_ce98a95092_o.jpg?w=604&ssl=1\" />\n When we first met, in 2006, <a href=\"https://www.flickr.com/photos/textdriveinc/104050690/in/photostream/\">from Jason</a>.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Jan 2018 05:21:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:100:\"WPTavern: WPWeekly Episode 301 – WordPress in HigherEd, Accessibility, and More With Rachel Cherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=77497&preview=true&preview_id=77497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wpweekly-episode-301-wordpress-in-highered-accessibility-and-more-with-rachel-cherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2840:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://bamadesigner.com/\">Rachel Cherry</a>, Senior Software Engineer for <a href=\"http://www.disneyinteractive.com/\">Disney Interactive</a> and Director of <a href=\"https://wpcampus.org/\">WPCampus</a>. Cherry describes how she got involved with WordPress, its use in higher education, the inspiration behind WPCampus, and her thoughts on accessibility both in WordPress and across the web. She also assigned everyone the following homework assignment.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Per my interview on <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> Weekly, I’ve assigned everyone <a href=\"https://twitter.com/hashtag/accessibility?src=hash&ref_src=twsrc%5Etfw\">#accessibility</a> homework: open your website and navigate using ONLY THE KEYBOARD. Can you access all content and functionality? Can you open AND close popups? Let me know what you learned.</p>\n<p>— Rachel Cherry (@bamadesigner) <a href=\"https://twitter.com/bamadesigner/status/953742847831818240?ref_src=twsrc%5Etfw\">January 17, 2018</a></p></blockquote>\n<p></p>\n<p>If you want to learn how WordPress is being used in higher education, tune in to<a href=\"https://online.wpcampus.org/\"> WPCampus Online</a> Tuesday, January 30, 2018. Viewers will be able to watch sessions and interact with the speakers for free. Near the end of the show, Jacoby provides a review of the Nintendo Switch he received for Christmas.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://make.wordpress.org/core/2018/01/12/whats-new-in-gutenberg-12th-january/\">Gutenberg 2.0 Released</a><br />\n<a href=\"https://wptavern.com/wordpress-4-9-2-patches-xss-vulnerability\">WordPress 4.9.2 Patches XSS Vulnerability</a><br />\n<a href=\"https://wptavern.com/zac-gordon-launches-gutenberg-development-course-includes-more-than-30-videos\">Zac Gordon Launches Gutenberg Development Course, Includes More Than 30 Videos</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://pippinsplugins.com/2017-in-review/\">Pippin Williamson’s 2017 Year in Review</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 24th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #301:</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, 18 Jan 2018 02:42:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: DesktopServer 3.8.4 Includes A Gift to the 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77259\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/desktopserver-3-8-4-includes-a-gift-to-the-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2802:\"<p><!-- wp:core/paragraph --></p>\n<p>DesktopServer <a href=\"https://serverpress.com/announcing-desktopserver-v3-8-4/\">has released</a> version 3.8.4 of its local development software. This version includes a lot of refactored code, setting the foundation for faster updates in the future along with design-time plugins.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>One of the major changes in 3.8.4 is the use of the .dev.cc top level domain.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/quote --></p>\n<blockquote class=\"wp-block-quote\">\n<p>Due to the latest changes with the .dev Top Level Domain and the fact that many browsers now force SSL on anything with the .dev extension, DesktopServer will now use .dev.cc as its TLD extension. This is a legitimate top level domain owned by ServerPress, LLC and will ONLY be used for local development purposes.</p>\n<p><cite><a href=\"https://serverpress.com/announcing-desktopserver-v3-8-4/\">Release Announcement Post</a></cite></p></blockquote>\n<p><!-- /wp:core/quote --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Marc Benzakein says the domain will work no matter which local development solution is being used and that it's a gift to the community. Other domains such as .test will continue to work as expected. </p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>Other improvements include speed optimizations for Windows installs, a Windows compatibility plugin to fix long filename problems when updating from third-party plugin repositories such as Easy Digital Downloads, and a WordPress 4.9.1 Blueprint.</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>If you use an Apple device with a Retina screen or Hi-DPI in Windows, you'll likely appreciate the user-interface changes that are vastly improved on high resolution screens. Josh Eby does!</p>\n<p><!-- /wp:core/paragraph --></p>\n<p><!-- wp:core/embed {\"url\":\"https://twitter.com/josheby/status/953089139439751168\"} --></p>\n\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Love the new scaling fix on <a href=\"https://twitter.com/DesktopServer?ref_src=twsrc%5Etfw\">@DesktopServer</a> 3.8.4! Looks great on my 4K display now. Can\'t wait for 3.9 to get released!</p>\n<p>— Josh Eby (@josheby) <a href=\"https://twitter.com/josheby/status/953089139439751168?ref_src=twsrc%5Etfw\">January 16, 2018</a></p></blockquote>\n<p><br />\n\n<p><!-- /wp:core/embed --></p>\n<p><!-- wp:core/paragraph --></p>\n<p>DesktopServer 3.8.4 also includes a number of enhancements for premium service customers. To view these and other notes related to the release, check out <a href=\"https://serverpress.com/announcing-desktopserver-v3-8-4/\">the announcement post</a>. </p>\n<p><!-- /wp:core/paragraph --></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jan 2018 19:12: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: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:51:\"WPTavern: WordPress 4.9.2 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:29:\"https://wptavern.com/?p=77438\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordpress-4-9-2-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:1106:\"<p>WordPress 4.9.2 has been released and patches a cross-site scripting vulnerability in the Flash fallback files in the MediaElement library. <a href=\"https://wordpress.org/news/2018/01/wordpress-4-9-2-security-and-maintenance-release/\">According to Ian Dunn</a>, the Flash files are rarely needed and have been removed from WordPress.</p>\n\n\n\n<p>If you need access to the Flash fallback files, they can be obtained using the <a href=\"https://wordpress.org/plugins/mediaelement-flash-fallbacks/\">MediaElement Flash Fallback</a> plugin. <a href=\"https://opnsec.com\">Enguerran Gillier</a> and <a href=\"https://widiz.com/\">Widiz</a> are credited with responsibly disclosing the vulnerability. </p>\n\n\n\n<p>In addition to the patch, this releases fixes 21 bugs. JavaScript errors that prevented saving posts in Firefox has been fixed and switching themes will attempt to restore previous widget assignments, even if no sidebars exist.</p>\n\n\n\n<p>You can view detailed information about the changes in 4.9.2 by <a href=\"https://codex.wordpress.org/Version_4.9.2\">reading the following Codex article</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jan 2018 09:19: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: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:37:\"HeroPress: Growing WordPress 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:56:\"https://heropress.com/?post_type=heropress-essays&p=2406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://heropress.com/essays/growing-wordpress-india/#utm_source=rss&utm_medium=rss&utm_campaign=growing-wordpress-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:18306:\"<img width=\"960\" height=\"480\" src=\"https://heropress.com/wp-content/uploads/2018/01/011718-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The world will know you for the path you have chosen.\" /><h3>Preface</h3>\n<p>I was one of the first batch of participants in the initial version of HeroPress, which was video stories but I backed out due to multiple reasons. But, I’m glad HeroPress has survived in this current avatar, telling some really interesting stories of some real wonderful people. Few of whom I’ve had the pleasure of calling friends.</p>\n<p><a href=\"https://heropress.com/about/\">Topher</a> has umpteen number of times asked me to write my HeroPress story and I have always either given excuses or deadlines that I never planned on meeting. The few times that I did start writing this article I went into too much of a deep dive into my life story (that I never finished it…) which is quite the rollercoaster from having failed Std.10th (high School) in English or dropping out in College to having guest lectured(teaching WordPress, of course) in one of the biggest B-schools in India OR my work experience which includes Film, TV, dealing cards to even working as an assistant to the Union Minister of India for Youth Affairs and sports… There I go again!! While that does make for a good story I should save it for when you buy me a beer.</p>\n<p>I wanted my HeroPress article to tell a story of how our WordPress Community is truly open source and always open for everyone’s participation. I think this version does the Job. Also would like to thank <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton </a>and <a href=\"https://twitter.com/adityakane?lang=en\">Aditya Kane</a> who have been the most supportive of my efforts all these years. Last but not the least I’d like to thank Topher for this great space he has created and being a true friend with whom I could share some of my troubles.</p>\n<p>I am <a href=\"https://twitter.com/gounder?lang=en\">Alexander Gounder</a>, somewhat of a nobody who become somebody not only because I tried but also because WordPress is open enough to allow it and this is my story!</p>\n<h3>Background</h3>\n<p>I was born in a lower middle class household in Mumbai, India. I am the middle kid among three siblings. My Father works as a tailor in Saudi Arabia and visits every few years. My Mother is a strong willed woman, who would fight the world for her kids which was evident when she refused to listen to doctors that my sister who suffers from Cerebral Palsy be sent to Special school and instead went pillar to post to get her to study in her normal school, even if it meant that she had to wait outside class during school hours (in case my sister had to go to the restroom) or carry my sister (who then was about 8 yrs old) around.</p>\n<blockquote><p>I live where 70%, if not more, of Mumbai’s population lives, the slum or <a href=\"https://en.wikipedia.org/wiki/Chawl\">chawls</a> in the suburbs.</p></blockquote>\n<p>So I’ve lived through the hunger for a day when I lost <u title=\"15 cents USD\">Rs.10</u> on my way to buy bread, this was during the Gulf war when my father couldn’t send us any money for months; I’ve lived through the darkness of when there are frequent power cuts and still the power companies claim that there isn’t any load shedding in this city; I’ve lived through the annual ritual of walking in knee deep water to school, then college and now work as Monsoon water, thanks to clogged drains finds its way to the empty plot between our chawl and the main road.</p>\n<p>In terms of education I was an above average student but somehow managed to fail my Std. 10 board exams (this is a very important milestones in the Indian education system). Failure has been my stepping stone to success. I learnt computers as I had free time because I had to wait six months for joining college. I got a job at a local cyber cafe which was run by a linux enthusiast, this was my introduction to Free and Open Source. Post that I attended college (but didn’t graduate) and had many jobs (I’ve been working since I was 17, almost 50% of my lifetime).</p>\n<p>To conclude, the point I’m trying to make here is, I don’t come from a lot of money or have a lot in terms of education qualifications in spite of which I was able to do everything I did in the WordPress Community here in Mumbai and India at large.</p>\n<h3>My first WordCamp</h3>\n<p>I was an attendee at the first WordCamp in Mumbai in 2012. I was pretty excited about attending it, because only a few days before I saw a video from WordCamp San Francisco. I thought the idea of having a conference about WordPress was super cool. Though the tickets seemed a little expensive, I had just started freelancing and wasn’t attending events yet, so didn’t really have any benchmarks and thought it was worth it as this was an International/official event.</p>\n<p>My excitement was short lived when talks were sponsor pitches or mostly not about WordPress. The arrangements too weren’t as expected. During a session that was delayed by over 45 mins because the speaker and his connectivity problems (which could have been resolved by just using another machine), I lost my cool and walked out, one of the volunteers struck a conversation with me where I began by complaining about the arrangements and wanted to speak with the organizers to complain, but anger turned to sympathy when I realized that these student volunteers were in fact the event organizers, with that fact in mind even putting together this event was a great achievement. I probed further trying to understand where things were going wrong, checked what they paid for the t-shirts, it was about 30-40% higher than market price, asked if everyone paid the sponsor amount listed on the site, they said – many had bargained for upto 50% less than the published sponsor slab and some agreed with speaker slots thrown in. I asked how many tickets they sold and was informed free tickets were distributed in their colleges and to some of their partners. Partners? These were a few individuals who in the guise of helping these kids organize WordCamp had brokered deals that got sponsors discounts and/or speaker slots, free tickets (over 50) for friends / colleagues / employees, speaker slots for themselves and even their companies or brands as in kind sponsors.</p>\n<p>On the second day, things went to a confrontational stage with many (who paid to attend the event) questioning the Non-WordPress talks and long twitter threads ensued. While it is easy to blame the organizers of the WC Mumbai 2012, I think it was those few selfish individuals who weren’t part of the organizing team but tried to influence them while offering to help.</p>\n<p>This showed there was a need for the Indian WordPress Community to come together so we started a small buddypress website which was inundated with spam registrations hence replaced it with a <a href=\"https://www.facebook.com/groups/JaiWP/\">FB group</a>.</p>\n<p>This WordPress India FB group helped us co-ordinate our first meetup in Jan 2013.</p>\n<h3>Visiting Other WordCamps</h3>\n<p>While talking to others about bringing WordPress enthusiasts from all over India, I got a sense there’s mostly mistrust among people involved in WordCamps and those attending or speaking at it. That’s when something I read on plan.wordcamp.org struck me, it said that sponsoring a WordCamp is a great way to contribute and give back. So I sponsored the next WordCamp in India, WC Baroda. When asked what is the sponsoring brand, I named our BuddyPress website. Little did I realise that this helped others see I was genuinely interested in bringing people together than make a quick buck or get publicity for myself.</p>\n<p>While the next few WordCamps were better than my experience at WC Mumbai 2012, but they shared some common threads, in terms of the people who spoke there, or how there was no clarity in terms of how speakers were selected. I had even applied to speak at a WordCamp through FB chat, because that’s how the organiser was handling it. To my disappointment I sat through a session at that WordCamp with someone from automattic presenting exactly what I had proposed, later to be told by the speaker that he didn’t intend to speak and this was a topic proposed by the organisers.</p>\n<blockquote><p>I was disgusted by how these WordCamps were filled with shady underhand deals and zero transparency. While WordCamps had some set of guidelines and expectations, these organizers knowingly or unknowingly followed none of them.</p></blockquote>\n<p>At that point of time, the idea of organising a WordCamp in Mumbai came to mind too, but then what if I would end up doing the same as what was already happening was the only thing that stopped me from applying for a WordCamp.</p>\n<h3>Moment of truth</h3>\n<p>WordPress turned 10, and there were meetups organised everywhere and with a little confusion we too managed to organise a meet-up at a coffee shop, here the attendees weren’t people who we normally meet at WordCamps but regular WordPress users who discovered the meetup through WordPress.org. They had some amazing stories to tell about their association with the software – I met Manish who 80k downloads for his theme on WordPress.org or Sachin who had been blogging since ‘98 even before WordPress.</p>\n<p>So I realised the Meetups and WordCamps weren’t really reaching most WordPress users within our own neighborhood, these users were equally passionate about WordPress and they too wanted to have real world meetups to meet others like them.</p>\n<h3>Then how did we do it</h3>\n<h4>We not I</h4>\n<p>While “I” claim to have broken WordCamps in India, I couldn’t have done it alone. Right from the beginning I started asking other to join and help out, because we were at the end of the day trying to build a community and that couldn’t be done alone. At first it was Aditya, then we had other regular members like Sahil and Vachan join in to help us organize regular meetups.</p>\n<p>Getting more stock holders allowed us to bring a different perspective to everything that we were doing. Till then people blocked others from participating as organizers or volunteers because of their own insecurities and used the line that “meetups don’t work in India”. Maybe even peddling that lie to even WordPress Foundation which was then allowing these WordCamps in the hope they would kickstart local. We went the opposite way.</p>\n<h4>Persevere</h4>\n<p>When we started off with meetups we were told “Meetups don’t work in India”, but this wasn’t true because I was already attending Startup Saturday, a monthly Meetup for startups, Quora had a meetup, Many Bloggers had meetups. So we got started. A few meetups had 10-20 people showing up while others had 2-3 but we didn’t give up on meetups because we were meeting new people which was our end goal. Aditya once remarked that even if he met one new person and discussed WordPress that would be a successful, and has resulted in us having a fairly active meetup with so many different people speaking and attending it.</p>\n<h4>Put a little thought</h4>\n<p>I became very close friends with Aditya and we spent a lot of time discussing what we were doing here. We were a good cop / bad cop team many times. From our discussion we set up some guidelines for what we stood for inclusiveness and transparency. This was before we had a WordCamp Handbook which guides you through most of the challenges you would face.</p>\n<p>We were the first WordCamp in India to publish the code of conduct and make sure it was accessible to everyone, we made repeated announcements on the run-up to the WordCamp and during the WordCamp about this Code of Conduct and how serious we were about following it. We even discussed thing amongst ourselves about handling any complaints about violations of the code of conduct, for e.g. as per Indian law you can’t disclose the identity of a person who is victim of Sexual Harassment and therefore we took care and had a system in place to take complaints and maintain the complainants privacy.</p>\n<p>When we did our first WordCamp we tried to have ticket cost as low as possible (<u title=\"\">INR 300</u> or pay more if you’d like) to allow anyone to afford it. ( Fun fact – WC Mumbai to date has the lowest Avg. ticket price per day among WordCamps in India ).</p>\n<blockquote><p>At the first WordCamp Mumbai (2014) organized by our meetup group, I had someone come to me and tell me that he was glad to have attended and missed the last Mumbai WordCamp because the tickets were too expensive and his parents wouldn’t give him that kind of money.</p></blockquote>\n<p>This reinforced my view of never making WordCamp tickets too expensive, in fact we picked up what WC Pune 2015 did and started offering Student Discounts among other discounts to aid inclusivity.</p>\n<p>During the WordCamp preparation time all vendor information, speaker selection and accounts data was available to all organizers, post WordCamp Mumbai 2014, we published this account on our WordCamp website for everyone to review.</p>\n<h4>Focus on Basics</h4>\n<p>We want to build a community that shared information and talked about WordPress, So we focused on the basics that included having regular meetups. Even our first WordCamp was very low key in terms of the menu or swag at the event or international speakers or host of sponsors… the things that other used to say if they organized a successful WordCamp. We focused instead on getting good speakers, affordable tickets, reaching out and spreading the message about our WordCamp. Putting in a Processes / Guidelines for speakers selection and so on. We wanted to get the WordCamp right rather than find something that we could brag about, we knew if we delivered on the first we could then brag all we want. Some simple ideas helped us cut cost as we didn’t really have many sponsors For e.g. we had packed lunch packets which bought catering cost to <u title=\"$2.36\">INR 150/day</u> from INR 350 – 450/day if we would have a simple buffet spread. We did mugs instead of tshirts because the quality ones costed us INR 80 instead of INR 150 for decent quality t-shirts.</p>\n<h4>Keeping it open</h4>\n<p>We didn’t discriminate amongst attendees or treat someone as more important than others, everyone from the organizing team was approachable and we wanted to help. The meetups too became a welcoming space, we tried to keep a check on behaviour that could harmful or make the space unwelcoming to other. We didn’t shy away from calling out sexist behaviour. We didn’t discriminate amongst people who wanted to volunteer, we have freelancers and students in our team and they are as important as someone who owns an IT firm employing several people.</p>\n<h4>What the future holds for us</h4>\n<p>Even before WordCamp Central had a rule for allowing a person to be lead organizer only for two consecutive years we had started on planning of grooming the next set of leaders so that, if we decide to become a little inactive meetups and WordCamps would continue as usual.</p>\n<p>WordCamp Mumbai in a gist:</p>\n<p>As a result of the above I can proudly say that WordCamp Mumbai is oldest actively running WordCamp/meetup group in India having had twice as many WordCamps than any other city.</p>\n<p>I would like to leave you with this song which everyone here at our meetup group can Identify with.</p>\n<div class=\"jetpack-video-wrapper\"></div>\n<p>हमारी ही मुठ्ठी में आकाश सारा (Humari hi mutthi mein akash sara)<br />\nजब भी खुलेगी चमकेगा तारा (Jab bhi khulenga chamkenga tara)<br />\nकभी ना ढले जो, वो ही सितारा (Kabhi na dale jo, woh hi sitara)<br />\nदिशा जिस से पहचाने संसार सारा (Disha jis se pehchane sansaar sara)</p>\n<p>These lyrics roughly translate to</p>\n<p>We have the skies in our fist. Whenever it opens, a star will shine.</p>\n<p>One that never sets will be a Superstar and the world will know you for the path you have chosen.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Growing WordPress in India\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Growing%20WordPress%20in%20India&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fgrowing-wordpress-india%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Growing WordPress in India\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fgrowing-wordpress-india%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fgrowing-wordpress-india%2F&title=Growing+WordPress+in+India\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Growing WordPress in India\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/growing-wordpress-india/&media=https://heropress.com/wp-content/uploads/2018/01/011718-150x150.jpg&description=Growing WordPress in India\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Growing WordPress in India\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/growing-wordpress-india/\" title=\"Growing WordPress in India\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/growing-wordpress-india/\">Growing WordPress in India</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jan 2018 02:30:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Alexander Gounder\";s: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:58:\"Dev Blog: WordPress 4.9.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5376\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2018/01/wordpress-4-9-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3953:\"<p>WordPress 4.9.2 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>An XSS vulnerability was discovered in the Flash fallback files in MediaElement, a library that is included with WordPress. Because the Flash files are no longer needed for most use cases, they have been removed from WordPress.</p>\n\n\n\n<p>MediaElement has released a new version that contains a fix for the bug, and <a href=\"https://wordpress.org/plugins/mediaelement-flash-fallbacks/\">a WordPress plugin containing the fixed files</a> is available in the plugin repository.</p>\n\n\n\n<p>Thank you to the reporters of this issue for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible security disclosure</a>: <a href=\"https://opnsec.com\">Enguerran Gillier</a> and <a href=\"https://widiz.com/\">Widiz</a>.</p>\n\n\n\n<p>21 other bugs were fixed in WordPress 4.9.2. Particularly of note were:</p>\n\n\n\n<ul>\n <li>JavaScript errors that prevented saving posts in Firefox have been fixed.</li>\n <li>The previous taxonomy-agnostic behavior of <code>get_category_link()</code> and <code>category_description()</code> was restored.</li>\n <li>Switching themes will now attempt to restore previous widget assignments, even when there are no sidebars to map.<br /></li>\n</ul>\n\n\n\n<p>The Codex has <a href=\"https://codex.wordpress.org/Version_4.9.2\">more information about all of the issues fixed in 4.9.2</a>, if you'd like to learn more.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\"></a><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.2</a> or venture over to Dashboard → Updates and click \"Update Now.\" Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 4.9.2:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/0x6f0/\">0x6f0</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/chasewg/\">chasewg</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/hardik-amipara/\">Hardik Amipara</a>, <a href=\"https://profiles.wordpress.org/ionvv/\">ionvv</a>, <a href=\"https://profiles.wordpress.org/jaswrks/\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnschulz/\">johnschulz</a>, <a href=\"https://profiles.wordpress.org/juiiee8487/\">Juhi Patel</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999/\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.<strong></strong><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Jan 2018 23:00: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:8:\"Ian Dunn\";s: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:61:\"Post Status: Two Brians are better than one — 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=41041\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/two-brians-better-one-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:2210:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and his new co-host, Brian Richards.</p>\n<p>Brian Richards, the creator of <a href=\"https://wpsessions.com/\">WPSessions.com</a>, has been developing with WordPress since 2007 and training and leading development teams since 2011. In addition to investing his time into training, Brian has had the opportunity to work with many amazing WordPress agencies and experts over these last several years. This has allowed him to help develop sites for Microsoft, Disney, TIME, YMCA, and numerous others.</p>\n<p>Brian has an affinity for self-directed learning and helping others to develop skills and workflows to better solve important and complicated problems. He can’t resist helping good people do great things!</p>\n<p></p>\n<p> </p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://wpsessions.com/\">WPSessions.com</a></li>\n<li><a href=\"https://crowdfavorite.com/\">Crowd Favorite</a></li>\n<li><a href=\"https://webdevstudios.com/\">WebDevStudios</a></li>\n<li><a href=\"http://rzen.net/\">Ramblings from a nobody</a></li>\n<li><a href=\"https://twitter.com/rzen\">Brian Richards on Twitter</a></li>\n<li><a href=\"https://twitter.com/wpsessions\">WPSessions on Twitter</a></li>\n</ul>\n<h3>Sponsor: Valet</h3>\n<p>This episode is sponsored by <a href=\"https://www.valet.io/\">Valet</a>. Valet helps keep your clients happy & coming back. They offer expert services and keep the websites they manage functioning flawlessly. They offer preventative care that provides peace of mind around the clock. For more information, check out <a href=\"https://www.valet.io/\">their website</a> and thank you to Valet for being a Post Status partner. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Jan 2018 21:26:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:97:\"WPTavern: Gutenberg 2.0 Released With Numerous Accessibility and Keyboard Navigation Improvements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77370\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/gutenberg-2-0-released-with-numerous-accessibility-and-keyboard-navigation-improvements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1337:\"<p><a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg 2.0</a> is available for testing and includes a <a href=\"https://wordpress.org/plugins/gutenberg/#developers\">changelog</a> that's a mile long. Accessibility, keyboard navigation, and the ability to drag-and-drop multiple images to the Gallery block are among the improvements listed.</p>\n\n\n\n<p>Clicking the Publish button displays options in the sidebar rather than a drop-down menu to add polish to the publishing flow.<br /></p>\n\n\n\n<img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/01/PublishButtonSidebarOptions.png?w=627&ssl=1\" />\n Publish Button Options In The Sidebar\n\n\n\n\n<p>The Table of Contents has <a href=\"https://github.com/WordPress/gutenberg/pull/4288\">been redesigned</a> to increase readability and copying and pasting has also significantly improved. </p>\n\n\n\n<p>Gutenberg 2.0 covers a lot of ground and the changes are too numerous to list here. However, Matias Ventura does a great job <a href=\"https://make.wordpress.org/core/2018/01/12/whats-new-in-gutenberg-12th-january/\">listing the changes</a> with links to Pull Requests on GitHub where people can see how they were made.</p>\n\n\n\n<p>If you haven't tried or tested <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a>, now is a great time to check 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:\"Mon, 15 Jan 2018 22:48:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:17:\"Matt: Thirty-Four\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47801\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2018/01/thirty-four/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2257:\"<p>I am very thankful and grateful to have made it through the past year, which was a really special one personally and professionally. I learned to open myself up more to relationships, continued aspiring to be clear and direct with <a href=\"https://ma.tt/2017/01/rebirth-and-yellow-arrows/\">yellow arrows</a>, and worked alongside some incredible people to tackle the biggest and hardest problems, whether it was getting plugin and theme support on WP.com or the start and growth of <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a>.</p>\n\n\n\n<p>I read a <a href=\"https://ma.tt/2017/12/books-in-2017/\">lot more books</a>, traveled 337k miles between 91 cities, spent more time in Texas, kept my health in a good balance with weight training, running, and a better diet including several months of 16/8 intermittent fasting, while still getting in some excellent meals with friends and loved ones (up to 58% of top 50 list). As I'm solidly in my mid-thirties now, and I want to continue to live by: all things in moderation. I consider what I do with WordPress and Automattic my life's work, and hope to continue it as long as I'm useful. Some days I pinch myself.</p>\n\n\n\n<p>Thank you to all of you on this journey with me. I am imperfect but trying my darndest, and I'm lucky to have friends and colleagues doing the same.</p>\n\n\n\n<img src=\"https://i1.wp.com/ma.tt/files/2018/01/IMG_1232.jpg?w=604&ssl=1\" />\n\n\n\n<p>Previously: <a href=\"https://ma.tt/2003/01/bday/\">19</a>, <a href=\"https://ma.tt/2004/01/so-im-20/\">20</a>, <a href=\"https://ma.tt/2005/01/hot-barely-legal-matt/\">21</a>, <a href=\"https://ma.tt/2006/01/matt-22/\">22</a>, <a href=\"https://ma.tt/2007/01/twenty-three/\">23</a>, <a href=\"https://ma.tt/2008/01/twenty-four/\">24</a>, <a href=\"https://ma.tt/2009/01/twenty-five/\">25</a>, <a href=\"https://ma.tt/2010/01/twenty-six/\">26</a>, <a href=\"https://ma.tt/2011/01/twenty-seven/\">27</a>, <a href=\"https://ma.tt/2012/01/twenty-eight/\">28</a>, <a href=\"https://ma.tt/2013/01/twenty-nine/\">29</a>, <a href=\"https://ma.tt/2014/01/matt-3-0/\">30</a>, <a href=\"https://ma.tt/2015/01/thirty-one/\">31</a>, <a href=\"https://ma.tt/2016/01/thirty-two/\">32</a>, and <a href=\"https://ma.tt/2017/01/thirty-three/\">33</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jan 2018 01:55:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"HeroPress: Make It Better, Give It Back\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2396\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://heropress.com/essays/make-better-give-back/#utm_source=rss&utm_medium=rss&utm_campaign=make-better-give-back\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13479:\"<img width=\"960\" height=\"480\" src=\"https://heropress.com/wp-content/uploads/2018/01/011017-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Giving back makes me a better person and allows me to help others become better people.\" /><p>Recently, technology entrepreneur Anil Dash <a href=\"https://twitter.com/anildash/status/939137973240696832\">tweeted the following question</a>:</p>\n<blockquote><p>Who is a person (not counting family) that opened doors for you in your career when they didn’t have to? Anytime is a good time to show gratitude!</p></blockquote>\n<p>If you need a pick-me-up, go and read through the replies and threads that start with Anil’s question. There are replies from many people who are grateful to others for an unending variety of reasons, some large and immediate, some small and indirect, some that were only realised months or years later.</p>\n<p>One commonality between many of the replies is that of selflessness. People who help others without expecting something in return. This prompted me to think about those people who’ve helped me in my career through their own selflessness, without my prompting, and without their expecting anything in return.</p>\n<p>I’m lucky that several people have helped me in this way. My WordPress story started in around 1998 when, as a fourteen year old living in a house that was one among just sixteen in a forest in the English countryside, my divorced parents saved up and bought me a Windows 98 PC for Christmas. A personal computer was a big expenditure for my parents. We weren’t able to afford an Internet connection, and at that time I don’t recall being particularly aware of the Internet. As a result, I took an interesting route into web development.</p>\n<p>Windows PCs at the time came bundled with Internet Explorer and promotional material from Internet service providers in HTML files. I wanted to find out how these pages were built, and I discovered Frontpage Express could edit the files, although often with many errors (which years later I attributed to the lack of HTML standards in use).</p>\n<blockquote><p>One day my curiosity lead me to the View Source menu in Internet Explorer. <strong>Boom</strong>. What is all this code? What do all these angle brackets do? Is this how web pages are built? Can I change this?</p></blockquote>\n<p>Naturally, everything I changed initially broke pages completely. The Undo command was my version control system. I figured out that text wrapped in <code><b></code> produced bold text. I hadn’t a clue how a <code><table></code> worked without breaking it. <code><marquee></code> ended up everywhere. Poor support for much of the markup in these files made Frontpage redundant. Looking back, I could say that the View Source menu in Internet Explorer was an important part of the progression of my career. Maybe also that of thousands of other web developers. If the inventor and early adopters of the web hadn’t been strong proponents of open data and information sharing, it’s possible that the View Source menu would never have existed and the open web would not have flourished to the extent that it has.</p>\n<p>(The topic of open access to technology, both software and hardware, can be discussed all day. Consider if Adobe Photoshop would have had the same great commercial success that it did without its widespread piracy leading to an abundance of students leaving school with years of Photoshop experience. But I digress.)</p>\n<p>I spent evenings after school hacking on HTML. My older brother Adam gave me a book titled “How to Create pages for the Web using HTML” which introduced me to the world of HTML 2.0. I learned about the available tags. I learned about inline CSS, which set me up for learning React twenty years later. And I learned that you can see the source behind any web page, hack on it, and learn from it.</p>\n<h3>Getting Online</h3>\n<p>I don’t remember the first web page that I put online when we eventually got Internet access. I doubt it was any good, but what the whole experience did do was help my curiosity grow, to which I’ve attributed much of my success so far. Being curious about a topic helps enormously when learning, self-teaching, and staying motivated.</p>\n<p>I didn’t attend university, partly due to my excellent high school grades not being followed up by any good college grades (in the UK, there’s two years of sixth form college between high school and university). In hindsight I see that I got bored of state education, and two short years flew by with no time for me to to fix that attitude. Stay in school, kids.</p>\n<p>The years after school saw me working barely above minimum wage in a supermarket by day and hacking on web projects at night. I was first introduced to WordPress by <a href=\"https://profiles.wordpress.org/lumpysimon/\">my brother Simon</a> who built websites for customers of his printing business. After a brief period of building my own CMS (everyone’s done it, right?), I realised there were many advantages to using a free and community built CMS maintained by a relatively large number of people. I started building simple WordPress sites for myself. Along with Simon and his friend Tom, we played around with the idea of a hosted web service to make it even easier for people to publish online using WordPress. The project never went anywhere (hello wordpress.com), but the ideas we explored helped me learn a lot about WordPress.</p>\n<blockquote><p>Who is a person (not counting family) that opened doors for you in your career when they didn’t have to? Anytime is a good time to show gratitude!</p></blockquote>\n<p>I can pinpoint the start of my career with WordPress when Tom recommended me to someone who was looking for a WordPress plugin developer. That person, Conor O’Neill, became one of the people that opened a door for me in my career when they didn’t have to. Conor was pleased with the plugin work that I did for him, and selflessly passed my name onto several of his friends and acquaintances. He didn’t need to do that, it didn’t directly benefit him, but he did it because he knew it would help out his acquaintances and help me to get work.</p>\n<h3>Becoming A WordPress Consultant</h3>\n<p>I started building WordPress themes and plugins for people that Conor gave my name to. I didn’t have much experience at the time, but I had the advantage of personal recommendations. It’s difficult to overstate how valuable a personal recommendation is. All the advertising in the world can be useless when competing against a personal recommendation. If you’re looking to start or change a career, I recommend asking people to pass your name on to friends and colleagues whenever they can.</p>\n<blockquote><p>I’m one of the lucky ones that got a good start through personal recommendations, and if you can do that too then it’ll set you up well.</p></blockquote>\n<p>Conor passed my name onto a chap named Damien Mulley who was also instrumental in advancing my career by passing my name on when he didn’t need to. I owe a lot to the selflessness of Conor and Damien.</p>\n<p>Around this time I started finding bugs in WordPress (a practice that I continue to this day). Another key point in my career came when I reported a bug on the WordPress bug tracking system, and was greeted with a pleasant welcome. One of the contributors, Lloyd Budd, was kind enough to take the time to explain to me that I could fix the bug myself and submit the fix to the WordPress project. He pointed me to resources for learning Subversion and creating patches. That small act of help lead to me becoming a regular WordPress contributor, and ultimately one of the core developers. Lloyd didn’t have to use his free time to help others out, but he did, and it had long-reaching impact on my career and on the WordPress project.</p>\n<p>After a year of freelancing, I was able to get enough work that I could drop down to part time work at my supermarket job. I worked and self-taught for seventy hours a week for six months. I was afraid of leaving a stable job despite earning three times as much working as a freelance developer, but making that jump felt very scary before I made it. A combination of personal recommendations and working to get a name for myself in the WordPress sphere lead me to leave my supermarket job, freelance for a few years, become the first employee at WordPress agency <a href=\"https://codeforthepeople.com/\">Code for the People</a>, and ultimately to join <a href=\"https://humanmade.com/\">Human Made</a> as a senior WordPress engineer.</p>\n<h3>Giving Back</h3>\n<p>I’m lucky that I’m able to spend some of my time contributing back to WordPress, and I’ve been thinking a lot about how the principles of open source apply outside of software. I gave <a href=\"https://wordpress.tv/2016/05/31/john-blackbourn-rachel-mccollin-and-taco-verdonschot-lightning-sessions/\">a short talk at WordCamp London in 2016</a> where I coined the phrase “<em>Make it better, give it back</em>“, which is how I interpret the fundamental principles of open source. It’s the idea of improving upon an existing process and giving it back to the community in order to embetter everyone, whether it’s through an open data project such as OpenStreetMap, a community initiative in your local area, or shared learning.</p>\n<blockquote><p>Recently I came to realise that the “<em>it</em>” in “<em>Make it better, give it back</em>” doesn’t have to refer to the primary aspect of what you’re contributing to.</p></blockquote>\n<p>Lloyd made WordPress better by writing code and giving it back, but he also made WordPress better by improving the knowledge and skills of its community members, many of whom in turn give back in a variety of ways.</p>\n<p>Giving back allows me to improve many of my own skills. It allows me to challenge myself, not only technically but also in areas such as communication, compassion, critical thinking, and time management. Giving back makes me a better person and allows me to help others become better people.</p>\n<a href=\"https://heropress.com/wp-content/uploads/2018/01/dsc_3097.jpg\"><img class=\"wp-image-2398\" src=\"https://heropress.com/wp-content/uploads/2018/01/dsc_3097-768x1024.jpg\" alt=\"John and Francesca\" width=\"350\" height=\"467\" /></a>John and Francesca\n<p>Giving back has advanced my professional career thanks to the technical and people skills that I learn from it and the recognition gained by my contributions. In turn this has lead to many new friends, a career in a field that I enjoy very much, and it also lead to me finding the love of my life at a WordPress contributor day.</p>\n<p>I hope that in one way or another I’ve given back to many people in the open source community. I’ve been involved with WordPress for twelve years now, and over those years I’ve given advice, pointers, and encouragement to others that might seem small or inconsequential at the time but can be just the sort of encouragement that somebody needs. The difference between not receiving a reply to a query, and receiving one which says “Thanks! That’s a good start” might mean the difference between never contributing again versus becoming a decade long community member.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Make It Better, Give It Back\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Make%20It%20Better%2C%20Give%20It%20Back&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fmake-better-give-back%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Make It Better, Give It Back\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fmake-better-give-back%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fmake-better-give-back%2F&title=Make+It+Better%2C+Give+It+Back\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Make It Better, Give It Back\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/make-better-give-back/&media=https://heropress.com/wp-content/uploads/2018/01/011017-150x150.jpg&description=Make It Better, Give It Back\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Make It Better, Give It Back\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/make-better-give-back/\" title=\"Make It Better, Give It Back\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/make-better-give-back/\">Make It Better, Give It Back</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jan 2018 08:00: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:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Feb 2018 20:48:47 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 16 Feb 2018 20:45:27 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20180213214203\";}','no'),(590,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1518857328','no'),(591,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1518814128','no'),(592,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1518857328','no'),(593,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/02/wordpress-4-9-4-maintenance-release/\'>WordPress 4.9.4 Maintenance Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2018/02/no-office-workstyle/\'>Matt: No Office Workstyle</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2018/02/kinsey-joins-automattic/\'>Matt: Kinsey Joins Automattic</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpweekly-episode-305-10up-javascript-for-wordpress-conference-and-jetpack-5-8\'>WPTavern: WPWeekly Episode 305 – 10up, JavaScript for WordPress Conference, and Jetpack 5.8</a></li></ul></div>','no'),(595,'_transient_timeout_kiwi_50_share_count_transient','1518823546','no'),(596,'_transient_kiwi_50_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(601,'_transient_timeout_kiwi_53_share_count_transient','1518823158','no'),(602,'_transient_kiwi_53_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(606,'_transient_timeout_kiwi_182_share_count_transient','1518822561','no'),(607,'_transient_kiwi_182_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(608,'_transient_timeout_kiwi_52_share_count_transient','1518822612','no'),(609,'_transient_kiwi_52_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(614,'_transient_timeout_kiwi_254_share_count_transient','1518826033','no'),(615,'_transient_kiwi_254_share_count_transient','a:4:{s:8:\"facebook\";i:0;s:7:\"twitter\";i:0;s:11:\"google-plus\";i:0;s:9:\"pinterest\";i:0;}','no'),(620,'_site_transient_timeout_theme_roots','1518820564','no'),(621,'_site_transient_theme_roots','a:8:{s:8:\"dazzling\";s:7:\"/themes\";s:13:\"generatepress\";s:7:\"/themes\";s:6:\"primer\";s:7:\"/themes\";s:10:\"theme-name\";s:7:\"/themes\";s:7:\"trusted\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(623,'_transient_is_multi_author','0','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=776 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,1,'post_views_count','1'),(5,6,'_wp_attached_file','2018/02/Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg'),(6,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:344;s:4:\"file\";s:72:\"2018/02/Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:72:\"Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344-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:72:\"Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344-300x101.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:72:\"Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344-768x258.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:73:\"Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344-1024x344.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:72:\"Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344-730x344.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:70:\"Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7,7,'_wp_attached_file','2018/02/cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg'),(8,7,'_wp_attachment_context','custom-header'),(9,7,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:65;s:4:\"file\";s:80:\"2018/02/cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:79:\"cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344-150x65.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:79:\"cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344-300x65.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:78:\"cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:6;}'),(10,7,'_wp_attachment_custom_header_last_used_dazzling','1518004510'),(11,7,'_wp_attachment_is_custom_header','dazzling'),(12,8,'_wp_trash_meta_status','publish'),(13,8,'_wp_trash_meta_time','1518004510'),(14,9,'_form','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]'),(15,9,'_mail','a:8:{s:7:\"subject\";s:28:\"Baobab LIMS \"[your-subject]\"\";s:6:\"sender\";s:35:\"[your-name] <patmos.cafe@gmail.com>\";s:4:\"body\";s:171:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Baobab LIMS (http://localhost:8081)\";s:9:\"recipient\";s:21:\"patmos.cafe@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(16,9,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:28:\"Baobab LIMS \"[your-subject]\"\";s:6:\"sender\";s:35:\"Baobab LIMS <patmos.cafe@gmail.com>\";s:4:\"body\";s:113:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Baobab LIMS (http://localhost:8081)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:31:\"Reply-To: patmos.cafe@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(17,9,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),(18,9,'_additional_settings',NULL),(19,9,'_locale','en_US'),(20,11,'_wp_attached_file','2018/02/5651a8bb-7dbc-3976-a18d-7a53e166e593.jpg'),(21,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:205;s:6:\"height\";i:164;s:4:\"file\";s:48:\"2018/02/5651a8bb-7dbc-3976-a18d-7a53e166e593.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"5651a8bb-7dbc-3976-a18d-7a53e166e593-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"5651a8bb-7dbc-3976-a18d-7a53e166e593-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22,11,'fakerpress_flag','1'),(23,12,'fakerpress_flag','1'),(24,13,'_wp_attached_file','2018/02/02bed237-1b2d-33c0-a7ed-aefcb1000fa4.jpg'),(25,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3888;s:6:\"height\";i:2592;s:4:\"file\";s:48:\"2018/02/02bed237-1b2d-33c0-a7ed-aefcb1000fa4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"02bed237-1b2d-33c0-a7ed-aefcb1000fa4-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:48:\"02bed237-1b2d-33c0-a7ed-aefcb1000fa4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"02bed237-1b2d-33c0-a7ed-aefcb1000fa4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"02bed237-1b2d-33c0-a7ed-aefcb1000fa4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"02bed237-1b2d-33c0-a7ed-aefcb1000fa4-730x410.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"02bed237-1b2d-33c0-a7ed-aefcb1000fa4-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26,13,'fakerpress_flag','1'),(27,12,'_thumbnail_id','13'),(28,14,'fakerpress_flag','1'),(29,15,'_wp_attached_file','2018/02/183aecd9-b439-35d3-a2b0-74809d8a30ba.jpg'),(30,15,'_wp_attachment_metadata','a:0:{}'),(31,15,'fakerpress_flag','1'),(32,14,'_thumbnail_id','15'),(33,16,'_wp_attached_file','2018/02/c6321f32-f76c-37f0-8214-d520bb5922fb.jpg'),(34,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:206;s:6:\"height\";i:164;s:4:\"file\";s:48:\"2018/02/c6321f32-f76c-37f0-8214-d520bb5922fb.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"c6321f32-f76c-37f0-8214-d520bb5922fb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"c6321f32-f76c-37f0-8214-d520bb5922fb-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(35,16,'fakerpress_flag','1'),(36,17,'fakerpress_flag','1'),(37,18,'_wp_attached_file','2018/02/ecd04b19-a7bb-30ed-82ea-dfd997b45c85.jpg'),(38,18,'_wp_attachment_metadata','a:0:{}'),(39,18,'fakerpress_flag','1'),(40,17,'_thumbnail_id','18'),(41,19,'_wp_attached_file','2018/02/1a4bad20-aef2-3f6f-8300-43e2c9603684.jpg'),(42,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1355;s:6:\"height\";i:903;s:4:\"file\";s:48:\"2018/02/1a4bad20-aef2-3f6f-8300-43e2c9603684.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"1a4bad20-aef2-3f6f-8300-43e2c9603684-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:48:\"1a4bad20-aef2-3f6f-8300-43e2c9603684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"1a4bad20-aef2-3f6f-8300-43e2c9603684-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"1a4bad20-aef2-3f6f-8300-43e2c9603684-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"1a4bad20-aef2-3f6f-8300-43e2c9603684-730x410.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"1a4bad20-aef2-3f6f-8300-43e2c9603684-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43,19,'fakerpress_flag','1'),(44,20,'fakerpress_flag','1'),(45,21,'_wp_attached_file','2018/02/3c397896-d97a-38a5-88bc-89b5a332db40.jpg'),(46,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:48:\"2018/02/3c397896-d97a-38a5-88bc-89b5a332db40.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"3c397896-d97a-38a5-88bc-89b5a332db40-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:48:\"3c397896-d97a-38a5-88bc-89b5a332db40-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"3c397896-d97a-38a5-88bc-89b5a332db40-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"3c397896-d97a-38a5-88bc-89b5a332db40-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"3c397896-d97a-38a5-88bc-89b5a332db40-730x410.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"3c397896-d97a-38a5-88bc-89b5a332db40-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47,21,'fakerpress_flag','1'),(48,20,'_thumbnail_id','21'),(49,22,'_wp_attached_file','2018/02/1eb89627-9222-3342-9c86-f27d16d80366.jpg'),(50,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:564;s:6:\"height\";i:451;s:4:\"file\";s:48:\"2018/02/1eb89627-9222-3342-9c86-f27d16d80366.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"1eb89627-9222-3342-9c86-f27d16d80366-150x150.jpg\";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:48:\"1eb89627-9222-3342-9c86-f27d16d80366-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"1eb89627-9222-3342-9c86-f27d16d80366-564x410.jpg\";s:5:\"width\";i:564;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"1eb89627-9222-3342-9c86-f27d16d80366-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51,22,'fakerpress_flag','1'),(52,23,'_wp_attached_file','2018/02/def50054-9bf1-3cf0-8f78-8cc239a31baf.jpg'),(53,23,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1098;s:6:\"height\";i:732;s:4:\"file\";s:48:\"2018/02/def50054-9bf1-3cf0-8f78-8cc239a31baf.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"def50054-9bf1-3cf0-8f78-8cc239a31baf-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:48:\"def50054-9bf1-3cf0-8f78-8cc239a31baf-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"def50054-9bf1-3cf0-8f78-8cc239a31baf-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"def50054-9bf1-3cf0-8f78-8cc239a31baf-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"def50054-9bf1-3cf0-8f78-8cc239a31baf-730x410.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"def50054-9bf1-3cf0-8f78-8cc239a31baf-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54,23,'fakerpress_flag','1'),(55,24,'fakerpress_flag','1'),(56,25,'_wp_attached_file','2018/02/da8e5a85-2a44-3375-8b36-ba0e10370115.jpg'),(57,25,'_wp_attachment_metadata','a:0:{}'),(58,25,'fakerpress_flag','1'),(59,24,'_thumbnail_id','25'),(60,26,'fakerpress_flag','1'),(61,27,'_wp_attached_file','2018/02/be30f0ef-0cb6-3859-94c9-39d53f2d93e3.jpg'),(62,27,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:608;s:6:\"height\";i:486;s:4:\"file\";s:48:\"2018/02/be30f0ef-0cb6-3859-94c9-39d53f2d93e3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"be30f0ef-0cb6-3859-94c9-39d53f2d93e3-150x150.jpg\";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:48:\"be30f0ef-0cb6-3859-94c9-39d53f2d93e3-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"be30f0ef-0cb6-3859-94c9-39d53f2d93e3-608x410.jpg\";s:5:\"width\";i:608;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"be30f0ef-0cb6-3859-94c9-39d53f2d93e3-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,27,'fakerpress_flag','1'),(64,28,'_wp_attached_file','2018/02/4effe5b6-2ea5-3a68-9394-998df3935881.jpg'),(65,28,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:329;s:6:\"height\";i:263;s:4:\"file\";s:48:\"2018/02/4effe5b6-2ea5-3a68-9394-998df3935881.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"4effe5b6-2ea5-3a68-9394-998df3935881-150x150.jpg\";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:48:\"4effe5b6-2ea5-3a68-9394-998df3935881-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"4effe5b6-2ea5-3a68-9394-998df3935881-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(66,28,'fakerpress_flag','1'),(67,29,'fakerpress_flag','1'),(68,30,'_wp_attached_file','2018/02/a0021be1-2a5c-35ca-8db8-679d1aebbd21.jpg'),(69,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2517;s:6:\"height\";i:1667;s:4:\"file\";s:48:\"2018/02/a0021be1-2a5c-35ca-8db8-679d1aebbd21.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"a0021be1-2a5c-35ca-8db8-679d1aebbd21-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:48:\"a0021be1-2a5c-35ca-8db8-679d1aebbd21-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"a0021be1-2a5c-35ca-8db8-679d1aebbd21-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"a0021be1-2a5c-35ca-8db8-679d1aebbd21-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"a0021be1-2a5c-35ca-8db8-679d1aebbd21-730x410.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"a0021be1-2a5c-35ca-8db8-679d1aebbd21-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(70,30,'fakerpress_flag','1'),(71,29,'_thumbnail_id','30'),(72,31,'_wp_attached_file','2018/02/56f0c828-18c5-380b-98fd-1fa7cffdd7e3.jpg'),(73,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:203;s:6:\"height\";i:162;s:4:\"file\";s:48:\"2018/02/56f0c828-18c5-380b-98fd-1fa7cffdd7e3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"56f0c828-18c5-380b-98fd-1fa7cffdd7e3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"56f0c828-18c5-380b-98fd-1fa7cffdd7e3-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(74,31,'fakerpress_flag','1'),(75,32,'_wp_attached_file','2018/02/946266b1-eee9-3ca5-ac8b-6ec547bbcacf.jpg'),(76,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1041;s:6:\"height\";i:694;s:4:\"file\";s:48:\"2018/02/946266b1-eee9-3ca5-ac8b-6ec547bbcacf.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"946266b1-eee9-3ca5-ac8b-6ec547bbcacf-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:48:\"946266b1-eee9-3ca5-ac8b-6ec547bbcacf-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"946266b1-eee9-3ca5-ac8b-6ec547bbcacf-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"946266b1-eee9-3ca5-ac8b-6ec547bbcacf-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"946266b1-eee9-3ca5-ac8b-6ec547bbcacf-730x410.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"946266b1-eee9-3ca5-ac8b-6ec547bbcacf-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(77,32,'fakerpress_flag','1'),(78,33,'fakerpress_flag','1'),(79,34,'fakerpress_flag','1'),(80,35,'_wp_attached_file','2018/02/52dcdbbf-5f66-3060-bdcc-552f516dd973.jpg'),(81,35,'_wp_attachment_metadata','a:0:{}'),(82,35,'fakerpress_flag','1'),(83,36,'fakerpress_flag','1'),(84,37,'_wp_attached_file','2018/02/f295aabf-abe6-3347-ac6e-e8ffb0c053ef.jpg'),(85,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1293;s:6:\"height\";i:862;s:4:\"file\";s:48:\"2018/02/f295aabf-abe6-3347-ac6e-e8ffb0c053ef.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"f295aabf-abe6-3347-ac6e-e8ffb0c053ef-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:48:\"f295aabf-abe6-3347-ac6e-e8ffb0c053ef-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"f295aabf-abe6-3347-ac6e-e8ffb0c053ef-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"f295aabf-abe6-3347-ac6e-e8ffb0c053ef-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"f295aabf-abe6-3347-ac6e-e8ffb0c053ef-730x410.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"f295aabf-abe6-3347-ac6e-e8ffb0c053ef-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(86,37,'fakerpress_flag','1'),(87,38,'_wp_attached_file','2018/02/589be824-9848-3474-a9c6-20a1ad2661e4.jpg'),(88,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1258;s:6:\"height\";i:838;s:4:\"file\";s:48:\"2018/02/589be824-9848-3474-a9c6-20a1ad2661e4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"589be824-9848-3474-a9c6-20a1ad2661e4-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:48:\"589be824-9848-3474-a9c6-20a1ad2661e4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"589be824-9848-3474-a9c6-20a1ad2661e4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"589be824-9848-3474-a9c6-20a1ad2661e4-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"589be824-9848-3474-a9c6-20a1ad2661e4-730x410.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"589be824-9848-3474-a9c6-20a1ad2661e4-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(89,38,'fakerpress_flag','1'),(90,39,'_wp_attached_file','2018/02/c228c40f-ef91-3c48-843b-eabee8ba992d.jpg'),(91,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:288;s:6:\"height\";i:230;s:4:\"file\";s:48:\"2018/02/c228c40f-ef91-3c48-843b-eabee8ba992d.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"c228c40f-ef91-3c48-843b-eabee8ba992d-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"c228c40f-ef91-3c48-843b-eabee8ba992d-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(92,39,'fakerpress_flag','1'),(93,40,'fakerpress_flag','1'),(94,41,'_wp_attached_file','2018/02/e347844a-d478-3a78-9cfc-f7a005467d80.jpg'),(95,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:1467;s:4:\"file\";s:48:\"2018/02/e347844a-d478-3a78-9cfc-f7a005467d80.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"e347844a-d478-3a78-9cfc-f7a005467d80-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:48:\"e347844a-d478-3a78-9cfc-f7a005467d80-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"e347844a-d478-3a78-9cfc-f7a005467d80-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"e347844a-d478-3a78-9cfc-f7a005467d80-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"e347844a-d478-3a78-9cfc-f7a005467d80-730x410.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"e347844a-d478-3a78-9cfc-f7a005467d80-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(96,41,'fakerpress_flag','1'),(97,40,'_thumbnail_id','41'),(98,42,'fakerpress_flag','1'),(99,43,'_wp_attached_file','2018/02/1985f69f-1d6f-3602-8a40-8266f56d4f90.jpg'),(100,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1045;s:6:\"height\";i:696;s:4:\"file\";s:48:\"2018/02/1985f69f-1d6f-3602-8a40-8266f56d4f90.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"1985f69f-1d6f-3602-8a40-8266f56d4f90-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:48:\"1985f69f-1d6f-3602-8a40-8266f56d4f90-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"1985f69f-1d6f-3602-8a40-8266f56d4f90-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"1985f69f-1d6f-3602-8a40-8266f56d4f90-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"dazzling-featured\";a:4:{s:4:\"file\";s:48:\"1985f69f-1d6f-3602-8a40-8266f56d4f90-730x410.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tab-small\";a:4:{s:4:\"file\";s:46:\"1985f69f-1d6f-3602-8a40-8266f56d4f90-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(101,43,'fakerpress_flag','1'),(102,44,'fakerpress_flag','1'),(103,36,'post_views_count','1'),(104,2,'fakerpress_flag','1'),(105,3,'fakerpress_flag','1'),(106,4,'fakerpress_flag','1'),(107,5,'fakerpress_flag','1'),(108,6,'fakerpress_flag','1'),(109,7,'fakerpress_flag','1'),(110,8,'fakerpress_flag','1'),(111,9,'fakerpress_flag','1'),(112,10,'fakerpress_flag','1'),(113,45,'_wp_trash_meta_status','publish'),(114,45,'_wp_trash_meta_time','1518319883'),(115,46,'_wp_trash_meta_status','publish'),(116,46,'_wp_trash_meta_time','1518319961'),(117,47,'_wp_trash_meta_status','publish'),(118,47,'_wp_trash_meta_time','1518319979'),(119,48,'_edit_lock','1518320150:1'),(121,49,'_customize_changeset_uuid','db03eddb-d455-4eb9-a5e5-bdca10987b94'),(123,50,'_customize_changeset_uuid','db03eddb-d455-4eb9-a5e5-bdca10987b94'),(125,51,'_customize_changeset_uuid','db03eddb-d455-4eb9-a5e5-bdca10987b94'),(127,52,'_customize_changeset_uuid','db03eddb-d455-4eb9-a5e5-bdca10987b94'),(129,53,'_customize_changeset_uuid','db03eddb-d455-4eb9-a5e5-bdca10987b94'),(186,48,'_wp_trash_meta_status','publish'),(187,48,'_wp_trash_meta_time','1518320151'),(188,66,'_edit_lock','1518320218:1'),(190,67,'_customize_changeset_uuid','9bab9eff-0441-4c4a-9926-b79ff27cf107'),(199,70,'_menu_item_type','post_type'),(200,70,'_menu_item_menu_item_parent','0'),(201,70,'_menu_item_object_id','52'),(202,70,'_menu_item_object','page'),(203,70,'_menu_item_target',''),(204,70,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(205,70,'_menu_item_xfn',''),(206,70,'_menu_item_url',''),(207,71,'_menu_item_type','post_type'),(208,71,'_menu_item_menu_item_parent','0'),(209,71,'_menu_item_object_id','51'),(210,71,'_menu_item_object','page'),(211,71,'_menu_item_target',''),(212,71,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(213,71,'_menu_item_xfn',''),(214,71,'_menu_item_url',''),(215,72,'_menu_item_type','post_type'),(216,72,'_menu_item_menu_item_parent','0'),(217,72,'_menu_item_object_id','50'),(218,72,'_menu_item_object','page'),(219,72,'_menu_item_target',''),(220,72,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(221,72,'_menu_item_xfn',''),(222,72,'_menu_item_url',''),(231,74,'_menu_item_type','post_type'),(232,74,'_menu_item_menu_item_parent','0'),(233,74,'_menu_item_object_id','67'),(234,74,'_menu_item_object','page'),(235,74,'_menu_item_target',''),(236,74,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(237,74,'_menu_item_xfn',''),(238,74,'_menu_item_url',''),(239,66,'_wp_trash_meta_status','publish'),(240,66,'_wp_trash_meta_time','1518320219'),(241,75,'_edit_lock','1518320422:1'),(242,75,'_wp_trash_meta_status','publish'),(243,75,'_wp_trash_meta_time','1518320422'),(244,2,'_edit_lock','1518817102:1'),(245,2,'_edit_last','1'),(246,36,'_edit_lock','1518613859:1'),(247,36,'_edit_last','1'),(248,36,'_encloseme','1'),(249,36,'_encloseme','1'),(250,33,'_edit_lock','1518613942:1'),(251,33,'_edit_last','1'),(252,33,'_encloseme','1'),(253,17,'_edit_lock','1518614016:1'),(254,17,'_edit_last','1'),(255,17,'_encloseme','1'),(256,81,'_edit_lock','1518614321:1'),(257,81,'_wp_trash_meta_status','publish'),(258,81,'_wp_trash_meta_time','1518614321'),(259,82,'_edit_lock','1518614558:1'),(260,82,'_wp_trash_meta_status','publish'),(261,82,'_wp_trash_meta_time','1518614558'),(262,83,'_wp_trash_meta_status','publish'),(263,83,'_wp_trash_meta_time','1518614593'),(265,84,'_customize_restore_dismissed','1'),(266,85,'_edit_lock','1518614836:1'),(267,85,'_wp_trash_meta_status','publish'),(268,85,'_wp_trash_meta_time','1518614836'),(269,86,'_edit_lock','1518614860:1'),(270,86,'_wp_trash_meta_status','publish'),(271,86,'_wp_trash_meta_time','1518614860'),(272,87,'_wp_trash_meta_status','publish'),(273,87,'_wp_trash_meta_time','1518614901'),(274,88,'_edit_lock','1518614985:1'),(275,88,'_wp_trash_meta_status','publish'),(276,88,'_wp_trash_meta_time','1518614986'),(277,89,'_edit_lock','1518615330:1'),(278,89,'_wp_trash_meta_status','publish'),(279,89,'_wp_trash_meta_time','1518615330'),(281,90,'_customize_restore_dismissed','1'),(282,91,'_edit_lock','1518616288:1'),(283,91,'_wp_trash_meta_status','publish'),(284,91,'_wp_trash_meta_time','1518616289'),(285,92,'_edit_lock','1518616430:1'),(286,92,'_wp_trash_meta_status','publish'),(287,92,'_wp_trash_meta_time','1518616430'),(288,93,'_wp_attached_file','2018/02/OGA5I60.jpg'),(289,93,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5616;s:6:\"height\";i:3744;s:4:\"file\";s:19:\"2018/02/OGA5I60.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"OGA5I60-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:19:\"OGA5I60-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"OGA5I60-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"OGA5I60-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"trusted-shop-thumbnail\";a:4:{s:4:\"file\";s:19:\"OGA5I60-120x120.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"trusted-shop-single\";a:4:{s:4:\"file\";s:19:\"OGA5I60-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"trusted-shop-archive\";a:4:{s:4:\"file\";s:19:\"OGA5I60-325x380.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:731:\"digital,digitally generated,computer graphic,interface,computer,computing,technology,tech,icon,menu,blue,cross,beaker,test tube,needle,syringe,caduceus,tab,medicine,medical,healthcare,health system,attractive,beautiful,pretty,doctor,medical,healthcare,health service,profession,career,stethoscope,lab coat,pointing,hand,finger,showing,indicating,touching,digital,illustration,digitally generated,computer graphic,graphic,generated,bio,biochemistry,biology,biotechnology,cell,chromosome,dna,science,scientific,spiral,stem,strand,white background,helix,molecule,structure,genes,sequencing,strands,genetics,geneticist,human,medicine,biological,scientist,double,atoms,element,translucent,transparent,concept,conceptual,light,lens flare\";}}}'),(290,94,'_wp_attached_file','2018/02/cropped-OGA5I60.jpg'),(291,94,'_wp_attachment_context','custom-header'),(292,94,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:640;s:4:\"file\";s:27:\"2018/02/cropped-OGA5I60.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-OGA5I60-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:27:\"cropped-OGA5I60-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"cropped-OGA5I60-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"cropped-OGA5I60-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"trusted-shop-thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-OGA5I60-120x120.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"trusted-shop-single\";a:4:{s:4:\"file\";s:27:\"cropped-OGA5I60-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"trusted-shop-archive\";a:4:{s:4:\"file\";s:27:\"cropped-OGA5I60-325x380.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:93;}'),(293,94,'_wp_attachment_custom_header_last_used_trusted','1518759255'),(294,94,'_wp_attachment_is_custom_header','trusted'),(295,95,'_wp_trash_meta_status','publish'),(296,95,'_wp_trash_meta_time','1518759255'),(297,96,'_wp_attached_file','2018/02/logoforsite.png'),(298,96,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:276;s:6:\"height\";i:195;s:4:\"file\";s:23:\"2018/02/logoforsite.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"logoforsite-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"trusted-shop-thumbnail\";a:4:{s:4:\"file\";s:23:\"logoforsite-120x120.png\";s:5:\"width\";i:120;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(299,97,'_wp_attached_file','2018/02/cropped-logoforsite.png'),(300,97,'_wp_attachment_context','custom-logo'),(301,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:276;s:6:\"height\";i:109;s:4:\"file\";s:31:\"2018/02/cropped-logoforsite.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-logoforsite-150x109.png\";s:5:\"width\";i:150;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"trusted-shop-thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-logoforsite-120x109.png\";s:5:\"width\";i:120;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(302,98,'_wp_trash_meta_status','publish'),(303,98,'_wp_trash_meta_time','1518759340'),(304,99,'_edit_lock','1518759457:1'),(305,99,'_customize_restore_dismissed','1'),(306,100,'_wp_trash_meta_status','publish'),(307,100,'_wp_trash_meta_time','1518759621'),(308,101,'_edit_lock','1518759757:1'),(309,101,'_wp_trash_meta_status','publish'),(310,101,'_wp_trash_meta_time','1518759757'),(311,103,'_edit_lock','1518762621:1'),(312,103,'_wp_trash_meta_status','publish'),(313,103,'_wp_trash_meta_time','1518762621'),(314,104,'_edit_lock','1518763042:1'),(315,104,'_wp_trash_meta_status','publish'),(316,104,'_wp_trash_meta_time','1518763042'),(317,49,'_edit_lock','1518814299:1'),(318,49,'_edit_last','1'),(319,49,'_wp_page_template','default'),(320,50,'_edit_lock','1518814326:1'),(321,50,'_edit_last','1'),(322,50,'_wp_page_template','default'),(323,52,'_edit_lock','1518764429:1'),(324,52,'_edit_last','1'),(325,52,'_wp_page_template','default'),(326,51,'_edit_lock','1518764578:1'),(327,51,'_edit_last','1'),(328,51,'_wp_page_template','default'),(329,117,'_wp_trash_meta_status','publish'),(330,117,'_wp_trash_meta_time','1518764879'),(331,118,'_wp_trash_meta_status','publish'),(332,118,'_wp_trash_meta_time','1518765156'),(333,126,'_wp_attached_file','2018/02/recent-tweets-widget.1.6.8.zip'),(334,126,'_wp_attachment_context','upgrader'),(335,132,'_edit_last','1'),(336,132,'_wp_page_template','default'),(345,132,'_edit_lock','1518769789:1'),(346,138,'_wp_trash_meta_status','publish'),(347,138,'_wp_trash_meta_time','1518772141'),(348,132,'_wp_trash_meta_status','publish'),(349,132,'_wp_trash_meta_time','1518772203'),(350,132,'_wp_desired_post_slug','github-stats'),(351,67,'_edit_lock','1518812825:1'),(352,67,'_edit_last','1'),(353,67,'_wp_page_template','default'),(354,140,'_edit_lock','1518772830:1'),(355,140,'_edit_last','1'),(356,140,'sub_title','Get to know the lastest on Baobab LIMS'),(357,140,'color',''),(358,140,'hover_color',''),(359,140,'text_color',''),(360,140,'hover_text_color',''),(361,140,'timetable_custom_url',''),(362,140,'timetable_disable_url','0'),(363,146,'_edit_lock','1518772706:1'),(364,146,'_edit_last','1'),(365,146,'column_option','date'),(366,146,'option_day','28/2/2018'),(367,2,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(369,148,'_customize_changeset_uuid','3bdedfb6-695c-492c-b1c8-840abbb99d01'),(370,50,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(371,148,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(373,149,'_customize_changeset_uuid','3bdedfb6-695c-492c-b1c8-840abbb99d01'),(374,150,'_edit_lock','1518776979:1'),(376,151,'_customize_changeset_uuid','3bdedfb6-695c-492c-b1c8-840abbb99d01'),(378,152,'_customize_changeset_uuid','3bdedfb6-695c-492c-b1c8-840abbb99d01'),(380,153,'_customize_changeset_uuid','3bdedfb6-695c-492c-b1c8-840abbb99d01'),(382,154,'_customize_changeset_uuid','3bdedfb6-695c-492c-b1c8-840abbb99d01'),(399,159,'_menu_item_type','post_type'),(400,159,'_menu_item_menu_item_parent','72'),(401,159,'_menu_item_object_id','151'),(402,159,'_menu_item_object','page'),(403,159,'_menu_item_target',''),(404,159,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(405,159,'_menu_item_xfn',''),(406,159,'_menu_item_url',''),(431,167,'_menu_item_type','post_type'),(432,167,'_menu_item_menu_item_parent','72'),(433,167,'_menu_item_object_id','148'),(434,167,'_menu_item_object','page'),(435,167,'_menu_item_target',''),(436,167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(437,167,'_menu_item_xfn',''),(438,167,'_menu_item_url',''),(439,168,'_menu_item_type','post_type'),(440,168,'_menu_item_menu_item_parent','72'),(441,168,'_menu_item_object_id','149'),(442,168,'_menu_item_object','page'),(443,168,'_menu_item_target',''),(444,168,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(445,168,'_menu_item_xfn',''),(446,168,'_menu_item_url',''),(455,170,'_menu_item_type','post_type'),(456,170,'_menu_item_menu_item_parent','72'),(457,170,'_menu_item_object_id','152'),(458,170,'_menu_item_object','page'),(459,170,'_menu_item_target',''),(460,170,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(461,170,'_menu_item_xfn',''),(462,170,'_menu_item_url',''),(463,171,'_menu_item_type','post_type'),(464,171,'_menu_item_menu_item_parent','72'),(465,171,'_menu_item_object_id','153'),(466,171,'_menu_item_object','page'),(467,171,'_menu_item_target',''),(468,171,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(469,171,'_menu_item_xfn',''),(470,171,'_menu_item_url',''),(471,172,'_menu_item_type','post_type'),(472,172,'_menu_item_menu_item_parent','72'),(473,172,'_menu_item_object_id','154'),(474,172,'_menu_item_object','page'),(475,172,'_menu_item_target',''),(476,172,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(477,172,'_menu_item_xfn',''),(478,172,'_menu_item_url',''),(479,150,'_wp_trash_meta_status','publish'),(480,150,'_wp_trash_meta_time','1518776980'),(481,173,'_wp_trash_meta_status','publish'),(482,173,'_wp_trash_meta_time','1518777053'),(484,174,'_customize_changeset_uuid','9cb40d87-18da-4841-988b-b77057945e05'),(486,175,'_customize_changeset_uuid','9cb40d87-18da-4841-988b-b77057945e05'),(488,176,'_customize_changeset_uuid','9cb40d87-18da-4841-988b-b77057945e05'),(489,177,'_edit_lock','1518777489:1'),(491,178,'_customize_changeset_uuid','9cb40d87-18da-4841-988b-b77057945e05'),(493,179,'_customize_changeset_uuid','9cb40d87-18da-4841-988b-b77057945e05'),(495,180,'_customize_changeset_uuid','9cb40d87-18da-4841-988b-b77057945e05'),(497,181,'_customize_changeset_uuid','9cb40d87-18da-4841-988b-b77057945e05'),(499,182,'_customize_changeset_uuid','9cb40d87-18da-4841-988b-b77057945e05'),(540,193,'_menu_item_type','post_type'),(541,193,'_menu_item_menu_item_parent','70'),(542,193,'_menu_item_object_id','180'),(543,193,'_menu_item_object','page'),(544,193,'_menu_item_target',''),(545,193,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(546,193,'_menu_item_xfn',''),(547,193,'_menu_item_url',''),(556,197,'_menu_item_type','post_type'),(557,197,'_menu_item_menu_item_parent','70'),(558,197,'_menu_item_object_id','182'),(559,197,'_menu_item_object','page'),(560,197,'_menu_item_target',''),(561,197,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(562,197,'_menu_item_xfn',''),(563,197,'_menu_item_url',''),(564,199,'_menu_item_type','post_type'),(565,199,'_menu_item_menu_item_parent','71'),(566,199,'_menu_item_object_id','174'),(567,199,'_menu_item_object','page'),(568,199,'_menu_item_target',''),(569,199,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(570,199,'_menu_item_xfn',''),(571,199,'_menu_item_url',''),(572,200,'_menu_item_type','post_type'),(573,200,'_menu_item_menu_item_parent','71'),(574,200,'_menu_item_object_id','175'),(575,200,'_menu_item_object','page'),(576,200,'_menu_item_target',''),(577,200,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(578,200,'_menu_item_xfn',''),(579,200,'_menu_item_url',''),(580,201,'_menu_item_type','post_type'),(581,201,'_menu_item_menu_item_parent','71'),(582,201,'_menu_item_object_id','176'),(583,201,'_menu_item_object','page'),(584,201,'_menu_item_target',''),(585,201,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(586,201,'_menu_item_xfn',''),(587,201,'_menu_item_url',''),(588,202,'_menu_item_type','post_type'),(589,202,'_menu_item_menu_item_parent','71'),(590,202,'_menu_item_object_id','178'),(591,202,'_menu_item_object','page'),(592,202,'_menu_item_target',''),(593,202,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(594,202,'_menu_item_xfn',''),(595,202,'_menu_item_url',''),(596,203,'_menu_item_type','post_type'),(597,203,'_menu_item_menu_item_parent','71'),(598,203,'_menu_item_object_id','179'),(599,203,'_menu_item_object','page'),(600,203,'_menu_item_target',''),(601,203,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(602,203,'_menu_item_xfn',''),(603,203,'_menu_item_url',''),(612,205,'_menu_item_type','post_type'),(613,205,'_menu_item_menu_item_parent','70'),(614,205,'_menu_item_object_id','181'),(615,205,'_menu_item_object','page'),(616,205,'_menu_item_target',''),(617,205,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(618,205,'_menu_item_xfn',''),(619,205,'_menu_item_url',''),(628,177,'_wp_trash_meta_status','publish'),(629,177,'_wp_trash_meta_time','1518777490'),(630,207,'_wp_trash_meta_status','publish'),(631,207,'_wp_trash_meta_time','1518777584'),(632,208,'_edit_lock','1518777606:1'),(633,208,'_wp_trash_meta_status','publish'),(634,208,'_wp_trash_meta_time','1518777606'),(635,148,'_edit_lock','1518777634:1'),(636,148,'_edit_last','1'),(637,148,'_wp_page_template','default'),(638,210,'_customize_draft_post_name','project-registration'),(639,210,'_customize_changeset_uuid','27c330d0-7dfd-41bb-8b88-8155859508d2'),(641,211,'_customize_changeset_uuid','9caa25c1-835e-4efe-ab59-41ac817c0f4e'),(650,215,'_menu_item_type','post_type'),(651,215,'_menu_item_menu_item_parent','72'),(652,215,'_menu_item_object_id','211'),(653,215,'_menu_item_object','page'),(654,215,'_menu_item_target',''),(655,215,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(656,215,'_menu_item_xfn',''),(657,215,'_menu_item_url',''),(658,212,'_wp_trash_meta_status','publish'),(659,212,'_wp_trash_meta_time','1518777917'),(660,211,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(661,211,'_edit_lock','1518777873:1'),(662,211,'_edit_last','1'),(663,211,'_wp_page_template','default'),(664,149,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(665,149,'_edit_lock','1518777942:1'),(666,149,'_edit_last','1'),(667,149,'_wp_page_template','default'),(668,151,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(669,151,'_edit_lock','1518778081:1'),(670,151,'_edit_last','1'),(671,151,'_wp_page_template','default'),(673,219,'_customize_changeset_uuid','1e8ef678-97a6-4230-a670-fe4543a2c253'),(675,220,'_customize_changeset_uuid','1e8ef678-97a6-4230-a670-fe4543a2c253'),(692,226,'_menu_item_type','post_type'),(693,226,'_menu_item_menu_item_parent','159'),(694,226,'_menu_item_object_id','219'),(695,226,'_menu_item_object','page'),(696,226,'_menu_item_target',''),(697,226,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(698,226,'_menu_item_xfn',''),(699,226,'_menu_item_url',''),(700,227,'_menu_item_type','post_type'),(701,227,'_menu_item_menu_item_parent','159'),(702,227,'_menu_item_object_id','220'),(703,227,'_menu_item_object','page'),(704,227,'_menu_item_target',''),(705,227,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(706,227,'_menu_item_xfn',''),(707,227,'_menu_item_url',''),(708,221,'_wp_trash_meta_status','publish'),(709,221,'_wp_trash_meta_time','1518778458'),(710,219,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(711,219,'_edit_lock','1518778466:1'),(712,219,'_edit_last','1'),(713,219,'_wp_page_template','default'),(714,220,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(715,220,'_edit_lock','1518778497:1'),(716,220,'_edit_last','1'),(717,220,'_wp_page_template','default'),(718,152,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(719,152,'_edit_lock','1518778552:1'),(720,152,'_edit_last','1'),(721,152,'_wp_page_template','default'),(722,153,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(723,153,'_edit_lock','1518816835:1'),(724,153,'_edit_last','1'),(725,153,'_wp_page_template','default'),(726,154,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(727,154,'_edit_lock','1518778624:1'),(728,154,'_edit_last','1'),(729,154,'_wp_page_template','default'),(730,175,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(731,175,'_edit_lock','1518778760:1'),(732,176,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(733,176,'_edit_lock','1518778794:1'),(734,176,'_edit_last','1'),(735,176,'_wp_page_template','default'),(736,67,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(737,238,'_wp_attached_file','2018/02/B3-countries-globe-800x800.png'),(738,238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2018/02/B3-countries-globe-800x800.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"B3-countries-globe-800x800-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:38:\"B3-countries-globe-800x800-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"B3-countries-globe-800x800-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"trusted-shop-thumbnail\";a:4:{s:4:\"file\";s:38:\"B3-countries-globe-800x800-120x120.png\";s:5:\"width\";i:120;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"trusted-shop-single\";a:4:{s:4:\"file\";s:38:\"B3-countries-globe-800x800-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"trusted-shop-archive\";a:4:{s:4:\"file\";s:38:\"B3-countries-globe-800x800-325x380.png\";s:5:\"width\";i:325;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(739,180,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(740,49,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(741,174,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(742,178,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(743,53,'_edit_lock','1518814859:1'),(744,53,'_edit_last','1'),(745,53,'_wp_page_template','default'),(746,49,'_wp_trash_meta_status','publish'),(747,49,'_wp_trash_meta_time','1518814489'),(748,49,'_wp_desired_post_slug','about-us'),(749,250,'_menu_item_type','custom'),(750,250,'_menu_item_menu_item_parent','0'),(751,250,'_menu_item_object_id','250'),(752,250,'_menu_item_object','custom'),(753,250,'_menu_item_target',''),(754,250,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(755,250,'_menu_item_xfn',''),(756,250,'_menu_item_url','http://localhost:8081/?page_id=53'),(757,249,'_wp_trash_meta_status','publish'),(758,249,'_wp_trash_meta_time','1518814958'),(760,53,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(761,182,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(762,52,'_oembed_103188122a55583d743303b32566ef43','{{unknown}}'),(763,254,'_edit_lock','1518819271:1'),(764,254,'_edit_last','1'),(765,254,'_wp_page_template','default'),(774,258,'_wp_trash_meta_status','publish'),(775,258,'_wp_trash_meta_time','1518816487');
/*!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_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_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=265 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2018-01-16 09:48:25','2018-01-16 09:48:25','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2018-01-16 09:48:25','2018-01-16 09:48:25','',0,'http://localhost:8081/?p=1',0,'post','',1),(2,1,'2018-01-16 09:48:25','2018-01-16 09:48:25','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/try-baobab-lims/\" target=\"_blank\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"https://github.com/BaobabLims/baobab.lims\" target=\"_blank\" class=\"button\">Get the code</a>\r\n','publish','closed','open','','sample-page','','','2018-02-16 21:38:22','2018-02-16 21:38:22','',0,'http://localhost:8081/?page_id=2',0,'page','',0),(3,1,'2018-01-16 09:48:42','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2018-01-16 09:48:42','0000-00-00 00:00:00','',0,'http://localhost:8081/?p=3',0,'post','',0),(4,1,'2018-01-16 09:48:42','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2018-01-16 09:48:42','0000-00-00 00:00:00','',0,'http://localhost:8081/?p=4',0,'post','',0),(6,1,'2018-02-07 11:54:42','2018-02-07 11:54:42','','Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344','','inherit','open','closed','','biobanking-bbmri-cold-storage-quaero-systems-banner-1024x344','','','2018-02-07 11:54:42','2018-02-07 11:54:42','',0,'http://localhost:8081/wp-content/uploads/2018/02/Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg',0,'attachment','image/jpeg',0),(7,1,'2018-02-07 11:54:53','2018-02-07 11:54:53','','cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg','','inherit','open','closed','','cropped-biobanking-bbmri-cold-storage-quaero-systems-banner-1024x344-jpg','','','2018-02-07 11:54:53','2018-02-07 11:54:53','',0,'http://localhost:8081/wp-content/uploads/2018/02/cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg',0,'attachment','image/jpeg',0),(8,1,'2018-02-07 11:55:10','2018-02-07 11:55:10','{\n \"dazzling::header_image\": {\n \"value\": \"http://localhost:8081/wp-content/uploads/2018/02/cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-07 11:55:10\"\n },\n \"dazzling::header_image_data\": {\n \"value\": {\n \"url\": \"http://localhost:8081/wp-content/uploads/2018/02/cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg\",\n \"thumbnail_url\": \"http://localhost:8081/wp-content/uploads/2018/02/cropped-Biobanking-BBMRI-Cold-Storage-Quaero-Systems-banner-1024x344.jpg\",\n \"timestamp\": 1518004493534,\n \"attachment_id\": 7,\n \"width\": 300,\n \"height\": 65\n },\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-07 11:55:10\"\n }\n}','','','trash','closed','closed','','0286e0f1-29d2-4da5-9f8d-ef04d75f3b21','','','2018-02-07 11:55:10','2018-02-07 11:55:10','',0,'http://localhost:8081/?p=8',0,'customize_changeset','',0),(9,1,'2018-02-11 03:13:15','2018-02-11 03:13:15','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]\nBaobab LIMS \"[your-subject]\"\n[your-name] <patmos.cafe@gmail.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Baobab LIMS (http://localhost:8081)\npatmos.cafe@gmail.com\nReply-To: [your-email]\n\n0\n0\n\nBaobab LIMS \"[your-subject]\"\nBaobab LIMS <patmos.cafe@gmail.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Baobab LIMS (http://localhost:8081)\n[your-email]\nReply-To: patmos.cafe@gmail.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2018-02-11 03:13:15','2018-02-11 03:13:15','',0,'http://localhost:8081/?post_type=wpcf7_contact_form&p=9',0,'wpcf7_contact_form','',0),(10,1,'2018-02-11 03:13:35','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2018-02-11 03:13:35','0000-00-00 00:00:00','',0,'http://localhost:8081/?p=10',0,'post','',0),(11,1,'2018-02-11 03:15:25','2018-02-11 03:15:25','','','','inherit','open','closed','','11','','','2018-02-11 03:15:25','2018-02-11 03:15:25','',0,'http://localhost:8081/wp-content/uploads/2018/02/5651a8bb-7dbc-3976-a18d-7a53e166e593.jpg',0,'attachment','image/jpeg',0),(12,1,'2018-02-10 15:31:39','2018-02-10 15:31:39','<ul><li>Numquam et et incidunt</li><li>Aut sequi atque asperiores consequuntur molestiae</li><li>Est vitae sit deserunt eius. Itaque similique at in</li><li>Enim illo ut quia</li><li>Suscipit fugiat molestiae minima</li><li>Dolorem sint</li><li>Fugit praesentium voluptatem aliquid corporis</li></ul>\n<h4>Eligendi est maxime fugiat impedit labore</h4>\n<ul><li>Animi rem dolores velit cum dolores</li><li>Aperiam provident qui et</li></ul>\n<h3>Esse et tempore commodi suscipit nemo sit occaecati. Iusto et nisi a nisi</h3>\n<p>Voluptate voluptatibus tempore sequi eaque totam quis. Qui commodi sunt et. Aut aut consequatur veniam et. Suscipit amet enim provident incidunt. Et quis voluptate quia dolorum laboriosam officiis incidunt. Fuga laborum ipsum asperiores sunt. Dolores aliquam ut reiciendis magnam qui inventore vel. Quod officiis eius repellat quia inventore aliquid ipsum. Fuga aut dolor quae fuga porro quod repellendus. Voluptatem dolorem recusandae enim adipisci. Quia sapiente dolorem ut assumenda consectetur architecto. Numquam ipsum nobis eum ut ipsam. Dolor eveniet iure itaque ex eveniet rerum. Laboriosam ut pariatur quis doloribus. Soluta sit pariatur id nemo. Est culpa omnis et corporis. Et eos est nulla officiis. Ut non et repudiandae consequatur minima suscipit. Porro laboriosam corporis asperiores repellat delectus omnis. Laboriosam hic officiis quia corrupti quia asperiores aut et. Alias culpa amet voluptatem cumque.</p>\n<h1>Non nostrum magni voluptates ut optio facilis et. Commodi accusantium et vitae quibusdam quaerat quam</h1>\n<img class=\"alignleft\" alt=\"Assumenda\" src=\"http://localhost:8081/wp-content/uploads/2018/02/5651a8bb-7dbc-3976-a18d-7a53e166e593.jpg\">\n<blockquote>Consequuntur ut nostrum <a title=\"Nulla fugiat.\" href=\"http://www.kuhic.org/\">aut nihil et. Eum</a> numquam <a title=\"Aut.\" href=\"http://www.kuhic.com/voluptas-reprehenderit-corrupti-ut-molestiae\">tempore</a> reiciendis exercitationem optio. <a title=\"Qui.\" href=\"http://haag.info/accusantium-dolorem-sed-excepturi\">quidem numquam odio blanditiis alias</a> Alias rem quia animi quae ducimus. Non <a title=\"Quia tempora corrupti ut aut quo quas dolor.\" href=\"http://www.schumm.net/in-quia-cumque-dolor-qui-maxime-mollitia.html\">et</a> nihil quia.</blockquote>\n<hr>\n<h4>Iusto explicabo sit mollitia nostrum rem dolorum. Qui debitis sunt aut quia est qui. Nam iure qui fugit non</h4>\n<!--more-->\n<ul><li>Voluptas debitis aut porro animi</li><li>Praesentium dolor maiores voluptates</li><li>Fuga atque autem quia nihil sed cumque voluptatem</li><li>Optio eius est velit est</li><li>Ut fugiat esse libero</li><li>Minus</li><li>Veritatis</li></ul>\n<hr>\n<h4>Ratione corrupti dolor ipsum molestiae illum. Sed aut dolorem incidunt voluptas molestias. Voluptatem et perferendis molestias consequatur et quam quam. Fuga quisquam et facere et omnis</h4>\n<img alt=\"Possimus sint aperiam illum itaque quia vel rerum quis\">\n<p>Quibusdam non tempore explicabo voluptas. Nisi officiis veniam voluptatem assumenda. Ipsam eum ut sed nemo. Esse quae illum. Dolor repellat voluptatem et voluptatibus. Nemo eius alias ab asperiores. Consectetur veniam quia omnis. Et debitis earum quia. Itaque labore velit ut voluptatem. Quis et ipsa amet Rem harum ea magnam. Reiciendis odio vero veritatis. Asperiores voluptas similique repudiandae <a title=\"Aut iste.\" href=\"http://schaden.com/accusantium-rem-mollitia-atque-blanditiis-deleniti-sunt-hic.html\">laboriosam mollitia rem.</a> est hic fugiat asperiores. Et harum fugit aliquid aliquam eveniet. Perspiciatis nostrum molestias blanditiis reiciendis expedita quam quos. Quis molestiae odio unde voluptatem ea. Nisi minus veritatis blanditiis sequi ut. Porro ducimus ea dolore iure.</p>\n<blockquote>Tempore et voluptas dolorem sit dolorem aut molestiae. Voluptas possimus nam quos et aspernatur corrupti. Provident nesciunt nihil ipsum cumque autem est. Voluptatibus alias aut corrupti. Ut molestiae fuga sed aperiam quia. In voluptatem distinctio possimus. Et eum id praesentium pariatur adipisci temporibus. Nesciunt maiores ex quis aspernatur ut unde nihil. Suscipit omnis aut quaerat quam. Et commodi quas excepturi nisi porro nam et. Illo reprehenderit praesentium quis non explicabo delectus. Unde dolores ut optio qui culpa enim maxime. Ut quidem est dolores. Rerum aut id vero ipsam. Quisquam id iste sed doloribus. Est rerum voluptates rerum aut. Omnis laborum quasi sit minima. Harum necessitatibus voluptatum voluptatum est. Minus quis odio accusamus doloremque doloribus alias quos cumque.</blockquote>\n<p>Quo modi omnis esse maxime accusantium. Et <a title=\"Voluptatem voluptate voluptates esse et.\" href=\"http://www.west.net/repellendus-magnam-nemo-earum-dolore-debitis-mollitia-consequuntur\">est ipsum</a> nihil. Sint nobis eaque beatae natus dignissimos. Molestias numquam aut exercitationem. Et delectus consequuntur quod. Possimus est accusamus quasi adipisci eaque. Unde accusantium dignissimos animi ut <a title=\"Aut soluta.\" href=\"http://www.schumm.net/excepturi-voluptas-perferendis-recusandae-nulla-perspiciatis-corrupti.html\">est. Nostrum saepe voluptatem</a> hic sed sint. sunt nisi et et a. Iure qui consequatur. Ea exercitationem maxime inventore dolor. Veniam facere sit illo perspiciatis iste et. Nisi magnam non. Omnis et laboriosam cum. Non <a title=\"Quis qui.\" href=\"http://jacobi.com/rerum-saepe-dolorem-asperiores-excepturi-inventore-placeat-sint-autem\">rem esse. Vel</a> aperiam commodi ipsam. Amet id doloribus ut sunt. culpa illo sunt voluptas eaque labore suscipit.</p>\n<h1>Laborum perspiciatis praesentium ut officiis vel eos. Quae sit qui commodi rerum. Quas ut et maxime laudantium. Nulla consequatur dolores et expedita labore laborum</h1>\n<hr>\n<h3>Vel nam quaerat dolorem dicta dolores ipsa fugit enim</h3>\n<p>Eveniet optio accusamus neque modi. Error aliquam aut qui. quisquam quod optio Qui <a title=\"Voluptatibus quam est a consequatur deleniti fugiat corrupti tempora.\" href=\"http://www.wintheiser.com/qui-aperiam-autem-voluptatem-minima-rerum-error-nihil\">totam</a> <a title=\"Aut expedita voluptas qui.\" href=\"http://prohaska.com/nam-quam-aperiam-veniam-aliquam-aliquam-fuga.html\">quasi. Ratione velit unde</a> ea repellat Molestiae sed nulla <a title=\"Enim ut accusantium harum molestias dolores voluptatem sint.\" href=\"http://www.swaniawski.com/ea-debitis-et-reprehenderit\">aut ut.</a> quo quod voluptatem provident <a title=\"Vero voluptas.\" href=\"http://www.crona.net/ut-qui-facere-ut-vel-similique\">et</a> voluptatibus. Ex enim error optio eligendi. Voluptas enim repudiandae debitis sequi accusamus magni. repellendus nisi <a title=\"Amet sed.\" href=\"http://www.rice.org/incidunt-est-et-amet-quia-odit\">corrupti neque et quis rerum. Est officia est</a> praesentium eos. Voluptatum ullam aperiam deleniti veritatis. iure accusantium et. Velit ut commodi dicta esse. Et beatae sit expedita et.</p>\n<img alt=\"Aut quia rerum officia est explicabo dignissimos voluptatum\">\n<ul><li>Quisquam et deleniti</li><li>Ab rem quos voluptas reiciendis qui</li><li>Sint</li></ul>\n<h4>Culpa assumenda magnam assumenda et est et nam. Voluptates cumque maxime incidunt quisquam voluptate ducimus sed aut. Quis totam nisi quia dolore</h4>\n<hr>','Et enim sequi veritatis voluptatem inventore eum','Esse consequuntur iusto quasi illo ipsum sed minus et eius doloribus at harum molestias voluptatum distinctio cupiditate error cumque ipsa nobis enim temporibus nobis similique a aliquam dolorem doloremque velit facilis.\n\nItaque quo velit perspiciatis eos et eos nam exercitationem voluptas sit aut perferendis quis et qui tempora aut molestiae sed molestias voluptatum fuga illum nostrum veniam accusantium et sunt quod ipsum quia fuga qui dolor totam at ea quas ex ut eos aliquam aut sapiente molestias tenetur deserunt laborum est.\n\nUllam enim alias harum et qui eveniet cupiditate animi quia ut alias ipsam autem sed nobis voluptates illo rerum id iusto amet ullam at tempora labore repudiandae dolore sit reprehenderit magni dicta quia nihil id quam et voluptatum omnis sed sint in.\n\nSuscipit in aut omnis esse dolor rem est facilis ipsam dolores dolor sequi enim nam esse quae odio quas dolore dolores possimus optio quod provident nostrum molestiae laboriosam quasi placeat laborum voluptate pariatur repellat quibusdam vero optio laborum rerum vitae.','publish','open','open','','et-enim-sequi-veritatis-voluptatem-inventore-eum','','','2018-02-10 15:31:39','2018-02-10 15:31:39','',0,'http://localhost:8081/?p=12',0,'post','',2),(13,1,'2018-02-11 03:15:45','2018-02-11 03:15:45','','','','inherit','open','closed','','13','','','2018-02-11 03:15:45','2018-02-11 03:15:45','',12,'http://localhost:8081/wp-content/uploads/2018/02/02bed237-1b2d-33c0-a7ed-aefcb1000fa4.jpg',0,'attachment','image/jpeg',0),(14,1,'2018-02-10 03:21:41','2018-02-10 03:21:41','<h1>Deserunt voluptatum ipsum neque ex neque. Quidem fuga quia aut et ut. Aut quis fugiat sit id</h1>\n<hr>\n<blockquote>Dolores corrupti alias praesentium nobis rerum illo in. <a title=\"Voluptatum.\" href=\"https://schaden.com/rem-dicta-quasi-eum-magnam-est-occaecati.html\">dolor eos deserunt mollitia quam voluptates. Ipsum cumque</a> ab. Nemo impedit et. Voluptates suscipit vitae autem ut earum. Repellat sunt delectus voluptatibus suscipit. Vitae et qui Temporibus tempora quis ut perspiciatis Autem eum incidunt similique quis et sit amet. praesentium numquam sed. Labore voluptas et repellendus sunt Sunt quod delectus aut. Eum aperiam et. Rem porro in sunt delectus. veritatis assumenda et Ab et quod ipsum neque Nesciunt pariatur reprehenderit doloribus veniam hic nulla. Eos aut consequatur harum similique necessitatibus vero. Consequuntur optio eum numquam Distinctio consequatur esse Sed accusantium perspiciatis sint Dolorem <a title=\"Rerum.\" href=\"http://www.bashirian.com/\">et facere ut</a> enim ut. Est non tempora consequatur voluptas. laborum ut Suscipit et fugit praesentium exercitationem sunt. Aut ut itaque optio quibusdam quod. quaerat doloremque debitis sed. ut quaerat aut. Expedita eligendi vel nemo. quis dolor amet animi repellendus. Rem explicabo molestias omnis Omnis <a title=\"Ut voluptatum expedita est qui nemo eos.\" href=\"http://graham.com/\">qui maiores minima aspernatur.</a> repudiandae officiis eum possimus quasi provident. saepe temporibus accusantium sed ut impedit blanditiis. non quaerat est iusto consequatur asperiores. Aspernatur corporis ut maiores sed.</blockquote>\n<h5>Minima est et et nihil ducimus quia. Facere saepe aliquam voluptatem harum voluptatem omnis quis</h5>\n<!--more-->\n<ol><li>Magnam quasi quidem ut illo</li><li>Id necessitatibus ut eos aliquam aut</li><li>Veritatis</li><li>Optio fuga ut autem error suscipit voluptas</li><li>Animi dolorum omnis vitae quibusdam</li><li>Et</li><li>Et id id exercitationem ipsa</li><li>Quia qui est quia ratione sit</li></ol>\n<ol><li>Vel earum aut eos sunt</li><li>Accusamus</li><li>Libero placeat</li><li>Sit enim voluptates quo rerum consequatur</li></ol>','Nulla voluptatum explicabo quo quidem','Doloribus voluptatum dolore nostrum id deserunt natus enim maxime ut soluta aliquam qui sequi nostrum necessitatibus autem odit itaque debitis est est voluptatem ut qui autem voluptas aut alias sint autem est harum et hic ab et aut placeat labore consequatur officia ad consectetur repellat sequi excepturi consequatur rerum.\n\nAnimi aspernatur autem veritatis error quos ex velit ipsum consectetur cumque ut quia provident velit nulla blanditiis totam nisi laudantium occaecati voluptates quam saepe culpa velit mollitia aut corporis officia reprehenderit maxime facere dolorem veritatis quo repellat aut fugiat et et consequatur maiores ipsum consectetur quis ea aperiam consectetur omnis sapiente quam quibusdam iusto culpa eum dignissimos est rerum pariatur adipisci necessitatibus sed eaque voluptas aspernatur magni qui reiciendis rem sunt cum velit quis labore tempore rerum.','publish','open','closed','','nulla-voluptatum-explicabo-quo-quidem','','','2018-02-10 03:21:41','2018-02-10 03:21:41','',0,'http://localhost:8081/?p=14',0,'post','',1),(15,1,'2018-02-11 03:15:48','2018-02-11 03:15:48','','','','inherit','open','closed','','15','','','2018-02-11 03:15:48','2018-02-11 03:15:48','',14,'http://localhost:8081/wp-content/uploads/2018/02/183aecd9-b439-35d3-a2b0-74809d8a30ba.jpg',0,'attachment','image/jpeg',0),(16,1,'2018-02-11 03:15:55','2018-02-11 03:15:55','','','','inherit','open','closed','','16','','','2018-02-11 03:15:55','2018-02-11 03:15:55','',0,'http://localhost:8081/wp-content/uploads/2018/02/c6321f32-f76c-37f0-8214-d520bb5922fb.jpg',0,'attachment','image/jpeg',0),(17,1,'2018-02-10 19:53:44','2018-02-10 19:53:44','<img src=\"http://localhost:8081/wp-content/uploads/2018/02/c6321f32-f76c-37f0-8214-d520bb5922fb.jpg\" alt=\"Non est ea est magnam architecto enim iste sint\" />\r\n<img alt=\"Voluptatem explicabo rem qui sint reprehenderit quibusdam laboriosam culpa\" />\r\n<!--more-->\r\n<h2>Laudantium est quas ipsam quibusdam autem est aut. Architecto et eum odit soluta</h2>\r\n\r\n<hr />\r\n\r\n<h4>Illum tempora eaque accusantium eveniet dolorem ex. Dolores omnis eum ut. Ratione perferendis vero nemo</h4>\r\n<ul>\r\n <li>Aut molestiae ab voluptas</li>\r\n</ul>','Storage of biospecimen','Nobis est sint ut unde voluptatem inventore illo mollitia sed enim ut modi illo alias omnis aperiam ea voluptas consequatur iusto qui sequi delectus fugit porro repellat sed illo fugit ut ut tempore labore optio voluptatem voluptatem in dolorem dolorum ab enim voluptatem non velit ipsam aut dolor mollitia ut repellat quae et est corporis nemo qui.\r\n\r\nVoluptas sunt vero ad et aut voluptate ex incidunt ducimus quos quidem non adipisci suscipit voluptatem ex amet dolorem inventore nesciunt sequi rerum iusto unde quibusdam qui qui consequatur provident qui odio temporibus quasi aliquam quo sed eum aut sequi occaecati et vel eius odio voluptatibus ullam qui id debitis quisquam est mollitia perferendis nostrum itaque doloribus natus dolor ut dolores ex blanditiis vero quia.','publish','open','closed','','totam-nostrum-suscipit-earum','','','2018-02-14 13:15:17','2018-02-14 13:15:17','',0,'http://localhost:8081/?p=17',0,'post','',0),(18,1,'2018-02-11 03:16:01','2018-02-11 03:16:01','','','','inherit','open','closed','','18','','','2018-02-11 03:16:01','2018-02-11 03:16:01','',17,'http://localhost:8081/wp-content/uploads/2018/02/ecd04b19-a7bb-30ed-82ea-dfd997b45c85.jpg',0,'attachment','image/jpeg',0),(19,1,'2018-02-11 03:16:09','2018-02-11 03:16:09','','','','inherit','open','closed','','19','','','2018-02-11 03:16:09','2018-02-11 03:16:09','',0,'http://localhost:8081/wp-content/uploads/2018/02/1a4bad20-aef2-3f6f-8300-43e2c9603684.jpg',0,'attachment','image/jpeg',0),(20,1,'2018-02-10 14:02:59','2018-02-10 14:02:59','<hr>\n<ol><li>Sapiente aut pariatur at hic ut rerum nostrum nulla</li><li>Nisi consectetur</li><li>Et id aut</li></ol>\n<img>\n<h5>Voluptas corrupti asperiores et et ab. Autem aspernatur autem et quasi eius numquam. Odio ut sint totam qui</h5>\n<!--more-->\n<blockquote>Corrupti ipsa molestiae Ea voluptatem esse amet. Distinctio rerum suscipit iste magnam. Fugiat assumenda nihil qui et quia magni. Illum rerum consectetur earum quam. Eius sed consectetur vel ut quasi. Rem sint dolor praesentium voluptatum quia ut. Non veritatis earum Enim enim tenetur. velit aperiam placeat velit autem quis. Exercitationem ipsam incidunt non dolores ipsa ea quisquam. Enim maxime dicta vel et ea rerum vero. aut sapiente quidem. eius sed odit officia qui. Qui a sunt qui iure Dicta aut minus minus est sed. dolore consequuntur ullam cumque. Dolores voluptatum assumenda ullam dolores. Et adipisci quia quia. Impedit quasi et nesciunt. sed ut omnis at. Fuga ut autem exercitationem accusantium dolorem dolorem Ut quia est qui Tempore voluptatum sequi veniam est velit. Vel sequi nobis voluptate tempore. Ex id voluptas laborum mollitia eum voluptas. Officiis pariatur quia aliquid. Id accusantium enim autem. Ipsum id sequi rerum est veniam voluptas. Quod voluptas voluptates omnis fugit ut. Numquam neque voluptatum veniam. Repellat nostrum ea sint quo ipsum Et omnis voluptatem laborum id rem. repudiandae voluptas assumenda ullam dolorem. Ea quas itaque ut qui. accusamus id velit ducimus repellendus eos. Blanditiis facere voluptatibus consequatur rerum. Doloribus cumque rerum necessitatibus consequatur suscipit voluptatem. Sunt facere accusamus optio sed fugit aliquam. qui consequatur laudantium. Iste consequatur id unde vel vel Quo deleniti laborum sit dolores. Ea possimus dolores officia voluptatem. Ut et <a title=\"Voluptate nulla illum omnis.\" href=\"https://sawayn.com/et-eligendi-quae-est-amet-temporibus-culpa-eligendi.html\">assumenda ea eum. Repudiandae consequatur temporibus assumenda</a> nulla saepe. Veniam maiores laboriosam mollitia tenetur excepturi. rerum tempora magni Repellendus reiciendis vel unde nostrum rem sunt. aut dicta dolorem ex quo sunt Et laudantium neque soluta officiis. Ratione aut inventore aut. Consequuntur cumque autem facere alias cumque voluptatem. Ullam quis minima saepe</blockquote>\n<img alt=\"Molestiae\" src=\"http://localhost:8081/wp-content/uploads/2018/02/1a4bad20-aef2-3f6f-8300-43e2c9603684.jpg\">\n<blockquote>Deserunt repudiandae molestiae pariatur eum neque commodi Excepturi officiis dolor ducimus illum expedita. consequatur consequuntur cupiditate aliquam temporibus <a title=\"Aperiam enim magnam rerum repellendus.\" href=\"http://roberts.org/optio-possimus-minus-qui-ex-placeat\">totam. Occaecati</a> voluptatem tempore et. Eveniet quia doloremque maiores. Dolorum <a title=\"Unde hic non odio magni soluta maxime.\" href=\"http://www.hickle.info/quae-dicta-neque-dolore-voluptatem-et.html\">adipisci eos</a> Dignissimos at quis voluptatem Quo dolore <a title=\"Sint libero vel earum.\" href=\"http://www.johns.com/eligendi-optio-consequatur-excepturi-veniam-distinctio-alias\">blanditiis</a> quas Velit <a title=\"Itaque et consequatur omnis nulla.\" href=\"http://rowe.com/perspiciatis-tempora-quia-tempora\">labore laboriosam voluptatum</a> vero nostrum. Ab eum ducimus minima eum praesentium. Repellat quas aut quibusdam vel unde ipsum. Temporibus deleniti placeat pariatur quam maiores. Dignissimos reiciendis laborum <a title=\"Aut cum odit fuga aliquam velit omnis voluptatem.\" href=\"http://www.goodwin.com/\">et laudantium</a> <a title=\"Voluptatum ut iure laborum.\" href=\"http://zboncak.com/\">nesciunt.</a> fuga quis aut odit in laborum doloribus. Earum rerum eveniet quis dolore repellat. quia ex cumque. Beatae odit sit voluptatem Velit quia qui ipsa expedita. Aspernatur fugit aut totam doloribus.</blockquote>\n<h3>Rerum voluptatem voluptas deserunt. Numquam vero architecto et necessitatibus sint necessitatibus. Voluptate expedita necessitatibus aperiam</h3>\n<ol><li>Est amet ipsum autem ex</li><li>Quia non</li><li>Voluptatem</li><li>Minus mollitia at illum reprehenderit sunt ut</li><li>Quis quae aut nostrum</li><li>Ut minus vel quae esse praesentium excepturi</li></ol>\n<hr>','Voluptates deleniti rerum molestiae','','publish','open','closed','','voluptates-deleniti-rerum-molestiae','','','2018-02-10 14:02:59','2018-02-10 14:02:59','',0,'http://localhost:8081/?p=20',0,'post','',1),(21,1,'2018-02-11 03:16:15','2018-02-11 03:16:15','','','','inherit','open','closed','','21','','','2018-02-11 03:16:15','2018-02-11 03:16:15','',20,'http://localhost:8081/wp-content/uploads/2018/02/3c397896-d97a-38a5-88bc-89b5a332db40.jpg',0,'attachment','image/jpeg',0),(22,1,'2018-02-11 03:16:16','2018-02-11 03:16:16','','','','inherit','open','closed','','22','','','2018-02-11 03:16:16','2018-02-11 03:16:16','',0,'http://localhost:8081/wp-content/uploads/2018/02/1eb89627-9222-3342-9c86-f27d16d80366.jpg',0,'attachment','image/jpeg',0),(23,1,'2018-02-11 03:16:20','2018-02-11 03:16:20','','','','inherit','open','closed','','23','','','2018-02-11 03:16:20','2018-02-11 03:16:20','',0,'http://localhost:8081/wp-content/uploads/2018/02/def50054-9bf1-3cf0-8f78-8cc239a31baf.jpg',0,'attachment','image/jpeg',0),(24,1,'2018-02-10 06:46:02','2018-02-10 06:46:02','<h6>Exercitationem et inventore qui fuga. Non officiis libero ipsam tempore. Maxime ipsum accusantium eos ex repudiandae ipsa optio. Aut cumque cumque possimus dolor</h6>\n<p>Illum quod sequi ea id praesentium quam qui. Cupiditate dicta qui voluptatem libero et inventore. Neque consectetur dolorum natus earum fuga. Suscipit repudiandae repellat aspernatur voluptates quam eveniet error. In enim sequi et pariatur. Earum eum porro facilis. Totam eos quia omnis. Non voluptas delectus in nihil vel. Odio quia maiores delectus autem ullam et laudantium voluptates. Ea dicta consequuntur omnis fugit et assumenda. Aspernatur ut labore iusto at eum exercitationem ut. Et corrupti voluptas dolores ea. Sapiente incidunt nostrum blanditiis est quis pariatur. Reiciendis asperiores a fugit dignissimos. Aperiam consequatur perferendis deserunt repudiandae porro qui dicta. Fugiat error quasi rerum quasi. Possimus quis amet qui error odit praesentium. Aut iure dolor alias et. Voluptas quo corrupti veritatis ut culpa ut. Nostrum et tenetur minima consequatur. Suscipit debitis aut minima perspiciatis molestiae hic. Corrupti eaque quam quidem quis et. Aut est in aut qui velit. Itaque beatae est quo exercitationem quo.</p>\n<h2>A exercitationem quibusdam at quo</h2>\n<img alt=\"Est consequatur ea adipisci occaecati in distinctio quo\" src=\"http://localhost:8081/wp-content/uploads/2018/02/1eb89627-9222-3342-9c86-f27d16d80366.jpg\">\n<h1>Quia nulla rerum vel. Porro accusantium ipsa provident. Eligendi sed minus veritatis facilis excepturi</h1>\n<!--more-->\n<ul><li>Est nisi quasi</li><li>Sit et eum</li><li>Ab temporibus ut nihil sed pariatur</li></ul>\n<h5>Nobis voluptatem nulla similique et. Aliquid in minus laboriosam</h5>\n<img class=\"alignleft\" src=\"http://localhost:8081/wp-content/uploads/2018/02/def50054-9bf1-3cf0-8f78-8cc239a31baf.jpg\">\n<img class=\"alignleft\" src=\"http://localhost:8081/wp-content/uploads/2018/02/def50054-9bf1-3cf0-8f78-8cc239a31baf.jpg\">\n<h3>Aliquam quidem molestias voluptas perferendis quia omnis et</h3>\n<p>Rerum architecto aut fugit eius incidunt quam ipsam. Animi autem iure asperiores officiis aut. Aut officia quaerat cum cum vero. Beatae modi consequatur quam. Non nobis totam vitae quam impedit. Voluptas modi eum cumque natus magni omnis. Officiis possimus eum aut est. Dolores accusamus quia et error. Omnis blanditiis et officiis aliquid fugiat omnis. Aut occaecati libero molestiae ullam voluptatem nostrum. A consequuntur deserunt libero quia qui. Qui architecto voluptatem aut commodi sit aut at. Iure iste quia vel accusantium. Perferendis beatae hic soluta quia non.</p>\n<h5>Rerum tempora natus sed consequatur eum ea illo. Doloribus expedita est enim dolores et impedit. Ipsam id ab esse sint fuga. Dolor culpa consequatur sed iste ut</h5>\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/ecd04b19-a7bb-30ed-82ea-dfd997b45c85.jpg\">','Eligendi mollitia vitae aut','Laudantium ipsam minus expedita iusto eum ratione consectetur perspiciatis fuga totam voluptatum ipsa vel rem ducimus in architecto voluptas error ducimus aut molestiae ratione sit voluptatem aut consequatur repudiandae veritatis vitae.','publish','open','closed','','eligendi-mollitia-vitae-aut','','','2018-02-10 06:46:02','2018-02-10 06:46:02','',0,'http://localhost:8081/?p=24',0,'post','',0),(25,1,'2018-02-11 03:16:21','2018-02-11 03:16:21','','','','inherit','open','closed','','25','','','2018-02-11 03:16:21','2018-02-11 03:16:21','',24,'http://localhost:8081/wp-content/uploads/2018/02/da8e5a85-2a44-3375-8b36-ba0e10370115.jpg',0,'attachment','image/jpeg',0),(26,1,'2018-02-10 04:37:49','2018-02-10 04:37:49','<h4>Et laboriosam omnis minima tempore. Minus et et perspiciatis. Ducimus qui placeat quia qui omnis</h4>\n<p>Iure officia accusamus ullam sapiente quos. Aspernatur non aut delectus quia eos <a title=\"Laboriosam qui.\" href=\"http://feeney.com/voluptatibus-ut-et-et-vero\">facilis. Minima</a> <a title=\"Dolorem quam soluta modi sed mollitia non.\" href=\"http://www.gerlach.com/eos-et-dolor-odit-officiis-tenetur-beatae\">deserunt rerum dolore magni.</a> quo molestiae sit vero cum corporis ab. Nihil doloremque repudiandae ipsa laborum Architecto nam architecto ea quis consequatur esse. Doloribus asperiores quae <a title=\"Laboriosam sit sed tempore ut consectetur corrupti dolorem dicta consectetur.\" href=\"http://cummings.com/occaecati-eos-quisquam-nihil-et-nam-sint.html\">possimus non. Laudantium vel</a> est et voluptatem. accusamus aspernatur est architecto esse maiores <a title=\"Nihil et perspiciatis aperiam.\" href=\"http://schroeder.com/ex-repudiandae-et-qui-eum-eum-quia-veniam-vel\">Occaecati unde</a> sunt aspernatur deleniti. harum itaque quia repellendus rerum Eum voluptatem expedita quia qui. Totam voluptatem <a title=\"Omnis error sunt hic non blanditiis officia voluptas est doloremque facere nulla.\" href=\"http://www.huel.com/eveniet-minus-atque-suscipit-nesciunt\">omnis</a> Voluptas ratione vel maiores et. Id unde voluptatem laborum <a title=\"Ex delectus voluptas ut.\" href=\"http://www.rippin.com/consequatur-minus-et-nemo-sint-quis-ipsa-ea.html\">dolore aut. Error</a> quos ut voluptatem magni labore Saepe omnis et labore facilis aut. Dolore et iste repudiandae eius fugit</p>\n<h4>Culpa est ut nesciunt vero. Vitae asperiores facilis quo voluptatem consequatur et reiciendis</h4>\n<img class=\"alignright\" alt=\"Quaerat\">\n<!--more-->\n<blockquote>Molestias corporis exercitationem suscipit incidunt eos. Dolorum quia beatae quasi vitae. Minus consequatur repudiandae aperiam. Hic iusto eum aperiam libero id. eveniet quae omnis est et <a title=\"Molestiae tempora doloribus eos.\" href=\"http://www.kirlin.com/nihil-quibusdam-rerum-minus-aut\">ipsam. Error tenetur</a> voluptate porro quam. Doloremque <a title=\"Velit.\" href=\"http://gerlach.com/voluptate-voluptatem-nemo-tempore-harum-dignissimos-qui-quia\">repudiandae eveniet</a> Ipsam ab unde Odit non sit expedita autem Et itaque repellendus facilis inventore quis quisquam. Perferendis eos ipsam dolorum. Eaque aspernatur explicabo exercitationem odio id <a title=\"Ea dolore cupiditate accusamus.\" href=\"http://www.dach.net/maiores-aliquam-atque-tempora-dolore-dolor-error-illo\">Suscipit consequuntur nostrum omnis nihil explicabo porro</a> Fugit placeat natus aut voluptatem. veritatis blanditiis alias iusto. Explicabo cupiditate ratione minima eaque. Deleniti autem expedita iste. illo est qui molestiae et dolorum. Suscipit aut velit ut inventore inventore aut.</blockquote>\n<h6>In odio molestiae maxime. Error natus quam omnis vel incidunt. Blanditiis nihil perferendis ipsam voluptas reiciendis</h6>\n<p>Illo ea nemo vitae quos debitis fuga velit. soluta dolores voluptatem saepe. laboriosam esse nisi totam. Sunt dolor quo molestias accusamus officia <a title=\"Sit dolor quae sunt omnis accusantium.\" href=\"http://mosciski.com/dolorum-vel-in-quaerat-optio-et-ratione-aut\">Quia sequi aut esse quasi. Repellat</a> ut et incidunt eligendi quaerat. Voluptatum rerum perspiciatis dolorum dolorum est. quia aut autem alias. qui sint <a title=\"Rerum quia officia omnis fugit.\" href=\"https://www.block.com/est-molestias-quia-est-iure\">minima omnis</a> nihil totam. Est harum sit sit vel provident. Laboriosam autem omnis. Consequatur consequatur ratione qui <a title=\"Facilis ipsam molestiae quae voluptas earum.\" href=\"http://pollich.com/harum-ratione-officiis-alias-doloremque.html\">molestias quidem delectus.</a> eligendi sed ullam dolor. Accusamus corporis labore harum. Dignissimos cumque sed et <a title=\"Ullam quia sapiente itaque maxime.\" href=\"http://www.wilderman.com/nulla-ipsam-tempora-blanditiis-voluptas-a-et-et\">distinctio voluptatibus. Eos</a> sequi in ut. Ullam beatae est pariatur Illum incidunt eligendi explicabo.</p>\n<h1>Sequi in odit asperiores dolorem soluta officiis</h1>\n<ul><li>Modi et veritatis aut ad</li><li>Architecto quia nobis</li><li>Est ipsa</li></ul>\n<h2>Quae ad tempora consequuntur officiis</h2>\n<img class=\"alignright\" alt=\"Voluptate delectus unde\" src=\"http://localhost:8081/wp-content/uploads/2018/02/1a4bad20-aef2-3f6f-8300-43e2c9603684.jpg\">','Sequi odio et commodi doloribus suscipit incidunt','','publish','open','closed','','sequi-odio-et-commodi-doloribus-suscipit-incidunt','','','2018-02-10 04:37:49','2018-02-10 04:37:49','',0,'http://localhost:8081/?p=26',0,'post','',2),(27,1,'2018-02-11 03:16:33','2018-02-11 03:16:33','','','','inherit','open','closed','','27','','','2018-02-11 03:16:33','2018-02-11 03:16:33','',0,'http://localhost:8081/wp-content/uploads/2018/02/be30f0ef-0cb6-3859-94c9-39d53f2d93e3.jpg',0,'attachment','image/jpeg',0),(28,1,'2018-02-11 03:16:34','2018-02-11 03:16:34','','','','inherit','open','closed','','28','','','2018-02-11 03:16:34','2018-02-11 03:16:34','',0,'http://localhost:8081/wp-content/uploads/2018/02/4effe5b6-2ea5-3a68-9394-998df3935881.jpg',0,'attachment','image/jpeg',0),(29,1,'2018-02-10 11:17:13','2018-02-10 11:17:13','<h3>Necessitatibus ullam sequi delectus blanditiis non occaecati amet. Et maxime rerum quisquam autem non</h3>\n<img class=\"alignright\" alt=\"Minus occaecati exercitationem sed et architecto aut doloribus molestias voluptatem laborum\" src=\"http://localhost:8081/wp-content/uploads/2018/02/c6321f32-f76c-37f0-8214-d520bb5922fb.jpg\">\n<hr>\n<h4>Facilis omnis facilis optio tempora corrupti cumque aliquam</h4>\n<p>Aut aut <a title=\"Itaque dolore et quis.\" href=\"http://streich.info/alias-inventore-dolorum-exercitationem-iure-modi-nihil\">quia et deleniti vero id. Voluptatem qui</a> unde quo. Et doloremque esse</p>\n<blockquote>Quisquam <a title=\"Porro sit.\" href=\"http://ruecker.net/voluptatem-officia-iure-omnis\">aut aliquam</a> voluptate qui ipsam exercitationem. molestiae rerum quisquam voluptatem facilis commodi. Accusantium adipisci voluptatem quia aut aliquid eum. Reprehenderit quibusdam nemo aut ipsum Et perspiciatis <a title=\"Et necessitatibus quasi rem eveniet veniam est.\" href=\"http://kemmer.com/\">omnis</a> quia sit. Repellendus officiis libero accusantium. Dolorum vero rerum <a title=\"Natus accusantium sed explicabo.\" href=\"http://marks.com/saepe-et-recusandae-quo-labore-aut-qui-autem-nam\">rerum facere vero enim.</a></blockquote>\n<!--more-->\n<h5>Eos ut eius quo facilis aut. Eaque consectetur deleniti est labore. Ex fugit quos voluptates ipsam aspernatur</h5>\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/be30f0ef-0cb6-3859-94c9-39d53f2d93e3.jpg\">\n<h5>Ut qui velit maiores sapiente non. Et ut fuga sequi earum repellat. Animi doloribus voluptatem et</h5>\n<ul><li>Et esse delectus</li><li>Expedita fuga amet sed dolor</li><li>Omnis quas numquam placeat</li></ul>\n<blockquote>Ipsam non sed molestias eum non. Suscipit nesciunt quasi nesciunt provident voluptatem. Itaque nemo quas non eligendi repudiandae hic. Veniam voluptatibus ipsa voluptatem quisquam consequatur. Eos eum temporibus atque deleniti adipisci. Quia omnis voluptas sapiente consequatur deleniti quas eum. Voluptatem odit quod eius suscipit nihil est. Sed non atque qui maiores fugit nemo quam nostrum. Ea quae voluptas unde. Eligendi odit explicabo sed velit. Fuga et quae asperiores velit saepe. Nam rem non sed voluptatem repellat veritatis. Aspernatur tenetur perferendis cumque velit voluptatum odio vel. Corrupti enim rerum sed sit praesentium natus quisquam. Accusantium optio autem ex ipsum fugit dolore. Distinctio ut eos et architecto expedita minus dolorem. Dolores nam qui explicabo exercitationem tempore eaque qui. Rerum mollitia est enim consequatur sit beatae atque. Voluptatum nihil culpa est ut et est aut. Facilis voluptatem eos ipsam voluptate distinctio est alias. Voluptatem dolores minima quas natus est. Culpa ipsum et deserunt sed. Ut quia culpa aut omnis et. Doloremque distinctio suscipit error aspernatur quis dolores. Beatae consequatur ut voluptatem quisquam dolor quis. Sunt harum veritatis earum facere. Deleniti nulla est et et ut a autem.</blockquote>\n<h1>Harum ipsam ut qui esse nisi ratione accusamus vel. Alias qui provident doloremque deleniti hic amet ipsum. Rerum animi rerum enim quo. Non tenetur qui neque nostrum assumenda</h1>\n<ol><li>Quis quia</li><li>Dolorem minima est molestiae officiis cumque</li><li>Doloremque dolore</li></ol>\n<h2>Recusandae harum voluptas voluptatum sit. Atque dignissimos rerum vel sit</h2>\n<ol><li>Quasi</li><li>Modi animi consequatur sed</li><li>Mollitia modi totam enim et</li></ol>\n<img alt=\"Odit dolorem magni iste quia non accusantium rerum\" src=\"http://localhost:8081/wp-content/uploads/2018/02/4effe5b6-2ea5-3a68-9394-998df3935881.jpg\">\n<p>Laudantium ipsam iure ratione non provident. Corporis architecto voluptatibus voluptate. Cumque ratione fugiat est qui. assumenda placeat et natus. Fugit neque similique ut est. quo distinctio et et sunt repellat tempora. Nobis non corporis aut. dolor sit quae recusandae distinctio. Modi ea voluptas fugit corrupti. Minima porro velit nemo sunt necessitatibus. Consequatur et ut. Ratione ad est <a title=\"Id.\" href=\"http://www.streich.org/est-quibusdam-assumenda-recusandae-et-corporis-architecto\">nostrum harum.</a> qui aut enim animi Facere eaque distinctio dicta Qui animi at odio officiis id non Quidem vero tempore libero quod Tempora natus dignissimos distinctio aut velit voluptatum. asperiores consectetur beatae officiis. Tempora non culpa a Aperiam quidem odio ratione nihil consequatur. Id accusantium dolorem doloribus laborum eius qui. Maxime enim dolores alias Rerum minima eos ut placeat quos. Ducimus hic et. non ipsum esse ab qui In distinctio pariatur officiis ullam dolorum. Rem omnis dolorem nihil et natus ipsa. labore atque dicta repellat. Dolores nobis et id quia qui Quas vitae eum numquam nisi. Optio necessitatibus voluptas ea dolorem sint quo. soluta quia voluptatibus dolorum quia laborum.</p>\n<blockquote>Qui beatae quas sint reprehenderit illum dolores esse. Recusandae corrupti minima rem et. Nihil sapiente eveniet laborum vitae. Maxime impedit temporibus recusandae eos necessitatibus deserunt. Quidem quasi voluptatem ut voluptas est. Porro ut cum sint numquam at. Qui vel ea eveniet et voluptatem. Dolor aut tempora in ut distinctio. Nihil odit ratione fuga qui error laborum non et. Expedita et totam soluta dolorum qui tempore. Alias maiores ea ut aliquam vitae nihil et. Ipsa id laudantium et minima vel. Soluta dolorem architecto doloribus rerum. Sed dolores eum aut est sint. Molestiae excepturi velit molestiae sit. Non nam omnis exercitationem accusantium ipsum. Doloremque ex quia sit velit architecto repellat. Impedit perferendis dignissimos eaque dolores a. Magnam eaque pariatur quia. Molestiae ipsa recusandae ex ullam. Ea repellendus necessitatibus officia ex. Nesciunt veniam adipisci harum fugit repellendus consequatur molestiae. Hic suscipit eos deleniti quidem. Ea quidem ab dolores dolorem. Fugit impedit excepturi provident tempore vitae excepturi. Accusantium error et autem ut. Iusto dignissimos in eaque eos autem mollitia tenetur harum. Doloribus et eius rem dolor asperiores. Recusandae rem rerum molestiae accusantium. Voluptas quaerat quisquam voluptatem maiores eos similique eius non. Temporibus dolorum quibusdam tenetur illo qui. Quo aliquid ut incidunt ipsa nostrum. Aut repudiandae tempora illum minima. Enim ex omnis et facilis aperiam. Architecto quia sequi et voluptas saepe ut. Molestias eum est aspernatur aliquam reprehenderit vel. Alias in reprehenderit iure sunt praesentium aut.</blockquote>','Veniam impedit ipsum sapiente ut in veniam','Nemo sequi sed harum reprehenderit consequatur corrupti illo et possimus rem neque ea voluptas ipsa deleniti ratione facilis dicta accusamus consequuntur eius iste et minus quia hic alias id autem autem atque odit excepturi unde nulla alias ut beatae laborum eos voluptas doloribus et eius dolores possimus provident dolores odio non pariatur est qui blanditiis impedit ab et doloremque dolore nesciunt debitis libero earum voluptates maxime dolore ex velit sapiente sequi aliquam.\n\nEt vero voluptates quibusdam delectus vel vero velit dolorum mollitia porro quas sit possimus tempora amet vel voluptas laudantium totam sapiente natus ex ut qui minus possimus aut voluptatum officia ipsum odit ea excepturi rerum sit est accusantium molestias voluptatem voluptas fuga natus sunt sit aliquam excepturi quia consequuntur voluptatem impedit qui et omnis non corporis laborum.','publish','open','open','','veniam-impedit-ipsum-sapiente-ut-in-veniam','','','2018-02-10 11:17:13','2018-02-10 11:17:13','',0,'http://localhost:8081/?p=29',0,'post','',0),(30,1,'2018-02-11 03:16:39','2018-02-11 03:16:39','','','','inherit','open','closed','','30','','','2018-02-11 03:16:39','2018-02-11 03:16:39','',29,'http://localhost:8081/wp-content/uploads/2018/02/a0021be1-2a5c-35ca-8db8-679d1aebbd21.jpg',0,'attachment','image/jpeg',0),(31,1,'2018-02-11 03:16:41','2018-02-11 03:16:41','','','','inherit','open','closed','','31','','','2018-02-11 03:16:41','2018-02-11 03:16:41','',0,'http://localhost:8081/wp-content/uploads/2018/02/56f0c828-18c5-380b-98fd-1fa7cffdd7e3.jpg',0,'attachment','image/jpeg',0),(32,1,'2018-02-11 03:16:44','2018-02-11 03:16:44','','','','inherit','open','closed','','32','','','2018-02-11 03:16:44','2018-02-11 03:16:44','',0,'http://localhost:8081/wp-content/uploads/2018/02/946266b1-eee9-3ca5-ac8b-6ec547bbcacf.jpg',0,'attachment','image/jpeg',0),(33,1,'2018-02-10 20:00:24','2018-02-10 20:00:24','Sapiente qui et doloremque. Quia minima ipsam qui excepturi. Consectetur sit fugit quod odit eligendi Ipsa et quasi voluptas enim enim est. autem quis id commodi at quaerat. maiores voluptas est vel ab ipsam. Nemo itaque hic. Eligendi et <a title=\"Aut eos praesentium.\" href=\"http://reinger.com/sunt-temporibus-dolor-minus-ducimus-non.html\">voluptates</a> nemo voluptatum. Et ipsam delectus adipisci. autem quasi qui perspiciatis. Dolor dolore voluptate aliquam esse accusamus sed. maiores accusamus atque dolore nihil consequatur. Quia animi eum accusamus tempora iste voluptates. Incidunt eius voluptas velit quis tenetur. Sit quisquam suscipit quia excepturi blanditiis. enim iste impedit amet ut. Ad dolor earum nihil omnis Aut culpa voluptas iste omnis a adipisci odio. Et odit ex tenetur. Expedita iure iure est in omnis incidunt. Vitae perferendis sed doloremque in reprehenderit nam. sequi aut sit Est et est omnis est.\r\n<h2>Accusamus expedita quaerat ad recusandae quis. Adipisci perferendis et nihil inventore</h2>\r\n\r\n<hr />\r\n\r\n<!--more-->\r\n<h5>Ipsam repellendus qui unde voluptas. Voluptas perspiciatis qui dolor mollitia ipsum ut</h5>\r\n<ol>\r\n <li>Pariatur et et accusamus distinctio qui</li>\r\n <li>Soluta ducimus nihil sed</li>\r\n <li>Reprehenderit iusto dolor ad</li>\r\n</ol>\r\n\r\n<hr />\r\n\r\n<h1>Aut in mollitia ipsam enim blanditiis eius</h1>\r\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/a0021be1-2a5c-35ca-8db8-679d1aebbd21.jpg\" alt=\"Quos quasi et ipsum error iste fugiat\" />\r\n<h1>Qui nobis blanditiis velit expedita totam. Ut possimus vel dicta et ex fugit. Atque illo numquam officia voluptatem nisi distinctio</h1>\r\n<ol>\r\n <li>Et voluptas omnis aut rerum</li>\r\n <li>Ad ipsum</li>\r\n <li>Voluptatem esse recusandae libero qui corporis</li>\r\n <li>Sunt velit officia</li>\r\n <li>Dolorem nemo dicta necessitatibus quia modi magni quo</li>\r\n <li>Sit</li>\r\n <li>Architecto</li>\r\n</ol>\r\n<blockquote>Ullam rerum quia ex non autem facere. Cum rerum et deleniti magni <a title=\"Exercitationem consequatur.\" href=\"http://wolff.com/sit-quidem-praesentium-nesciunt-pariatur-dolore-illum\">id. Ut unde hic fuga fugit culpa.</a> architecto et beatae hic ut. Occaecati labore rerum omnis et <a title=\"Porro rem et et qui.\" href=\"http://cummerata.org/\">repudiandae molestias. Ut</a> omnis qui repellendus aut. Architecto molestias a sit eos quibusdam itaque. Quibusdam numquam ducimus impedit quasi quia. Harum magnam <a title=\"Quae beatae nam corrupti eaque impedit ratione.\" href=\"http://www.parker.com/incidunt-ut-vero-ratione-magni.html\">dolorem corporis</a> culpa non. omnis nemo alias maxime. Hic <a title=\"Quas quisquam quia inventore laudantium quam.\" href=\"http://www.dubuque.com/quo-architecto-facilis-natus-nostrum-quibusdam.html\">ratione perferendis labore provident rerum laudantium. Nisi</a> distinctio cupiditate. Earum et sed. Temporibus aut ipsam. Doloribus voluptates et facilis Hic deleniti natus sit. Quibusdam nesciunt laborum debitis. Nobis officia ut enim eum earum optio dolorum. Dicta omnis beatae dolorum sed <a title=\"Assumenda asperiores aliquam illo accusamus iusto.\" href=\"http://weber.com/architecto-nulla-provident-illum-veritatis-est-quo-dignissimos\">Et tenetur quia vero</a> rerum et officiis. Necessitatibus rerum harum nemo</blockquote>\r\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/56f0c828-18c5-380b-98fd-1fa7cffdd7e3.jpg\" alt=\"Quia non consequatur\" />\r\n<h1>Voluptas consequatur eveniet earum in</h1>\r\n<ul>\r\n <li>Eveniet sed incidunt voluptatum autem</li>\r\n</ul>\r\n<img class=\"aligncenter\" src=\"http://localhost:8081/wp-content/uploads/2018/02/946266b1-eee9-3ca5-ac8b-6ec547bbcacf.jpg\" />\r\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/1eb89627-9222-3342-9c86-f27d16d80366.jpg\" />\r\n\r\nQuos aut ut suscipit quos. Veniam qui amet commodi vitae ut. et et nostrum eum est. Totam mollitia quibusdam sint quia assumenda. neque corporis <a title=\"Id vero recusandae ea quam sunt.\" href=\"http://www.thiel.net/deserunt-sit-nostrum-error-harum\">minima placeat. Error voluptatum</a> voluptas voluptas accusantium impedit Autem enim aliquid labore voluptates tempora reprehenderit Et quis error vero id incidunt Facilis dolorem ipsam dolor maxime. est neque ex placeat molestiae. perspiciatis cupiditate aut Saepe est tempora nemo quidem vitae. Omnis in non praesentium qui consequuntur. Magnam aliquid perspiciatis provident nisi Tempore non eius excepturi in numquam. quaerat omnis ex eum sapiente. Est amet doloribus dolores et aspernatur Earum excepturi at Et perferendis inventore et ipsam. soluta harum repudiandae ea quo Ut sint tenetur optio cumque rerum eum porro. Laboriosam tenetur voluptatem aliquam. minima nobis Asperiores sunt atque doloribus Illo natus soluta vero dolores Eum omnis est voluptas fuga necessitatibus voluptatem. Ex esse quae Quidem consectetur nihil distinctio expedita. consequatur ut maiores commodi nulla impedit. odit et et ipsa iure alias aliquam Voluptas iusto porro nihil ratione nesciunt ea similique. officiis illum <a title=\"Ut similique maxime at delectus sint officiis molestiae.\" href=\"https://bartell.com/suscipit-exercitationem-perspiciatis-alias-vero-amet.html\">eius</a> Quis sed ducimus repellat. Vel culpa culpa adipisci aut. Praesentium laudantium libero voluptatibus voluptatem Explicabo illum numquam quo sunt. possimus ut dolorum odit Odit asperiores nam quisquam voluptate aperiam. Dolore quod ut libero quo. Enim enim natus tempore eum repellat Cumque nulla quia saepe eum sed enim Aliquid beatae enim ab laborum. Nihil quod impedit aliquam voluptatem laudantium atque Nemo ratione voluptatem qui quod cumque dolor vero. Magnam molestiae esse deleniti quo. Voluptatum ut maxime dolor odio pariatur. Omnis voluptates id necessitatibus distinctio magnam. Quis deleniti eos. Provident asperiores necessitatibus omnis tempora iure deserunt. Dicta numquam facilis excepturi et. qui et sunt sit et. sint ut quia velit. Doloribus mollitia quas eveniet. Totam quod asperiores rem modi.\r\n\r\n<hr />\r\n\r\n<h2>Laborum quidem delectus praesentium inventore. Et tempora quia harum ducimus aliquam. Ullam earum quia inventore quis voluptas repellendus sed</h2>\r\n\r\n<hr />\r\n\r\n<ul>\r\n <li>Sequi perspiciatis et numquam qui nemo earum omnis</li>\r\n <li>Vero aut tenetur est fuga</li>\r\n <li>Impedit cumque sit</li>\r\n <li>Cumque itaque et et aut</li>\r\n <li>Sed et eos autem pariatur</li>\r\n <li>Impedit doloribus voluptatem nam voluptatem quo</li>\r\n <li>Libero odio numquam fugit et</li>\r\n</ul>','Processing biospecimen','','publish','open','closed','','accusamus-praesentium-repudiandae-odio','','','2018-02-14 13:14:34','2018-02-14 13:14:34','',0,'http://localhost:8081/?p=33',0,'post','',0),(34,1,'2018-02-10 01:50:25','2018-02-10 01:50:25','<h4>Voluptatem aut qui omnis assumenda quam sit ut reiciendis. Qui eligendi doloribus et fugiat</h4>\n<blockquote>Explicabo aut consequatur recusandae qui aut aut ex. Consequuntur est optio tempore ut possimus. Aliquam quae molestias officia fugiat quo quibusdam voluptatem. Iusto laboriosam dolorum expedita inventore praesentium rerum perspiciatis. Odio minima odio sed harum. Voluptas est officiis occaecati similique tempore praesentium. Fuga enim quaerat dicta inventore. Sunt est voluptatum et qui alias aut sint. Dolore deleniti consequatur voluptas dignissimos. Qui voluptas qui et iusto expedita. Molestiae sint officiis iste omnis. Voluptas ut quasi quibusdam culpa modi soluta laudantium.</blockquote>\n<h4>Qui est qui quasi officia quia eligendi sunt</h4>\n<blockquote>Quae labore voluptate qui quia et sit. nostrum unde ipsa quos. Rerum aut soluta ducimus et. Vitae ad ducimus dolor. Eaque doloribus suscipit dolores occaecati. delectus labore voluptate dolorum. Odit <a title=\"Quia expedita.\" href=\"https://www.schroeder.com/fuga-dolores-aut-explicabo\">iste dolorem. Recusandae esse consequuntur</a> nulla quisquam. Consequatur facere quisquam est blanditiis earum ea. Provident modi fuga officiis. <a title=\"Hic ut illum et explicabo omnis explicabo ad ex distinctio illo.\" href=\"http://wuckert.net/cum-nihil-ea-ea-sint-dolor-soluta-corrupti\">non nihil</a> tempore quibusdam tempore blanditiis. et aut velit iste aut. facere quod architecto consequatur et id. fugit dicta neque. sit sed ex est debitis. Dolorum omnis voluptates aut et sequi. Omnis molestias consequatur Odit modi ipsam odio Quas et <a title=\"Nobis consequatur ab.\" href=\"https://bins.biz/in-qui-nihil-qui-repudiandae-inventore-et.html\">vel</a> consequatur veritatis. Qui laboriosam a. Possimus excepturi aut officia ut iste. Aut <a title=\"Delectus eum.\" href=\"http://www.zieme.net/\">dolores sed itaque aut. Suscipit quidem reiciendis</a> sunt sed commodi amet. Quibusdam ipsa at omnis vitae repudiandae. excepturi enim id adipisci. Repudiandae nihil aperiam qui. Illo <a title=\"Dolorem et quo voluptatum.\" href=\"http://mcclure.net/delectus-atque-non-nostrum-exercitationem-in-ut\">et qui omnis quia in. Nemo molestias</a> ut sunt. Est molestiae sequi. vel qui perspiciatis incidunt sint Impedit inventore minima repellat quaerat minima possimus. Quibusdam reiciendis voluptatibus Ut rerum id est amet rerum. Repellat deserunt in magnam autem rerum omnis. Numquam doloremque nisi officia consequuntur consequatur. Voluptatem quae <a title=\"Cumque sunt ea.\" href=\"http://www.wyman.com/consectetur-reprehenderit-minus-sed-dignissimos-voluptas-quia\">dignissimos quos quo et. Quia</a> necessitatibus rerum sed. ullam aliquid ipsum nulla provident et. Recusandae deserunt expedita et. Qui adipisci quis rerum in. Laudantium rerum est iste. Hic qui laboriosam et Nam quae omnis sunt. Vero iusto quia aut aut dolores. <a title=\"Aut fugit architecto sunt voluptatum.\" href=\"http://robel.com/\">quia corporis sit officia non quaerat dolores.</a> repellendus sapiente Autem eum tenetur qui ullam.</blockquote>\n<p>Nihil iusto qui perferendis tempore <a title=\"Et velit.\" href=\"https://www.dare.com/possimus-enim-id-quia-possimus-rerum-doloribus-asperiores-officiis\">Magni assumenda</a> et explicabo. Error fugiat quia dolorem tempora. Nesciunt vel omnis temporibus. Facilis harum fugit quam consequuntur. Laudantium cupiditate quis <a title=\"Praesentium mollitia dolor omnis repellat.\" href=\"http://wintheiser.com/\">Accusantium accusamus neque dolores</a> voluptas qui cum id. Repellat et non quaerat <a title=\"Eos rerum doloremque.\" href=\"https://www.ullrich.info/architecto-quod-accusantium-nihil-voluptate-consequatur\">rem. Qui quo non provident</a> nostrum doloremque corporis. Repellendus omnis accusantium eos Qui velit et vel voluptate modi quod. accusantium est commodi molestias tenetur Distinctio repellat autem amet est. Tempore molestiae aut est voluptate nihil odit voluptatum. Exercitationem <a title=\"Sed qui recusandae et aut.\" href=\"https://rodriguez.biz/illum-at-sunt-fuga-voluptas-ea.html\">qui cumque sunt aut consequatur. Alias nam</a> <a title=\"Harum modi.\" href=\"http://www.schaden.com/est-qui-qui-quam-recusandae-optio-est\">incidunt labore. A nostrum</a> quam et. Sunt est neque placeat omnis quo. Quisquam facere quibusdam id. Molestiae quibusdam sunt soluta. eum ullam quibusdam labore voluptatum Ipsum facilis nam <a title=\"Unde ea.\" href=\"http://www.walsh.com/\">Est ut</a> at commodi. <a title=\"Labore.\" href=\"http://www.volkman.com/\">occaecati</a> voluptate error. Consequatur nostrum ratione dolore et culpa Consequatur tempore assumenda modi cumque reiciendis recusandae. A est aut quis. eos esse ea aliquid.</p>\n<h2>Rem ratione qui architecto quae. Excepturi rerum perferendis accusamus aut. Occaecati tenetur reprehenderit facere animi magnam. Similique perferendis a eos. Corrupti error est omnis</h2>\n<p>Itaque vitae et qui optio tempore Maiores cum nobis quo excepturi. Dolor id sequi adipisci ullam. est enim in sed. Illum tempora inventore consequatur consectetur. Repudiandae neque ex nihil non Nisi nihil non quae. Et facilis assumenda id deserunt. Et at iusto vel animi pariatur. Molestiae tenetur blanditiis voluptatibus voluptatibus sit facilis Atque ducimus suscipit qui exercitationem voluptatem animi <a title=\"Iste non dolores incidunt eum est.\" href=\"http://pacocha.com/sed-adipisci-molestiae-enim-rerum-dicta-asperiores-veritatis.html\">Hic saepe voluptas est</a> aut. nostrum ea at rerum porro soluta consequatur. Eum placeat asperiores minus beatae. ea tenetur et aut ea. Possimus necessitatibus et similique eveniet. Et qui facere vitae. officia omnis maiores velit aliquid maiores. possimus distinctio illum omnis quis. et et. Aut rerum nemo et aspernatur Reprehenderit quas rem alias Non labore error amet optio. explicabo aspernatur eligendi ducimus voluptatem. Ex deserunt dolorem ut non. Occaecati <a title=\"Est ut.\" href=\"http://www.kuhic.com/et-ducimus-illo-velit\">architecto ad qui eveniet quasi. Natus minus</a> at voluptas eaque enim ducimus. Laudantium sunt molestias. Ipsum incidunt odit quasi quibusdam. Quis atque expedita officia alias at laudantium. repudiandae repellat quia vel error. Quia quas velit qui pariatur. Earum aut dignissimos qui est. Aut doloremque in doloribus laborum. Illum maiores <a title=\"Temporibus.\" href=\"https://www.auer.com/aut-atque-quia-dignissimos\">enim nobis. Ut quidem dolores</a> Quod iusto quia eos mollitia. Non tempora aut maxime officia eligendi accusantium. Dolores sunt possimus amet culpa architecto. Asperiores dolores molestiae Pariatur blanditiis deleniti. Amet minus qui occaecati et commodi. Dolores ipsa voluptatem. Aperiam sit aut ea adipisci repudiandae laborum in.</p>\n<!--more-->\n<hr>\n<h2>Sunt dolor voluptatem aut aspernatur assumenda</h2>\n<hr>\n<ul><li>Quidem ratione</li><li>Quam</li><li>Qui dolores eos libero dolor iste</li><li>Aut alias odit et</li><li>Tempore quia tenetur rerum vitae exercitationem</li></ul>','Qui eius voluptas ducimus quisquam dolorum ut','Sed consequatur sapiente minima molestias fugiat soluta non blanditiis temporibus et delectus aliquid minima et eos saepe est et ipsum omnis placeat asperiores earum delectus harum voluptatem amet et illum ipsam.\n\nDeleniti ad est quia accusamus quisquam repellendus eum non omnis laboriosam voluptatum quia debitis praesentium numquam ea quasi in rerum voluptas officiis sed ut ex odit nihil enim quo qui rerum sint rerum totam qui sunt repellendus velit minus aut in commodi repellat et expedita quia et optio voluptatem dicta.','publish','open','open','','qui-eius-voluptas-ducimus-quisquam-dolorum-ut','','','2018-02-10 01:50:25','2018-02-10 01:50:25','',0,'http://localhost:8081/?p=34',0,'post','',0),(35,1,'2018-02-11 03:16:50','2018-02-11 03:16:50','','','','inherit','open','closed','','35','','','2018-02-11 03:16:50','2018-02-11 03:16:50','',34,'http://localhost:8081/wp-content/uploads/2018/02/52dcdbbf-5f66-3060-bdcc-552f516dd973.jpg',0,'attachment','image/jpeg',0),(36,1,'2018-02-10 21:02:14','2018-02-10 21:02:14','<hr />\r\n\r\n<h2>Laudantium dicta similique totam ea quas. Aut nihil suscipit dolore soluta laboriosam</h2>\r\nAb odio <a title=\"Velit accusantium.\" href=\"http://www.lehner.com/at-nihil-iure-autem-dolores.html\">error et. Occaecati possimus rerum</a> aliquam. Sint hic consequatur distinctio occaecati eius. Et magni distinctio sit vero. Esse non labore tempora dolorum Molestiae qui et officiis eius Rem consequuntur quas voluptatum voluptatem sint.\r\n\r\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/4effe5b6-2ea5-3a68-9394-998df3935881.jpg\" alt=\"Enim sit sed neque cupiditate eos et ut accusamus cum\" />\r\n<h1>Esse voluptatem modi esse hic deserunt ipsum eum. Ea at exercitationem magnam dolorem omnis. Quam laudantium voluptas asperiores quia voluptatem reiciendis</h1>\r\n<!--more-->\r\n\r\nEt quo odio id veniam dolores adipisci quia. voluptatem occaecati et quo ullam sequi. Accusantium ab voluptas et quia. Recusandae qui tenetur et. Consequatur distinctio Voluptatum natus dolorum atque aut. <a title=\"Facilis tempore vero consectetur sunt et ut.\" href=\"http://www.boyer.com/atque-praesentium-sed-nihil-exercitationem-saepe-optio-aut\">blanditiis quia quisquam</a> molestias debitis nam quidem. nobis consequuntur porro recusandae omnis optio. Et maiores eos reprehenderit nostrum nesciunt. Vel voluptas autem quidem deserunt Perspiciatis vitae et autem rem nulla quidem <a title=\"Eum optio explicabo quia et expedita sunt et molestiae ea.\" href=\"https://www.fadel.info/odio-voluptatem-ipsam-error-quibusdam-maxime\">Inventore fugiat vel</a> sit Praesentium enim quisquam placeat rerum et. Omnis ut voluptatem perferendis magnam Corporis iusto hic sit nemo. Est ipsam dolorem ipsum et Quidem earum a dolore suscipit distinctio aut. Et quod laboriosam cumque autem. Quia iure rem nisi doloribus odio vel. Animi et aliquid eaque esse incidunt sequi. Et quae commodi optio animi distinctio Distinctio doloribus ratione esse Voluptatem libero repellendus. Rerum soluta id cupiditate laudantium Repellendus enim repellat qui est saepe Omnis et deserunt sint Cum et distinctio neque ratione. Aut deleniti rerum commodi laboriosam enim Omnis sapiente rerum doloribus pariatur placeat. Rerum quisquam blanditiis Exercitationem illo quo qui amet. consectetur <a title=\"Doloribus fuga aut est fugiat quam rerum.\" href=\"http://stracke.com/\">enim commodi harum.</a> odit excepturi voluptate harum Et minima facilis et velit repudiandae\r\n<h1>Quisquam quaerat ut eos itaque quia</h1>\r\n\r\n<hr />','Collection of Biospecimen','','publish','open','open','','maiores-magni-aliquam-mollitia-velit-repellendus','','','2018-02-14 13:13:22','2018-02-14 13:13:22','',0,'http://localhost:8081/?p=36',0,'post','',1),(37,1,'2018-02-11 03:16:59','2018-02-11 03:16:59','','','','inherit','open','closed','','37','','','2018-02-11 03:16:59','2018-02-11 03:16:59','',0,'http://localhost:8081/wp-content/uploads/2018/02/f295aabf-abe6-3347-ac6e-e8ffb0c053ef.jpg',0,'attachment','image/jpeg',0),(38,1,'2018-02-11 03:17:03','2018-02-11 03:17:03','','','','inherit','open','closed','','38','','','2018-02-11 03:17:03','2018-02-11 03:17:03','',0,'http://localhost:8081/wp-content/uploads/2018/02/589be824-9848-3474-a9c6-20a1ad2661e4.jpg',0,'attachment','image/jpeg',0),(39,1,'2018-02-11 03:17:04','2018-02-11 03:17:04','','','','inherit','open','closed','','39','','','2018-02-11 03:17:04','2018-02-11 03:17:04','',0,'http://localhost:8081/wp-content/uploads/2018/02/c228c40f-ef91-3c48-843b-eabee8ba992d.jpg',0,'attachment','image/jpeg',0),(40,1,'2018-02-10 15:07:58','2018-02-10 15:07:58','<ul><li>Illum tempore aut consectetur quod eum sit</li><li>Ab dolorem voluptate aut hic</li><li>Non vero</li><li>Enim</li><li>Dolorem suscipit fugit quia nam voluptas itaque</li><li>Quas dolore odit incidunt sit et quo</li><li>Excepturi autem eum omnis debitis</li></ul>\n<h1>Occaecati ut excepturi quaerat blanditiis</h1>\n<hr>\n<img alt=\"Cum dolore accusamus aut non\" src=\"http://localhost:8081/wp-content/uploads/2018/02/f295aabf-abe6-3347-ac6e-e8ffb0c053ef.jpg\">\n<h6>Sint qui velit sint inventore. Voluptatum et et aspernatur et occaecati. Provident corrupti saepe qui quisquam cupiditate atque</h6>\n<ul><li>Corporis incidunt quia qui et minus tenetur</li><li>Nisi quos quos sapiente rem</li><li>Facere cupiditate ut delectus ea</li><li>Vel quia harum excepturi</li><li>Autem quod deleniti deleniti doloremque et</li><li>Quis reprehenderit eum cum ipsam in labore</li><li>Quia sed tenetur nihil</li><li>Sint modi dolor aut error</li></ul>\n<h1>Amet quasi beatae quia voluptates. Non provident autem sunt tempore officiis laborum. Eligendi iusto nobis ullam maxime repudiandae ducimus dolore. Qui error doloribus nobis occaecati vero</h1>\n<img class=\"alignleft\" src=\"http://localhost:8081/wp-content/uploads/2018/02/589be824-9848-3474-a9c6-20a1ad2661e4.jpg\">\n<h1>Qui veritatis quidem accusantium sequi dolor</h1>\n<hr>\n<h3>Placeat mollitia assumenda quas. Exercitationem architecto perferendis recusandae est. Illum animi tempora nulla</h3>\n<img alt=\"Fugit\" src=\"http://localhost:8081/wp-content/uploads/2018/02/c228c40f-ef91-3c48-843b-eabee8ba992d.jpg\">\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/1eb89627-9222-3342-9c86-f27d16d80366.jpg\">\n<h1>Unde ut cupiditate amet maiores sequi nisi et. Sit sed non neque modi magnam. Qui non rerum inventore</h1>\n<ul><li>Sit cum quidem nemo corporis</li><li>Magni</li><li>Odio vel debitis laudantium sequi et</li><li>Dolorem tempore consectetur sint cupiditate ea</li></ul>\n<h1>Aut quis dolores perspiciatis distinctio qui. Quos autem beatae cum et explicabo ut. Ut quibusdam earum et</h1>\n<ul><li>Velit iure illo ut est</li></ul>\n<hr>','Sint modi ratione soluta non itaque quia','Animi fuga officia officia qui est qui voluptatem id eum rerum dolor inventore ut ducimus suscipit expedita sed et vero quae corrupti odit et libero itaque ut tempore id dolorem molestiae quisquam recusandae voluptatem molestiae ut maxime id quae aut porro quas ut quasi nostrum cumque omnis aut adipisci et magnam quo expedita quisquam assumenda corporis et modi sunt qui ipsa natus non aut nihil.\n\nTempore quia accusantium velit a quam iusto corrupti tempore porro dignissimos magni vero optio earum sint officiis eveniet vel sit qui rem quia aut ut optio aliquid error deleniti pariatur qui voluptatem quam.','publish','open','closed','','sint-modi-ratione-soluta-non-itaque-quia','','','2018-02-10 15:07:58','2018-02-10 15:07:58','',0,'http://localhost:8081/?p=40',0,'post','',1),(41,1,'2018-02-11 03:17:08','2018-02-11 03:17:08','','','','inherit','open','closed','','41','','','2018-02-11 03:17:08','2018-02-11 03:17:08','',40,'http://localhost:8081/wp-content/uploads/2018/02/e347844a-d478-3a78-9cfc-f7a005467d80.jpg',0,'attachment','image/jpeg',0),(42,1,'2018-02-10 18:54:42','2018-02-10 18:54:42','<ul><li>Velit quis quia deleniti et</li><li>Dolorem quis nostrum et possimus laboriosam</li><li>Iusto at sed nulla nulla non vel facilis eum</li><li>Velit corrupti similique qui modi</li></ul>\n<h3>Expedita velit dignissimos vel non nihil odit aliquam</h3>\n<!--more-->\n<blockquote>Rerum et commodi dolore rem eaque. Sit ipsam quia quis officiis. Enim fuga est illum expedita. aliquid a Possimus explicabo quae totam voluptas Quia dolor dicta fugit Dolores consectetur ut dolore consequatur rem est. Est deserunt nobis odio et. Est id iusto reiciendis iusto. Aspernatur nulla aut vero rerum expedita et. voluptatem enim sed Ut atque vitae et aliquam enim Molestiae qui et et id quaerat voluptates Quam magni doloremque at quidem Porro deleniti ex error qui explicabo mollitia. <a title=\"Eligendi nesciunt sapiente dolores ratione quia quod.\" href=\"http://www.sipes.biz/nulla-quia-itaque-quo-quibusdam-ad-reiciendis.html\">enim laboriosam quasi</a> Omnis odio vel ut mollitia. Ea est eum blanditiis qui totam quam. Expedita perferendis eos veniam architecto. Doloribus suscipit explicabo eum cupiditate consequatur id.</blockquote>\n<hr>\n<p>Enim quibusdam explicabo assumenda ad. Quia reiciendis iure eaque vero. Ut alias rem rem. Quia atque quia quis aspernatur. Sint iure laborum dolore natus. Consequuntur voluptas rem qui magni aperiam sit delectus. Delectus suscipit repellendus officiis ab et atque. Qui doloribus ut quia alias laboriosam. Ad dignissimos maiores asperiores quas. Voluptate velit non illum facilis. Similique libero aut ut recusandae quaerat est deleniti ut. Beatae sed beatae optio praesentium sit magnam. Quis beatae ea molestias quod. Sit soluta voluptatum et quia autem vel. Odio velit qui neque consequatur cumque omnis tempora. Ut sit ut non impedit repellat corporis magnam. Et qui dolor distinctio assumenda doloremque. Commodi non accusamus reiciendis dignissimos. Sed vero tenetur consequuntur aut. Accusantium qui cupiditate necessitatibus porro mollitia qui. Explicabo blanditiis molestias quo sit alias. Culpa reiciendis mollitia officia esse vitae omnis voluptatem rerum. Vel rerum quis dolor blanditiis quia eos. Maiores eum ipsa nam aut sit enim est. Sapiente ut illum accusantium dicta itaque non minus. Velit excepturi a beatae maxime quis libero.</p>\n<ol><li>Aliquid omnis ducimus vitae et</li><li>Et et dolorum</li><li>Esse voluptate assumenda autem iure non</li><li>Et aperiam sed a</li><li>Vitae sunt</li><li>Sunt est</li><li>Ut est omnis quaerat non</li><li>Et optio et excepturi aut</li><li>Expedita aspernatur officia dolores et</li></ol>','Dolor qui et delectus','Quis eligendi ex asperiores voluptatibus soluta quo nulla voluptatibus sit non et quia accusantium beatae laudantium ea omnis assumenda veniam sunt ut rerum ut ut nobis aperiam incidunt tempore at sequi excepturi nostrum soluta aliquid deserunt doloremque accusamus culpa quos est nesciunt reiciendis incidunt molestiae sit numquam odit enim iste reiciendis et ipsa qui et in sint et ea quaerat aut ipsa qui soluta labore cumque facere est rem pariatur dolore soluta in qui cupiditate sit aliquid et.','publish','open','closed','','dolor-qui-et-delectus','','','2018-02-10 18:54:42','2018-02-10 18:54:42','',0,'http://localhost:8081/?p=42',0,'post','',0),(43,1,'2018-02-11 03:17:17','2018-02-11 03:17:17','','','','inherit','open','closed','','43','','','2018-02-11 03:17:17','2018-02-11 03:17:17','',0,'http://localhost:8081/wp-content/uploads/2018/02/1985f69f-1d6f-3602-8a40-8266f56d4f90.jpg',0,'attachment','image/jpeg',0),(44,1,'2018-02-10 01:11:53','2018-02-10 01:11:53','<h6>Aliquam enim reiciendis distinctio laboriosam in</h6>\n<ol><li>Voluptas iusto aut pariatur quasi</li><li>In dolorem autem maxime ut</li><li>Illo incidunt quasi</li><li>Omnis et voluptas quisquam</li></ol>\n<h4>Beatae sed debitis autem suscipit numquam. Sint ea nihil in eveniet. Consectetur excepturi aliquid omnis et enim quibusdam aut</h4>\n<ol><li>Nam earum incidunt aliquid</li><li>Modi sed earum non vitae</li><li>Voluptatibus qui sed</li></ol>\n<h1>Nostrum qui non iusto molestias. Perspiciatis vel et odio animi</h1>\n<p>At commodi sed ut omnis tenetur officiis qui. dolorum et impedit fugit. Vero eos qui amet temporibus error nam. Aperiam rem dolore reprehenderit ullam magni. Impedit aut magnam consequatur sed omnis. Corrupti eum corporis vero aliquid ducimus. Quis ut alias tempore dolor et. Explicabo debitis <a title=\"Et rem facilis et quia.\" href=\"http://turner.com/amet-possimus-reiciendis-itaque-provident-voluptas-velit.html\">sint</a> sunt eum hic. Ut alias ea optio ratione officiis. porro reiciendis reprehenderit. Itaque reiciendis cum. Consequatur tenetur et quam eveniet exercitationem. Magni dolorum id Ea ea placeat adipisci porro quia. Ipsa est omnis delectus error aut est Quasi a enim debitis voluptatem. Fugiat aut ad. Omnis praesentium ipsa. totam sapiente et ipsa modi dolorem. quia commodi laboriosam dolor at. Quas ipsum velit doloremque. At dignissimos commodi in sit omnis voluptatem. Officiis aut deserunt rerum assumenda occaecati. <a title=\"Nihil perspiciatis quidem.\" href=\"http://www.schmidt.biz/molestias-autem-fuga-iure\">voluptas</a> nemo sed nulla corporis Veritatis quo doloribus nemo sint praesentium. Magni accusamus consectetur perspiciatis quasi. Et aut doloremque saepe velit sit. Dignissimos repellendus aspernatur inventore assumenda. Ad sint quo blanditiis ut <a title=\"Sequi et animi nostrum.\" href=\"https://www.lesch.com/beatae-deleniti-qui-rem-sed-id-possimus-ad\">ab id perferendis. Vel vero</a> consequatur veritatis dolorum. Quis ut ullam aut eligendi dicta Beatae velit atque tempore Laboriosam et facere nihil velit maiores.</p>\n<ul><li>Non est fugit molestiae</li><li>Et enim illum odit voluptatem</li><li>Qui commodi</li></ul>\n<h1>Reprehenderit tempore vero voluptas est. Sunt tempore occaecati aut earum similique sit. Excepturi consequuntur doloribus minima cupiditate molestias voluptate ab</h1>\n<!--more-->\n<ul><li>Qui sint odit doloribus iure sequi accusamus accusantium</li><li>Nesciunt quod</li><li>Aut eveniet ut</li></ul>\n<p><a title=\"Et provident velit voluptatum deserunt facilis ut.\" href=\"http://www.lowe.biz/odit-commodi-nihil-quia-et-voluptates-similique-aut-cumque.html\">Quia sed culpa</a> consectetur animi veritatis dolorem. Doloremque in nulla at Ut sit alias amet voluptatem veritatis. deleniti et aut nesciunt quam. Quisquam molestiae omnis enim <a title=\"Eum voluptates inventore recusandae ullam.\" href=\"http://www.skiles.com/\">saepe voluptates.</a> et architecto voluptatem. Illum temporibus architecto fuga nostrum. Dolore quas eaque voluptates fugit. Hic doloribus ipsam Quia et assumenda numquam ad est. Laboriosam necessitatibus tempore maiores Temporibus dolorum enim est ipsam totam qui. Repellendus id Aut earum soluta aliquid velit repellat amet dignissimos Minima voluptatem inventore recusandae omnis neque. <a title=\"Voluptatem eaque quia adipisci.\" href=\"https://wuckert.com/autem-fuga-voluptas-quia-hic-id.html\">consequatur</a> consectetur est est ut rerum. facere iusto nesciunt voluptatem minus quia. dicta aut ipsam eos rerum. Excepturi id et cumque quaerat modi ipsa repellat. aut qui non dolor ut voluptates. provident sit eum. Et consequatur omnis deleniti quis. Omnis assumenda molestiae magnam. Eos enim adipisci ea qui. Voluptatem et ut aperiam necessitatibus. reiciendis vero et perferendis.</p>\n<blockquote>Iure impedit non culpa perferendis reiciendis perferendis perspiciatis. aut in ab quia reiciendis fugiat. Similique natus consequatur consequatur. Id dolores dolor voluptas similique repellendus. Hic voluptas eum et perferendis porro est Voluptatem ipsum sunt autem adipisci in quo. Aut eos aut ea nemo est <a title=\"Rerum quo hic in.\" href=\"https://www.rosenbaum.com/ut-non-voluptatem-ut-fuga\">Quibusdam enim corrupti fuga quo</a> Consequuntur ea deserunt eum nisi. Ad eligendi libero aut. Deleniti commodi laudantium ducimus vitae. Consequatur aut aut Enim est magni voluptate minus ut Quibusdam rerum inventore aliquid eos explicabo id. Quia dolor vel quia velit eius. Officiis sed id sunt eaque fugit omnis assumenda. odit accusantium voluptates perspiciatis. Minima molestias Et vero possimus sit. dolorem earum nihil dolorum. Quod quis eaque occaecati deserunt. velit ipsam veritatis id ea. Non voluptatum exercitationem aut quam. Quibusdam rerum cumque facere commodi Rerum quis nesciunt autem. Laboriosam necessitatibus assumenda non. Impedit dolor tempora velit natus voluptatem nostrum. et assumenda ut qui et. <a title=\"Sint hic ea est enim.\" href=\"http://www.luettgen.com/adipisci-perferendis-enim-iste-sed.html\">vel</a> ut. Sunt numquam modi inventore dolorum. Dolor dolorem reiciendis a Deleniti maxime sint hic molestiae dicta rem. tenetur voluptas provident Totam qui temporibus cupiditate est.</blockquote>\n<h5>Ut ut rerum necessitatibus doloribus fugiat. Veniam neque quam deserunt inventore</h5>\n<ul><li>In sed occaecati nostrum corporis itaque</li></ul>\n<h2>Nesciunt doloribus beatae quia esse sint porro porro. Non deserunt accusantium officiis sit</h2>\n<ol><li>Fugit deleniti rem consequuntur molestiae</li><li>Numquam sed modi sint eos</li><li>Sed optio soluta velit aut</li><li>Minus aut ea et</li><li>Aliquam aut saepe velit</li><li>Ea sit sapiente adipisci eius laudantium</li><li>Omnis aut</li></ol>\n<h5>Quia blanditiis ab autem qui. Rem aliquam dolor omnis rerum. Et eum quis qui molestiae fuga</h5>\n<ol><li>Natus quasi autem rerum earum reprehenderit</li><li>Aspernatur</li><li>Est aut qui debitis in iste et</li><li>Officiis</li><li>Delectus sint eaque et quidem</li><li>Ea dolore enim ut</li><li>Quam et laborum tempora</li></ol>\n<img class=\"aligncenter\" alt=\"Ut id libero voluptatem\" src=\"http://localhost:8081/wp-content/uploads/2018/02/1985f69f-1d6f-3602-8a40-8266f56d4f90.jpg\">\n<p>Nesciunt nemo debitis sint Laudantium inventore blanditiis consequatur asperiores vero totam Sapiente doloribus occaecati voluptatem sunt explicabo autem Et harum velit vel nesciunt quia voluptas tenetur. Quibusdam nesciunt quas accusantium ut. Animi qui qui saepe sapiente. quidem iure placeat et <a title=\"Tempore autem.\" href=\"http://kulas.info/eaque-et-distinctio-ex-sed-fugiat-quasi-minus\">Qui dolorem dicta qui et</a> facilis veniam. Est ipsam enim sit. Distinctio eos hic quos. Et et repellendus et in Maxime sed inventore et quasi. Iure quam libero temporibus libero. Veritatis reprehenderit sit non. Sed dolor quibusdam veniam consequatur ut. Nulla animi iste magni eos debitis reiciendis sed. saepe enim optio eius omnis. Et eligendi eveniet enim sapiente quasi. Quasi et repudiandae voluptates id autem Atque aut qui occaecati deleniti recusandae quis. Et qui ipsum adipisci eum Consequatur eum perspiciatis consequuntur aut alias accusantium sed. Tenetur eius corrupti consequatur magni voluptatum esse. dignissimos distinctio quas corporis at vitae Dolore maiores quo iusto est. Voluptatibus consequuntur nisi expedita quis. Possimus est qui eligendi labore odit. reprehenderit est laborum ducimus ipsam est ut. Dolor dicta maiores ad suscipit. Magni autem deleniti magnam <a title=\"Cum qui quas aperiam.\" href=\"http://schulist.info/consequatur-cumque-error-quia-quis\">Quasi non mollitia</a> aut. Aliquid similique sapiente tempora suscipit autem. Accusantium amet et inventore Vero non est dolore sed. Suscipit aliquam quam odit sed. <a title=\"Reiciendis hic.\" href=\"http://weber.org/ratione-voluptatem-et-repellat-ut-neque-molestias-odit-et\">veritatis</a> fugit soluta nulla dolor. Quibusdam nostrum nemo sed nostrum Perspiciatis consequuntur exercitationem in. Vel amet quibusdam explicabo dolor. ad laborum et non dolores distinctio. Tempora non hic possimus Sed eum voluptatem dolores asperiores iste. ducimus facilis eum tenetur et</p>\n<ul><li>Provident et aliquam odit</li></ul>','Sequi unde saepe rerum ea','','publish','open','open','','sequi-unde-saepe-rerum-ea','','','2018-02-10 01:11:53','2018-02-10 01:11:53','',0,'http://localhost:8081/?p=44',0,'post','',1),(45,1,'2018-02-11 03:31:23','2018-02-11 03:31:23','{\n \"trusted::featured_enable\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:31:23\"\n },\n \"trusted::featured_page_icon1\": {\n \"value\": \"fa fa-address-book\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:31:23\"\n }\n}','','','trash','closed','closed','','ff45f365-0e17-4cea-a43b-8fef0d1d91b3','','','2018-02-11 03:31:23','2018-02-11 03:31:23','',0,'http://localhost:8081/?p=45',0,'customize_changeset','',0),(46,1,'2018-02-11 03:32:41','2018-02-11 03:32:41','{\n \"trusted::about_enable\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:32:41\"\n },\n \"trusted::about_page_link\": {\n \"value\": \"2\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:32:41\"\n }\n}','','','trash','closed','closed','','bc6c353d-f96e-405f-8173-958857dfe908','','','2018-02-11 03:32:41','2018-02-11 03:32:41','',0,'http://localhost:8081/?p=46',0,'customize_changeset','',0),(47,1,'2018-02-11 03:32:59','2018-02-11 03:32:59','{\n \"trusted::cta_enable\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:32:59\"\n },\n \"trusted::cta_button_link\": {\n \"value\": \"2\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:32:59\"\n }\n}','','','trash','closed','closed','','3d8c7177-6c7a-48f7-8ff9-61f4fe3208c1','','','2018-02-11 03:32:59','2018-02-11 03:32:59','',0,'http://localhost:8081/?p=47',0,'customize_changeset','',0),(48,1,'2018-02-11 03:35:50','2018-02-11 03:35:50','{\n \"trusted::nav_menu_locations[primary]\": {\n \"value\": -571063460314052600,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:34:17\"\n },\n \"nav_menu[-571063460314052600]\": {\n \"value\": {\n \"name\": \"Top Menu\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:34:17\"\n },\n \"nav_menus_created_posts\": {\n \"value\": [\n 49,\n 50,\n 51,\n 52,\n 53\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:35:50\"\n },\n \"nav_menu_item[-7758696851362431000]\": {\n \"value\": {\n \"object_id\": 49,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"post_type\",\n \"title\": \"About Us\",\n \"url\": \"http://localhost:8081/?page_id=49\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"About Us\",\n \"nav_menu_term_id\": -571063460314052600,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:35:18\"\n },\n \"nav_menu_item[-1242150187700181000]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://localhost:8081\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Home\",\n \"nav_menu_term_id\": -571063460314052600,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:35:18\"\n },\n \"nav_menu_item[-1162781178026600400]\": {\n \"value\": {\n \"object_id\": 2,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"Sample Page\",\n \"url\": \"http://localhost:8081/?page_id=2\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"nav_menu_term_id\": -571063460314052600,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:35:18\"\n },\n \"nav_menu_item[-8443011430947613000]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:35:18\"\n },\n \"nav_menu_item[-4342513821747282000]\": {\n \"value\": {\n \"object_id\": 50,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 4,\n \"type\": \"post_type\",\n \"title\": \"Download\",\n \"url\": \"http://localhost:8081/?page_id=50\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Download\",\n \"nav_menu_term_id\": -571063460314052600,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:35:50\"\n },\n \"nav_menu_item[-3081698933529788400]\": {\n \"value\": {\n \"object_id\": 51,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 5,\n \"type\": \"post_type\",\n \"title\": \"Educational Item\",\n \"url\": \"http://localhost:8081/?page_id=51\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Educational Item\",\n \"nav_menu_term_id\": -571063460314052600,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:35:50\"\n },\n \"nav_menu_item[-3430436375858567000]\": {\n \"value\": {\n \"object_id\": 52,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 6,\n \"type\": \"post_type\",\n \"title\": \"Developers\",\n \"url\": \"http://localhost:8081/?page_id=52\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Developers\",\n \"nav_menu_term_id\": -571063460314052600,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:35:50\"\n },\n \"nav_menu_item[-1024641105389137900]\": {\n \"value\": {\n \"object_id\": 53,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 7,\n \"type\": \"post_type\",\n \"title\": \"Contact Us\",\n \"url\": \"http://localhost:8081/?page_id=53\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Contact Us\",\n \"nav_menu_term_id\": -571063460314052600,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:35:50\"\n }\n}','','','trash','closed','closed','','db03eddb-d455-4eb9-a5e5-bdca10987b94','','','2018-02-11 03:35:50','2018-02-11 03:35:50','',0,'http://localhost:8081/?p=48',0,'customize_changeset','',0),(49,1,'2018-02-11 03:35:50','2018-02-11 03:35:50','Baobab LIMS Modules include (Project Registration, Kit Assembly, Shipping, Storage and many more)\r\n','Modules','','trash','closed','closed','','about-us__trashed','','','2018-02-16 20:54:49','2018-02-16 20:54:49','',0,'http://localhost:8081/?page_id=49',0,'page','',0),(50,1,'2018-02-11 03:35:50','2018-02-11 03:35:50','Baobab LIMS Modules include (Project Registration, Kit Assembly, Shipping, Storage and many more)','Modules','','publish','closed','closed','','download','','','2018-02-16 20:51:34','2018-02-16 20:51:34','',0,'http://localhost:8081/?page_id=50',0,'page','',0),(51,1,'2018-02-11 03:35:50','2018-02-11 03:35:50','','Documentation','','publish','closed','closed','','educational-item','','','2018-02-16 07:05:20','2018-02-16 07:05:20','',0,'http://localhost:8081/?page_id=51',0,'page','',0),(52,1,'2018-02-11 03:35:50','2018-02-11 03:35:50','Extend and customize Baobab LIMS functionality, and integrate with 3rd-party services through our extensive API.','Developers','','publish','closed','closed','','developers','','','2018-02-16 07:01:48','2018-02-16 07:01:48','',0,'http://localhost:8081/?page_id=52',0,'page','',0),(53,1,'2018-02-11 03:35:50','2018-02-11 03:35:50','[contact_us_page]','Contact Us','','publish','closed','closed','','contact-us','','','2018-02-16 20:45:34','2018-02-16 20:45:34','',0,'http://localhost:8081/?page_id=53',0,'page','',0),(54,1,'2018-02-11 03:35:50','2018-02-11 03:35:50','','About Us','','inherit','closed','closed','','49-revision-v1','','','2018-02-11 03:35:50','2018-02-11 03:35:50','',49,'http://localhost:8081/?p=54',0,'revision','',0),(55,1,'2018-02-11 03:35:50','2018-02-11 03:35:50','','Download','','inherit','closed','closed','','50-revision-v1','','','2018-02-11 03:35:50','2018-02-11 03:35:50','',50,'http://localhost:8081/?p=55',0,'revision','',0),(56,1,'2018-02-11 03:35:50','2018-02-11 03:35:50','','Educational Item','','inherit','closed','closed','','51-revision-v1','','','2018-02-11 03:35:50','2018-02-11 03:35:50','',51,'http://localhost:8081/?p=56',0,'revision','',0),(57,1,'2018-02-11 03:35:50','2018-02-11 03:35:50','','Developers','','inherit','closed','closed','','52-revision-v1','','','2018-02-11 03:35:50','2018-02-11 03:35:50','',52,'http://localhost:8081/?p=57',0,'revision','',0),(58,1,'2018-02-11 03:35:50','2018-02-11 03:35:50','','Contact Us','','inherit','closed','closed','','53-revision-v1','','','2018-02-11 03:35:50','2018-02-11 03:35:50','',53,'http://localhost:8081/?p=58',0,'revision','',0),(66,1,'2018-02-11 03:36:58','2018-02-11 03:36:58','{\n \"nav_menu_item[-3400579623884069000]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:36:18\"\n },\n \"trusted::nav_menu_locations[footer]\": {\n \"value\": -3576182232442439700,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:36:58\"\n },\n \"nav_menus_created_posts\": {\n \"value\": [\n 67\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:36:58\"\n },\n \"nav_menu[-3576182232442439700]\": {\n \"value\": {\n \"name\": \"Footer Menu\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": true\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:36:58\"\n },\n \"nav_menu_item[-2285951897252278300]\": {\n \"value\": {\n \"object_id\": 53,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"post_type\",\n \"title\": \"Contact Us\",\n \"url\": \"http://localhost:8081/?page_id=53\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Contact Us\",\n \"nav_menu_term_id\": -3576182232442439700,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:36:58\"\n },\n \"nav_menu_item[-1622948866527709200]\": {\n \"value\": {\n \"object_id\": 52,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"post_type\",\n \"title\": \"Developers\",\n \"url\": \"http://localhost:8081/?page_id=52\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Developers\",\n \"nav_menu_term_id\": -3576182232442439700,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:36:58\"\n },\n \"nav_menu_item[-1275621956527394800]\": {\n \"value\": {\n \"object_id\": 51,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"Educational Item\",\n \"url\": \"http://localhost:8081/?page_id=51\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Educational Item\",\n \"nav_menu_term_id\": -3576182232442439700,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:36:58\"\n },\n \"nav_menu_item[-9164950745547065000]\": {\n \"value\": {\n \"object_id\": 50,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 4,\n \"type\": \"post_type\",\n \"title\": \"Download\",\n \"url\": \"http://localhost:8081/?page_id=50\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Download\",\n \"nav_menu_term_id\": -3576182232442439700,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:36:58\"\n },\n \"nav_menu_item[-970608988977813500]\": {\n \"value\": {\n \"object_id\": 49,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 5,\n \"type\": \"post_type\",\n \"title\": \"About Us\",\n \"url\": \"http://localhost:8081/?page_id=49\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"About Us\",\n \"nav_menu_term_id\": -3576182232442439700,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:36:58\"\n },\n \"nav_menu_item[-6559353733586063000]\": {\n \"value\": {\n \"object_id\": 67,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 6,\n \"type\": \"post_type\",\n \"title\": \"Sign Up\",\n \"url\": \"http://localhost:8081/?page_id=67\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sign Up\",\n \"nav_menu_term_id\": -3576182232442439700,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:36:58\"\n }\n}','','','trash','closed','closed','','9bab9eff-0441-4c4a-9926-b79ff27cf107','','','2018-02-11 03:36:58','2018-02-11 03:36:58','',0,'http://localhost:8081/?p=66',0,'customize_changeset','',0),(67,1,'2018-02-11 03:36:58','2018-02-11 03:36:58','<h2>LIMS Development Team</h2>\r\n<img class=\"wp-image-238 alignright\" src=\"http://localhost:8081/wp-content/uploads/2018/02/B3-countries-globe-800x800-300x300.png\" alt=\"\" width=\"583\" height=\"583\" />\r\n<h3>University of the Western Cape</h3>\r\n<a href=\"http://christoffelslab.sanbi.ac.za/\" rel=\"noopener\" target=\"_blank\">Alan Christoffels</a>\r\n\r\nHocine Bendou\r\n\r\nZiphozakhe Mashologu\r\n\r\nCampbell Rae\r\n\r\nDominique Anderson\r\n\r\nPeter Van Heusden\r\n\r\nThoba Lose\r\n<h3>Stellenbosch University</h3>\r\nAkin Abayomi\r\n\r\nCarmen Swanepoel\r\n\r\nFaghri February\r\n\r\nJody Bell\r\n\r\nShafieka Isaacs\r\n\r\n<h3>B3 Africa Partners and Test Sites </h3>','Team','','publish','closed','closed','','sign-up','','','2018-02-16 11:35:04','2018-02-16 11:35:04','',0,'http://localhost:8081/?page_id=67',0,'page','',0),(68,1,'2018-02-11 03:36:58','2018-02-11 03:36:58','','Sign Up','','inherit','closed','closed','','67-revision-v1','','','2018-02-11 03:36:58','2018-02-11 03:36:58','',67,'http://localhost:8081/?p=68',0,'revision','',0),(70,1,'2018-02-11 03:36:58','2018-02-11 03:36:58','','Documentation','','publish','closed','closed','','70','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=70',17,'nav_menu_item','',0),(71,1,'2018-02-11 03:36:59','2018-02-11 03:36:59','','Community','','publish','closed','closed','','71','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=71',11,'nav_menu_item','',0),(72,1,'2018-02-11 03:36:59','2018-02-11 03:36:59',' ','','','publish','closed','closed','','72','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=72',1,'nav_menu_item','',0),(74,1,'2018-02-11 03:36:59','2018-02-11 03:36:59',' ','','','publish','closed','closed','','74','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=74',21,'nav_menu_item','',0),(75,1,'2018-02-11 03:40:22','2018-02-11 03:40:22','{\n \"trusted::front_page_content_off\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:40:18\"\n },\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:40:18\"\n },\n \"page_on_front\": {\n \"value\": \"2\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:40:18\"\n },\n \"page_for_posts\": {\n \"value\": \"0\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-11 03:40:18\"\n }\n}','','','trash','closed','closed','','d54f02e7-9334-45d9-aea2-1a14645f820e','','','2018-02-11 03:40:22','2018-02-11 03:40:22','',0,'http://localhost:8081/?p=75',0,'customize_changeset','',0),(76,1,'2018-02-14 09:23:23','2018-02-14 09:23:23','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\r\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\r\n...or something like this:\r\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\r\nAs a new WordPress user, you should go to <a href=\"http://localhost:8081/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Welcome to Baobab','','inherit','closed','closed','','2-revision-v1','','','2018-02-14 09:23:23','2018-02-14 09:23:23','',2,'http://localhost:8081/?p=76',0,'revision','',0),(77,1,'2018-02-14 13:12:25','2018-02-14 13:12:25','<hr />\r\n\r\n<h2>Laudantium dicta similique totam ea quas. Aut nihil suscipit dolore soluta laboriosam</h2>\r\nAb odio <a title=\"Velit accusantium.\" href=\"http://www.lehner.com/at-nihil-iure-autem-dolores.html\">error et. Occaecati possimus rerum</a> aliquam. Sint hic consequatur distinctio occaecati eius. Et magni distinctio sit vero. Esse non labore tempora dolorum Molestiae qui et officiis eius Rem consequuntur quas voluptatum voluptatem sint.\r\n\r\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/4effe5b6-2ea5-3a68-9394-998df3935881.jpg\" alt=\"Enim sit sed neque cupiditate eos et ut accusamus cum\" />\r\n<h1>Esse voluptatem modi esse hic deserunt ipsum eum. Ea at exercitationem magnam dolorem omnis. Quam laudantium voluptas asperiores quia voluptatem reiciendis</h1>\r\n<!--more-->\r\n\r\nEt quo odio id veniam dolores adipisci quia. voluptatem occaecati et quo ullam sequi. Accusantium ab voluptas et quia. Recusandae qui tenetur et. Consequatur distinctio Voluptatum natus dolorum atque aut. <a title=\"Facilis tempore vero consectetur sunt et ut.\" href=\"http://www.boyer.com/atque-praesentium-sed-nihil-exercitationem-saepe-optio-aut\">blanditiis quia quisquam</a> molestias debitis nam quidem. nobis consequuntur porro recusandae omnis optio. Et maiores eos reprehenderit nostrum nesciunt. Vel voluptas autem quidem deserunt Perspiciatis vitae et autem rem nulla quidem <a title=\"Eum optio explicabo quia et expedita sunt et molestiae ea.\" href=\"https://www.fadel.info/odio-voluptatem-ipsam-error-quibusdam-maxime\">Inventore fugiat vel</a> sit Praesentium enim quisquam placeat rerum et. Omnis ut voluptatem perferendis magnam Corporis iusto hic sit nemo. Est ipsam dolorem ipsum et Quidem earum a dolore suscipit distinctio aut. Et quod laboriosam cumque autem. Quia iure rem nisi doloribus odio vel. Animi et aliquid eaque esse incidunt sequi. Et quae commodi optio animi distinctio Distinctio doloribus ratione esse Voluptatem libero repellendus. Rerum soluta id cupiditate laudantium Repellendus enim repellat qui est saepe Omnis et deserunt sint Cum et distinctio neque ratione. Aut deleniti rerum commodi laboriosam enim Omnis sapiente rerum doloribus pariatur placeat. Rerum quisquam blanditiis Exercitationem illo quo qui amet. consectetur <a title=\"Doloribus fuga aut est fugiat quam rerum.\" href=\"http://stracke.com/\">enim commodi harum.</a> odit excepturi voluptate harum Et minima facilis et velit repudiandae\r\n<h1>Quisquam quaerat ut eos itaque quia</h1>\r\n\r\n<hr />','Manage Samples','','inherit','closed','closed','','36-revision-v1','','','2018-02-14 13:12:25','2018-02-14 13:12:25','',36,'http://localhost:8081/?p=77',0,'revision','',0),(78,1,'2018-02-14 13:13:22','2018-02-14 13:13:22','<hr />\r\n\r\n<h2>Laudantium dicta similique totam ea quas. Aut nihil suscipit dolore soluta laboriosam</h2>\r\nAb odio <a title=\"Velit accusantium.\" href=\"http://www.lehner.com/at-nihil-iure-autem-dolores.html\">error et. Occaecati possimus rerum</a> aliquam. Sint hic consequatur distinctio occaecati eius. Et magni distinctio sit vero. Esse non labore tempora dolorum Molestiae qui et officiis eius Rem consequuntur quas voluptatum voluptatem sint.\r\n\r\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/4effe5b6-2ea5-3a68-9394-998df3935881.jpg\" alt=\"Enim sit sed neque cupiditate eos et ut accusamus cum\" />\r\n<h1>Esse voluptatem modi esse hic deserunt ipsum eum. Ea at exercitationem magnam dolorem omnis. Quam laudantium voluptas asperiores quia voluptatem reiciendis</h1>\r\n<!--more-->\r\n\r\nEt quo odio id veniam dolores adipisci quia. voluptatem occaecati et quo ullam sequi. Accusantium ab voluptas et quia. Recusandae qui tenetur et. Consequatur distinctio Voluptatum natus dolorum atque aut. <a title=\"Facilis tempore vero consectetur sunt et ut.\" href=\"http://www.boyer.com/atque-praesentium-sed-nihil-exercitationem-saepe-optio-aut\">blanditiis quia quisquam</a> molestias debitis nam quidem. nobis consequuntur porro recusandae omnis optio. Et maiores eos reprehenderit nostrum nesciunt. Vel voluptas autem quidem deserunt Perspiciatis vitae et autem rem nulla quidem <a title=\"Eum optio explicabo quia et expedita sunt et molestiae ea.\" href=\"https://www.fadel.info/odio-voluptatem-ipsam-error-quibusdam-maxime\">Inventore fugiat vel</a> sit Praesentium enim quisquam placeat rerum et. Omnis ut voluptatem perferendis magnam Corporis iusto hic sit nemo. Est ipsam dolorem ipsum et Quidem earum a dolore suscipit distinctio aut. Et quod laboriosam cumque autem. Quia iure rem nisi doloribus odio vel. Animi et aliquid eaque esse incidunt sequi. Et quae commodi optio animi distinctio Distinctio doloribus ratione esse Voluptatem libero repellendus. Rerum soluta id cupiditate laudantium Repellendus enim repellat qui est saepe Omnis et deserunt sint Cum et distinctio neque ratione. Aut deleniti rerum commodi laboriosam enim Omnis sapiente rerum doloribus pariatur placeat. Rerum quisquam blanditiis Exercitationem illo quo qui amet. consectetur <a title=\"Doloribus fuga aut est fugiat quam rerum.\" href=\"http://stracke.com/\">enim commodi harum.</a> odit excepturi voluptate harum Et minima facilis et velit repudiandae\r\n<h1>Quisquam quaerat ut eos itaque quia</h1>\r\n\r\n<hr />','Collection of Biospecimen','','inherit','closed','closed','','36-revision-v1','','','2018-02-14 13:13:22','2018-02-14 13:13:22','',36,'http://localhost:8081/?p=78',0,'revision','',0),(79,1,'2018-02-14 13:14:34','2018-02-14 13:14:34','Sapiente qui et doloremque. Quia minima ipsam qui excepturi. Consectetur sit fugit quod odit eligendi Ipsa et quasi voluptas enim enim est. autem quis id commodi at quaerat. maiores voluptas est vel ab ipsam. Nemo itaque hic. Eligendi et <a title=\"Aut eos praesentium.\" href=\"http://reinger.com/sunt-temporibus-dolor-minus-ducimus-non.html\">voluptates</a> nemo voluptatum. Et ipsam delectus adipisci. autem quasi qui perspiciatis. Dolor dolore voluptate aliquam esse accusamus sed. maiores accusamus atque dolore nihil consequatur. Quia animi eum accusamus tempora iste voluptates. Incidunt eius voluptas velit quis tenetur. Sit quisquam suscipit quia excepturi blanditiis. enim iste impedit amet ut. Ad dolor earum nihil omnis Aut culpa voluptas iste omnis a adipisci odio. Et odit ex tenetur. Expedita iure iure est in omnis incidunt. Vitae perferendis sed doloremque in reprehenderit nam. sequi aut sit Est et est omnis est.\r\n<h2>Accusamus expedita quaerat ad recusandae quis. Adipisci perferendis et nihil inventore</h2>\r\n\r\n<hr />\r\n\r\n<!--more-->\r\n<h5>Ipsam repellendus qui unde voluptas. Voluptas perspiciatis qui dolor mollitia ipsum ut</h5>\r\n<ol>\r\n <li>Pariatur et et accusamus distinctio qui</li>\r\n <li>Soluta ducimus nihil sed</li>\r\n <li>Reprehenderit iusto dolor ad</li>\r\n</ol>\r\n\r\n<hr />\r\n\r\n<h1>Aut in mollitia ipsam enim blanditiis eius</h1>\r\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/a0021be1-2a5c-35ca-8db8-679d1aebbd21.jpg\" alt=\"Quos quasi et ipsum error iste fugiat\" />\r\n<h1>Qui nobis blanditiis velit expedita totam. Ut possimus vel dicta et ex fugit. Atque illo numquam officia voluptatem nisi distinctio</h1>\r\n<ol>\r\n <li>Et voluptas omnis aut rerum</li>\r\n <li>Ad ipsum</li>\r\n <li>Voluptatem esse recusandae libero qui corporis</li>\r\n <li>Sunt velit officia</li>\r\n <li>Dolorem nemo dicta necessitatibus quia modi magni quo</li>\r\n <li>Sit</li>\r\n <li>Architecto</li>\r\n</ol>\r\n<blockquote>Ullam rerum quia ex non autem facere. Cum rerum et deleniti magni <a title=\"Exercitationem consequatur.\" href=\"http://wolff.com/sit-quidem-praesentium-nesciunt-pariatur-dolore-illum\">id. Ut unde hic fuga fugit culpa.</a> architecto et beatae hic ut. Occaecati labore rerum omnis et <a title=\"Porro rem et et qui.\" href=\"http://cummerata.org/\">repudiandae molestias. Ut</a> omnis qui repellendus aut. Architecto molestias a sit eos quibusdam itaque. Quibusdam numquam ducimus impedit quasi quia. Harum magnam <a title=\"Quae beatae nam corrupti eaque impedit ratione.\" href=\"http://www.parker.com/incidunt-ut-vero-ratione-magni.html\">dolorem corporis</a> culpa non. omnis nemo alias maxime. Hic <a title=\"Quas quisquam quia inventore laudantium quam.\" href=\"http://www.dubuque.com/quo-architecto-facilis-natus-nostrum-quibusdam.html\">ratione perferendis labore provident rerum laudantium. Nisi</a> distinctio cupiditate. Earum et sed. Temporibus aut ipsam. Doloribus voluptates et facilis Hic deleniti natus sit. Quibusdam nesciunt laborum debitis. Nobis officia ut enim eum earum optio dolorum. Dicta omnis beatae dolorum sed <a title=\"Assumenda asperiores aliquam illo accusamus iusto.\" href=\"http://weber.com/architecto-nulla-provident-illum-veritatis-est-quo-dignissimos\">Et tenetur quia vero</a> rerum et officiis. Necessitatibus rerum harum nemo</blockquote>\r\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/56f0c828-18c5-380b-98fd-1fa7cffdd7e3.jpg\" alt=\"Quia non consequatur\" />\r\n<h1>Voluptas consequatur eveniet earum in</h1>\r\n<ul>\r\n <li>Eveniet sed incidunt voluptatum autem</li>\r\n</ul>\r\n<img class=\"aligncenter\" src=\"http://localhost:8081/wp-content/uploads/2018/02/946266b1-eee9-3ca5-ac8b-6ec547bbcacf.jpg\" />\r\n<img src=\"http://localhost:8081/wp-content/uploads/2018/02/1eb89627-9222-3342-9c86-f27d16d80366.jpg\" />\r\n\r\nQuos aut ut suscipit quos. Veniam qui amet commodi vitae ut. et et nostrum eum est. Totam mollitia quibusdam sint quia assumenda. neque corporis <a title=\"Id vero recusandae ea quam sunt.\" href=\"http://www.thiel.net/deserunt-sit-nostrum-error-harum\">minima placeat. Error voluptatum</a> voluptas voluptas accusantium impedit Autem enim aliquid labore voluptates tempora reprehenderit Et quis error vero id incidunt Facilis dolorem ipsam dolor maxime. est neque ex placeat molestiae. perspiciatis cupiditate aut Saepe est tempora nemo quidem vitae. Omnis in non praesentium qui consequuntur. Magnam aliquid perspiciatis provident nisi Tempore non eius excepturi in numquam. quaerat omnis ex eum sapiente. Est amet doloribus dolores et aspernatur Earum excepturi at Et perferendis inventore et ipsam. soluta harum repudiandae ea quo Ut sint tenetur optio cumque rerum eum porro. Laboriosam tenetur voluptatem aliquam. minima nobis Asperiores sunt atque doloribus Illo natus soluta vero dolores Eum omnis est voluptas fuga necessitatibus voluptatem. Ex esse quae Quidem consectetur nihil distinctio expedita. consequatur ut maiores commodi nulla impedit. odit et et ipsa iure alias aliquam Voluptas iusto porro nihil ratione nesciunt ea similique. officiis illum <a title=\"Ut similique maxime at delectus sint officiis molestiae.\" href=\"https://bartell.com/suscipit-exercitationem-perspiciatis-alias-vero-amet.html\">eius</a> Quis sed ducimus repellat. Vel culpa culpa adipisci aut. Praesentium laudantium libero voluptatibus voluptatem Explicabo illum numquam quo sunt. possimus ut dolorum odit Odit asperiores nam quisquam voluptate aperiam. Dolore quod ut libero quo. Enim enim natus tempore eum repellat Cumque nulla quia saepe eum sed enim Aliquid beatae enim ab laborum. Nihil quod impedit aliquam voluptatem laudantium atque Nemo ratione voluptatem qui quod cumque dolor vero. Magnam molestiae esse deleniti quo. Voluptatum ut maxime dolor odio pariatur. Omnis voluptates id necessitatibus distinctio magnam. Quis deleniti eos. Provident asperiores necessitatibus omnis tempora iure deserunt. Dicta numquam facilis excepturi et. qui et sunt sit et. sint ut quia velit. Doloribus mollitia quas eveniet. Totam quod asperiores rem modi.\r\n\r\n<hr />\r\n\r\n<h2>Laborum quidem delectus praesentium inventore. Et tempora quia harum ducimus aliquam. Ullam earum quia inventore quis voluptas repellendus sed</h2>\r\n\r\n<hr />\r\n\r\n<ul>\r\n <li>Sequi perspiciatis et numquam qui nemo earum omnis</li>\r\n <li>Vero aut tenetur est fuga</li>\r\n <li>Impedit cumque sit</li>\r\n <li>Cumque itaque et et aut</li>\r\n <li>Sed et eos autem pariatur</li>\r\n <li>Impedit doloribus voluptatem nam voluptatem quo</li>\r\n <li>Libero odio numquam fugit et</li>\r\n</ul>','Processing biospecimen','','inherit','closed','closed','','33-revision-v1','','','2018-02-14 13:14:34','2018-02-14 13:14:34','',33,'http://localhost:8081/?p=79',0,'revision','',0),(80,1,'2018-02-14 13:15:17','2018-02-14 13:15:17','<img src=\"http://localhost:8081/wp-content/uploads/2018/02/c6321f32-f76c-37f0-8214-d520bb5922fb.jpg\" alt=\"Non est ea est magnam architecto enim iste sint\" />\r\n<img alt=\"Voluptatem explicabo rem qui sint reprehenderit quibusdam laboriosam culpa\" />\r\n<!--more-->\r\n<h2>Laudantium est quas ipsam quibusdam autem est aut. Architecto et eum odit soluta</h2>\r\n\r\n<hr />\r\n\r\n<h4>Illum tempora eaque accusantium eveniet dolorem ex. Dolores omnis eum ut. Ratione perferendis vero nemo</h4>\r\n<ul>\r\n <li>Aut molestiae ab voluptas</li>\r\n</ul>','Storage of biospecimen','Nobis est sint ut unde voluptatem inventore illo mollitia sed enim ut modi illo alias omnis aperiam ea voluptas consequatur iusto qui sequi delectus fugit porro repellat sed illo fugit ut ut tempore labore optio voluptatem voluptatem in dolorem dolorum ab enim voluptatem non velit ipsam aut dolor mollitia ut repellat quae et est corporis nemo qui.\r\n\r\nVoluptas sunt vero ad et aut voluptate ex incidunt ducimus quos quidem non adipisci suscipit voluptatem ex amet dolorem inventore nesciunt sequi rerum iusto unde quibusdam qui qui consequatur provident qui odio temporibus quasi aliquam quo sed eum aut sequi occaecati et vel eius odio voluptatibus ullam qui id debitis quisquam est mollitia perferendis nostrum itaque doloribus natus dolor ut dolores ex blanditiis vero quia.','inherit','closed','closed','','17-revision-v1','','','2018-02-14 13:15:17','2018-02-14 13:15:17','',17,'http://localhost:8081/?p=80',0,'revision','',0),(81,1,'2018-02-14 13:18:41','2018-02-14 13:18:41','{\n \"page_for_posts\": {\n \"value\": \"0\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:17:59\"\n },\n \"trusted::featured_page_link1\": {\n \"value\": \"49\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:17:59\"\n },\n \"trusted::featured_page_icon2\": {\n \"value\": \"fa fa-adjust\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:18:41\"\n },\n \"trusted::featured_page_link2\": {\n \"value\": \"50\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:17:59\"\n },\n \"trusted::featured_page_icon3\": {\n \"value\": \"fa fa-mobile\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:18:41\"\n },\n \"trusted::featured_page_link3\": {\n \"value\": \"52\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:18:41\"\n }\n}','','','trash','closed','closed','','d157ce49-2658-41bb-8273-8274c773349d','','','2018-02-14 13:18:41','2018-02-14 13:18:41','',0,'http://localhost:8081/?p=81',0,'customize_changeset','',0),(82,1,'2018-02-14 13:22:38','2018-02-14 13:22:38','{\n \"trusted::nav_menu_locations[primary]\": {\n \"value\": 6,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:20:59\"\n },\n \"nav_menu_item[69]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 53,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=53\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 5,\n \"status\": \"publish\",\n \"original_title\": \"Contact Us\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:21:59\"\n },\n \"nav_menu_item[70]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 52,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=52\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 3,\n \"status\": \"publish\",\n \"original_title\": \"Developers\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:20:59\"\n },\n \"nav_menu_item[71]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 51,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=51\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 4,\n \"status\": \"publish\",\n \"original_title\": \"Educational Item\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:21:59\"\n },\n \"nav_menu_item[72]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 50,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=50\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 2,\n \"status\": \"publish\",\n \"original_title\": \"Download\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:20:59\"\n },\n \"nav_menu_item[73]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 49,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=49\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 1,\n \"status\": \"publish\",\n \"original_title\": \"About Us\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:20:59\"\n },\n \"sidebars_widgets[trusted-top-bar]\": {\n \"value\": [\n \"search-4\",\n \"meta-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:22:38\"\n },\n \"widget_calendar[3]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:21:59\"\n },\n \"widget_search[4]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:21:59\"\n },\n \"widget_meta[4]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:22:38\"\n }\n}','','','trash','closed','closed','','fdb1d702-8e1e-4ea3-b5a0-64d9bf43edb1','','','2018-02-14 13:22:38','2018-02-14 13:22:38','',0,'http://localhost:8081/?p=82',0,'customize_changeset','',0),(83,1,'2018-02-14 13:23:13','2018-02-14 13:23:13','{\n \"sidebars_widgets[wp_inactive_widgets]\": {\n \"value\": [\n \"meta-4\",\n \"search-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:23:13\"\n },\n \"sidebars_widgets[trusted-top-bar]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:23:13\"\n }\n}','','','trash','closed','closed','','9b0478ef-2624-446d-acbd-cb9592fbba02','','','2018-02-14 13:23:13','2018-02-14 13:23:13','',0,'http://localhost:8081/?p=83',0,'customize_changeset','',0),(84,1,'2018-02-14 13:23:59','0000-00-00 00:00:00','{\n \"sidebars_widgets[trusted-about-footer]\": {\n \"value\": [\n \"pages-3\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:23:59\"\n },\n \"widget_pages[3]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:23:59\"\n }\n}','','','auto-draft','closed','closed','','bddc5493-c95d-469b-af39-6ef425762c60','','','2018-02-14 13:23:59','0000-00-00 00:00:00','',0,'http://localhost:8081/?p=84',0,'customize_changeset','',0),(85,1,'2018-02-14 13:27:16','2018-02-14 13:27:16','{\n \"nav_menu_item[73]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 49,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=49\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 6,\n \"status\": \"publish\",\n \"original_title\": \"About Us\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:27:16\"\n },\n \"nav_menu_item[72]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 50,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=50\",\n \"title\": \"Download & Extend\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 1,\n \"status\": \"publish\",\n \"original_title\": \"Download\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:26:39\"\n },\n \"nav_menu_item[70]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 52,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=52\",\n \"title\": \"Documentation\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 3,\n \"status\": \"publish\",\n \"original_title\": \"Developers\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:27:16\"\n },\n \"nav_menu_item[71]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 51,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=51\",\n \"title\": \"Community\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 2,\n \"status\": \"publish\",\n \"original_title\": \"Educational Item\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:26:39\"\n },\n \"nav_menu_item[69]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 53,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=53\",\n \"title\": \"Support\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 4,\n \"status\": \"publish\",\n \"original_title\": \"Contact Us\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:27:16\"\n },\n \"nav_menu_item[74]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 67,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=67\",\n \"title\": \"Jobs\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 5,\n \"status\": \"publish\",\n \"original_title\": \"Sign Up\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:27:16\"\n }\n}','','','trash','closed','closed','','29a9d53a-11e9-4a71-be6c-49bf005f43bc','','','2018-02-14 13:27:16','2018-02-14 13:27:16','',0,'http://localhost:8081/?p=85',0,'customize_changeset','',0),(86,1,'2018-02-14 13:27:40','2018-02-14 13:27:40','{\n \"nav_menu_item[73]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 49,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=49\",\n \"title\": \"About\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 6,\n \"status\": \"publish\",\n \"original_title\": \"About Us\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:27:39\"\n }\n}','','','trash','closed','closed','','8ced4bdc-bba9-4f2a-9aca-e04b2dfadc70','','','2018-02-14 13:27:40','2018-02-14 13:27:40','',0,'http://localhost:8081/?p=86',0,'customize_changeset','',0),(87,1,'2018-02-14 13:28:21','2018-02-14 13:28:21','{\n \"nav_menu[6]\": {\n \"value\": {\n \"name\": \"Footer and Top Menu\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": true\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:28:21\"\n }\n}','','','trash','closed','closed','','a7ff5e44-0d6b-4be7-8ed6-df90462d3bb5','','','2018-02-14 13:28:21','2018-02-14 13:28:21','',0,'http://localhost:8081/?p=87',0,'customize_changeset','',0),(88,1,'2018-02-14 13:29:45','2018-02-14 13:29:45','{\n \"nav_menu[5]\": {\n \"value\": false,\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:28:39\"\n },\n \"sidebars_widgets[trusted-top-bar]\": {\n \"value\": [\n \"search-6\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:29:39\"\n },\n \"widget_search[6]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:29:39\"\n }\n}','','','trash','closed','closed','','425f7e30-b60a-40e1-89f1-033d85c9d28a','','','2018-02-14 13:29:45','2018-02-14 13:29:45','',0,'http://localhost:8081/?p=88',0,'customize_changeset','',0),(89,1,'2018-02-14 13:35:30','2018-02-14 13:35:30','{\n \"sidebars_widgets[trusted-homepage-sidebar]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:30:39\"\n },\n \"sidebars_widgets[trusted-footer1]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:31:39\"\n },\n \"widget_media_audio[3]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:30:39\"\n },\n \"widget_recent-comments[4]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:30:39\"\n },\n \"trusted::about_page_link\": {\n \"value\": \"2\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:31:39\"\n },\n \"trusted::about_layout\": {\n \"value\": \"style2\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:31:39\"\n },\n \"blogname\": {\n \"value\": \"BOABAB LIMS\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:32:39\"\n },\n \"trusted::cta_button_link\": {\n \"value\": \"53\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:32:39\"\n },\n \"trusted::tel_no\": {\n \"value\": \"(+27) 21 959 3645\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:35:30\"\n },\n \"blogdescription\": {\n \"value\": \"\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:35:30\"\n },\n \"trusted::header_textcolor\": {\n \"value\": \"#ffffff\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:35:30\"\n },\n \"trusted::site_title_uppercase\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:35:30\"\n }\n}','','','trash','closed','closed','','7f2175f3-cc0a-46b7-827a-29817e40063a','','','2018-02-14 13:35:30','2018-02-14 13:35:30','',0,'http://localhost:8081/?p=89',0,'customize_changeset','',0),(90,1,'2018-02-14 13:36:39','0000-00-00 00:00:00','{\n \"trusted::head_bg_color\": {\n \"value\": \"#1e73be\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:36:39\"\n }\n}','','','auto-draft','closed','closed','','938a3000-2041-45a5-a009-95f84ec4a076','','','2018-02-14 13:36:39','0000-00-00 00:00:00','',0,'http://localhost:8081/?p=90',0,'customize_changeset','',0),(91,1,'2018-02-14 13:51:28','2018-02-14 13:51:28','{\n \"sidebars_widgets[trusted-top-bar]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:50:12\"\n },\n \"trusted::hi_color\": {\n \"value\": \"#1e73be\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:51:12\"\n },\n \"trusted::sec_color\": {\n \"value\": \"#ffffff\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:50:12\"\n },\n \"trusted::body_text_color\": {\n \"value\": \"#1e1e1e\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:51:12\"\n },\n \"trusted::background_color\": {\n \"value\": \"#f9f9f9\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:51:12\"\n },\n \"trusted::header_textcolor\": {\n \"value\": \"#1e73be\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:51:28\"\n },\n \"trusted::header_light\": {\n \"value\": \"light\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:51:28\"\n }\n}','','','trash','closed','closed','','45b3e14f-960f-41fb-93c7-d09e4a9a814f','','','2018-02-14 13:51:28','2018-02-14 13:51:28','',0,'http://localhost:8081/?p=91',0,'customize_changeset','',0),(92,1,'2018-02-14 13:53:50','2018-02-14 13:53:50','{\n \"trusted::animate_on\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:53:12\"\n },\n \"trusted::menu_center\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:53:12\"\n },\n \"trusted::menu_uppercase\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:53:12\"\n },\n \"trusted::menu_search\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:53:50\"\n },\n \"trusted::headings_underline\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-14 13:53:50\"\n }\n}','','','trash','closed','closed','','ff2d4299-5b2e-4f4c-9b3a-d81833d62737','','','2018-02-14 13:53:50','2018-02-14 13:53:50','',0,'http://localhost:8081/?p=92',0,'customize_changeset','',0),(93,1,'2018-02-16 05:32:32','2018-02-16 05:32:32','','baobank-header','','inherit','open','closed','','oga5i60','','','2018-02-16 05:32:56','2018-02-16 05:32:56','',0,'http://localhost:8081/wp-content/uploads/2018/02/OGA5I60.jpg',0,'attachment','image/jpeg',0),(94,1,'2018-02-16 05:33:05','2018-02-16 05:33:05','','cropped-OGA5I60.jpg','','inherit','open','closed','','cropped-oga5i60-jpg','','','2018-02-16 05:33:05','2018-02-16 05:33:05','',0,'http://localhost:8081/wp-content/uploads/2018/02/cropped-OGA5I60.jpg',0,'attachment','image/jpeg',0),(95,1,'2018-02-16 05:34:15','2018-02-16 05:34:15','{\n \"trusted::header_image\": {\n \"value\": \"http://localhost:8081/wp-content/uploads/2018/02/cropped-OGA5I60.jpg\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 05:34:15\"\n },\n \"trusted::header_image_data\": {\n \"value\": {\n \"attachment_id\": 94,\n \"url\": \"http://localhost:8081/wp-content/uploads/2018/02/cropped-OGA5I60.jpg\",\n \"thumbnail_url\": \"http://localhost:8081/wp-content/uploads/2018/02/cropped-OGA5I60.jpg\",\n \"alt_text\": \"\",\n \"attachment_parent\": 93,\n \"width\": 1920,\n \"height\": 640,\n \"timestamp\": [\n \"1518759185\"\n ]\n },\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 05:34:15\"\n }\n}','','','trash','closed','closed','','03b55614-4171-4ac4-9954-a72c9c7805ed','','','2018-02-16 05:34:15','2018-02-16 05:34:15','',0,'http://localhost:8081/?p=95',0,'customize_changeset','',0),(96,1,'2018-02-16 05:35:14','2018-02-16 05:35:14','','logoforsite','','inherit','open','closed','','logoforsite','','','2018-02-16 05:35:14','2018-02-16 05:35:14','',0,'http://localhost:8081/wp-content/uploads/2018/02/logoforsite.png',0,'attachment','image/png',0),(97,1,'2018-02-16 05:35:30','2018-02-16 05:35:30','http://localhost:8081/wp-content/uploads/2018/02/cropped-logoforsite.png','cropped-logoforsite.png','','inherit','open','closed','','cropped-logoforsite-png','','','2018-02-16 05:35:30','2018-02-16 05:35:30','',0,'http://localhost:8081/wp-content/uploads/2018/02/cropped-logoforsite.png',0,'attachment','image/png',0),(98,1,'2018-02-16 05:35:40','2018-02-16 05:35:40','{\n \"trusted::custom_logo\": {\n \"value\": 97,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 05:35:40\"\n }\n}','','','trash','closed','closed','','8fae0a96-d9a3-450b-a974-e1390678fbb5','','','2018-02-16 05:35:40','2018-02-16 05:35:40','',0,'http://localhost:8081/?p=98',0,'customize_changeset','',0),(99,1,'2018-02-16 05:37:37','0000-00-00 00:00:00','{\n \"blogdescription\": {\n \"value\": \"Open Source LIMS\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 05:37:37\"\n }\n}','','','auto-draft','closed','closed','','c480a117-7460-4f18-8118-89aa34cdf26f','','','2018-02-16 05:37:37','0000-00-00 00:00:00','',0,'http://localhost:8081/?p=99',0,'customize_changeset','',0),(100,1,'2018-02-16 05:40:21','2018-02-16 05:40:21','{\n \"trusted::background_color\": {\n \"value\": \"#e8e8e8\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 05:40:21\"\n },\n \"trusted::header_light\": {\n \"value\": \"light\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 05:40:21\"\n },\n \"trusted::hi_color\": {\n \"value\": \"#1e73be\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 05:40:21\"\n },\n \"trusted::sec_color\": {\n \"value\": \"#1e73be\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 05:40:21\"\n }\n}','','','trash','closed','closed','','c3e28c9c-99ac-4b64-85f4-0563d27a2a61','','','2018-02-16 05:40:21','2018-02-16 05:40:21','',0,'http://localhost:8081/?p=100',0,'customize_changeset','',0),(101,1,'2018-02-16 05:42:37','2018-02-16 05:42:37','{\n \"trusted::hi_color\": {\n \"value\": \"#396395\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 05:42:35\"\n },\n \"trusted::sec_color\": {\n \"value\": \"#396395\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 05:42:35\"\n }\n}','','','trash','closed','closed','','71375fe2-ce79-4c1a-bdaa-e6ad7eb9fdbe','','','2018-02-16 05:42:37','2018-02-16 05:42:37','',0,'http://localhost:8081/?p=101',0,'customize_changeset','',0),(102,1,'2018-02-16 05:45:29','2018-02-16 05:45:29','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\r\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\r\n...or something like this:\r\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\r\nAs a new WordPress user, you should go to <a href=\"http://localhost:8081/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Welcome to Baobab LIMS','','inherit','closed','closed','','2-revision-v1','','','2018-02-16 05:45:29','2018-02-16 05:45:29','',2,'http://localhost:8081/?p=102',0,'revision','',0),(103,1,'2018-02-16 06:30:21','2018-02-16 06:30:21','{\n \"trusted::front_page_content_off\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 05:47:20\"\n }\n}','','','trash','closed','closed','','df4b02bd-eb36-4821-981b-ad339c992937','','','2018-02-16 06:30:21','2018-02-16 06:30:21','',0,'http://localhost:8081/?p=103',0,'customize_changeset','',0),(104,1,'2018-02-16 06:37:22','2018-02-16 06:37:22','{\n \"trusted::featured_page_icon1\": {\n \"value\": \"fa fa-info-circle\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 06:36:08\"\n },\n \"trusted::featured_page_icon2\": {\n \"value\": \"fa fa-download\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 06:36:08\"\n },\n \"trusted::featured_page_icon3\": {\n \"value\": \"fa fa-gears\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 06:37:22\"\n }\n}','','','trash','closed','closed','','58b83dcf-a9ee-4f00-81e3-d83c45a7cae3','','','2018-02-16 06:37:22','2018-02-16 06:37:22','',0,'http://localhost:8081/?p=104',0,'customize_changeset','',0),(105,1,'2018-02-16 06:46:39','2018-02-16 06:46:39','Baobab LIMS, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (www.bibbox.org). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','','inherit','closed','closed','','2-revision-v1','','','2018-02-16 06:46:39','2018-02-16 06:46:39','',2,'http://localhost:8081/?p=105',0,'revision','',0),(106,1,'2018-02-16 08:27:25','2018-02-16 08:27:25','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\n\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\n\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\n\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"http://localhost:8081/?page_id=50\" class=\"button\">Get the code</a>\n','inherit','closed','closed','','2-autosave-v1','','','2018-02-16 08:27:25','2018-02-16 08:27:25','',2,'http://localhost:8081/?p=106',0,'revision','',0),(107,1,'2018-02-16 06:48:03','2018-02-16 06:48:03','<h2>Testing</h2>\r\nBaobab LIMS, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (www.bibbox.org). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','','inherit','closed','closed','','2-revision-v1','','','2018-02-16 06:48:03','2018-02-16 06:48:03','',2,'http://localhost:8081/?p=107',0,'revision','',0),(108,1,'2018-02-16 06:49:46','2018-02-16 06:49:46','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','','inherit','closed','closed','','2-revision-v1','','','2018-02-16 06:49:46','2018-02-16 06:49:46','',2,'http://localhost:8081/?p=108',0,'revision','',0),(109,1,'2018-02-16 06:53:06','2018-02-16 06:53:06','Baobab LIMS, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (www.bibbox.org). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','About Us','','inherit','closed','closed','','49-revision-v1','','','2018-02-16 06:53:06','2018-02-16 06:53:06','',49,'http://localhost:8081/?p=109',0,'revision','',0),(110,1,'2018-02-16 06:56:43','2018-02-16 06:56:43','Baobab Modules include (Project Registration, Kitt)\n','Modules','','inherit','closed','closed','','49-autosave-v1','','','2018-02-16 06:56:43','2018-02-16 06:56:43','',49,'http://localhost:8081/?p=110',0,'revision','',0),(111,1,'2018-02-16 06:55:27','2018-02-16 06:55:27','A step by step guide into using Baobab\r\n','Modules','','inherit','closed','closed','','49-revision-v1','','','2018-02-16 06:55:27','2018-02-16 06:55:27','',49,'http://localhost:8081/?p=111',0,'revision','',0),(112,1,'2018-02-16 06:57:52','2018-02-16 06:57:52','Baobab Modules include (Project Registration, Kit Assembly, Shipping, Storage, Biospecimen Registration, Analysis Request and Reporting)\r\n','Modules','','inherit','closed','closed','','49-revision-v1','','','2018-02-16 06:57:52','2018-02-16 06:57:52','',49,'http://localhost:8081/?p=112',0,'revision','',0),(113,1,'2018-02-16 06:59:40','2018-02-16 06:59:40','Baobab LIMS is an open-source laboratory information management system (LIMS) primary written in Plone (Python). It is developed to ensure that researchers can track the lifecycle of a biospecimen in the laboratory from receipt to storage and reuse. This software ensures that sufficient metadata is captured.\n','Download','','inherit','closed','closed','','50-autosave-v1','','','2018-02-16 06:59:40','2018-02-16 06:59:40','',50,'http://localhost:8081/?p=113',0,'revision','',0),(114,1,'2018-02-16 06:59:57','2018-02-16 06:59:57','Baobab LIMS is an open-source laboratory information management system (LIMS) primary written in Plone (Python). It is developed to ensure that researchers can track the lifecycle of a biospecimen in the laboratory from receipt to storage and reuse. This software ensures that sufficient metadata is captured.\r\n\r\nGithub Repo: \r\n','Download','','inherit','closed','closed','','50-revision-v1','','','2018-02-16 06:59:57','2018-02-16 06:59:57','',50,'http://localhost:8081/?p=114',0,'revision','',0),(115,1,'2018-02-16 07:01:48','2018-02-16 07:01:48','Extend and customize Baobab LIMS functionality, and integrate with 3rd-party services through our extensive API.','Developers','','inherit','closed','closed','','52-revision-v1','','','2018-02-16 07:01:48','2018-02-16 07:01:48','',52,'http://localhost:8081/?p=115',0,'revision','',0),(116,1,'2018-02-16 07:05:20','2018-02-16 07:05:20','','Documentation','','inherit','closed','closed','','51-revision-v1','','','2018-02-16 07:05:20','2018-02-16 07:05:20','',51,'http://localhost:8081/?p=116',0,'revision','',0),(117,1,'2018-02-16 07:07:58','2018-02-16 07:07:58','{\n \"trusted::about_enable\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 07:07:58\"\n },\n \"trusted::enable_about_link\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 07:07:58\"\n }\n}','','','trash','closed','closed','','d3cc2063-e526-4c3f-b05b-db9201b0e9d7','','','2018-02-16 07:07:58','2018-02-16 07:07:58','',0,'http://localhost:8081/?p=117',0,'customize_changeset','',0),(118,1,'2018-02-16 07:12:36','2018-02-16 07:12:36','{\n \"trusted::cta_button_link\": {\n \"value\": \"53\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 07:12:36\"\n }\n}','','','trash','closed','closed','','68e259d5-7196-4505-bde3-38655debbc31','','','2018-02-16 07:12:36','2018-02-16 07:12:36','',0,'http://localhost:8081/?p=118',0,'customize_changeset','',0),(119,1,'2018-02-16 07:14:03','2018-02-16 07:14:03','Baobab LIMS is an open-source laboratory information management system (LIMS) primary written in Plone (Python). It is developed to ensure that researchers can track the lifecycle of a biospecimen in the laboratory from receipt to storage and reuse. This software ensures that sufficient metadata is captured.\r\n\r\nGithub Repo: \r\n','Download & Try','','inherit','closed','closed','','50-revision-v1','','','2018-02-16 07:14:03','2018-02-16 07:14:03','',50,'http://localhost:8081/?p=119',0,'revision','',0),(120,1,'2018-02-16 07:24:11','2018-02-16 07:24:11','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking. \r\nDemo | Download\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 07:24:11','2018-02-16 07:24:11','',2,'http://localhost:8081/?p=120',0,'revision','',0),(121,1,'2018-02-16 07:27:10','2018-02-16 07:27:10','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking. \r\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Demo</a> | Download\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 07:27:10','2018-02-16 07:27:10','',2,'http://localhost:8081/?p=121',0,'revision','',0),(122,1,'2018-02-16 07:28:38','2018-02-16 07:28:38','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking. \r\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Demo</a> | <a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Download</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 07:28:38','2018-02-16 07:28:38','',2,'http://localhost:8081/?p=122',0,'revision','',0),(123,1,'2018-02-16 07:29:49','2018-02-16 07:29:49','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking. \r\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Try Baobab</a> | <a href=\"http://localhost:8081/?page_id=50\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 07:29:49','2018-02-16 07:29:49','',2,'http://localhost:8081/?p=123',0,'revision','',0),(124,1,'2018-02-16 07:30:55','2018-02-16 07:30:55','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Try Baobab</a> | <a href=\"http://localhost:8081/?page_id=50\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 07:30:55','2018-02-16 07:30:55','',2,'http://localhost:8081/?p=124',0,'revision','',0),(125,1,'2018-02-16 07:31:27','2018-02-16 07:31:27','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"http://localhost:8081/?page_id=50\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 07:31:27','2018-02-16 07:31:27','',2,'http://localhost:8081/?p=125',0,'revision','',0),(126,1,'2018-02-16 07:41:28','2018-02-16 07:41:28','http://localhost:8081/wp-content/uploads/2018/02/recent-tweets-widget.1.6.8.zip','recent-tweets-widget.1.6.8.zip','','private','open','closed','','recent-tweets-widget-1-6-8-zip','','','2018-02-16 07:41:28','2018-02-16 07:41:28','',0,'http://localhost:8081/wp-content/uploads/2018/02/recent-tweets-widget.1.6.8.zip',0,'attachment','',0),(127,1,'2018-02-16 08:14:38','2018-02-16 08:14:38','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\n[grd_count]\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"http://localhost:8081/?page_id=50\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 08:14:38','2018-02-16 08:14:38','',2,'http://localhost:8081/?p=127',0,'revision','',0),(128,1,'2018-02-16 08:16:49','2018-02-16 08:16:49','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"http://localhost:8081/?page_id=50\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 08:16:49','2018-02-16 08:16:49','',2,'http://localhost:8081/?p=128',0,'revision','',0),(129,1,'2018-02-16 08:17:54','2018-02-16 08:17:54','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\n[grd_count]\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"http://localhost:8081/?page_id=50\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 08:17:54','2018-02-16 08:17:54','',2,'http://localhost:8081/?p=129',0,'revision','',0),(130,1,'2018-02-16 08:24:48','2018-02-16 08:24:48','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\n[grd_list]\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"http://localhost:8081/?page_id=50\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 08:24:48','2018-02-16 08:24:48','',2,'http://localhost:8081/?p=130',0,'revision','',0),(131,1,'2018-02-16 08:27:26','2018-02-16 08:27:26','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"http://localhost:8081/?page_id=50\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 08:27:26','2018-02-16 08:27:26','',2,'http://localhost:8081/?p=131',0,'revision','',0),(132,1,'2018-02-16 08:27:44','2018-02-16 08:27:44','[grd_list hide_downloads=\"true\"]','Github Stats','','trash','closed','closed','','github-stats__trashed','','','2018-02-16 09:10:03','2018-02-16 09:10:03','',0,'http://localhost:8081/?page_id=132',0,'page','',0),(134,1,'2018-02-16 08:27:44','2018-02-16 08:27:44','[grd_list]','Github Stats','','inherit','closed','closed','','132-revision-v1','','','2018-02-16 08:27:44','2018-02-16 08:27:44','',132,'http://localhost:8081/?p=134',0,'revision','',0),(135,1,'2018-02-16 08:31:54','2018-02-16 08:31:54','[grd_list hide_downloads=\"true\"]','Github Stats','','inherit','closed','closed','','132-autosave-v1','','','2018-02-16 08:31:54','2018-02-16 08:31:54','',132,'http://localhost:8081/?p=135',0,'revision','',0),(136,1,'2018-02-16 08:28:51','2018-02-16 08:28:51','[grd_list latest=\"true\"]','Github Stats','','inherit','closed','closed','','132-revision-v1','','','2018-02-16 08:28:51','2018-02-16 08:28:51','',132,'http://localhost:8081/?p=136',0,'revision','',0),(137,1,'2018-02-16 08:31:52','2018-02-16 08:31:52','[grd_list hide_downloads=\"true\"]','Github Stats','','inherit','closed','closed','','132-revision-v1','','','2018-02-16 08:31:52','2018-02-16 08:31:52','',132,'http://localhost:8081/?p=137',0,'revision','',0),(138,1,'2018-02-16 09:09:01','2018-02-16 09:09:01','{\n \"trusted::cta_enable\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 09:09:01\"\n }\n}','','','trash','closed','closed','','767756ac-c4ee-437d-91ff-c07caf6895d9','','','2018-02-16 09:09:01','2018-02-16 09:09:01','',0,'http://localhost:8081/?p=138',0,'customize_changeset','',0),(139,1,'2018-02-16 09:10:21','2018-02-16 09:10:21','','Team','','inherit','closed','closed','','67-revision-v1','','','2018-02-16 09:10:21','2018-02-16 09:10:21','',67,'http://localhost:8081/?p=139',0,'revision','',0),(140,1,'2018-02-16 09:17:43','2018-02-16 09:17:43','User Training','User Training','','publish','open','closed','','user-training','','','2018-02-16 09:21:24','2018-02-16 09:21:24','',0,'http://localhost:8081/?post_type=mp-event&p=140',0,'mp-event','',0),(141,1,'2018-02-16 09:18:10','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2018-02-16 09:18:10','0000-00-00 00:00:00','',0,'http://localhost:8081/?post_type=mp-column&p=141',0,'mp-column','',0),(142,1,'2018-02-16 09:18:15','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2018-02-16 09:18:15','0000-00-00 00:00:00','',0,'http://localhost:8081/?post_type=mp-column&p=142',0,'mp-column','',0),(143,1,'2018-02-16 09:18:18','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','closed','','','','','2018-02-16 09:18:18','0000-00-00 00:00:00','',0,'http://localhost:8081/?post_type=mp-event&p=143',0,'mp-event','',0),(144,1,'2018-02-16 09:19:06','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2018-02-16 09:19:06','0000-00-00 00:00:00','',0,'http://localhost:8081/?post_type=mp-column&p=144',0,'mp-column','',0),(145,1,'2018-02-16 09:19:21','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','closed','','','','','2018-02-16 09:19:21','0000-00-00 00:00:00','',0,'http://localhost:8081/?post_type=mp-event&p=145',0,'mp-event','',0),(146,1,'2018-02-16 09:20:46','2018-02-16 09:20:46','','Date','','publish','closed','closed','','date','','','2018-02-16 09:20:46','2018-02-16 09:20:46','',0,'http://localhost:8081/?post_type=mp-column&p=146',0,'mp-column','',0),(147,1,'2018-02-16 10:01:17','2018-02-16 10:01:17','{{unknown}}','','','publish','closed','closed','','0654d139b5cfd03b2ca3ab34d8b8f842','','','2018-02-16 10:01:17','2018-02-16 10:01:17','',0,'http://localhost:8081/?p=147',0,'oembed_cache','',0),(148,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','\r\nThe submission sites (the biobank’s clients) order kits from the biobank based on a particular project to be carried out on a specific case study.\r\n\r\nBlood samples, for example are to be collected to carry out DNA extraction and subsequent analysis.','Kit Assembly','','publish','closed','closed','','kit-assembly','','','2018-02-16 10:42:55','2018-02-16 10:42:55','',0,'http://localhost:8081/?page_id=148',0,'page','',0),(149,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','A shipping manifest. This form is included in the assembled kits. The Client completes this form before shipping the biospecimens to the biobank','Shipping','','publish','closed','closed','','shipping','','','2018-02-16 10:47:23','2018-02-16 10:47:23','',0,'http://localhost:8081/?page_id=149',0,'page','',0),(150,1,'2018-02-16 10:29:39','2018-02-16 10:29:39','{\n \"nav_menu_item[71]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 51,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=51\",\n \"title\": \"Community\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 8,\n \"status\": \"publish\",\n \"original_title\": \"Documentation\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:29:39\"\n },\n \"nav_menu_item[70]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 52,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=52\",\n \"title\": \"Documentation\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 9,\n \"status\": \"publish\",\n \"original_title\": \"Developers\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:29:39\"\n },\n \"nav_menu_item[69]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 53,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=53\",\n \"title\": \"Support\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 10,\n \"status\": \"publish\",\n \"original_title\": \"Contact Us\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:29:39\"\n },\n \"nav_menu_item[74]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 67,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=67\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 11,\n \"status\": \"publish\",\n \"original_title\": \"Team\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:29:39\"\n },\n \"nav_menu_item[73]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 49,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=49\",\n \"title\": \"About\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 12,\n \"status\": \"publish\",\n \"original_title\": \"Modules\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:29:39\"\n },\n \"nav_menus_created_posts\": {\n \"value\": [\n 148,\n 149,\n 151,\n 152,\n 153,\n 154\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:29:13\"\n },\n \"nav_menu_item[-6209069537205374000]\": {\n \"value\": {\n \"object_id\": 148,\n \"object\": \"page\",\n \"menu_item_parent\": 72,\n \"position\": 2,\n \"type\": \"post_type\",\n \"title\": \"Kit Assembly\",\n \"url\": \"http://localhost:8081/?page_id=148\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Kit Assembly\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:28:13\"\n },\n \"nav_menu_item[-5531982617976584000]\": {\n \"value\": {\n \"object_id\": 149,\n \"object\": \"page\",\n \"menu_item_parent\": 72,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"Shipping\",\n \"url\": \"http://localhost:8081/?page_id=149\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Shipping\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:29:13\"\n },\n \"nav_menu_item[-100593889636829180]\": {\n \"value\": {\n \"object_id\": 151,\n \"object\": \"page\",\n \"menu_item_parent\": 72,\n \"position\": 4,\n \"type\": \"post_type\",\n \"title\": \"Storage\",\n \"url\": \"http://localhost:8081/?page_id=151\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Storage\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:29:13\"\n },\n \"nav_menu_item[-4975662779884233000]\": {\n \"value\": {\n \"object_id\": 152,\n \"object\": \"page\",\n \"menu_item_parent\": 72,\n \"position\": 5,\n \"type\": \"post_type\",\n \"title\": \"Biospecimen Registration\",\n \"url\": \"http://localhost:8081/?page_id=152\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Biospecimen Registration\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:29:39\"\n },\n \"nav_menu_item[-8258187035159961000]\": {\n \"value\": {\n \"object_id\": 153,\n \"object\": \"page\",\n \"menu_item_parent\": 72,\n \"position\": 7,\n \"type\": \"post_type\",\n \"title\": \"Analysis Request\",\n \"url\": \"http://localhost:8081/?page_id=153\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Analysis Request\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:29:39\"\n },\n \"nav_menu_item[-2704135644545342500]\": {\n \"value\": {\n \"object_id\": 154,\n \"object\": \"page\",\n \"menu_item_parent\": 72,\n \"position\": 6,\n \"type\": \"post_type\",\n \"title\": \"Reporting & Invoicing\",\n \"url\": \"http://localhost:8081/?page_id=154\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Reporting & Invoicing\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:29:39\"\n }\n}','','','trash','closed','closed','','3bdedfb6-695c-492c-b1c8-840abbb99d01','','','2018-02-16 10:29:39','2018-02-16 10:29:39','',0,'http://localhost:8081/?p=150',0,'customize_changeset','',0),(151,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','The storage management contains tabs: Storage units, Managed storage and Unmanaged storage','Storage','','publish','closed','closed','','storage','','','2018-02-16 10:49:17','2018-02-16 10:49:17','',0,'http://localhost:8081/?page_id=151',0,'page','',0),(152,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','The client returns the kits received from the biobank for collection, but this time with biospecimens inside. A biospecimen is a material taken from human body, such as tissue, blood, plasma, stool and urine that can be used for diagnosis and analysis. The biobank staff member opens the kits and registers the biospecimen information into the system using a form.','Biospecimen Registration','','publish','closed','closed','','biospecimen-registration','','','2018-02-16 10:58:14','2018-02-16 10:58:14','',0,'http://localhost:8081/?page_id=152',0,'page','',0),(153,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','The client requests for an analysis to be carried out on specific biospecimens based on the case study on a particular project.','Analysis Request','','publish','closed','closed','','analysis-request','','','2018-02-16 10:58:45','2018-02-16 10:58:45','',0,'http://localhost:8081/?page_id=153',0,'page','',0),(154,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','The reports and billing information are sent to clients.','Reporting & Invoicing','','publish','closed','closed','','reporting-invoicing','','','2018-02-16 10:59:22','2018-02-16 10:59:22','',0,'http://localhost:8081/?page_id=154',0,'page','',0),(156,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','','Kit Assembly','','inherit','closed','closed','','148-revision-v1','','','2018-02-16 10:29:40','2018-02-16 10:29:40','',148,'http://localhost:8081/?p=156',0,'revision','',0),(158,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','','Shipping','','inherit','closed','closed','','149-revision-v1','','','2018-02-16 10:29:40','2018-02-16 10:29:40','',149,'http://localhost:8081/?p=158',0,'revision','',0),(159,1,'2018-02-16 10:29:40','2018-02-16 10:29:40',' ','','','publish','closed','closed','','159','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=159',5,'nav_menu_item','',0),(160,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','','Storage','','inherit','closed','closed','','151-revision-v1','','','2018-02-16 10:29:40','2018-02-16 10:29:40','',151,'http://localhost:8081/?p=160',0,'revision','',0),(162,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','','Biospecimen Registration','','inherit','closed','closed','','152-revision-v1','','','2018-02-16 10:29:40','2018-02-16 10:29:40','',152,'http://localhost:8081/?p=162',0,'revision','',0),(164,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','','Analysis Request','','inherit','closed','closed','','153-revision-v1','','','2018-02-16 10:29:40','2018-02-16 10:29:40','',153,'http://localhost:8081/?p=164',0,'revision','',0),(166,1,'2018-02-16 10:29:40','2018-02-16 10:29:40','','Reporting & Invoicing','','inherit','closed','closed','','154-revision-v1','','','2018-02-16 10:29:40','2018-02-16 10:29:40','',154,'http://localhost:8081/?p=166',0,'revision','',0),(167,1,'2018-02-16 10:29:40','2018-02-16 10:29:40',' ','','','publish','closed','closed','','167','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=167',3,'nav_menu_item','',0),(168,1,'2018-02-16 10:29:40','2018-02-16 10:29:40',' ','','','publish','closed','closed','','168','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=168',4,'nav_menu_item','',0),(170,1,'2018-02-16 10:29:40','2018-02-16 10:29:40',' ','','','publish','closed','closed','','170','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=170',8,'nav_menu_item','',0),(171,1,'2018-02-16 10:29:40','2018-02-16 10:29:40',' ','','','publish','closed','closed','','171','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=171',9,'nav_menu_item','',0),(172,1,'2018-02-16 10:29:40','2018-02-16 10:29:40',' ','','','publish','closed','closed','','172','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=172',10,'nav_menu_item','',0),(173,1,'2018-02-16 10:30:52','2018-02-16 10:30:52','{\n \"nav_menu_item[169]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:30:52\"\n },\n \"nav_menu_item[170]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 152,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=152\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 6,\n \"status\": \"publish\",\n \"original_title\": \"Biospecimen Registration\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:30:52\"\n },\n \"nav_menu_item[172]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 154,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=154\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 7,\n \"status\": \"publish\",\n \"original_title\": \"Reporting & Invoicing\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:30:52\"\n },\n \"nav_menu_item[155]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:30:52\"\n },\n \"nav_menu_item[157]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:30:52\"\n },\n \"nav_menu_item[71]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 51,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=51\",\n \"title\": \"Community\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 11,\n \"status\": \"publish\",\n \"original_title\": \"Documentation\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:30:52\"\n },\n \"nav_menu_item[70]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 52,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=52\",\n \"title\": \"Documentation\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 12,\n \"status\": \"publish\",\n \"original_title\": \"Developers\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:30:52\"\n },\n \"nav_menu_item[159]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 151,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=151\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 4,\n \"status\": \"publish\",\n \"original_title\": \"Storage\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:30:52\"\n },\n \"nav_menu_item[161]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:30:52\"\n },\n \"nav_menu_item[163]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:30:52\"\n },\n \"nav_menu_item[165]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:30:52\"\n }\n}','','','trash','closed','closed','','784404e1-4a03-444b-a62c-a1986e031fb6','','','2018-02-16 10:30:52','2018-02-16 10:30:52','',0,'http://localhost:8081/?p=173',0,'customize_changeset','',0),(174,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','Events','','publish','closed','closed','','events','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',0,'http://localhost:8081/?page_id=174',0,'page','',0),(175,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','News','','publish','closed','closed','','news','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',0,'http://localhost:8081/?page_id=175',0,'page','',0),(176,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','1. Bendou et al(2017).Biopreservation & Biobanking.15(2):116-12 DOI: 10.1089/bio.2017.0014','Publications','','publish','closed','closed','','publications','','','2018-02-16 11:02:16','2018-02-16 11:02:16','',0,'http://localhost:8081/?page_id=176',0,'page','',0),(177,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','{\n \"nav_menus_created_posts\": {\n \"value\": [\n 174,\n 175,\n 176,\n 178,\n 179,\n 180,\n 181,\n 182\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:36:15\"\n },\n \"nav_menu_item[-4619648831779561000]\": {\n \"value\": {\n \"object_id\": 174,\n \"object\": \"page\",\n \"menu_item_parent\": 71,\n \"position\": 10,\n \"type\": \"post_type\",\n \"title\": \"Events\",\n \"url\": \"http://localhost:8081/?page_id=174\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Events\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:34:15\"\n },\n \"nav_menu_item[-4047862135848491000]\": {\n \"value\": {\n \"object_id\": 175,\n \"object\": \"page\",\n \"menu_item_parent\": 71,\n \"position\": 9,\n \"type\": \"post_type\",\n \"title\": \"News\",\n \"url\": \"http://localhost:8081/?page_id=175\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"News\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:34:15\"\n },\n \"nav_menu_item[-8433819455003487000]\": {\n \"value\": {\n \"object_id\": 176,\n \"object\": \"page\",\n \"menu_item_parent\": 71,\n \"position\": 11,\n \"type\": \"post_type\",\n \"title\": \"Publications\",\n \"url\": \"http://localhost:8081/?page_id=176\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Publications\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:35:15\"\n },\n \"nav_menu_item[170]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 152,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=152\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 5,\n \"status\": \"publish\",\n \"original_title\": \"Biospecimen Registration\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:34:15\"\n },\n \"nav_menu_item[172]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 154,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=154\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 6,\n \"status\": \"publish\",\n \"original_title\": \"Reporting & Invoicing\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:34:15\"\n },\n \"nav_menu_item[171]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 153,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=153\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 7,\n \"status\": \"publish\",\n \"original_title\": \"Analysis Request\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:34:15\"\n },\n \"nav_menu_item[71]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 51,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=51\",\n \"title\": \"Community\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 8,\n \"status\": \"publish\",\n \"original_title\": \"Documentation\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:34:15\"\n },\n \"nav_menu_item[70]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 52,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=52\",\n \"title\": \"Documentation\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 14,\n \"status\": \"publish\",\n \"original_title\": \"Developers\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:35:15\"\n },\n \"nav_menu_item[69]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 53,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=53\",\n \"title\": \"Support\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 17,\n \"status\": \"publish\",\n \"original_title\": \"Contact Us\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:36:15\"\n },\n \"nav_menu_item[74]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 67,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=67\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 18,\n \"status\": \"publish\",\n \"original_title\": \"Team\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:36:15\"\n },\n \"nav_menu_item[73]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 49,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=49\",\n \"title\": \"About\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 19,\n \"status\": \"publish\",\n \"original_title\": \"Modules\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:36:15\"\n },\n \"nav_menu_item[-4928329965654119000]\": {\n \"value\": {\n \"object_id\": 178,\n \"object\": \"page\",\n \"menu_item_parent\": 71,\n \"position\": 12,\n \"type\": \"post_type\",\n \"title\": \"BiBBoX\",\n \"url\": \"http://localhost:8081/?page_id=178\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"BiBBoX\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:35:15\"\n },\n \"nav_menu_item[-4643954686291969000]\": {\n \"value\": {\n \"object_id\": 179,\n \"object\": \"page\",\n \"menu_item_parent\": 71,\n \"position\": 13,\n \"type\": \"post_type\",\n \"title\": \"B3Africa\",\n \"url\": \"http://localhost:8081/?page_id=179\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"BAfrica\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:35:15\"\n },\n \"nav_menu_item[-9116225332659122000]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:34:15\"\n },\n \"nav_menu_item[-5415199390598342000]\": {\n \"value\": {\n \"object_id\": 180,\n \"object\": \"page\",\n \"menu_item_parent\": 165,\n \"position\": 20,\n \"type\": \"post_type\",\n \"title\": \"Installation Manual\",\n \"url\": \"http://localhost:8081/?page_id=180\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Installation Guide\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:38:09\"\n },\n \"nav_menu_item[-5202794797356784000]\": {\n \"value\": {\n \"object_id\": 181,\n \"object\": \"page\",\n \"menu_item_parent\": 70,\n \"position\": 15,\n \"type\": \"post_type\",\n \"title\": \"User Guide\",\n \"url\": \"http://localhost:8081/?page_id=181\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"User Guide\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:38:09\"\n },\n \"nav_menu_item[-6513246601679983000]\": {\n \"value\": {\n \"object_id\": 182,\n \"object\": \"page\",\n \"menu_item_parent\": 165,\n \"position\": 16,\n \"type\": \"post_type\",\n \"title\": \"Setup Manual\",\n \"url\": \"http://localhost:8081/?page_id=182\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Setup Guide\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:38:09\"\n }\n}','','','trash','closed','closed','','9cb40d87-18da-4841-988b-b77057945e05','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',0,'http://localhost:8081/?p=177',0,'customize_changeset','',0),(178,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','BiBBoX','','publish','closed','closed','','bibbox','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',0,'http://localhost:8081/?page_id=178',0,'page','',0),(179,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','BAfrica','','publish','closed','closed','','bafrica','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',0,'http://localhost:8081/?page_id=179',0,'page','',0),(180,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','Installation Guide','','publish','closed','closed','','installation-guide','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',0,'http://localhost:8081/?page_id=180',0,'page','',0),(181,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','User Guide','','publish','closed','closed','','user-guide','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',0,'http://localhost:8081/?page_id=181',0,'page','',0),(182,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','Setup Guide','','publish','closed','closed','','setup-guide','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',0,'http://localhost:8081/?page_id=182',0,'page','',0),(184,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','Events','','inherit','closed','closed','','174-revision-v1','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',174,'http://localhost:8081/?p=184',0,'revision','',0),(186,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','News','','inherit','closed','closed','','175-revision-v1','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',175,'http://localhost:8081/?p=186',0,'revision','',0),(188,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','Publications','','inherit','closed','closed','','176-revision-v1','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',176,'http://localhost:8081/?p=188',0,'revision','',0),(190,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','BiBBoX','','inherit','closed','closed','','178-revision-v1','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',178,'http://localhost:8081/?p=190',0,'revision','',0),(192,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','BAfrica','','inherit','closed','closed','','179-revision-v1','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',179,'http://localhost:8081/?p=192',0,'revision','',0),(193,1,'2018-02-16 10:38:09','2018-02-16 10:38:09',' ','','','publish','closed','closed','','193','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=193',18,'nav_menu_item','',0),(194,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','Installation Guide','','inherit','closed','closed','','180-revision-v1','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',180,'http://localhost:8081/?p=194',0,'revision','',0),(196,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','User Guide','','inherit','closed','closed','','181-revision-v1','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',181,'http://localhost:8081/?p=196',0,'revision','',0),(197,1,'2018-02-16 10:38:09','2018-02-16 10:38:09',' ','','','publish','closed','closed','','197','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=197',19,'nav_menu_item','',0),(198,1,'2018-02-16 10:38:09','2018-02-16 10:38:09','','Setup Guide','','inherit','closed','closed','','182-revision-v1','','','2018-02-16 10:38:09','2018-02-16 10:38:09','',182,'http://localhost:8081/?p=198',0,'revision','',0),(199,1,'2018-02-16 10:38:09','2018-02-16 10:38:09',' ','','','publish','closed','closed','','199','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=199',13,'nav_menu_item','',0),(200,1,'2018-02-16 10:38:10','2018-02-16 10:38:10',' ','','','publish','closed','closed','','200','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=200',12,'nav_menu_item','',0),(201,1,'2018-02-16 10:38:10','2018-02-16 10:38:10',' ','','','publish','closed','closed','','201','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=201',14,'nav_menu_item','',0),(202,1,'2018-02-16 10:38:10','2018-02-16 10:38:10',' ','','','publish','closed','closed','','202','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=202',15,'nav_menu_item','',0),(203,1,'2018-02-16 10:38:10','2018-02-16 10:38:10','','B3Africa','','publish','closed','closed','','b3africa','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=203',16,'nav_menu_item','',0),(205,1,'2018-02-16 10:38:10','2018-02-16 10:38:10',' ','','','publish','closed','closed','','205','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=205',20,'nav_menu_item','',0),(207,1,'2018-02-16 10:39:44','2018-02-16 10:39:44','{\n \"nav_menu_item[187]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:39:44\"\n },\n \"nav_menu_item[189]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:39:44\"\n },\n \"nav_menu_item[69]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:39:44\"\n },\n \"nav_menu_item[191]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:39:44\"\n },\n \"nav_menu_item[195]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:39:44\"\n },\n \"nav_menu_item[206]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:39:44\"\n },\n \"nav_menu_item[204]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:39:44\"\n }\n}','','','trash','closed','closed','','44217e1e-20ae-4174-ae69-e9deaf79cd62','','','2018-02-16 10:39:44','2018-02-16 10:39:44','',0,'http://localhost:8081/?p=207',0,'customize_changeset','',0),(208,1,'2018-02-16 10:40:06','2018-02-16 10:40:06','{\n \"nav_menu_item[183]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:40:05\"\n },\n \"nav_menu_item[185]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:40:05\"\n }\n}','','','trash','closed','closed','','91670cc2-c0c3-4961-82e5-4bba8b5b430c','','','2018-02-16 10:40:06','2018-02-16 10:40:06','',0,'http://localhost:8081/?p=208',0,'customize_changeset','',0),(209,1,'2018-02-16 10:42:55','2018-02-16 10:42:55','\r\nThe submission sites (the biobank’s clients) order kits from the biobank based on a particular project to be carried out on a specific case study.\r\n\r\nBlood samples, for example are to be collected to carry out DNA extraction and subsequent analysis.','Kit Assembly','','inherit','closed','closed','','148-revision-v1','','','2018-02-16 10:42:55','2018-02-16 10:42:55','',148,'http://localhost:8081/?p=209',0,'revision','',0),(210,1,'2018-02-16 10:43:46','0000-00-00 00:00:00','','Project Registration','','auto-draft','closed','closed','','','','','2018-02-16 10:43:46','0000-00-00 00:00:00','',0,'http://localhost:8081/?page_id=210',0,'page','',0),(211,1,'2018-02-16 10:45:17','2018-02-16 10:45:17','The client and Biobank register the specifics of a project including: contact person, scope of the genetics study and design.','Project Registration','','publish','closed','closed','','project-registration','','','2018-02-16 10:46:42','2018-02-16 10:46:42','',0,'http://localhost:8081/?page_id=211',0,'page','',0),(212,1,'2018-02-16 10:45:17','2018-02-16 10:45:17','{\n \"nav_menu_item[167]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 148,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=148\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 3,\n \"status\": \"publish\",\n \"original_title\": \"Kit Assembly\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[168]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 149,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=149\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 4,\n \"status\": \"publish\",\n \"original_title\": \"Shipping\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[159]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 151,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=151\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 5,\n \"status\": \"publish\",\n \"original_title\": \"Storage\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[170]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 152,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=152\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 6,\n \"status\": \"publish\",\n \"original_title\": \"Biospecimen Registration\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[172]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 154,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=154\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 7,\n \"status\": \"publish\",\n \"original_title\": \"Reporting & Invoicing\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[171]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 153,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=153\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 8,\n \"status\": \"publish\",\n \"original_title\": \"Analysis Request\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[71]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 51,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=51\",\n \"title\": \"Community\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 9,\n \"status\": \"publish\",\n \"original_title\": \"Documentation\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[200]\": {\n \"value\": {\n \"menu_item_parent\": 71,\n \"object_id\": 175,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=175\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 10,\n \"status\": \"publish\",\n \"original_title\": \"News\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[199]\": {\n \"value\": {\n \"menu_item_parent\": 71,\n \"object_id\": 174,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=174\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 11,\n \"status\": \"publish\",\n \"original_title\": \"Events\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[201]\": {\n \"value\": {\n \"menu_item_parent\": 71,\n \"object_id\": 176,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=176\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 12,\n \"status\": \"publish\",\n \"original_title\": \"Publications\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[202]\": {\n \"value\": {\n \"menu_item_parent\": 71,\n \"object_id\": 178,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=178\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 13,\n \"status\": \"publish\",\n \"original_title\": \"BiBBoX\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[203]\": {\n \"value\": {\n \"menu_item_parent\": 71,\n \"object_id\": 179,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=179\",\n \"title\": \"B3Africa\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 14,\n \"status\": \"publish\",\n \"original_title\": \"BAfrica\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[70]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 52,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=52\",\n \"title\": \"Documentation\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 15,\n \"status\": \"publish\",\n \"original_title\": \"Developers\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[193]\": {\n \"value\": {\n \"menu_item_parent\": 70,\n \"object_id\": 180,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=180\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 16,\n \"status\": \"publish\",\n \"original_title\": \"Installation Guide\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[197]\": {\n \"value\": {\n \"menu_item_parent\": 70,\n \"object_id\": 182,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=182\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 17,\n \"status\": \"publish\",\n \"original_title\": \"Setup Guide\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[205]\": {\n \"value\": {\n \"menu_item_parent\": 70,\n \"object_id\": 181,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=181\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 18,\n \"status\": \"publish\",\n \"original_title\": \"User Guide\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[74]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 67,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=67\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 19,\n \"status\": \"publish\",\n \"original_title\": \"Team\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[73]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 49,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=49\",\n \"title\": \"About\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 20,\n \"status\": \"publish\",\n \"original_title\": \"Modules\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menus_created_posts\": {\n \"value\": [\n 211\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n },\n \"nav_menu_item[-5085447311269658000]\": {\n \"value\": {\n \"object_id\": 211,\n \"object\": \"page\",\n \"menu_item_parent\": 72,\n \"position\": 2,\n \"type\": \"post_type\",\n \"title\": \"Project Registration\",\n \"url\": \"http://localhost:8081/?page_id=211\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Project Registration\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:45:17\"\n }\n}','','','trash','closed','closed','','9caa25c1-835e-4efe-ab59-41ac817c0f4e','','','2018-02-16 10:45:17','2018-02-16 10:45:17','',0,'http://localhost:8081/?p=212',0,'customize_changeset','',0),(214,1,'2018-02-16 10:45:17','2018-02-16 10:45:17','','Project Registration','','inherit','closed','closed','','211-revision-v1','','','2018-02-16 10:45:17','2018-02-16 10:45:17','',211,'http://localhost:8081/?p=214',0,'revision','',0),(215,1,'2018-02-16 10:45:17','2018-02-16 10:45:17',' ','','','publish','closed','closed','','215','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=215',2,'nav_menu_item','',0),(216,1,'2018-02-16 10:46:42','2018-02-16 10:46:42','The client and Biobank register the specifics of a project including: contact person, scope of the genetics study and design.','Project Registration','','inherit','closed','closed','','211-revision-v1','','','2018-02-16 10:46:42','2018-02-16 10:46:42','',211,'http://localhost:8081/?p=216',0,'revision','',0),(217,1,'2018-02-16 10:47:23','2018-02-16 10:47:23','A shipping manifest. This form is included in the assembled kits. The Client completes this form before shipping the biospecimens to the biobank','Shipping','','inherit','closed','closed','','149-revision-v1','','','2018-02-16 10:47:23','2018-02-16 10:47:23','',149,'http://localhost:8081/?p=217',0,'revision','',0),(218,1,'2018-02-16 10:49:17','2018-02-16 10:49:17','The storage management contains tabs: Storage units, Managed storage and Unmanaged storage','Storage','','inherit','closed','closed','','151-revision-v1','','','2018-02-16 10:49:17','2018-02-16 10:49:17','',151,'http://localhost:8081/?p=218',0,'revision','',0),(219,1,'2018-02-16 10:54:18','2018-02-16 10:54:18','Stock-items (products) and kit components can be stored in managed or unmanaged storage','Inventory Management','','publish','closed','closed','','inventory-management','','','2018-02-16 10:56:32','2018-02-16 10:56:32','',0,'http://localhost:8081/?page_id=219',0,'page','',0),(220,1,'2018-02-16 10:54:18','2018-02-16 10:54:18','The different storage positions for samples. Each circle represents an object position. A state of a position could be “Free”, “Reserved” or “Occupied”. A circle with a different colour represents each state: Free=green; Reserved=blue and Occupied=Red. ','Sample Storage Management','','publish','closed','closed','','sample-storage-management','','','2018-02-16 10:57:08','2018-02-16 10:57:08','',0,'http://localhost:8081/?page_id=220',0,'page','',0),(221,1,'2018-02-16 10:54:17','2018-02-16 10:54:17','{\n \"nav_menu_item[170]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 152,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=152\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 8,\n \"status\": \"publish\",\n \"original_title\": \"Biospecimen Registration\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[172]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 154,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=154\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 9,\n \"status\": \"publish\",\n \"original_title\": \"Reporting & Invoicing\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[171]\": {\n \"value\": {\n \"menu_item_parent\": 72,\n \"object_id\": 153,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=153\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 10,\n \"status\": \"publish\",\n \"original_title\": \"Analysis Request\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[71]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 51,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=51\",\n \"title\": \"Community\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 11,\n \"status\": \"publish\",\n \"original_title\": \"Documentation\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[200]\": {\n \"value\": {\n \"menu_item_parent\": 71,\n \"object_id\": 175,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=175\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 12,\n \"status\": \"publish\",\n \"original_title\": \"News\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[199]\": {\n \"value\": {\n \"menu_item_parent\": 71,\n \"object_id\": 174,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=174\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 13,\n \"status\": \"publish\",\n \"original_title\": \"Events\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[201]\": {\n \"value\": {\n \"menu_item_parent\": 71,\n \"object_id\": 176,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=176\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 14,\n \"status\": \"publish\",\n \"original_title\": \"Publications\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[202]\": {\n \"value\": {\n \"menu_item_parent\": 71,\n \"object_id\": 178,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=178\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 15,\n \"status\": \"publish\",\n \"original_title\": \"BiBBoX\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[203]\": {\n \"value\": {\n \"menu_item_parent\": 71,\n \"object_id\": 179,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=179\",\n \"title\": \"B3Africa\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 16,\n \"status\": \"publish\",\n \"original_title\": \"BAfrica\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[70]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 52,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=52\",\n \"title\": \"Documentation\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 17,\n \"status\": \"publish\",\n \"original_title\": \"Developers\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[193]\": {\n \"value\": {\n \"menu_item_parent\": 70,\n \"object_id\": 180,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=180\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 18,\n \"status\": \"publish\",\n \"original_title\": \"Installation Guide\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[197]\": {\n \"value\": {\n \"menu_item_parent\": 70,\n \"object_id\": 182,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=182\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 19,\n \"status\": \"publish\",\n \"original_title\": \"Setup Guide\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[205]\": {\n \"value\": {\n \"menu_item_parent\": 70,\n \"object_id\": 181,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=181\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 20,\n \"status\": \"publish\",\n \"original_title\": \"User Guide\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[74]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 67,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=67\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 21,\n \"status\": \"publish\",\n \"original_title\": \"Team\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[73]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 49,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost:8081/?page_id=49\",\n \"title\": \"About\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 6,\n \"position\": 22,\n \"status\": \"publish\",\n \"original_title\": \"Modules\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menus_created_posts\": {\n \"value\": [\n 219,\n 220\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[-5938718795064328000]\": {\n \"value\": {\n \"object_id\": 219,\n \"object\": \"page\",\n \"menu_item_parent\": 159,\n \"position\": 6,\n \"type\": \"post_type\",\n \"title\": \"Inventory Management\",\n \"url\": \"http://localhost:8081/?page_id=219\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Inventory Management\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n },\n \"nav_menu_item[-4720629028241588000]\": {\n \"value\": {\n \"object_id\": 220,\n \"object\": \"page\",\n \"menu_item_parent\": 159,\n \"position\": 7,\n \"type\": \"post_type\",\n \"title\": \"Sample Storage Management\",\n \"url\": \"http://localhost:8081/?page_id=220\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Sample Storage Management\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 10:54:17\"\n }\n}','','','trash','closed','closed','','1e8ef678-97a6-4230-a670-fe4543a2c253','','','2018-02-16 10:54:17','2018-02-16 10:54:17','',0,'http://localhost:8081/?p=221',0,'customize_changeset','',0),(223,1,'2018-02-16 10:54:18','2018-02-16 10:54:18','','Inventory Management','','inherit','closed','closed','','219-revision-v1','','','2018-02-16 10:54:18','2018-02-16 10:54:18','',219,'http://localhost:8081/?p=223',0,'revision','',0),(225,1,'2018-02-16 10:54:18','2018-02-16 10:54:18','','Sample Storage Management','','inherit','closed','closed','','220-revision-v1','','','2018-02-16 10:54:18','2018-02-16 10:54:18','',220,'http://localhost:8081/?p=225',0,'revision','',0),(226,1,'2018-02-16 10:54:18','2018-02-16 10:54:18',' ','','','publish','closed','closed','','226','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=226',6,'nav_menu_item','',0),(227,1,'2018-02-16 10:54:18','2018-02-16 10:54:18',' ','','','publish','closed','closed','','227','','','2018-02-16 20:56:03','2018-02-16 20:56:03','',0,'http://localhost:8081/?p=227',7,'nav_menu_item','',0),(228,1,'2018-02-16 10:56:32','2018-02-16 10:56:32','Stock-items (products) and kit components can be stored in managed or unmanaged storage','Inventory Management','','inherit','closed','closed','','219-revision-v1','','','2018-02-16 10:56:32','2018-02-16 10:56:32','',219,'http://localhost:8081/?p=228',0,'revision','',0),(229,1,'2018-02-16 10:57:08','2018-02-16 10:57:08','The different storage positions for samples. Each circle represents an object position. A state of a position could be “Free”, “Reserved” or “Occupied”. A circle with a different colour represents each state: Free=green; Reserved=blue and Occupied=Red. ','Sample Storage Management','','inherit','closed','closed','','220-revision-v1','','','2018-02-16 10:57:08','2018-02-16 10:57:08','',220,'http://localhost:8081/?p=229',0,'revision','',0),(230,1,'2018-02-16 10:57:52','2018-02-16 10:57:52','The client returns the kits received from the biobank for collection, but this time with biospecimens inside. A biospecimen is a material taken from human body, such as tissue, blood, plasma, stool and urine that can be used for diagnosis and analysis. The biobank staff member opens the kits and registers the biospecimen information into the system using a form.','Biospecimen Registration','','inherit','closed','closed','','152-revision-v1','','','2018-02-16 10:57:52','2018-02-16 10:57:52','',152,'http://localhost:8081/?p=230',0,'revision','',0),(231,1,'2018-02-16 10:58:45','2018-02-16 10:58:45','The client requests for an analysis to be carried out on specific biospecimens based on the case study on a particular project.','Analysis Request','','inherit','closed','closed','','153-revision-v1','','','2018-02-16 10:58:45','2018-02-16 10:58:45','',153,'http://localhost:8081/?p=231',0,'revision','',0),(232,1,'2018-02-16 10:59:22','2018-02-16 10:59:22','The reports and billing information are sent to clients.','Reporting & Invoicing','','inherit','closed','closed','','154-revision-v1','','','2018-02-16 10:59:22','2018-02-16 10:59:22','',154,'http://localhost:8081/?p=232',0,'revision','',0),(233,1,'2018-02-16 11:02:16','2018-02-16 11:02:16','1. Bendou et al(2017).Biopreservation & Biobanking.15(2):116-12 DOI: 10.1089/bio.2017.0014','Publications','','inherit','closed','closed','','176-revision-v1','','','2018-02-16 11:02:16','2018-02-16 11:02:16','',176,'http://localhost:8081/?p=233',0,'revision','',0),(234,1,'2018-02-16 11:34:55','2018-02-16 11:34:55','<h2>LIMS Development Team</h2>\n<img class=\"wp-image-238 alignright\" src=\"http://localhost:8081/wp-content/uploads/2018/02/B3-countries-globe-800x800-300x300.png\" alt=\"\" width=\"583\" height=\"583\" />\n<h3>University of the Western Cape</h3>\nAlan Christoffels\n\nHocine Bendou\n\nZiphozakhe Mashologu\n\nCampbell Rae\n\nDominique Anderson\n\nPeter Van Heusden\n\nThoba Lose\n<h3>Stellenbosch University</h3>\nAkin Abayomi\n\nCarmen Swanepoel\n\nFaghri February\n\nJody Bell\n\nShafieka Isaacs\n\n<h3>B3 Africa Partners and Test Sites </h3>','Team','','inherit','closed','closed','','67-autosave-v1','','','2018-02-16 11:34:55','2018-02-16 11:34:55','',67,'http://localhost:8081/?p=234',0,'revision','',0),(235,1,'2018-02-16 11:29:07','2018-02-16 11:29:07','LIMS Development Team\r\nUniversity of the Western Cape\r\n\r\nAlan Christoffels\r\n\r\nHocine Bendou\r\n\r\nZiphozakhe Mashologu\r\n\r\nCampbell Rae\r\n\r\nDominique Anderson\r\n\r\nPeter Van Heusden\r\n\r\nThoba Lose\r\n\r\n \r\nStellenbosch University\r\n\r\nAkin Abayomi\r\n\r\nCarmen Swanepoel\r\n\r\nFaghri February\r\n\r\nJody Bell\r\n\r\nShafieka Isaacs\r\n\r\n \r\nB3 Africa Partners and Test Sites','Team','','inherit','closed','closed','','67-revision-v1','','','2018-02-16 11:29:07','2018-02-16 11:29:07','',67,'http://localhost:8081/?p=235',0,'revision','',0),(236,1,'2018-02-16 11:29:34','2018-02-16 11:29:34','<h2> LIMS Development Team </h2>\r\nUniversity of the Western Cape\r\n\r\nAlan Christoffels\r\n\r\nHocine Bendou\r\n\r\nZiphozakhe Mashologu\r\n\r\nCampbell Rae\r\n\r\nDominique Anderson\r\n\r\nPeter Van Heusden\r\n\r\nThoba Lose\r\n\r\n \r\nStellenbosch University\r\n\r\nAkin Abayomi\r\n\r\nCarmen Swanepoel\r\n\r\nFaghri February\r\n\r\nJody Bell\r\n\r\nShafieka Isaacs\r\n\r\n \r\nB3 Africa Partners and Test Sites','Team','','inherit','closed','closed','','67-revision-v1','','','2018-02-16 11:29:34','2018-02-16 11:29:34','',67,'http://localhost:8081/?p=236',0,'revision','',0),(237,1,'2018-02-16 11:30:15','2018-02-16 11:30:15','<h2> LIMS Development Team </h2>\r\n<h3>University of the Western Cape </h3>\r\n\r\nAlan Christoffels\r\n\r\nHocine Bendou\r\n\r\nZiphozakhe Mashologu\r\n\r\nCampbell Rae\r\n\r\nDominique Anderson\r\n\r\nPeter Van Heusden\r\n\r\nThoba Lose\r\n\r\n \r\n<h3> Stellenbosch University </h3>\r\n\r\nAkin Abayomi\r\n\r\nCarmen Swanepoel\r\n\r\nFaghri February\r\n\r\nJody Bell\r\n\r\nShafieka Isaacs\r\n\r\n \r\nB3 Africa Partners and Test Sites','Team','','inherit','closed','closed','','67-revision-v1','','','2018-02-16 11:30:15','2018-02-16 11:30:15','',67,'http://localhost:8081/?p=237',0,'revision','',0),(238,1,'2018-02-16 11:30:42','2018-02-16 11:30:42','','B3-countries-globe-800x800','','inherit','open','closed','','b3-countries-globe-800x800','','','2018-02-16 11:30:42','2018-02-16 11:30:42','',67,'http://localhost:8081/wp-content/uploads/2018/02/B3-countries-globe-800x800.png',0,'attachment','image/png',0),(239,1,'2018-02-16 11:32:15','2018-02-16 11:32:15','<h2>LIMS Development Team</h2>\r\n<h3>University of the Western Cape</h3>\r\nAlan Christoffels\r\n\r\nHocine Bendou\r\n\r\nZiphozakhe Mashologu\r\n\r\nCampbell Rae\r\n\r\n<img class=\" wp-image-238 alignright\" src=\"http://localhost:8081/wp-content/uploads/2018/02/B3-countries-globe-800x800-300x300.png\" alt=\"\" width=\"475\" height=\"475\" />\r\n\r\nDominique Anderson\r\n\r\nPeter Van Heusden\r\n\r\nThoba Lose\r\n<h3>Stellenbosch University</h3>\r\nAkin Abayomi\r\n\r\nCarmen Swanepoel\r\n\r\nFaghri February\r\n\r\nJody Bell\r\n\r\nShafieka Isaacs\r\n\r\nB3 Africa Partners and Test Sites','Team','','inherit','closed','closed','','67-revision-v1','','','2018-02-16 11:32:15','2018-02-16 11:32:15','',67,'http://localhost:8081/?p=239',0,'revision','',0),(240,1,'2018-02-16 11:32:55','2018-02-16 11:32:55','<h2>LIMS Development Team</h2>\r\n<h3>University of the Western Cape</h3>\r\nAlan Christoffels\r\n\r\n<img class=\"wp-image-238 alignright\" src=\"http://localhost:8081/wp-content/uploads/2018/02/B3-countries-globe-800x800-300x300.png\" alt=\"\" width=\"475\" height=\"475\" />Hocine Bendou\r\n\r\nZiphozakhe Mashologu\r\n\r\nCampbell Rae\r\n\r\nDominique Anderson\r\n\r\nPeter Van Heusden\r\n\r\nThoba Lose\r\n<h3>Stellenbosch University</h3>\r\nAkin Abayomi\r\n\r\nCarmen Swanepoel\r\n\r\nFaghri February\r\n\r\nJody Bell\r\n\r\nShafieka Isaacs\r\n\r\nB3 Africa Partners and Test Sites','Team','','inherit','closed','closed','','67-revision-v1','','','2018-02-16 11:32:55','2018-02-16 11:32:55','',67,'http://localhost:8081/?p=240',0,'revision','',0),(241,1,'2018-02-16 11:33:54','2018-02-16 11:33:54','<h2>LIMS Development Team</h2>\r\n<img class=\"wp-image-238 alignright\" src=\"http://localhost:8081/wp-content/uploads/2018/02/B3-countries-globe-800x800-300x300.png\" alt=\"\" width=\"583\" height=\"583\" />\r\n<h3>University of the Western Cape</h3>\r\nAlan Christoffels\r\n\r\nHocine Bendou\r\n\r\nZiphozakhe Mashologu\r\n\r\nCampbell Rae\r\n\r\nDominique Anderson\r\n\r\nPeter Van Heusden\r\n\r\nThoba Lose\r\n<h3>Stellenbosch University</h3>\r\nAkin Abayomi\r\n\r\nCarmen Swanepoel\r\n\r\nFaghri February\r\n\r\nJody Bell\r\n\r\nShafieka Isaacs\r\n\r\nB3 Africa Partners and Test Sites','Team','','inherit','closed','closed','','67-revision-v1','','','2018-02-16 11:33:54','2018-02-16 11:33:54','',67,'http://localhost:8081/?p=241',0,'revision','',0),(242,1,'2018-02-16 11:35:04','2018-02-16 11:35:04','<h2>LIMS Development Team</h2>\r\n<img class=\"wp-image-238 alignright\" src=\"http://localhost:8081/wp-content/uploads/2018/02/B3-countries-globe-800x800-300x300.png\" alt=\"\" width=\"583\" height=\"583\" />\r\n<h3>University of the Western Cape</h3>\r\n<a href=\"http://christoffelslab.sanbi.ac.za/\" rel=\"noopener\" target=\"_blank\">Alan Christoffels</a>\r\n\r\nHocine Bendou\r\n\r\nZiphozakhe Mashologu\r\n\r\nCampbell Rae\r\n\r\nDominique Anderson\r\n\r\nPeter Van Heusden\r\n\r\nThoba Lose\r\n<h3>Stellenbosch University</h3>\r\nAkin Abayomi\r\n\r\nCarmen Swanepoel\r\n\r\nFaghri February\r\n\r\nJody Bell\r\n\r\nShafieka Isaacs\r\n\r\n<h3>B3 Africa Partners and Test Sites </h3>','Team','','inherit','closed','closed','','67-revision-v1','','','2018-02-16 11:35:04','2018-02-16 11:35:04','',67,'http://localhost:8081/?p=242',0,'revision','',0),(243,1,'2018-02-16 20:29:53','2018-02-16 20:29:53','Baobab LIMS Modules include (Project Registration, Kit Assembly, Shipping, Storage, Biospecimen Registration, Analysis Request and Reporting)\r\n','Modules','','inherit','closed','closed','','49-revision-v1','','','2018-02-16 20:29:53','2018-02-16 20:29:53','',49,'http://localhost:8081/?p=243',0,'revision','',0),(244,1,'2018-02-16 20:31:36','2018-02-16 20:31:36','Baobab LIMS Modules include (Project Registration,Kit Assembly,Shipping,Storage,Bio-specimen Registration,Analysis Request & Reporting)\r\n','Modules','','inherit','closed','closed','','49-revision-v1','','','2018-02-16 20:31:36','2018-02-16 20:31:36','',49,'http://localhost:8081/?p=244',0,'revision','',0),(245,1,'2018-02-16 20:32:20','2018-02-16 20:32:20','Baobab LIMS Modules include (Project Registration,Kit Assembly,Shipping,Storage and many more)\r\n','Modules','','inherit','closed','closed','','49-revision-v1','','','2018-02-16 20:32:20','2018-02-16 20:32:20','',49,'http://localhost:8081/?p=245',0,'revision','',0),(246,1,'2018-02-16 20:32:49','2018-02-16 20:32:49','Baobab LIMS Modules include (Project Registration, Kit Assembly, Shipping, Storage and many more)\r\n','Modules','','inherit','closed','closed','','49-revision-v1','','','2018-02-16 20:32:49','2018-02-16 20:32:49','',49,'http://localhost:8081/?p=246',0,'revision','',0),(247,1,'2018-02-16 20:42:44','2018-02-16 20:42:44','[contact_us_page]','Contact Us','','inherit','closed','closed','','53-revision-v1','','','2018-02-16 20:42:44','2018-02-16 20:42:44','',53,'http://localhost:8081/?p=247',0,'revision','',0),(248,1,'2018-02-16 20:51:34','2018-02-16 20:51:34','Baobab LIMS Modules include (Project Registration, Kit Assembly, Shipping, Storage and many more)','Modules','','inherit','closed','closed','','50-revision-v1','','','2018-02-16 20:51:34','2018-02-16 20:51:34','',50,'http://localhost:8081/?p=248',0,'revision','',0),(249,1,'2018-02-16 21:02:38','2018-02-16 21:02:38','{\n \"nav_menu_item[-7997004393518158000]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"custom\",\n \"menu_item_parent\": 0,\n \"position\": 22,\n \"type\": \"custom\",\n \"title\": \"Contact Us\",\n \"url\": \"http://localhost:8081/?page_id=53\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Contact Us\",\n \"nav_menu_term_id\": 6,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 21:02:38\"\n }\n}','','','trash','closed','closed','','205ebc34-f089-4233-9012-bfc82e29b168','','','2018-02-16 21:02:38','2018-02-16 21:02:38','',0,'http://localhost:8081/?p=249',0,'customize_changeset','',0),(250,1,'2018-02-16 21:02:38','2018-02-16 21:02:38','','Contact Us','','publish','closed','closed','','contact-us','','','2018-02-16 21:02:38','2018-02-16 21:02:38','',0,'http://localhost:8081/?p=250',22,'nav_menu_item','',0),(251,0,'2018-02-16 21:03:36','2018-02-16 21:03:36','{{unknown}}','','','publish','closed','closed','','103188122a55583d743303b32566ef43','','','2018-02-16 21:03:36','2018-02-16 21:03:36','',0,'http://localhost:8081/?p=251',0,'oembed_cache','',0),(252,1,'2018-02-16 21:06:35','2018-02-16 21:06:35','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/?page_id=50\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"https://github.com/BaobabLims/baobab.lims\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 21:06:35','2018-02-16 21:06:35','',2,'http://localhost:8081/?p=252',0,'revision','',0),(253,1,'2018-02-16 21:08:18','2018-02-16 21:08:18','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/?page_id=50\" target=\"_blank\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"https://github.com/BaobabLims/baobab.lims\" target=\"_blank\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 21:08:18','2018-02-16 21:08:18','',2,'http://localhost:8081/?p=253',0,'revision','',0),(254,1,'2018-02-16 21:24:55','2018-02-16 21:24:55','<h2>Try it out</h2>\r\n\r\nGet 4 hours of testing it out in the cloud, for free, by clicking the button below:\r\n\r\nUse `<strong>admin:adminsecret</strong>` for `<strong>username:password</strong>`.\r\n<a href=\"http://play-with-docker.com?stack=https://raw.githubusercontent.com/BaobabLims/baobab.lims/master/stack.yml\" rel=\"noopener\" target=\"_blank\">\r\n<img src=\"https://cdn.rawgit.com/play-with-docker/stacks/cff22438/assets/images/button.png\" alt=\"Try in PWD\" />\r\n</a>\r\n','Try Baobab LIMS','','publish','closed','closed','','try-baobab-lims','','','2018-02-16 22:14:31','2018-02-16 22:14:31','',0,'http://localhost:8081/?page_id=254',0,'page','',0),(256,1,'2018-02-16 21:24:55','2018-02-16 21:24:55','Try it out\r\n----------\r\nGet 4 hours of testing it out in the cloud, for free, by clicking the button below:\r\n\r\nUse `admin:adminsecret` for `username:password`.\r\n\r\n[![Try in PWD](https://cdn.rawgit.com/play-with-docker/stacks/cff22438/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/BaobabLims/baobab.lims/master/stack.yml)','Try Baobab LIMS','','inherit','closed','closed','','254-revision-v1','','','2018-02-16 21:24:55','2018-02-16 21:24:55','',254,'http://localhost:8081/?p=256',0,'revision','',0),(258,1,'2018-02-16 21:28:07','2018-02-16 21:28:07','{\n \"nav_menu_item[255]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-02-16 21:28:07\"\n }\n}','','','trash','closed','closed','','908030f1-8d87-42d6-83b9-8637a9f14c75','','','2018-02-16 21:28:07','2018-02-16 21:28:07','',0,'http://localhost:8081/908030f1-8d87-42d6-83b9-8637a9f14c75/',0,'customize_changeset','',0),(259,1,'2018-02-16 21:29:37','2018-02-16 21:29:37','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/try-baobab-lims\" target=\"_blank\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"https://github.com/BaobabLims/baobab.lims\" target=\"_blank\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 21:29:37','2018-02-16 21:29:37','',2,'http://localhost:8081/2-revision-v1/',0,'revision','',0),(260,1,'2018-02-16 21:38:22','2018-02-16 21:38:22','<strong>Baobab LIMS</strong>, an open source LIMS for biobanking was developed by African and European researchers as part of the Horizon2020 funding framework project “B3Africa” (www.b3africa.org).\r\n\r\nThe LIMS represent one module in an integrated biobank suite of tools (<a href=\"http://www.bibbox.org\">www.bibbox.org</a>). Baobab LIMS was developed by customizing the Bika LIMS software to meet the requirement of biobank best practices for human biobanking. Baobab LIMS is based on the Plone web-content management framework. A server-client based system, whereby the end user is able to access the system securely through the internet on a standard web browser, or as a standalone installation.\r\n\r\nBaobab LIMS is a Laboratory Information Management System (LIMS) designed for the collection, processing and storage of human biospecimens. The system was designed a priori using the Standard operating procedures (SOPs) of the NHLS-Stellenbosch University Biobank. Baobab LIMS comprises modules for biospecimen kit assembly, biospecimen shipping, storage management, analysis requests, reporting and invoicing. Current developed SOPs define the biobanking activities of the Biobank and in an effort to extend the usability of the system, collaborations which incorporate SOPs generated by other Biobanking facilities, are ongoing.\r\n\r\nBaobab LIMS is both Free and Open Source, Furthermore, Baobab LIMS can be customized to the specific needs of your laboratory.','Welcome to Baobab LIMS','An open source LIMS for biobanking developed by African and European Researchers\r\n<a href=\"http://localhost:8081/try-baobab-lims/\" target=\"_blank\" class=\"button featured-readmore\">Try Baobab LIMS</a> | <a href=\"https://github.com/BaobabLims/baobab.lims\" target=\"_blank\" class=\"button\">Get the code</a>\r\n','inherit','closed','closed','','2-revision-v1','','','2018-02-16 21:38:22','2018-02-16 21:38:22','',2,'http://localhost:8081/2-revision-v1/',0,'revision','',0),(261,1,'2018-02-16 21:40:53','2018-02-16 21:40:53','<h2>Try it out</h2>\n\nGet 4 hours of testing it out in the cloud, for free, by clicking the button below:\n\nUse `<strong>admin:adminsecret</strong>` for `<strong>username:password</strong>`.\n\n<a href=\"http://play-with-docker.com?stack=https://raw.githubusercontent.com/BaobabLims/baobab.lims/master/stack.yml\" rel=\"noopener\" target=\"_blank\">Try in PWD</a>\n\n[![Try in PWD](https://cdn.rawgit.com/play-with-docker/stacks/cff22438/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/BaobabLims/baobab.lims/master/stack.yml)','Try Baobab LIMS','','inherit','closed','closed','','254-autosave-v1','','','2018-02-16 21:40:53','2018-02-16 21:40:53','',254,'http://localhost:8081/254-autosave-v1/',0,'revision','',0),(262,1,'2018-02-16 21:42:14','2018-02-16 21:42:14','<h2>Try it out</h2>\r\n\r\nGet 4 hours of testing it out in the cloud, for free, by clicking the button below:\r\n\r\nUse `<strong>admin:adminsecret</strong>` for `<strong>username:password</strong>`.\r\n\r\n<a href=\"http://play-with-docker.com?stack=https://raw.githubusercontent.com/BaobabLims/baobab.lims/master/stack.yml\" rel=\"noopener\" target=\"_blank\">Try in PWD</a>\r\n\r\n[![Try in PWD](https://cdn.rawgit.com/play-with-docker/stacks/cff22438/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/BaobabLims/baobab.lims/master/stack.yml)','Try Baobab LIMS','','inherit','closed','closed','','254-revision-v1','','','2018-02-16 21:42:14','2018-02-16 21:42:14','',254,'http://localhost:8081/254-revision-v1/',0,'revision','',0),(263,1,'2018-02-16 21:43:58','2018-02-16 21:43:58','<h2>Try it out</h2>\r\n\r\nGet 4 hours of testing it out in the cloud, for free, by clicking the button below:\r\n\r\nUse `<strong>admin:adminsecret</strong>` for `<strong>username:password</strong>`.\r\n\r\n<a href=\"http://play-with-docker.com?stack=https://raw.githubusercontent.com/BaobabLims/baobab.lims/master/stack.yml\" rel=\"noopener\" target=\"_blank\">\r\n<img src=\"https://cdn.rawgit.com/play-with-docker/stacks/cff22438/assets/images/button.png\" alt=\"Try in PWD\" />\r\n</a>\r\n\r\n[![Try in PWD](https://cdn.rawgit.com/play-with-docker/stacks/cff22438/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/BaobabLims/baobab.lims/master/stack.yml)','Try Baobab LIMS','','inherit','closed','closed','','254-revision-v1','','','2018-02-16 21:43:58','2018-02-16 21:43:58','',254,'http://localhost:8081/254-revision-v1/',0,'revision','',0),(264,1,'2018-02-16 21:44:43','2018-02-16 21:44:43','<h2>Try it out</h2>\r\n\r\nGet 4 hours of testing it out in the cloud, for free, by clicking the button below:\r\n\r\nUse `<strong>admin:adminsecret</strong>` for `<strong>username:password</strong>`.\r\n<a href=\"http://play-with-docker.com?stack=https://raw.githubusercontent.com/BaobabLims/baobab.lims/master/stack.yml\" rel=\"noopener\" target=\"_blank\">\r\n<img src=\"https://cdn.rawgit.com/play-with-docker/stacks/cff22438/assets/images/button.png\" alt=\"Try in PWD\" />\r\n</a>\r\n','Try Baobab LIMS','','inherit','closed','closed','','254-revision-v1','','','2018-02-16 21:44:43','2018-02-16 21:44:43','',254,'http://localhost:8081/254-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(12,1,0),(14,1,0),(17,1,0),(20,1,0),(24,1,0),(26,1,0),(33,1,0),(34,1,0),(36,1,0),(40,1,0),(42,1,0),(44,1,0),(70,6,0),(71,6,0),(72,6,0),(74,6,0),(159,6,0),(167,6,0),(168,6,0),(170,6,0),(171,6,0),(172,6,0),(193,6,0),(197,6,0),(199,6,0),(200,6,0),(201,6,0),(202,6,0),(203,6,0),(205,6,0),(215,6,0),(226,6,0),(227,6,0),(250,6,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_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=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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,13),(2,2,'post_format','Voluptatum neque suscipit aut unde eos et autem quia ut odio est qui voluptatem magni libero autem corrupti quia ab architecto eum natus ea modi ut eos laudantium veritatis repellendus hic voluptatem cum quo',0,0),(3,3,'post_tag','Dignissimos beatae amet quia commodi molestias rerum',0,0),(4,4,'post_format','Laborum est autem nihil consequatur eum sit omnis sit maiores nemo ullam blanditiis fuga inventore commodi qui quis eos ipsa illo et quos omnis dolore et qui et dicta porro eius quaerat pariatur ut error accusantium quae quod saepe vel corporis voluptatum',0,0),(6,6,'nav_menu','',0,22);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,2,'LIMS','Dolor sit ea soluta'),(2,2,'Baobab','Rerum in qui et facere error dolorem non velit. Suscipit assumenda mollitia rerum vel. Voluptatem ut voluptatum incidunt rerum veniam quisquam officia. Eos dolore aut adipisci dolorum a.\nDolorem et harum in accusantium hic. Id omnis est delectus mollitia veniam nemo. Iusto aut sit error aliquid.\nSimilique est consequuntur possimus est. Repudiandae asperiores qui repellendus consequatur alias quia. Quia qui vel magni aut dicta.\nAut ut molestias exercitationem sequi eos id. Nobis at officiis sed alias rerum ut voluptatem. A voluptate aliquid modi dolores eligendi quia voluptatem. Possimus quo aliquid voluptatem et quia error officiis.\nSequi et minima et ullam. Aut dolores aspernatur ullam quos. Eius quia impedit non.\nDucimus minus suscipit consequatur quod molestias. Et quod ipsa cupiditate sunt. Perspiciatis cum corporis non aut iusto velit. Minima facilis rem voluptatem.\nVel vitae facere dolores quo nemo est totam. Voluptatum officiis alias a dolores architecto molestiae nobis. Non sequi est dolor numquam commodi quibusdam voluptatem. Doloribus animi sint eum sit voluptatem dicta.\nExercitationem quia consectetur sunt nobis eius. Sunt quidem voluptatem est. In est nam aut.\nDebitis non eveniet laborum rerum sit consequatur et. Mollitia sequi et omnis ut est. Voluptatibus sequi nulla inventore suscipit ipsa.\nSit eveniet ratione cum repellat. Quisquam inventore qui quis vel reiciendis. Nam nesciunt aut animi veniam eligendi ea ut sunt. Et veniam aut tempora maiores veritatis. Cum aut consequatur accusamus dolores.\nTotam unde quaerat iusto voluptas. Qui alias modi molestiae. Nulla ut dolorum vitae vitae non iusto sequi. Debitis et accusantium deleniti voluptatibus. Molestiae dolorum aliquam iusto magnam odio necessitatibus provident.'),(3,3,'LIMS','Veritatis doloribus sed'),(4,3,'Baobab','Perferendis nulla officia ea debitis. Cum ut doloremque voluptates. Temporibus provident sed odit deleniti officiis animi.\nDolor aut culpa corporis dolores fugiat. Qui rerum qui corrupti aut. Eos error aliquam sint sint fugit voluptatibus.\nLabore officia minus sed dolor quod optio quos. Nisi iure totam voluptates. Aut architecto eum animi velit tempora fugit est qui.\nRatione molestias nemo recusandae et quia alias. Aspernatur aut recusandae veniam id aut vel sequi. Ullam ratione voluptatem nihil.\nEa ut dolore corrupti ad. Nihil quis hic ea eos aperiam et libero perspiciatis. Molestiae porro ducimus doloribus non sed sit maiores animi. Quo deleniti sit inventore laboriosam enim.\nNecessitatibus suscipit qui voluptatibus illo quae illum consequatur vero. Neque dolorem debitis est provident qui. Et perspiciatis alias adipisci rerum maiores iure. Ad dolorem quia ut iure minima.\nNulla nesciunt qui vel perferendis assumenda. Dolor dicta exercitationem quo.'),(5,4,'LIMS','Quis voluptatem sit ex libero sint id'),(6,4,'Baobab','Architecto commodi est eos. Temporibus repellat est ratione est. Non sapiente perspiciatis molestias qui autem quod.\nEx beatae voluptatem aspernatur beatae blanditiis. Itaque repellat debitis fuga laboriosam quibusdam. Et et saepe velit libero et sunt.\nVoluptatum ut vero et laboriosam. Suscipit sit cum aperiam ducimus. Culpa autem minus tempore laudantium quasi.\nExcepturi totam et alias. Quo ullam voluptatem consequuntur molestias aliquid eos tenetur. Et vel non aut eum rem. Est saepe molestias impedit aut autem magni illo.\nCommodi beatae nulla repellendus atque. Laudantium maxime eaque eligendi omnis. Quas vel ipsum sit. Voluptatem recusandae non perferendis voluptatem voluptate omnis maxime voluptatibus.\nEligendi sequi rem aliquid modi dolor excepturi doloremque. Aspernatur harum accusantium dicta id nobis. Id est id quo est omnis.\nEa ratione velit veritatis maiores perspiciatis. Excepturi veniam qui cumque quis est sunt. Culpa laborum non nobis ipsa autem omnis. Dolor omnis aliquid est cupiditate maiores molestias.\nDolorum esse tempore voluptates dolorem. Nihil adipisci sed dicta. Facere similique quos qui placeat minima atque voluptatem. Quia perferendis facilis dolorem inventore eaque autem perferendis.\nFacere nulla deleniti veniam officia. Nemo architecto dolore esse corrupti minima. Atque aut veritatis voluptas et similique assumenda labore. Cumque impedit consequuntur dolorem ipsam. Est cumque reprehenderit et labore velit.\nQuae id dolorem itaque in corrupti consequatur. Adipisci delectus ducimus rerum occaecati rem. Qui provident perferendis rem in quas sit necessitatibus.');
/*!40000 ALTER TABLE `wp_termmeta` 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_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_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=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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),(2,'Quidem saepe tempora facilis ut','quidem-saepe-tempora-facilis-ut',0),(3,'A dolorum quas repellendus vitae vitae voluptatum vel enim','a-dolorum-quas-repellendus-vitae-vitae-voluptatum-vel-enim',0),(4,'Et rerum est occaecati ea itaque quia dolor cum','et-rerum-est-occaecati-ea-itaque-quia-dolor-cum',0),(6,'Footer and Top Menu','footer-and-top-menu',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_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=191 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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','baobab'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:2:{s:64:\"ed63b876f1d28f9ff79083a790cbc9c094eff9a503472521ed004feed6232668\";a:4:{s:10:\"expiration\";i:1518931887;s:2:\"ip\";s:10:\"172.18.0.1\";s:2:\"ua\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0\";s:5:\"login\";i:1518759087;}s:64:\"d75915a1372bb76d4544b1673bd325bd22eb6e07693e8d254e751237db00c7f9\";a:4:{s:10:\"expiration\";i:1518951149;s:2:\"ip\";s:10:\"172.18.0.1\";s:2:\"ua\";s:105:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36\";s:5:\"login\";i:1518778349;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"172.18.0.0\";}'),(19,1,'wp_user-settings','libraryContent=browse&editor=html&post_dfw=off'),(20,1,'wp_user-settings-time','1518780900'),(21,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(22,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),(23,2,'nickname','nigel.krajcik'),(24,2,'first_name','Amya'),(25,2,'last_name','Shields'),(26,2,'description','Ut qui consequatur aut et. Consequuntur voluptates ut est est dignissimos tempora. Tempore deleniti molestiae neque rerum numquam. Et in et qui officia quod aut voluptas.\r\n\r\nAutem dolorem ut dolore ea exercitationem. Cupiditate et sed ut. Facilis quis laudantium incidunt fugit ut deserunt deleniti et.\r\n\r\nOdit voluptate deserunt est et. Quis vel est voluptatum quis cumque ipsum nihil. Dolore alias nostrum qui hic. Et doloribus minima aperiam cum totam harum.\r\n\r\nQui aperiam enim assumenda perferendis et accusantium. Eaque eius et sit officia voluptate tenetur.\r\n\r\nEst ullam temporibus reprehenderit veniam aliquid sequi minima et. Aut voluptate at impedit quis ad. Sed reiciendis aliquid officia et molestiae ipsa.\r\n\r\nRepellendus explicabo repellat quia aliquid velit sit et. Est voluptas consectetur et sunt odit. Id qui ex nobis dolor laboriosam omnis.\r\n\r\nRepellat omnis consequatur dolorem qui. Sint labore aut et sequi. Rerum fuga nesciunt ea odio. Autem labore voluptatum soluta fugit labore quam quia. Qui consequatur dolorum quibusdam doloribus.\r\n\r\nUt deserunt ad vel quis qui. In nam amet quaerat sit. Occaecati nostrum et dolore veniam aliquam. Facere rerum sit ipsam voluptatem architecto.'),(27,2,'rich_editing','true'),(28,2,'syntax_highlighting','true'),(29,2,'comment_shortcuts','false'),(30,2,'admin_color','fresh'),(31,2,'use_ssl','0'),(32,2,'show_admin_bar_front','true'),(33,2,'locale',''),(34,2,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(35,2,'wp_user_level','7'),(36,2,'dismissed_wp_pointers',''),(37,2,'fakerpress_flag','1'),(38,3,'nickname','akoch'),(39,3,'first_name','Pablo'),(40,3,'last_name','Flatley'),(41,3,'description','At impedit delectus veniam in ex vel fuga. Dolore repudiandae nihil fuga ut vel dolores sint. Accusamus qui dolor omnis incidunt consequatur eos. Laboriosam fugit sequi beatae dolorem nobis.\r\n\r\nAb voluptas harum repellat necessitatibus quo vero perspiciatis. Magni ipsum non et at vero ratione aut. Officiis praesentium ex architecto voluptas. Tempora perspiciatis enim recusandae corrupti aut consectetur consectetur. Consequatur maiores error eos sit id.\r\n\r\nEos officia ut occaecati voluptas ea nemo. Excepturi non corrupti veritatis non eaque. Rerum accusamus non id sed illum.'),(42,3,'rich_editing','true'),(43,3,'syntax_highlighting','true'),(44,3,'comment_shortcuts','false'),(45,3,'admin_color','fresh'),(46,3,'use_ssl','0'),(47,3,'show_admin_bar_front','true'),(48,3,'locale',''),(49,3,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(50,3,'wp_user_level','0'),(51,3,'dismissed_wp_pointers',''),(52,3,'fakerpress_flag','1'),(53,4,'nickname','nheidenreich'),(54,4,'first_name','Maryse'),(55,4,'last_name','Vandervort'),(56,4,'description','Consequuntur voluptate ex repellat doloremque voluptatum iure qui. Magnam repellat odit excepturi culpa modi quaerat. Sit est sit voluptas atque magni nam.\r\n\r\nVelit labore magni quas excepturi nesciunt. Ea rem officia non eveniet aliquam ut provident temporibus. Eaque eum eum suscipit fuga voluptatem omnis aut vel.\r\n\r\nVoluptatem vero itaque a. Reprehenderit dignissimos magni est ut officiis.\r\n\r\nTempora libero fugiat velit maiores odit voluptates veritatis. Voluptas aut dolorem repellat minima qui. Commodi quasi maiores vel quia possimus.\r\n\r\nNisi aliquid enim modi ut. Architecto similique magni vero ea quia nesciunt qui fugiat. Pariatur dicta illum tempora quaerat itaque corrupti.\r\n\r\nDistinctio in dolor aut perferendis ut. Quaerat possimus soluta consectetur sequi. Dolor nihil vel et id.'),(57,4,'rich_editing','true'),(58,4,'syntax_highlighting','true'),(59,4,'comment_shortcuts','false'),(60,4,'admin_color','fresh'),(61,4,'use_ssl','0'),(62,4,'show_admin_bar_front','true'),(63,4,'locale',''),(64,4,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(65,4,'wp_user_level','7'),(66,4,'dismissed_wp_pointers',''),(67,4,'fakerpress_flag','1'),(68,5,'nickname','manuel.kutch'),(69,5,'first_name','Kiera'),(70,5,'last_name','Goyette'),(71,5,'description','Iure ut earum ut magni. Exercitationem excepturi inventore eveniet pariatur atque. Omnis eum non tenetur est enim quis quibusdam. Maxime a dicta delectus totam.\r\n\r\nLaboriosam libero expedita excepturi. In eligendi exercitationem id. Qui corrupti et soluta beatae modi sed delectus.\r\n\r\nUt quia est illum pariatur. Voluptas fuga quia nemo consequatur. Porro eius distinctio molestias atque.\r\n\r\nId velit quia maxime et qui sequi. Eius magnam enim autem eligendi quia dolorem quod et.\r\n\r\nMolestiae quae illum et rerum provident repellendus. Ut ut accusantium aperiam deleniti doloribus.\r\n\r\nUt asperiores similique delectus sint. Mollitia laudantium deserunt aut quo cupiditate consequatur ut. Consequatur dolorem praesentium nobis voluptas quasi perferendis aliquid. Nulla error quo est.'),(72,5,'rich_editing','true'),(73,5,'syntax_highlighting','true'),(74,5,'comment_shortcuts','false'),(75,5,'admin_color','fresh'),(76,5,'use_ssl','0'),(77,5,'show_admin_bar_front','true'),(78,5,'locale',''),(79,5,'wp_capabilities','a:1:{s:11:\"contributor\";b:1;}'),(80,5,'wp_user_level','1'),(81,5,'dismissed_wp_pointers',''),(82,5,'fakerpress_flag','1'),(83,6,'nickname','brook.pagac'),(84,6,'first_name','Else'),(85,6,'last_name','Doyle'),(86,6,'description','Maiores molestiae velit impedit et iure enim quae. Esse nihil in dolor. Aliquam autem blanditiis expedita nihil.\r\n\r\nExcepturi vel voluptatem consectetur velit ex ut debitis nesciunt. Temporibus consequuntur ut recusandae unde. Cupiditate dignissimos quibusdam voluptas ab debitis voluptas eius.'),(87,6,'rich_editing','true'),(88,6,'syntax_highlighting','true'),(89,6,'comment_shortcuts','false'),(90,6,'admin_color','fresh'),(91,6,'use_ssl','0'),(92,6,'show_admin_bar_front','true'),(93,6,'locale',''),(94,6,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(95,6,'wp_user_level','0'),(96,6,'dismissed_wp_pointers',''),(97,6,'fakerpress_flag','1'),(98,7,'nickname','marks.lavinia'),(99,7,'first_name','Rylee'),(100,7,'last_name','Doyle'),(101,7,'description','Quaerat minima exercitationem ex aut. Qui veritatis eum explicabo. Modi omnis et quae cupiditate dicta. Quos officiis natus qui deserunt quas est.\r\n\r\nRecusandae voluptatum vel eaque dolorem a et. Quo quo reprehenderit reprehenderit. Quam est ad eveniet necessitatibus nihil non repellat. Velit cupiditate quidem deleniti fugit omnis.\r\n\r\nQuo facere sequi aperiam in omnis. Beatae hic ex eum. Est adipisci deserunt assumenda.\r\n\r\nLabore alias iure ipsum incidunt adipisci. Corrupti consequatur voluptas voluptas sunt. Harum ut dolorem unde sequi eos esse.\r\n\r\nSunt illo consequatur aut velit et. Dolore iste ducimus quam qui est ipsum omnis. Consequatur aperiam quo sit modi consequuntur et et culpa. Aspernatur atque aut voluptatem atque recusandae vero nesciunt.\r\n\r\nSequi enim maxime unde possimus sapiente officia. Provident aliquam illo perspiciatis. Beatae quia minima occaecati. Sint nisi corrupti nisi soluta.\r\n\r\nRepudiandae incidunt dolorem consequatur repudiandae vero placeat minus. Sed expedita et nihil nobis. Et aspernatur asperiores laboriosam vitae et excepturi dolores eum.\r\n\r\nIllo hic veniam repellendus quo ex quis consequatur. Vero a repudiandae dolorum qui nesciunt iste. Ad laboriosam harum non voluptatibus commodi. Enim incidunt nostrum itaque voluptatum.'),(102,7,'rich_editing','true'),(103,7,'syntax_highlighting','true'),(104,7,'comment_shortcuts','false'),(105,7,'admin_color','fresh'),(106,7,'use_ssl','0'),(107,7,'show_admin_bar_front','true'),(108,7,'locale',''),(109,7,'wp_capabilities','a:1:{s:6:\"author\";b:1;}'),(110,7,'wp_user_level','2'),(111,7,'dismissed_wp_pointers',''),(112,7,'fakerpress_flag','1'),(113,8,'nickname','libbie36'),(114,8,'first_name','Shanny'),(115,8,'last_name','Ward'),(116,8,'description','Sit rerum ut tenetur perspiciatis nisi sint voluptatibus ipsa. Iure hic optio assumenda quae enim sapiente. Numquam rerum totam officiis suscipit unde provident ut vel.'),(117,8,'rich_editing','true'),(118,8,'syntax_highlighting','true'),(119,8,'comment_shortcuts','false'),(120,8,'admin_color','fresh'),(121,8,'use_ssl','0'),(122,8,'show_admin_bar_front','true'),(123,8,'locale',''),(124,8,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(125,8,'wp_user_level','7'),(126,8,'dismissed_wp_pointers',''),(127,8,'fakerpress_flag','1'),(128,9,'nickname','fcummerata'),(129,9,'first_name','Zechariah'),(130,9,'last_name','Mertz'),(131,9,'description','Corrupti et atque non quos odit animi. Qui ex magni possimus labore. Similique minus itaque qui qui amet. Est vitae deleniti quidem mollitia architecto.'),(132,9,'rich_editing','true'),(133,9,'syntax_highlighting','true'),(134,9,'comment_shortcuts','false'),(135,9,'admin_color','fresh'),(136,9,'use_ssl','0'),(137,9,'show_admin_bar_front','true'),(138,9,'locale',''),(139,9,'wp_capabilities','a:1:{s:11:\"contributor\";b:1;}'),(140,9,'wp_user_level','1'),(141,9,'dismissed_wp_pointers',''),(142,9,'fakerpress_flag','1'),(143,10,'nickname','blanda.anastasia'),(144,10,'first_name','Maybell'),(145,10,'last_name','Walsh'),(146,10,'description','Molestiae non blanditiis in adipisci consequatur. Amet sit consequatur sequi ut alias quis quidem. Possimus reiciendis accusamus aut minima.'),(147,10,'rich_editing','true'),(148,10,'syntax_highlighting','true'),(149,10,'comment_shortcuts','false'),(150,10,'admin_color','fresh'),(151,10,'use_ssl','0'),(152,10,'show_admin_bar_front','true'),(153,10,'locale',''),(154,10,'wp_capabilities','a:1:{s:11:\"contributor\";b:1;}'),(155,10,'wp_user_level','1'),(156,10,'dismissed_wp_pointers',''),(157,10,'fakerpress_flag','1'),(158,11,'nickname','conn.shemar'),(159,11,'first_name','Clinton'),(160,11,'last_name','Lueilwitz'),(161,11,'description','Et accusantium enim ad quo. Quos rerum voluptatibus cumque tempore ipsam illo qui ratione. Expedita et harum voluptates iure est est. Reiciendis molestiae aut ducimus pariatur doloribus qui sequi.\r\n\r\nRatione aspernatur fuga quos accusamus non reiciendis omnis. Modi aut adipisci molestiae ipsam sint. Velit voluptatem neque aperiam laudantium maxime alias.'),(162,11,'rich_editing','true'),(163,11,'syntax_highlighting','true'),(164,11,'comment_shortcuts','false'),(165,11,'admin_color','fresh'),(166,11,'use_ssl','0'),(167,11,'show_admin_bar_front','true'),(168,11,'locale',''),(169,11,'wp_capabilities','a:1:{s:11:\"contributor\";b:1;}'),(170,11,'wp_user_level','1'),(171,11,'dismissed_wp_pointers',''),(172,11,'fakerpress_flag','1'),(173,12,'nickname','chanelle.braun'),(174,12,'first_name','Vicenta'),(175,12,'last_name','Quitzon'),(176,12,'description','Ipsa consequatur dicta placeat ea qui exercitationem adipisci. Eaque cum consequuntur cupiditate quibusdam numquam. Facere laboriosam est est dolorum minima. Necessitatibus et mollitia culpa debitis dolor eos.\r\n\r\nVelit fugiat libero similique velit reprehenderit. Quos repudiandae nostrum quia et ipsa sint. In sint sed quod quod excepturi. Illo omnis voluptatibus aut maxime rerum.\r\n\r\nAlias sit et sed nemo fugit. A veniam nesciunt quas repudiandae. Totam est aut voluptates amet sit voluptatem.'),(177,12,'rich_editing','true'),(178,12,'syntax_highlighting','true'),(179,12,'comment_shortcuts','false'),(180,12,'admin_color','fresh'),(181,12,'use_ssl','0'),(182,12,'show_admin_bar_front','true'),(183,12,'locale',''),(184,12,'wp_capabilities','a:1:{s:6:\"author\";b:1;}'),(185,12,'wp_user_level','2'),(186,12,'dismissed_wp_pointers',''),(187,12,'fakerpress_flag','1'),(188,1,'closedpostboxes_page','a:0:{}'),(189,1,'metaboxhidden_page','a:0:{}'),(190,1,'nav_menu_recently_edited','6');
/*!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_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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,'baobab','$P$BOxpghj.nrsPb.A1XUQpP/gkCe8eRw/','baobab','patmos.cafe@gmail.com','','2018-01-16 09:48:25','',0,'baobab'),(2,'bennett95','$P$BLknZUUYStRFLm/Gw/S/jRcytwFzuD.','carolyne-gleason','percival.anderson@example.net','http://spinka.info/rerum-et-officia-quod-ut.html','2018-02-10 04:55:43','',0,'Talia'),(3,'greta.bernier','$P$BFoSg72Bj7dzbnhtM/vWPbUjMW7CCo0','ogusikowski','chase.kunde@example.org','http://keeling.com/','2018-02-10 13:36:38','',0,'Jazlyn'),(4,'shanahan.thora','$P$BTf/ZBZhEdaZw3OaOfnN45I3vvDpLO0','jgottlieb','muller.nelson@example.net','http://www.senger.com/inventore-ut-quos-occaecati-voluptates-excepturi-nostrum-et','2018-02-10 10:04:03','',0,'Audra'),(5,'ritchie.rahsaan','$P$B./N0kIvh0Cy3hOwoQRJOCZaVO4ajX/','novella23','penelope46@example.org','https://swaniawski.biz/ut-id-non-molestias-iusto-magni-quia.html','2018-02-10 02:28:25','',0,'Rickie'),(6,'jaren.yost','$P$BfuCuW.y6g/t6bXAUQH866hXirMvk20','rebecca47','hills.harley@example.com','https://roberts.net/eaque-placeat-in-optio-officiis-qui-asperiores-ut.html','2018-02-10 00:05:37','',0,'Lavina'),(7,'prau','$P$B5gXKWeKaJxK13weLLS1X.KF.1x7nv1','moriah04','junius.hahn@example.com','http://kuhic.com/','2018-02-10 07:13:36','',0,'Nona'),(8,'amelie.quigley','$P$BhnML8QS9rslJ/kB2xvebw2oeYa/O51','maia89','kaitlyn.sauer@example.org','http://johns.biz/quia-delectus-incidunt-est-quas-laudantium-quas-tempora','2018-02-10 13:55:22','',0,'Hallie'),(9,'justyn.howe','$P$BJ9mm5tnZorvr.G5hgHuWVbpBvExfB.','nschneider','ed39@example.net','http://west.com/','2018-02-10 01:23:28','',0,'Sid'),(10,'loraine41','$P$BZiTupghiSa7TZZ8YtmtdFWuwGP1PL.','sonny77','werner26@example.com','https://www.hyatt.info/et-deleniti-numquam-quia-est-nihil-et-odit','2018-02-10 05:16:42','',0,'Abelardo'),(11,'tyrel49','$P$BpsBN8RtkIykhX4JIcRkzpIOTKw8ey0','ygleichner','kulas.chasity@example.net','http://www.feest.net/nihil-labore-quisquam-consequuntur-vel-libero-repudiandae-voluptatem','2018-02-10 11:32:28','',0,'Geo'),(12,'bharber','$P$B5lnjCAVFjTTXbbnKulDX3FtPvw8qI0','xreynolds','joana99@example.net','http://www.kuhn.com/','2018-02-10 19:56:14','',0,'Aidan');
/*!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 2018-02-19 20:57:20