-
Notifications
You must be signed in to change notification settings - Fork 8
/
wordpress-niki.sql
744 lines (716 loc) · 596 KB
/
wordpress-niki.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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
-- --------------------------------------------------------
-- Host: localhost
-- Server version: 5.7.19 - MySQL Community Server (GPL)
-- Server OS: Win64
-- HeidiSQL Version: 9.4.0.5125
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!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' */;
-- Dumping database structure for wordpress-niki
DROP DATABASE IF EXISTS `wordpress-niki`;
CREATE DATABASE IF NOT EXISTS `wordpress-niki` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `wordpress-niki`;
-- Dumping structure for table wordpress-niki.wp_commentmeta
DROP TABLE IF EXISTS `wp_commentmeta`;
CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_commentmeta: ~0 rows (approximately)
DELETE FROM `wp_commentmeta`;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
-- Dumping structure for table wordpress-niki.wp_comments
DROP TABLE IF EXISTS `wp_comments`;
CREATE TABLE IF NOT EXISTS `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_comments: ~1 rows (approximately)
DELETE FROM `wp_comments`;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', '[email protected]', 'https://wordpress.org/', '', '2017-09-16 12:52:13', '2017-09-16 12:52:13', '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);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
-- Dumping structure for table wordpress-niki.wp_links
DROP TABLE IF EXISTS `wp_links`;
CREATE TABLE IF NOT EXISTS `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_links: ~0 rows (approximately)
DELETE FROM `wp_links`;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
-- Dumping structure for table wordpress-niki.wp_options
DROP TABLE IF EXISTS `wp_options`;
CREATE TABLE IF NOT EXISTS `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=351 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_options: ~159 rows (approximately)
DELETE FROM `wp_options`;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://wordpress-niki.dev', 'yes'),
(2, 'home', 'http://wordpress-niki.dev', 'yes'),
(3, 'blogname', 'SAE Alumni Blog', 'yes'),
(4, 'blogdescription', 'Just another WordPress site', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '[email protected]', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '[email protected]', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:91:{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: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: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:39:"index.php?&page_id=69&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:58:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:68:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:88:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:83:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:83:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:64:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:53:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$";s:91:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$";s:85:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1";s:77:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]";s:72:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]";s:65:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$";s:98:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]";s:72:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$";s:98:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]";s:61:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]";s:47:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:57:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:77:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:53:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]";s:51:"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]";s:38:"([0-9]{4})/comment-page-([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&cpage=$matches[2]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s: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]";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:1:{i:0;s:30:"advanced-custom-fields/acf.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', 'assignment1', 'yes'),
(41, 'stylesheet', 'assignment1', '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', '1', '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:5:{i:2;a:4:{s:5:"title";s:7:"Find Us";s:4:"text";s:168:"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday—Friday: 9:00AM–5:00PM\nSaturday & Sunday: 11:00AM–3:00PM";s:6:"filter";b:1;s:6:"visual";b:1;}i:3;a:4:{s:5:"title";s:15:"About This Site";s:4:"text";s:85:"This may be a good place to introduce yourself and your site or include some credits.";s:6:"filter";b:1;s:6:"visual";b:1;}i:4;a:4:{s:5:"title";s:7:"Find Us";s:4:"text";s:168:"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday—Friday: 9:00AM–5:00PM\nSaturday & Sunday: 11:00AM–3:00PM";s:6:"filter";b:1;s:6:"visual";b:1;}i:5;a:4:{s:5:"title";s:15:"About This Site";s:4:"text";s:85:"This may be a good place to introduce yourself and your site or include some credits.";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:0:{}', 'no'),
(82, 'timezone_string', '', 'yes'),
(83, 'page_for_posts', '35', 'yes'),
(84, 'page_on_front', '69', '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:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'widget_recent-posts', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(96, 'widget_recent-comments', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(97, 'widget_archives', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(98, 'widget_meta', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(99, 'sidebars_widgets', 'a:5:{s:19:"wp_inactive_widgets";a:4:{i:0;s:6:"text-2";i:1;s:6:"text-3";i:2;s:6:"text-4";i:3;s:6:"text-5";}s:18:"orphaned_widgets_1";a:3:{i:0;s:8:"search-2";i:1;s:12:"categories-2";i:2;s:13:"media_video-2";}s:18:"orphaned_widgets_2";a:0:{}s:18:"orphaned_widgets_3";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(100, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(102, 'widget_calendar', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(103, 'widget_media_audio', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(105, 'widget_media_image', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(107, 'widget_media_video', 'a:2:{i:2;a:11:{s:13:"attachment_id";i:0;s:3:"url";s:43:"https://www.youtube.com/watch?v=gVu-GHApLWA";s:5:"title";s:12:"SAE Belgrade";s:7:"preload";s:8:"metadata";s:7:"content";s:0:"";s:3:"mp4";s:0:"";s:3:"m4v";s:0:"";s:4:"webm";s:0:"";s:3:"ogv";s:0:"";s:3:"flv";s:0:"";s:4:"loop";b:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(109, 'widget_tag_cloud', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(111, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(113, 'widget_custom_html', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(115, 'cron', 'a:5:{i:1506603138;a:2:{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:1506603174;a:1:{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;}}}i:1506603333;a:1:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1506604987;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(118, 'theme_mods_twentyseventeen', 'a:3:{s:18:"custom_css_post_id";i:-1;s:18:"nav_menu_locations";a:2:{s:3:"top";i:16;s:6:"social";i:18;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1506582604;s:4:"data";a:4:{s:19:"wp_inactive_widgets";a:4:{i:0;s:6:"text-2";i:1;s:6:"text-3";i:2;s:6:"text-4";i:3;s:6:"text-5";}s:9:"sidebar-1";a:3:{i:0;s:8:"search-2";i:1;s:12:"categories-2";i:2;s:13:"media_video-2";}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}}}}', 'yes'),
(125, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1506586991;s:7:"checked";a:5:{s:12:"alumni-theme";s:0:"";s:11:"assignment1";s:0:"";s:13:"twentyfifteen";s:3:"1.8";s:15:"twentyseventeen";s:3:"1.3";s:13:"twentysixteen";s:3:"1.3";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'no'),
(126, '_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.8.2.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-4.8.2.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-4.8.2-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-4.8.2-new-bundled.zip";s:7:"partial";s:69:"https://downloads.wordpress.org/release/wordpress-4.8.2-partial-1.zip";s:8:"rollback";b:0;}s:7:"current";s:5:"4.8.2";s:7:"version";s:5:"4.8.2";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.7";s:15:"partial_version";s:5:"4.8.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.8.2.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-4.8.2.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-4.8.2-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-4.8.2-new-bundled.zip";s:7:"partial";s:69:"https://downloads.wordpress.org/release/wordpress-4.8.2-partial-1.zip";s:8:"rollback";s:70:"https://downloads.wordpress.org/release/wordpress-4.8.2-rollback-1.zip";}s:7:"current";s:5:"4.8.2";s:7:"version";s:5:"4.8.2";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.7";s:15:"partial_version";s:5:"4.8.1";s:9:"new_files";s:0:"";}}s:12:"last_checked";i:1506579480;s:15:"version_checked";s:5:"4.8.1";s:12:"translations";a:0:{}}', 'no'),
(129, '_site_transient_timeout_browser_9f84add0f351976e3a39fe5262bff0dd', '1506171336', 'no'),
(130, '_site_transient_browser_9f84add0f351976e3a39fe5262bff0dd', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"60.0.3112.113";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'no'),
(134, 'can_compress_scripts', '1', 'no'),
(152, '_site_transient_timeout_wporg_theme_feature_list', '1505577727', 'no'),
(153, '_site_transient_wporg_theme_feature_list', 'a:3:{s:6:"Layout";a:7:{i:0;s:11:"grid-layout";i:1;s:10:"one-column";i:2;s:11:"two-columns";i:3;s:13:"three-columns";i:4;s:12:"four-columns";i:5;s:12:"left-sidebar";i:6;s:13:"right-sidebar";}s:8:"Features";a:20:{i:0;s:19:"accessibility-ready";i:1;s:10:"buddypress";i:2;s:17:"custom-background";i:3;s:13:"custom-colors";i:4;s:13:"custom-header";i:5;s:11:"custom-menu";i:6;s:12:"editor-style";i:7;s:21:"featured-image-header";i:8;s:15:"featured-images";i:9;s:15:"flexible-header";i:10;s:14:"footer-widgets";i:11;s:20:"front-page-post-form";i:12;s:19:"full-width-template";i:13;s:12:"microformats";i:14;s:12:"post-formats";i:15;s:20:"rtl-language-support";i:16;s:11:"sticky-post";i:17;s:13:"theme-options";i:18;s:17:"threaded-comments";i:19;s:17:"translation-ready";}s:7:"Subject";a:9:{i:0;s:4:"blog";i:1;s:10:"e-commerce";i:2;s:9:"education";i:3;s:13:"entertainment";i:4;s:14:"food-and-drink";i:5;s:7:"holiday";i:6;s:4:"news";i:7;s:11:"photography";i:8;s:9:"portfolio";}}', 'no'),
(166, 'category_children', 'a:1:{i:2;a:2:{i:0;i:6;i:1;i:7;}}', 'yes'),
(191, 'nav_menu_options', 'a:1:{s:8:"auto_add";a:0:{}}', 'yes'),
(194, '_transient_timeout_oembed_d041c52a4ab92a257b3a4bb6592cf3ad', '1505660338', 'no'),
(195, '_transient_oembed_d041c52a4ab92a257b3a4bb6592cf3ad', 'O:8:"stdClass":13:{s:4:"type";s:5:"video";s:6:"height";i:338;s:15:"thumbnail_width";i:480;s:13:"thumbnail_url";s:48:"https://i.ytimg.com/vi/gVu-GHApLWA/hqdefault.jpg";s:11:"author_name";s:12:"SAE Belgrade";s:5:"title";s:28:"SAE Institut Beograd - Promo";s:13:"provider_name";s:7:"YouTube";s:7:"version";s:3:"1.0";s:10:"author_url";s:40:"https://www.youtube.com/user/SAEBelgrade";s:16:"thumbnail_height";i:360;s:5:"width";i:600;s:12:"provider_url";s:24:"https://www.youtube.com/";s:4:"html";s:137:"<iframe width="600" height="338" src="https://www.youtube.com/embed/gVu-GHApLWA?feature=oembed" frameborder="0" allowfullscreen></iframe>";}', 'no'),
(196, '_transient_timeout_plugin_slugs', '1506665770', 'no'),
(197, '_transient_plugin_slugs', 'a:3:{i:0;s:30:"advanced-custom-fields/acf.php";i:1;s:19:"akismet/akismet.php";i:2;s:9:"hello.php";}', 'no'),
(198, 'recently_activated', 'a:0:{}', 'yes'),
(199, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1505584996', 'no'),
(200, '_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:4378;}s:4:"post";a:3:{s:4:"name";s:4:"post";s:4:"slug";s:4:"post";s:5:"count";i:2503;}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";i:2373;}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";i:2296;}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";i:1832;}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";i:1603;}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";i:1591;}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";i:1440;}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";i:1356;}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";i:1351;}s:8:"facebook";a:3:{s:4:"name";s:8:"facebook";s:4:"slug";s:8:"facebook";s:5:"count";i:1344;}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";i:1278;}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";i:1273;}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";i:1135;}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";i:1056;}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";i:1050;}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";i:998;}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";i:945;}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";i:818;}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";i:815;}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";i:808;}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";i:774;}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";i:773;}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";i:670;}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";i:670;}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";i:664;}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";i:654;}s:8:"security";a:3:{s:4:"name";s:8:"security";s:4:"slug";s:8:"security";s:5:"count";i:646;}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";i:645;}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";i:636;}s:6:"slider";a:3:{s:4:"name";s:6:"slider";s:4:"slug";s:6:"slider";s:5:"count";i:624;}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";i:610;}s:4:"ajax";a:3:{s:4:"name";s:4:"ajax";s:4:"slug";s:4:"ajax";s:5:"count";i:594;}s:9:"analytics";a:3:{s:4:"name";s:9:"analytics";s:4:"slug";s:9:"analytics";s:5:"count";i:594;}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";i:589;}s:6:"search";a:3:{s:4:"name";s:6:"search";s:4:"slug";s:6:"search";s:5:"count";i:583;}s:10:"e-commerce";a:3:{s:4:"name";s:10:"e-commerce";s:4:"slug";s:10:"e-commerce";s:5:"count";i:576;}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";i:574;}s:4:"menu";a:3:{s:4:"name";s:4:"menu";s:4:"slug";s:4:"menu";s:5:"count";i:561;}s:4:"form";a:3:{s:4:"name";s:4:"form";s:4:"slug";s:4:"form";s:5:"count";i:557;}s:5:"embed";a:3:{s:4:"name";s:5:"embed";s:4:"slug";s:5:"embed";s:5:"count";i:543;}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";i:535;}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";i:524;}s:3:"css";a:3:{s:4:"name";s:3:"css";s:4:"slug";s:3:"css";s:5:"count";i:517;}s:5:"share";a:3:{s:4:"name";s:5:"share";s:4:"slug";s:5:"share";s:5:"count";i:505;}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";i:502;}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";i:495;}s:5:"theme";a:3:{s:4:"name";s:5:"theme";s:4:"slug";s:5:"theme";s:5:"count";i:488;}s:9:"dashboard";a:3:{s:4:"name";s:9:"dashboard";s:4:"slug";s:9:"dashboard";s:5:"count";i:477;}s:6:"custom";a:3:{s:4:"name";s:6:"custom";s:4:"slug";s:6:"custom";s:5:"count";i:475;}s:10:"categories";a:3:{s:4:"name";s:10:"categories";s:4:"slug";s:10:"categories";s:5:"count";i:473;}s:10:"responsive";a:3:{s:4:"name";s:10:"responsive";s:4:"slug";s:10:"responsive";s:5:"count";i:470;}s:3:"ads";a:3:{s:4:"name";s:3:"ads";s:4:"slug";s:3:"ads";s:5:"count";i:448;}s:6:"editor";a:3:{s:4:"name";s:6:"editor";s:4:"slug";s:6:"editor";s:5:"count";i:444;}s:9:"affiliate";a:3:{s:4:"name";s:9:"affiliate";s:4:"slug";s:9:"affiliate";s:5:"count";i:442;}s:6:"button";a:3:{s:4:"name";s:6:"button";s:4:"slug";s:6:"button";s:5:"count";i:440;}s:4:"tags";a:3:{s:4:"name";s:4:"tags";s:4:"slug";s:4:"tags";s:5:"count";i:440;}s:12:"contact-form";a:3:{s:4:"name";s:12:"contact form";s:4:"slug";s:12:"contact-form";s:5:"count";i:435;}s:4:"user";a:3:{s:4:"name";s:4:"user";s:4:"slug";s:4:"user";s:5:"count";i:420;}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";i:418;}s:6:"mobile";a:3:{s:4:"name";s:6:"mobile";s:4:"slug";s:6:"mobile";s:5:"count";i:410;}s:5:"users";a:3:{s:4:"name";s:5:"users";s:4:"slug";s:5:"users";s:5:"count";i:407;}s:9:"slideshow";a:3:{s:4:"name";s:9:"slideshow";s:4:"slug";s:9:"slideshow";s:5:"count";i:405;}s:7:"contact";a:3:{s:4:"name";s:7:"contact";s:4:"slug";s:7:"contact";s:5:"count";i:405;}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";i:401;}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";i:396;}s:3:"api";a:3:{s:4:"name";s:3:"api";s:4:"slug";s:3:"api";s:5:"count";i:385;}s:10:"statistics";a:3:{s:4:"name";s:10:"statistics";s:4:"slug";s:10:"statistics";s:5:"count";i:383;}s:6:"events";a:3:{s:4:"name";s:6:"events";s:4:"slug";s:6:"events";s:5:"count";i:381;}s:10:"navigation";a:3:{s:4:"name";s:10:"navigation";s:4:"slug";s:10:"navigation";s:5:"count";i:370;}s:4:"news";a:3:{s:4:"name";s:4:"news";s:4:"slug";s:4:"news";s:5:"count";i:353;}s:8:"calendar";a:3:{s:4:"name";s:8:"calendar";s:4:"slug";s:8:"calendar";s:5:"count";i:344;}s:7:"payment";a:3:{s:4:"name";s:7:"payment";s:4:"slug";s:7:"payment";s:5:"count";i:340;}s:9:"multisite";a:3:{s:4:"name";s:9:"multisite";s:4:"slug";s:9:"multisite";s:5:"count";i:332;}s:7:"plugins";a:3:{s:4:"name";s:7:"plugins";s:4:"slug";s:7:"plugins";s:5:"count";i:332;}s:10:"shortcodes";a:3:{s:4:"name";s:10:"shortcodes";s:4:"slug";s:10:"shortcodes";s:5:"count";i:331;}s:12:"social-media";a:3:{s:4:"name";s:12:"social media";s:4:"slug";s:12:"social-media";s:5:"count";i:330;}s:10:"newsletter";a:3:{s:4:"name";s:10:"newsletter";s:4:"slug";s:10:"newsletter";s:5:"count";i:330;}s:5:"popup";a:3:{s:4:"name";s:5:"popup";s:4:"slug";s:5:"popup";s:5:"count";i:326;}s:4:"code";a:3:{s:4:"name";s:4:"code";s:4:"slug";s:4:"code";s:5:"count";i:326;}s:4:"list";a:3:{s:4:"name";s:4:"list";s:4:"slug";s:4:"list";s:5:"count";i:321;}s:3:"url";a:3:{s:4:"name";s:3:"url";s:4:"slug";s:3:"url";s:5:"count";i:321;}s:4:"meta";a:3:{s:4:"name";s:4:"meta";s:4:"slug";s:4:"meta";s:5:"count";i:321;}s:9:"marketing";a:3:{s:4:"name";s:9:"marketing";s:4:"slug";s:9:"marketing";s:5:"count";i:312;}s:4:"chat";a:3:{s:4:"name";s:4:"chat";s:4:"slug";s:4:"chat";s:5:"count";i:302;}s:8:"redirect";a:3:{s:4:"name";s:8:"redirect";s:4:"slug";s:8:"redirect";s:5:"count";i:300;}s:6:"simple";a:3:{s:4:"name";s:6:"simple";s:4:"slug";s:6:"simple";s:5:"count";i:300;}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:293;}s:3:"tag";a:3:{s:4:"name";s:3:"tag";s:4:"slug";s:3:"tag";s:5:"count";i:292;}s:15:"payment-gateway";a:3:{s:4:"name";s:15:"payment gateway";s:4:"slug";s:15:"payment-gateway";s:5:"count";i:291;}s:11:"advertising";a:3:{s:4:"name";s:11:"advertising";s:4:"slug";s:11:"advertising";s:5:"count";i:286;}s:5:"forms";a:3:{s:4:"name";s:5:"forms";s:4:"slug";s:5:"forms";s:5:"count";i:286;}s:7:"adsense";a:3:{s:4:"name";s:7:"adsense";s:4:"slug";s:7:"adsense";s:5:"count";i:284;}s:6:"author";a:3:{s:4:"name";s:6:"author";s:4:"slug";s:6:"author";s:5:"count";i:283;}s:4:"html";a:3:{s:4:"name";s:4:"html";s:4:"slug";s:4:"html";s:5:"count";i:279;}s:8:"lightbox";a:3:{s:4:"name";s:8:"lightbox";s:4:"slug";s:8:"lightbox";s:5:"count";i:277;}s:12:"notification";a:3:{s:4:"name";s:12:"notification";s:4:"slug";s:12:"notification";s:5:"count";i:274;}s:8:"tracking";a:3:{s:4:"name";s:8:"tracking";s:4:"slug";s:8:"tracking";s:5:"count";i:272;}s:7:"tinymce";a:3:{s:4:"name";s:7:"tinyMCE";s:4:"slug";s:7:"tinymce";s:5:"count";i:272;}s:7:"captcha";a:3:{s:4:"name";s:7:"captcha";s:4:"slug";s:7:"captcha";s:5:"count";i:271;}}', 'no'),
(256, 'logged_in_key', '3I7Ld$<hE,<`<@jSks>2vIjcxHgG0Y6lGu9W0Eek@nO>aFgWW;)]jc;`F(Uzh]ec', 'no'),
(257, 'logged_in_salt', 'LlG*.y%/;%K05p7r}DOrT<&VIY-u]{xXUFV?S<toH:b!41NW8a&?Pr3t>{3sv%WQ', 'no'),
(259, 'nonce_key', 'Ce_^{|TEz[H8:^qmdq1pWAWd*@_K.0+y.I(8q}&VV@_f3i@$/,gQO[ZzhcC&*kX ', 'no'),
(260, 'nonce_salt', 'c<d/9B%0]iX|OS_uDz]jwZ#RK1da)2psTuv9$2olsFgv(8F-Q]J>vxb*7B:iN?b:', 'no'),
(265, 'auth_key', '{1 IZAvv8&KW`PCi5b_]:%e19CV-pEG#FNN*;SqUiGQ,xU,yumHD)#c<]O/6*;r_', 'no'),
(266, 'auth_salt', '<}t{O8C8|.J3lqbr^:1Q1J uuK)Y>*#9/{4/o>(YC6>Y>Ivupn?l1f5~cF?w{Z,X', 'no'),
(279, 'acf_version', '4.4.12', 'yes'),
(280, 'current_theme', 'Assignment1', 'yes'),
(281, 'theme_mods_alumni-theme', 'a:3:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:3:"top";i:16;s:6:"social";i:17;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1506078940;s:4:"data";a:2:{s:19:"wp_inactive_widgets";a:4:{i:0;s:6:"text-2";i:1;s:6:"text-3";i:2;s:6:"text-4";i:3;s:6:"text-5";}s:18:"orphaned_widgets_1";a:3:{i:0;s:8:"search-2";i:1;s:12:"categories-2";i:2;s:13:"media_video-2";}}}}', 'yes'),
(282, 'theme_switched', '', 'yes'),
(288, 'theme_mods_assignment1', 'a:2:{s:18:"custom_css_post_id";i:-1;s:18:"nav_menu_locations";a:3:{s:3:"top";i:16;s:6:"social";i:18;s:4:"main";i:16;}}', 'yes'),
(289, 'theme_switched_via_customizer', '', 'yes'),
(290, 'customize_stashed_theme_mods', 'a:0:{}', 'no'),
(305, 'WPLANG', '', 'yes'),
(320, '_site_transient_timeout_browser_a9db4d03969fdd98d377b682b063efe6', '1507184167', 'no'),
(321, '_site_transient_browser_a9db4d03969fdd98d377b682b063efe6', 'a:10:{s:4:"name";s:6:"Chrome";s:7:"version";s:13:"61.0.3163.100";s:8:"platform";s:7:"Windows";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'),
(322, '_site_transient_timeout_community-events-1aecf33ab8525ff212ebdffbb438372e', '1506622569', 'no'),
(323, '_site_transient_community-events-1aecf33ab8525ff212ebdffbb438372e', 'a:2:{s:8:"location";a:1:{s:2:"ip";s:9:"127.0.0.0";}s:6:"events";a:3:{i:0;a:7:{s:4:"type";s:6:"meetup";s:5:"title";s:71:"7. WordPress meetup u Novom Sadu || 7th WordPress meetup Novi Sad #WPNS";s:3:"url";s:53:"https://www.meetup.com/WP-Meetup-NS/events/241595776/";s:6:"meetup";s:18:"WP Meetup Novi Sad";s:10:"meetup_url";s:36:"https://www.meetup.com/WP-Meetup-NS/";s:4:"date";s:19:"2017-09-28 18:00:00";s:8:"location";a:4:{s:8:"location";s:16:"Novi Sad, Serbia";s:7:"country";s:2:"rs";s:8:"latitude";d:45.252262;s:9:"longitude";d:19.845497;}}i:1;a:7:{s:4:"type";s:6:"meetup";s:5:"title";s:40:"30. septembar - WordPress dan u Beogradu";s:3:"url";s:57:"https://www.meetup.com/WordPress-Serbia/events/243363135/";s:6:"meetup";s:16:"WordPress Serbia";s:10:"meetup_url";s:40:"https://www.meetup.com/WordPress-Serbia/";s:4:"date";s:19:"2017-09-30 12:00:00";s:8:"location";a:4:{s:8:"location";s:16:"Belgrade, Serbia";s:7:"country";s:2:"RS";s:8:"latitude";d:44.80581;s:9:"longitude";d:20.454424;}}i:2;a:7:{s:4:"type";s:6:"meetup";s:5:"title";s:39:"WordPress Translation Day 2017 Novi Sad";s:3:"url";s:53:"https://www.meetup.com/WP-Meetup-NS/events/243325542/";s:6:"meetup";s:18:"WP Meetup Novi Sad";s:10:"meetup_url";s:36:"https://www.meetup.com/WP-Meetup-NS/";s:4:"date";s:19:"2017-09-30 12:00:00";s:8:"location";a:4:{s:8:"location";s:16:"Novi Sad, Serbia";s:7:"country";s:2:"rs";s:8:"latitude";d:45.252262;s:9:"longitude";d:19.845497;}}}}', 'no'),
(324, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1506622570', 'no'),
(325, '_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:31:"Wed, 27 Sep 2017 11:56:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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=4.9-alpha-41624";s:7:"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: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:34:"Global WordPress Translation Day 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:70:"https://wordpress.org/news/2017/09/global-wordpress-translation-day-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:"Wed, 27 Sep 2017 11:56:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:6:"Events";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:32:"global wordpress translation day";s: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:9:"polyglots";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=4915";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:398:"On September 30 2017, the WordPress Polyglots Team – whose mission is to translate WordPress into as many languages as possible – will hold its third Global WordPress Translation Day, a 24-hour, round-the-clock, digital and physical global marathon dedicated to the localisation and internationalisation of the WordPress platform and ecosystem, a structure that powers, 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: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:4124:"<p><span style="font-weight: 400">On September 30 2017, the WordPress Polyglots Team – whose mission is to translate WordPress into as many languages as possible – will hold its third <a href="https://wptranslationday.org/">Global WordPress Translation Day</a>, a 24-hour, round-the-clock, digital and physical global marathon dedicated to the localisation and internationalisation of the WordPress platform and ecosystem, a structure that powers, today, over 28% of all existing websites.</span></p>\n<p><span style="font-weight: 400">The localisation process allows for WordPress and for all WordPress-related products (themes and plugins) to be available in local languages, so to improve their accessibility and usage and to allow as many people as possible to take advantage of the free platform and services available.</span></p>\n<p><span style="font-weight: 400">In a (not completely) serendipitous coincidence, September 30 has also been declared by the United Nations “International Translation Day”, to pay homage to the great services of translators everywhere, one that allows communication and exchange.</span></p>\n<p><span style="font-weight: 400">The event will feature a series of multi-language live speeches (training sessions, tutorials, case histories, etc.) that will be screen-casted in streaming, starting from Australia and the Far East and ending in the Western parts of the United States.</span></p>\n<p><span style="font-weight: 400">In that same 24-hour time frame, Polyglots worldwide will gather physically in local events, for dedicated training and translations sprints (and for some fun and socializing as well), while those unable to physically join their teams will do so remotely.</span></p>\n<p><span style="font-weight: 400">A big, fun, useful and enlightening party and a lovely mix of growing, giving, learning and teaching, to empower, and cultivate, and shine.</span></p>\n<p><span style="font-weight: 400">Here are some stats about the first two events:</span></p>\n<p><b>Global WordPress Translation Day 1</b></p>\n<ul>\n<li><span style="font-weight: 400"> </span><span style="font-weight: 400">448 translators worldwide</span></li>\n<li><span style="font-weight: 400"> </span><span style="font-weight: 400">50 local events worldwide</span></li>\n<li><span style="font-weight: 400"> </span><span style="font-weight: 400">54 locales involved</span></li>\n<li><span style="font-weight: 400"> </span><span style="font-weight: 400">40350 strings translated, in</span></li>\n<li><span style="font-weight: 400"> </span><span style="font-weight: 400">597 projects</span></li>\n</ul>\n<p><b>Global WordPress Translation Day 2</b></p>\n<ul>\n<li><span style="font-weight: 400"> </span><span style="font-weight: 400">780 translators worldwide</span></li>\n<li><span style="font-weight: 400"> </span><span style="font-weight: 400">67 local events worldwide</span></li>\n<li><span style="font-weight: 400"> </span><span style="font-weight: 400">133 locales involved</span></li>\n<li><span style="font-weight: 400"> </span><span style="font-weight: 400">60426 strings translated, in</span></li>\n<li><span style="font-weight: 400"> </span><span style="font-weight: 400">590 projects</span></li>\n</ul>\n<p><span style="font-weight: 400">We would like your help in spreading this news and in reaching out to all four corners of the world to make the third #WPTranslationDay a truly amazing one and to help celebrate the unique and fundamental role that translators have in the Community but also in all aspects of life.</span></p>\n<p><span style="font-weight: 400">A full press release is available, along with more information and visual assets at </span><a href="https://wptranslationday.org/press/"><span style="font-weight: 400">wptranslationday.org/press</span></a>.</p>\n<p><span style="font-weight: 400">For any additional information please don’t hesitate to contact the event team on </span><a href="mailto:[email protected]"><span style="font-weight: 400">[email protected]</span></a><span style="font-weight: 400">.</span></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:"4915";s: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: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.8.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/2017/09/wordpress-4-8-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, 19 Sep 2017 22:17:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s: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=4909";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:392:"WordPress 4.8.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.8.1 and earlier are affected by these security issues: $wpdb->prepare() can create unexpected and unsafe queries leading to potential SQL injection (SQLi). WordPress core is not directly vulnerable to this […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Aaron D. Campbell";s: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:2844:"<p>WordPress 4.8.2 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.8.1 and earlier are affected by these security issues:</p>\n<ol>\n<li><code>$wpdb->prepare()</code> can create unexpected and unsafe queries leading to potential SQL injection (SQLi). WordPress core is not directly vulnerable to this issue, but we’ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by <a href="https://hackerone.com/slavco">Slavco</a></li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the oEmbed discovery. Reported by xknown of the WordPress Security Team.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the visual editor. Reported by <a href="https://twitter.com/brutelogic">Rodolfo Assis (@brutelogic)</a> of Sucuri Security.</li>\n<li>A path traversal vulnerability was discovered in the file unzipping code. Reported by <a href="https://hackerone.com/noxrnet">Alex Chapman (noxrnet)</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the plugin editor. Reported by 陈瑞琦 (Chen Ruiqi).</li>\n<li>An open redirect was discovered on the user and term edit screens. Reported by <a href="https://hackerone.com/ysx">Yasin Soliman (ysx)</a>.</li>\n<li>A path traversal vulnerability was discovered in the customizer. Reported by Weston Ruter of the WordPress Security Team.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in template names. Reported by <a href="https://hackerone.com/sikic">Luka (sikic)</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the link modal. Reported by <a href="https://hackerone.com/qasuar">Anas Roubi (qasuar)</a>.</li>\n</ol>\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 disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.8.2 contains 6 maintenance fixes to the 4.8 release series. For more information, see the <a href="https://codex.wordpress.org/Version_4.8.2">release notes</a> or consult the <a href="https://core.trac.wordpress.org/query?status=closed&milestone=4.8.2&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.8.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.8.2.</p>\n<p>Thanks to everyone who contributed to 4.8.2.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:4:"4909";s: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:35:"The Month in WordPress: August 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:70:"https://wordpress.org/news/2017/09/the-month-in-wordpress-august-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 Sep 2017 10:02:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a: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=4899";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:333:"While there haven’t been any major events or big new developments in the WordPress world this past month, a lot of work has gone into developing a sustainable future for the project. Read on to find out more about this and other interesting news from around the WordPress world in August. The Global WordPress Translation […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:6496:"<p>While there haven’t been any major events or big new developments in the WordPress world this past month, a lot of work has gone into developing a sustainable future for the project. Read on to find out more about this and other interesting news from around the WordPress world in August.</p>\n<hr />\n<h2>The Global WordPress Translation Day Returns</h2>\n<p>On September 30, the WordPress Polyglots team will be holding <a href="https://wptranslationday.org/">the third Global WordPress Translation Day</a>. This is a 24-hour global event dedicated to the translation of the WordPress ecosystem (core, themes, plugins), and is a mix of physical, in-person translation work with online streaming of talks from WordPress translators all over the world.</p>\n<p>Meetup groups will be holding events where community members will come together to translate WordPress. To get involved in this worldwide event, <a href="https://www.meetup.com/pro/wordpress/">join your local meetup group</a> or, if one is not already taking place in your area, organize one for your community.</p>\n<p>You can find out more information <a href="https://wptranslationday.org/global-wordpress-translation-day-3/">on the Translation Day blog</a> and in the #polyglots-events channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a>.</p>\n<h2>WordPress Foundation to Run Open Source Training Worldwide</h2>\n<p>The WordPress Foundation is a non-profit organization that exists to provide educational events and resources for hackathons, support of the open web, and promotion of diversity in the global open source community.</p>\n<p>In an effort to push these goals forward, <a href="http://wordpressfoundation.org/2017/call-for-organizers-introduction-to-open-source/">the Foundation is going to be offering assistance</a> to communities who would like to run local open source training workshops. A number of organizers have applied to be a part of this initiative, and the Foundation will be selecting two communities in the coming weeks.</p>\n<p>Follow <a href="http://wordpressfoundation.org/news/">the WordPress Foundation blog</a> for updates.</p>\n<h2>Next Steps in WordPress Core’s PHP Focus</h2>\n<p>After <a href="https://wordpress.org/news/2017/08/the-month-in-wordpress-july-2017/">last month’s</a> push to focus on WordPress core’s PHP development, a number of new initiatives have been proposed and implemented. The first of these initiatives is a page on WordPress.org that will educate users on the benefits of upgrading PHP. The page and its implementation are still in development, so <a href="https://github.com/WordPress/servehappy">you can follow and contribute on GitHub</a>.</p>\n<p>Along with this, <a href="https://make.wordpress.org/plugins/2017/08/29/minimum-php-version-requirement/">plugin developers are now able to specify</a> the minimum required PHP version for their plugins. This version will then be displayed on the Plugin Directory page, but it will not (yet) prevent users from installing it.</p>\n<p>The next evolution of this is for the minimum PHP requirement to be enforced so that plugins will only work if that requirement is met. You can assist with this implementation by contributing your input or a patch on <a href="https://core.trac.wordpress.org/ticket/40934">the open ticket</a>.</p>\n<p>As always, discussions around the implementation of PHP in WordPress core are done in the #core-php channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a>.</p>\n<h2>New Editor Development Continues</h2>\n<p>For a few months now, the core team has been steadily working on Gutenberg, the new editor for WordPress core. While Gutenberg is still in development and is some time away from being ready, a huge amount of progress has already been made. In fact, <a href="https://make.wordpress.org/core/2017/08/29/whats-new-in-gutenberg-august-29/">v1.0.0 of Gutenberg</a> was released this week.</p>\n<p>The new editor is available as a plugin <a href="https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/">for testing</a> and <a href="https://make.wordpress.org/core/2017/08/11/revised-suggested-roadmap-for-gutenberg-and-customization/">the proposed roadmap</a> is for it to be merged into core in early 2018. You can get involved in the development of Gutenberg by joining the #core-editor channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a> and following the <a href="https://make.wordpress.org/core/">WordPress Core development blog</a>.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>On the topic of Gutenberg, <a href="https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/">Matt Mullenweg wrote a post</a> to address some of the concerns that the community has expressed about the new editor.</li>\n<li><a href="http://hookrefineandtinker.com/2017/08/jaiwp-an-alternative-project-to-wordcamp-india/">A new movement has started</a> in the Indian WordPress community named JaiWP — the organizers are seeking to unite and motivate the country’s many local communities.</li>\n<li><a href="https://richtabor.com/merlin-wp/">Merlin WP</a> is a new plugin offering theme developers an easy way to onboard their users.</li>\n<li>Ryan McCue posted <a href="https://make.wordpress.org/core/2017/08/23/rest-api-roadmap/">an ambitious roadmap</a> for the future of the WordPress REST API — many contributions from the community will be needed in order to reach these goals.</li>\n<li>Want to know what you can expect in the next major release of WordPress? <a href="https://make.wordpress.org/core/2017/08/11/wordpress-4-9-goals/">Here’s a look</a> at what the core team is planning for v4.9.</li>\n<li>To help combat the difficulties that Trac presents to WordPress Core contributors, Ryan McCue built an alternative platform dubbed <a href="https://github.com/rmccue/not-trac">Not Trac</a>.</li>\n<li><a href="https://make.wordpress.org/cli/2017/08/08/version-1-3-0-released/">v1.3.0 of WP-CLI was released</a> earlier in the month, adding a whole lot of great new features to the useful tool.</li>\n</ul>\n<p><i><span style="font-weight: 400">If you have a story we should consider including in the next “Month in WordPress” post, please </span></i><a href="https://make.wordpress.org/community/month-in-wordpress-submissions/"><i><span style="font-weight: 400">submit it here</span></i></a><i><span style="font-weight: 400">.</span></i></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:"4899";s: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: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.8.1 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/news/2017/08/wordpress-4-8-1-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 02 Aug 2017 21:26:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a: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=4875";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:366:"After over 13 million downloads of WordPress 4.8, we are pleased to announce the immediate availability of WordPress 4.8.1, a maintenance release. This release contains 29 maintenance fixes and enhancements, chief among them are fixes to the rich Text widget and the introduction of the Custom HTML widget. For a full list of changes, consult the 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: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:2560:"<p>After over 13 million downloads of WordPress 4.8, we are pleased to announce the immediate availability of WordPress 4.8.1, a maintenance release.</p>\n<p>This release contains 29 maintenance fixes and enhancements, chief among them are fixes to the rich Text widget and the introduction of the Custom HTML widget. For a full list of changes, consult the <a href="https://codex.wordpress.org/Version_4.8.1">release notes</a>, the <a href="https://core.trac.wordpress.org/query?status=closed&milestone=4.8.1&group=component">tickets closed</a>, and the <a href="https://core.trac.wordpress.org/log/branches/4.8?rev=41210&stop_rev=40891">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.8.1</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.8.1.</p>\n<p>Thanks to everyone who contributed to 4.8.1:<br />\n<a href="https://profiles.wordpress.org/adamsilverstein/">Adam Silverstein</a>, <a href="https://profiles.wordpress.org/afercia/">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/azaozz/">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/atanasangelovdev/">Atanas Angelov</a>, <a href="https://profiles.wordpress.org/gitlost/">bonger</a>, <a href="https://profiles.wordpress.org/boonebgorges/">Boone Gorges</a>, <a href="https://profiles.wordpress.org/bor0/">Boro Sitnikovski</a>, <a href="https://profiles.wordpress.org/dlh/">David Herrera</a>, <a href="https://profiles.wordpress.org/jnylen0/">James Nylen</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/kadamwhite/">K. Adam White</a>, <a href="https://profiles.wordpress.org/obenland/">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/melchoyce/">Mel Choyce</a>, <a href="https://profiles.wordpress.org/r-a-y/">r-a-y</a>, <a href="https://profiles.wordpress.org/greuben/">Reuben Gunday</a>, <a href="https://profiles.wordpress.org/rinkuyadav999/">Rinku Y</a>, <a href="https://profiles.wordpress.org/sa3idho/">Said El Bakkali</a>, <a href="https://profiles.wordpress.org/sergeybiryukov/">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/nomnom99/">Siddharth Thevaril</a>, <a href="https://profiles.wordpress.org/timmydcrawford/">Timmy Crawford</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:"4875";s: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:33:"The Month in WordPress: July 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:68:"https://wordpress.org/news/2017/08/the-month-in-wordpress-july-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, 02 Aug 2017 07:50:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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=4885";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:344:"After a particularly busy month in June, things settled down a bit in the WordPress world — WordPress 4.8’s release went very smoothly, allowing the Core team to build up some of the community infrastructure around development. Read on for more interesting news from around the WordPress world in July. Weekly meeting for new core […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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:5644:"<p>After a particularly busy month <a href="https://wordpress.org/news/2017/07/the-month-in-wordpress-june-2017/">in June</a>, things settled down a bit in the WordPress world — WordPress 4.8’s release went very smoothly, allowing the Core team to build up some of the community infrastructure around development. Read on for more interesting news from around the WordPress world in July.</p>\n<hr />\n<h2>Weekly meeting for new core contributors</h2>\n<p>Onboarding new contributors is a persistent issue for most WordPress contribution teams. While every team welcomes any new contributors, the path to getting deeply involved can be tricky to find at times.</p>\n<p>This month, the Core team implemented a fantastic new initiative: <a href="https://make.wordpress.org/core/2017/06/30/announcing-a-weekly-new-contributors-meeting/">weekly meetings for new core contributors</a> as a way to encourage involvement and foster fresh contributions. The meetings not only focus on bugs suited to first-time contributors, they also make space for experienced contributors to help out individuals who may be new to developing WordPress core.</p>\n<p>The meetings are held every Wednesday at 19:00 UTC in the #core channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a>.</p>\n<h2>Increased focus on PHP practices in WordPress core</h2>\n<p>In bringing people together to improve WordPress core, a new channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a> named #core-php is designed to focus on PHP development in the project.</p>\n<p>Along with this increased concentration on PHP, a <a href="https://make.wordpress.org/core/2017/07/06/announcement-for-weekly-php-meetings/">new weekly meeting is now taking place</a> every Monday at 18:00 UTC in #core-php to improve WordPress core’s PHP practices.</p>\n<h2>Sharp rise in meetup group growth</h2>\n<p>The dashboard events widget in WordPress 4.8 displays local, upcoming WordPress events for the logged in user. The events listed in this widget are pulled from the <a href="https://www.meetup.com/pro/wordpress/">meetup chapter program</a>, as well as the <a href="https://central.wordcamp.org/schedule">WordCamp schedule</a>.</p>\n<p>This widget provides greater visibility of official WordPress events, and encourages community involvement in these events. It’s safe to say that the widget has achieved its goals admirably — since WordPress 4.8 was released a little over a month ago, 31 new meetup groups have been formed with 15,647 new members across the whole program. This is compared to 19 new groups and only 7,071 new members in the same time period last year.</p>\n<p>You can find a local meetup group to join <a href="https://www.meetup.com/pro/wordpress/">on meetup.com</a>, and if you would like to get involved in organizing events for your community, you can find out more about the inner workings of the program <a href="https://make.wordpress.org/community/meetups/">on the Community Team site</a> or by joining the #community-events channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a>.</p>\n<h2>WordPress 4.8.1 due for imminent release</h2>\n<p>WordPress 4.8 cycle’s first maintenance release will be published in the coming week, more than a month after 4.8 was released. This release fix some important issues in WordPress core and the majority of users will find that their sites will update to this new version automatically.</p>\n<p>If you would like to help out by testing this release before it goes live, you can follow the <a href="https://make.wordpress.org/core/handbook/testing/beta/">beta testing guide</a> for WordPress core. To get further 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<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>The WordPress mobile apps have been updated with <a href="https://en.blog.wordpress.com/2017/07/24/a-brand-new-editor-for-the-wordpress-mobile-apps/">a brand new text editor</a>.</li>\n<li>In a recent push to encourage WordPress users to upgrade their PHP versions, two features have been proposed – one <a href="https://core.trac.wordpress.org/ticket/41191">to provide a notice to users</a> and another to <a href="https://core.trac.wordpress.org/ticket/40934">allow PHP version requirements to be specified by plugins and themes</a>.</li>\n<li>John Maeda wrote <a href="https://make.wordpress.org/design/2017/07/14/whywordpress2/">a great post</a> celebrating the freedom that WordPress offers.</li>\n<li>Gutenberg, the new text editor for WordPress, is <a href="https://make.wordpress.org/core/2017/07/28/whats-new-in-gutenberg-28th-july/">in continual development</a> — everyone is invited to <a href="https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/">test it out</a>.</li>\n<li>The WordPress Meta team is starting <a href="https://make.wordpress.org/meta/2017/07/26/experiment-wordcamp-org-bug-scrubs/">a new initiative</a> to bring the community together to focus on fixing bugs across the WordCamp.org network.</li>\n<li>Volunteer applications for WordCamp US <a href="https://2017.us.wordcamp.org/2017/08/01/wcus-needs-you-volunteer-applications-are-now-open/">are now open</a>.</li>\n</ul>\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:"4885";s: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: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:33:"The Month in WordPress: June 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:68:"https://wordpress.org/news/2017/07/the-month-in-wordpress-june-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:"Mon, 03 Jul 2017 11:42: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: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=4865";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:342:"We’re starting a new regular feature on this blog today. We’d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we’ll be posting a roundup of all the major WordPress news at the end of every month. Aside from other 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:"";}}}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:9225:"<p><i>We’re starting a new regular feature on this blog today. We’d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we’ll be posting a roundup of all the major WordPress news at the end of every month.</i></p>\n<p>Aside from other general news, the three big events in June were the release of WordPress 4.8, WordCamp Europe 2017, and the WordPress Community Summit. Read on to hear more about these as well as other interesting stories from around the WordPress world.</p>\n<hr />\n<h2>WordPress 4.8</h2>\n<p>On June 8, a week before the Community Summit and WordCamp Europe,<a href="https://wordpress.org/news/2017/06/evans/"> WordPress 4.8 was released</a>.You can read<a href="https://make.wordpress.org/core/2017/05/26/wordpress-4-8-field-guide/"> the Field Guide</a> for a comprehensive overview of all the features of this release (the News and Events widget in the dashboard is one of the major highlights).</p>\n<p>Most people would either have their version auto-updated, or their hosts would have updated it for them. For the rest, the updates have gone smoothly with no major issues reported so far.</p>\n<p>This WordPress release saw contributions from 346 individuals; you can find their names in <a href="https://wordpress.org/news/2017/06/evans/">the announcement post</a>. 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<h2>WordCamp Europe 2017</h2>\n<p><a href="https://2017.europe.wordcamp.org/">WordCamp Europe 2017</a> was held in Paris between June 15-17. The event began with a Contributor Day, followed by two days of talks and community goodness. The talks were live-streamed, but you can still catch all the recordings <a href="http://wordpress.tv/event/wordcamp-europe-2017/">on WordPress.tv</a>. The organisers also published <a href="https://2017.europe.wordcamp.org/2017/06/30/wordcamp-europe-2017-in-paris-its-a-wrap/">a handy wrap-up of the event</a>.</p>\n<p>WordCamp Europe exists to bring together the WordPress community from all over the continent, as well as to inspire local communities everywhere to get their own events going — to that end, the event was a great success, as a host of new meetup groups have popped up in the weeks following WordCamp Europe.</p>\n<p>The work that Contributor Day participants accomplished was both varied and valuable, covering all aspects of the WordPress project — have a look through <a href="https://make.wordpress.org/">the Make blogs</a> for updates from each team.</p>\n<p>Finally, we also learned during the event that <a href="https://2017.europe.wordcamp.org/2017/06/17/belgrade-serbia-to-host-wordcamp-europe-2018/">WordCamp Europe 2018 will be held in Belgrade, Serbia</a>, continuing the tradition of exploring locations and communities across the continent.</p>\n<h2>WordPress Community Summit</h2>\n<p>The fourth WordPress Community Summit took place during the two days leading up to WordCamp Europe 2017. This event is an invite-only unconference where people from all over the WordPress community come together to discuss some of the more difficult issues in the community, as well as to make plans for the year ahead in each of the contribution teams.</p>\n<p>As the Summit is designed to be a safe space for all attendees, the notes from each discussion are in the process of being anonymized before we publish them on <a href="https://make.wordpress.org/summit/">the Summit blog</a> (so stay tuned – they’ll show up there over the next few weeks).</p>\n<p>You can already see the final list of topics that were proposed for the event <a href="https://make.wordpress.org/summit/2017/06/10/community-summit-2017-final-list-of-topic/">here</a> (although a few more were added during the course of the two day Summit).</p>\n<h2>WordPress marketing push continues apace</h2>\n<p>As part of the push to be more intentional in marketing WordPress (as per Matt Mullenweg’s <a href="http://wordpress.tv/2016/12/07/matt-mullenweg-state-of-the-word-2016/">2016 State of the Word</a>), the Marketing team has launched two significant drives to obtain more information about who uses WordPress and how that information can shape their outreach and messaging efforts.</p>\n<p><a href="https://make.wordpress.org/marketing/2017/06/15/wordpress-case-studies-and-usage-survey/">The team is looking for WordPress case studies</a> and is asking users, agencies, and freelancers to take a WordPress usage survey. This will go a long way towards establishing a marketing base for WordPress as a platform and as a community — and many people in the community are looking forward to seeing this area develop further.</p>\n<p>To get involved in the WordPress Marketing team, you can visit <a href="https://make.wordpress.org/marketing/">their team blog</a>.</p>\n<h2>New Gutenberg editor available for testing</h2>\n<p>For some time now, the Core team has been hard at work on a brand-new text editor for WordPress — this project has been dubbed “Gutenberg.” The project’s ultimate goal is to replace the existing TinyMCE editor, but for now it is in beta and available for public testing — <a href="https://wordpress.org/plugins/gutenberg/">you can download it here as a plugin</a> and install it on any WordPress site.</p>\n<p>This feature is still in beta, so we don’t recommend using it on a production site. If you test it out, though, you’ll find that it is a wholly different experience to what you are used to in WordPress. It’s a more streamlined, altogether cleaner approach to the text-editing experience than we’ve had before, and something that many people are understandably excited about. Matt Mullenweg discussed the purpose of Gutenberg in more detail during <a href="http://wordpress.tv/2017/07/01/interview-and-qanda-with-matt-mullenweg/">his Q&A at WordCamp Europe</a>.</p>\n<p>There are already a few reviews out from <a href="https://kinsta.com/blog/gutenberg-wordpress-editor/">Brian Jackson at Kinsta</a>, <a href="https://daily.jorb.in/2017/06/random-thoughts-on-gutenberg/">Aaron Jorbin</a>, and <a href="https://www.mattcromwell.com/gutenberg-first-impressions/">Matt Cromwell</a> (among many others). Keep in mind that the project is in constant evolution at this stage; when it eventually lands in WordPress core (probably in v5.0), it could look very different from its current iteration — that’s what makes this beta stage and user testing so important.</p>\n<p>To get involved with shaping the future of Gutenberg, please <a href="https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/">test it out</a>, and join the #core-editor channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a>. You can also visit <a href="https://github.com/WordPress/gutenberg">the project’s GitHub repository</a> to report issues and contribute to the codebase.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li style="font-weight: 400">Bridget Willard <a href="https://make.wordpress.org/community/2017/06/21/proposed-wordcamp-editorial-calendar/">has proposed an editorial calendar</a> to assist WordCamp organizers with publishing content for their event.</li>\n<li style="font-weight: 400">A new kind of niche WordCamp, <a href="https://2017-denver.journalist.wordcamp.org/">WordCamp for Publishers in Denver</a>, has opened ticket sales.</li>\n<li style="font-weight: 400">The WordPress iOS app was updated with <a href="https://en.blog.wordpress.com/2017/06/21/an-all-new-media-library-for-the-wordpress-ios-app/">a fresh, new media library</a> this month.</li>\n<li style="font-weight: 400">It looks like <i>Underscores</i>, the popular WordPress starter theme, <a href="https://themeshaper.com/2017/06/26/the-future-of-underscores-and-a-new-committer/">has a bright future ahead of it</a>, with a renewed vision and new committer.</li>\n<li style="font-weight: 400">The always-inspiring Tom McFarlin <a href="https://tommcfarlin.com/simple-autoloader-for-wordpress">has released a simple autoloader for WordPress</a> that looks very useful indeed.</li>\n<li style="font-weight: 400">After a bit of a discussion on Twitter regarding the differences between WordPress.org, WordPress.com, and Jetpack, <a href="https://helen.wordpress.com/2017/06/21/restaurant-vs-meal-kit-vs-grocery-shopping-or-wordpress-com-vs-jetpack-vs-wordpress-org/">Helen Hou-Sandí came up with a great analogy</a> and an interesting post about it all.</li>\n<li style="font-weight: 400">If you’re interested in contributing specifically to the JavaScript or PHP areas of the WordPress core codebase, then the new #core-js and #core-php channels in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a> are perfect for you.</li>\n</ul>\n<p><i>If you have a story we should consider including in the next “Month in WordPress” post, please </i><a href="https://make.wordpress.org/community/month-in-wordpress-submissions/"><i>submit it here</i></a><i>.</i></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:"4865";s: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:25:"WordPress 4.8 “Evans”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"https://wordpress.org/news/2017/06/evans/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Jun 2017 14:49:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"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=4770";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:373:"An Update with You in Mind Gear up for a more intuitive WordPress! Version 4.8 of WordPress, named “Evans” in honor of jazz pianist and composer William John “Bill” Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand. Though some […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:42637:"<h2 style="text-align: center">An Update with You in Mind</h2>\n<p><img class="aligncenter size-large wp-image-4816" src="https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=632%2C316&ssl=1" alt="" srcset="https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=1024%2C512&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=300%2C150&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=768%2C384&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1264&ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1896&ssl=1 1896w" sizes="(max-width: 632px) 100vw, 632px" data-recalc-dims="1" /></p>\n<h3>Gear up for a more intuitive WordPress!</h3>\n<p>Version 4.8 of WordPress, named “Evans” in honor of jazz pianist and composer William John “Bill” Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand.</p>\n<p>Though some updates seem minor, they’ve been built by hundreds of contributors with <em>you</em> in mind. Get ready for new features you’ll welcome like an old friend: link improvements, <em>three</em> new media widgets covering images, audio, and video, an updated text widget that supports visual editing, and an upgraded news section in your dashboard which brings in nearby and upcoming WordPress events.</p>\n<hr />\n<h2 style="text-align: center">Exciting Widget Updates</h2>\n<p><img class="size-large wp-image-4776 aligncenter" src="https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=632%2C436&ssl=1" alt="" srcset="https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=1024%2C706&ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=300%2C207&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=768%2C530&ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?w=1264&ssl=1 1264w" sizes="(max-width: 632px) 100vw, 632px" data-recalc-dims="1" /></p>\n<h3>Image Widget</h3>\n<p>Adding an image to a widget is now a simple task that is achievable for any WordPress user without needing to know code. Simply insert your image right within the widget settings. Try adding something like a headshot or a photo of your latest weekend adventure — and see it appear automatically.</p>\n<h3>Video Widget</h3>\n<p>A welcome video is a great way to humanize the branding of your website. You can now add any video from the Media Library to a sidebar on your site with the new Video widget. Use this to showcase a welcome video to introduce visitors to your site or promote your latest and greatest content.</p>\n<h3>Audio Widget</h3>\n<p>Are you a podcaster, musician, or avid blogger? Adding a widget with your audio file has never been easier. Upload your audio file to the Media Library, go to the widget settings, select your file, and you’re ready for listeners. This would be a easy way to add a more personal welcome message, too!</p>\n<h3>Rich Text Widget</h3>\n<p>This feature deserves a parade down the center of town! Rich-text editing capabilities are now native for Text widgets. Add a widget anywhere and format away. Create lists, add emphasis, and quickly and easily insert links. Have fun with your newfound formatting powers, and watch what you can accomplish in a short amount of time.</p>\n<hr />\n<h2 style="text-align: center">Link Boundaries</h2>\n<div id="v-8BDWH3QG-1" class="video-player"><video id="v-8BDWH3QG-1-video" width="632" height="342" poster="https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg" controls="true" preload="metadata" dir="ltr" lang="en"><source src="https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.mp4" type="video/mp4; codecs="avc1.64001E, mp4a.40.2"" /><source src="https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_fmt1.ogv" type="video/ogg; codecs="theora, vorbis"" /><div><img alt="Link Boundaries" src="https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg?resize=632%2C342" data-recalc-dims="1" /></div><p>Link Boundaries</p></video></div>\n<p>Have you ever tried updating a link, or the text around a link, and found you can’t seem to edit it correctly? When you edit the text after the link, your new text also ends up linked. Or you edit the text in the link, but your text ends up outside of it. This can be frustrating! With link boundaries, a great new feature, the process is streamlined and your links will work well. You’ll be happier. We promise.</p>\n<hr />\n<h2 style="text-align: center">Nearby WordPress Events</h2>\n<p><img class="aligncenter wp-image-4779 size-large" src="https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=632%2C465&ssl=1" alt="" srcset="https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=1024%2C753&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=300%2C221&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=768%2C565&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?w=1126&ssl=1 1126w" sizes="(max-width: 632px) 100vw, 632px" data-recalc-dims="1" /></p>\n<p>Did you know that WordPress has a thriving offline community with groups meeting regularly in more than 400 cities around the world? WordPress now draws your attention to the events that help you continue improving your WordPress skills, meet friends, and, of course, publish!</p>\n<p>This is quickly becoming one of our favorite features. While you are in the dashboard (because you’re running updates and writing posts, right?) all upcoming WordCamps and official WordPress Meetups — local to you — will be displayed.</p>\n<p>Being part of the community can help you improve your WordPress skills and network with people you wouldn’t otherwise meet. Now you can easily find your local events just by logging in to your dashboard and looking at the new Events and News dashboard widget.</p>\n<hr />\n<h2 style="text-align: center">Even More Developer Happiness <img src="https://s.w.org/images/core/emoji/2.3/72x72/1f60a.png" alt="😊" class="wp-smiley" style="height: 1em; max-height: 1em;" /></h2>\n<h3><a href="https://make.wordpress.org/core/2017/05/17/cleaner-headings-in-the-admin-screens/">More Accessible Admin Panel Headings</a></h3>\n<p>New CSS rules mean extraneous content (like “Add New” links) no longer need to be included in admin-area headings. These panel headings improve the experience for people using assistive technologies.</p>\n<h3><a href="https://make.wordpress.org/core/2017/05/22/removal-of-core-embedding-support-for-wmv-and-wma-file-formats/">Removal of Core Support for WMV and WMA Files</a></h3>\n<p>As fewer and fewer browsers support Silverlight, file formats which require the presence of the Silverlight plugin are being removed from core support. Files will still display as a download link, but will no longer be embedded automatically.</p>\n<h3><a href="https://make.wordpress.org/core/2017/05/22/multisite-focused-changes-in-4-8/">Multisite Updates</a></h3>\n<p>New capabilities have been introduced to 4.8 with an eye towards removing calls to<br />\n<code>is_super_admin()</code>. Additionally, new hooks and tweaks to more granularly control site and user counts per network have been added.</p>\n<h3><a href="https://make.wordpress.org/core/2017/05/23/addition-of-tinymce-to-the-text-widget/">Text-Editor JavaScript API</a></h3>\n<p>With the addition of TinyMCE to the text widget in 4.8 comes a new JavaScript API for instantiating the editor after page load. This can be used to add an editor instance to any text area, and customize it with buttons and functions. Great for plugin authors!</p>\n<h3><a href="https://make.wordpress.org/core/2017/05/26/media-widgets-for-images-video-and-audio/">Media Widgets API</a></h3>\n<p>The introduction of a new base media widget REST API schema to 4.8 opens up possibilities for even more media widgets (like galleries or playlists) in the future. The three new media widgets are powered by a shared base class that covers most of the interactions with the media modal. That class also makes it easier to create new media widgets and paves the way for more to come.</p>\n<h3><a href="https://make.wordpress.org/core/2017/05/16/customizer-sidebar-width-is-now-variable/">Customizer Width Variable</a></h3>\n<p>Rejoice! New responsive breakpoints have been added to the customizer sidebar to make it wider on high-resolution screens. Customizer controls should use percentage-based widths instead of pixels.</p>\n<hr />\n<h2 style="text-align: center">The Squad</h2>\n<p>This release was led by <a href="https://matt.blog">Matt</a> and <a href="https://profiles.wordpress.org/jbpaul17">Jeff Paul</a>, with the help of the following fabulous folks. There are 346 contributors with props in this release, with 106 of them contributing for the first time. Pull up some Bill Evans on your music service of choice, and check out some of their profiles:</p>\n<a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/abrightclearweb">abrightclearweb</a>, <a href="https://profiles.wordpress.org/ibachal">Achal Jain</a>, <a href="https://profiles.wordpress.org/achbed">achbed</a>, <a href="https://profiles.wordpress.org/acmethemes">Acme Themes</a>, <a href="https://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>, <a href="https://profiles.wordpress.org/adammacias">adammacias</a>, <a href="https://profiles.wordpress.org/mrahmadawais">Ahmad Awais</a>, <a href="https://profiles.wordpress.org/ahmadawais">ahmadawais</a>, <a href="https://profiles.wordpress.org/airesvsg">airesvsg</a>, <a href="https://profiles.wordpress.org/ajoah">ajoah</a>, <a href="https://profiles.wordpress.org/akibjorklund">Aki Björklund</a>, <a href="https://profiles.wordpress.org/akshayvinchurkar">akshayvinchurkar</a>, <a href="https://profiles.wordpress.org/schlessera">Alain Schlesser</a>, <a href="https://profiles.wordpress.org/xknown">Alex Concha</a>, <a href="https://profiles.wordpress.org/xavortm">Alex Dimitrov</a>, <a href="https://profiles.wordpress.org/ironpaperweight">Alex Hon</a>, <a href="https://profiles.wordpress.org/alex27">alex27</a>, <a href="https://profiles.wordpress.org/allancole">allancole</a>, <a href="https://profiles.wordpress.org/arush">Amanda Rush</a>, <a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/andrewp-2">Andreas Panag</a>, <a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/rarst">Andrey "Rarst" Savchenko</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/andy">Andy Skelton</a>, <a href="https://profiles.wordpress.org/aniketpant">Aniket Pant</a>, <a href="https://profiles.wordpress.org/anilbasnet">Anil Basnet</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/antisilent">antisilent</a>, <a href="https://profiles.wordpress.org/atimmer">Anton Timmermans</a>, <a href="https://profiles.wordpress.org/apokalyptik">apokalyptik</a>, <a href="https://profiles.wordpress.org/artoliukkonen">artoliukkonen</a>, <a href="https://profiles.wordpress.org/ideag">Arunas Liuiza</a>, <a href="https://profiles.wordpress.org/attitude">attitude</a>, <a href="https://profiles.wordpress.org/backermann">backermann1978</a>, <a href="https://profiles.wordpress.org/b-07">Bappi</a>, <a href="https://profiles.wordpress.org/bcole808">Ben Cole</a>, <a href="https://profiles.wordpress.org/quasel">Bernhard Gronau</a>, <a href="https://profiles.wordpress.org/kau-boy">Bernhard Kau</a>, <a href="https://profiles.wordpress.org/binarymoon">binarymoon</a>, <a href="https://profiles.wordpress.org/birgire">Birgir Erlendsson (birgire)</a>, <a href="https://profiles.wordpress.org/bjornw">BjornW</a>, <a href="https://profiles.wordpress.org/bobbingwide">bobbingwide</a>, <a href="https://profiles.wordpress.org/boblinthorst">boblinthorst</a>, <a href="https://profiles.wordpress.org/boboudreau">boboudreau</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/brainstormforce">Brainstorm Force</a>, <a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="https://profiles.wordpress.org/brianhogg">Brian Hogg</a>, <a href="https://profiles.wordpress.org/krogsgard">Brian Krogsgard</a>, <a href="https://profiles.wordpress.org/bronsonquick">Bronson Quick</a>, <a href="https://profiles.wordpress.org/sixhours">Caroline Moore</a>, <a href="https://profiles.wordpress.org/caseypatrickdriscoll">Casey Driscoll</a>, <a href="https://profiles.wordpress.org/caspie">Caspie</a>, <a href="https://profiles.wordpress.org/chandrapatel">Chandra Patel</a>, <a href="https://profiles.wordpress.org/chaos-engine">Chaos Engine</a>, <a href="https://profiles.wordpress.org/cheeserolls">cheeserolls</a>, <a href="https://profiles.wordpress.org/chesio">chesio</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/chredd">chredd</a>, <a href="https://profiles.wordpress.org/chrisjean">Chris Jean</a>, <a href="https://profiles.wordpress.org/cmmarslender">Chris Marslender</a>, <a href="https://profiles.wordpress.org/chris_d2d">Chris Smith</a>, <a href="https://profiles.wordpress.org/chrisvanpatten">Chris Van Patten</a>, <a href="https://profiles.wordpress.org/chriswiegman">Chris Wiegman</a>, <a href="https://profiles.wordpress.org/chriscct7">chriscct7</a>, <a href="https://profiles.wordpress.org/chriseverson">chriseverson</a>, <a href="https://profiles.wordpress.org/christian1012">Christian Chung</a>, <a href="https://profiles.wordpress.org/cwpnolen">Christian Nolen</a>, <a href="https://profiles.wordpress.org/needle">Christian Wach</a>, <a href="https://profiles.wordpress.org/christophherr">Christoph Herr</a>, <a href="https://profiles.wordpress.org/clarionwpdeveloper">Clarion Technologies</a>, <a href="https://profiles.wordpress.org/claudiosmweb">Claudio Sanches</a>, <a href="https://profiles.wordpress.org/claudiosanches">Claudio Sanches</a>, <a href="https://profiles.wordpress.org/claudiolabarbera">ClaudioLaBarbera</a>, <a href="https://profiles.wordpress.org/codemovementpk">codemovement.pk</a>, <a href="https://profiles.wordpress.org/coderkevin">coderkevin</a>, <a href="https://profiles.wordpress.org/codfish">codfish</a>, <a href="https://profiles.wordpress.org/coreymcollins">coreymcollins</a>, <a href="https://profiles.wordpress.org/curdin">Curdin Krummenacher</a>, <a href="https://profiles.wordpress.org/cgrymala">Curtiss Grymala</a>, <a href="https://profiles.wordpress.org/cdog">Cătălin Dogaru</a>, <a href="https://profiles.wordpress.org/danhgilmore">danhgilmore</a>, <a href="https://profiles.wordpress.org/danielkanchev">Daniel Kanchev</a>, <a href="https://profiles.wordpress.org/danielpietrasik">Daniel Pietrasik</a>, <a href="https://profiles.wordpress.org/mte90">Daniele Scasciafratte</a>, <a href="https://profiles.wordpress.org/dllh">Daryl L. L. Houston (dllh)</a>, <a href="https://profiles.wordpress.org/davepullig">Dave Pullig</a>, <a href="https://profiles.wordpress.org/goto10">Dave Romsey (goto10)</a>, <a href="https://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>, <a href="https://profiles.wordpress.org/turtlepod">David Chandra Purnama</a>, <a href="https://profiles.wordpress.org/dlh">David Herrera</a>, <a href="https://profiles.wordpress.org/dglingren">David Lingren</a>, <a href="https://profiles.wordpress.org/davidmosterd">David Mosterd</a>, <a href="https://profiles.wordpress.org/dshanske">David Shanske</a>, <a href="https://profiles.wordpress.org/davidbhayes">davidbhayes</a>, <a href="https://profiles.wordpress.org/folletto">Davide \'Folletto\' Casali</a>, <a href="https://profiles.wordpress.org/deeptiboddapati">deeptiboddapati</a>, <a href="https://profiles.wordpress.org/delphinus">delphinus</a>, <a href="https://profiles.wordpress.org/deltafactory">deltafactory</a>, <a href="https://profiles.wordpress.org/denis-de-bernardy">Denis de Bernardy</a>, <a href="https://profiles.wordpress.org/valendesigns">Derek Herman</a>, <a href="https://profiles.wordpress.org/pcfreak30">Derrick Hammer</a>, <a href="https://profiles.wordpress.org/derrickkoo">Derrick Koo</a>, <a href="https://profiles.wordpress.org/dimchik">dimchik</a>, <a href="https://profiles.wordpress.org/dineshc">Dinesh Chouhan</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/dmsnell">dmsnell</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/dotancohen">Dotan Cohen</a>, <a href="https://profiles.wordpress.org/dougwollison">Doug Wollison</a>, <a href="https://profiles.wordpress.org/doughamlin">doughamlin</a>, <a href="https://profiles.wordpress.org/dreamon11">DreamOn11</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/duncanjbrown">duncanjbrown</a>, <a href="https://profiles.wordpress.org/dungengronovius">dungengronovius</a>, <a href="https://profiles.wordpress.org/dylanauty">DylanAuty</a>, <a href="https://profiles.wordpress.org/hurtige">Eddie Hurtig</a>, <a href="https://profiles.wordpress.org/oso96_2000">Eduardo Reveles</a>, <a href="https://profiles.wordpress.org/chopinbach">Edwin Cromley</a>, <a href="https://profiles.wordpress.org/electricfeet">ElectricFeet</a>, <a href="https://profiles.wordpress.org/eliorivero">Elio Rivero</a>, <a href="https://profiles.wordpress.org/iseulde">Ella Iseulde Van Dorpe</a>, <a href="https://profiles.wordpress.org/elyobo">elyobo</a>, <a href="https://profiles.wordpress.org/enodekciw">enodekciw</a>, <a href="https://profiles.wordpress.org/enshrined">enshrined</a>, <a href="https://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="https://profiles.wordpress.org/pushred">Eric Lanehart</a>, <a href="https://profiles.wordpress.org/eherman24">Evan Herman</a>, <a href="https://profiles.wordpress.org/flixos90">Felix Arntz</a>, <a href="https://profiles.wordpress.org/fencer04">Fencer04</a>, <a href="https://profiles.wordpress.org/florianbrinkmann">Florian Brinkmann</a>, <a href="https://profiles.wordpress.org/mista-flo">Florian TIAR</a>, <a href="https://profiles.wordpress.org/foliovision">FolioVision</a>, <a href="https://profiles.wordpress.org/fomenkoandrey">fomenkoandrey</a>, <a href="https://profiles.wordpress.org/frankiet">Francesco Taurino</a>, <a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="https://profiles.wordpress.org/fjarrett">Frankie Jarrett</a>, <a href="https://profiles.wordpress.org/akeif">Fred</a>, <a href="https://profiles.wordpress.org/frozzare">Fredrik Forsmo</a>, <a href="https://profiles.wordpress.org/fuscata">fuscata</a>, <a href="https://profiles.wordpress.org/gma992">Gabriel Maldonado</a>, <a href="https://profiles.wordpress.org/voldemortensen">Garth Mortensen</a>, <a href="https://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/geekysoft">Geeky Software</a>, <a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="https://profiles.wordpress.org/goranseric">Goran Šerić</a>, <a href="https://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>, <a href="https://profiles.wordpress.org/grantderepas">Grant Derepas</a>, <a href="https://profiles.wordpress.org/tivnet">Gregory Karpinsky (@tivnet)</a>, <a href="https://profiles.wordpress.org/hardeepasrani">Hardeep Asrani</a>, <a href="https://profiles.wordpress.org/helen">Helen Hou-Sandí</a>, <a href="https://profiles.wordpress.org/henrywright">Henry Wright</a>, <a href="https://profiles.wordpress.org/hiddenpearls">hiddenpearls</a>, <a href="https://profiles.wordpress.org/hnle">Hinaloe</a>, <a href="https://profiles.wordpress.org/hristo-sg">Hristo Pandjarov</a>, <a href="https://profiles.wordpress.org/hugobaeta">Hugo Baeta</a>, <a href="https://profiles.wordpress.org/polevaultweb">Iain Poulson</a>, <a href="https://profiles.wordpress.org/iandunn">Ian Dunn</a>, <a href="https://profiles.wordpress.org/ianedington">Ian Edington</a>, <a href="https://profiles.wordpress.org/idealien">idealien</a>, <a href="https://profiles.wordpress.org/igmoweb">Ignacio Cruz Moreno</a>, <a href="https://profiles.wordpress.org/imath">imath</a>, <a href="https://profiles.wordpress.org/implenton">implenton</a>, <a href="https://profiles.wordpress.org/ionutst">Ionut Stanciu</a>, <a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="https://profiles.wordpress.org/ivdimova">ivdimova</a>, <a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="https://profiles.wordpress.org/jakept">Jacob Peattie</a>, <a href="https://profiles.wordpress.org/whyisjake">Jake Spurlock</a>, <a href="https://profiles.wordpress.org/jnylen0">James Nylen</a>, <a href="https://profiles.wordpress.org/jamesacero">jamesacero</a>, <a href="https://profiles.wordpress.org/japh">Japh</a>, <a href="https://profiles.wordpress.org/jaredcobb">Jared Cobb</a>, <a href="https://profiles.wordpress.org/jayarjo">jayarjo</a>, <a href="https://profiles.wordpress.org/jdolan">jdolan</a>, <a href="https://profiles.wordpress.org/jdoubleu">jdoubleu</a>, <a href="https://profiles.wordpress.org/jblz">Jeff Bowen</a>, <a href="https://profiles.wordpress.org/jbpaul17">Jeff Paul</a>, <a href="https://profiles.wordpress.org/cheffheid">Jeffrey de Wit</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/jpry">Jeremy Pry</a>, <a href="https://profiles.wordpress.org/jimt">jimt</a>, <a href="https://profiles.wordpress.org/jipmoors">Jip Moors</a>, <a href="https://profiles.wordpress.org/jmusal">jmusal</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/joelcj91">Joel James</a>, <a href="https://profiles.wordpress.org/joen">Joen Asmussen</a>, <a href="https://profiles.wordpress.org/johanmynhardt">johanmynhardt</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/zyphonic">John Dittmar</a>, <a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="https://profiles.wordpress.org/johnpbloch">John P. Bloch</a>, <a href="https://profiles.wordpress.org/johnpgreen">johnpgreen</a>, <a href="https://profiles.wordpress.org/kenshino">Jon (Kenshino)</a>, <a href="https://profiles.wordpress.org/jonathanbardo">Jonathan Bardo</a>, <a href="https://profiles.wordpress.org/jbrinley">Jonathan Brinley</a>, <a href="https://profiles.wordpress.org/daggerhart">Jonathan Daggerhart</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/jonnyauk">jonnyauk</a>, <a href="https://profiles.wordpress.org/jordesign">jordesign</a>, <a href="https://profiles.wordpress.org/jorritschippers">JorritSchippers</a>, <a href="https://profiles.wordpress.org/joefusco">Joseph Fusco</a>, <a href="https://profiles.wordpress.org/jjeaton">Josh Eaton</a>, <a href="https://profiles.wordpress.org/shelob9">Josh Pollock</a>, <a href="https://profiles.wordpress.org/joshcummingsdesign">joshcummingsdesign</a>, <a href="https://profiles.wordpress.org/joshkadis">joshkadis</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/jrgould">JRGould</a>, <a href="https://profiles.wordpress.org/juanfra">Juanfra Aldasoro</a>, <a href="https://profiles.wordpress.org/juhise">Juhi Saxena</a>, <a href="https://profiles.wordpress.org/nukaga">Junko Nukaga</a>, <a href="https://profiles.wordpress.org/justinbusa">Justin Busa</a>, <a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="https://profiles.wordpress.org/jshreve">Justin Shreve</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/kacperszurek">kacperszurek</a>, <a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="https://profiles.wordpress.org/kalenjohnson">KalenJohnson</a>, <a href="https://profiles.wordpress.org/codebykat">Kat Hagan</a>, <a href="https://profiles.wordpress.org/kkoppenhaver">Keanan Koppenhaver</a>, <a href="https://profiles.wordpress.org/keesiemeijer">keesiemeijer</a>, <a href="https://profiles.wordpress.org/kellbot">kellbot</a>, <a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="https://profiles.wordpress.org/khag7">Kevin Hagerty</a>, <a href="https://profiles.wordpress.org/kwight">Kirk Wight</a>, <a href="https://profiles.wordpress.org/kitchin">kitchin</a>, <a href="https://profiles.wordpress.org/ixkaito">Kite</a>, <a href="https://profiles.wordpress.org/kjbenk">kjbenk</a>, <a href="https://profiles.wordpress.org/knutsp">Knut Sparhell</a>, <a href="https://profiles.wordpress.org/koenschipper">koenschipper</a>, <a href="https://profiles.wordpress.org/kokarn">kokarn</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/kouratoras">Konstantinos Kouratoras</a>, <a href="https://profiles.wordpress.org/kuchenundkakao">kuchenundkakao</a>, <a href="https://profiles.wordpress.org/kuldipem">kuldipem</a>, <a href="https://profiles.wordpress.org/leewillis77">Lee Willis</a>, <a href="https://profiles.wordpress.org/leobaiano">Leo Baiano</a>, <a href="https://profiles.wordpress.org/littlebigthing">LittleBigThings (Csaba)</a>, <a href="https://profiles.wordpress.org/lucasstark">Lucas Stark</a>, <a href="https://profiles.wordpress.org/lukecavanagh">Luke Cavanagh</a>, <a href="https://profiles.wordpress.org/lgedeon">Luke Gedeon</a>, <a href="https://profiles.wordpress.org/lukepettway">Luke Pettway</a>, <a href="https://profiles.wordpress.org/lyubomir_popov">lyubomir_popov</a>, <a href="https://profiles.wordpress.org/mariovalney">Mário Valney</a>, <a href="https://profiles.wordpress.org/mageshp">mageshp</a>, <a href="https://profiles.wordpress.org/mahesh901122">Mahesh Waghmare</a>, <a href="https://profiles.wordpress.org/mangeshp">Mangesh Parte</a>, <a href="https://profiles.wordpress.org/manishsongirkar36">Manish Songirkar</a>, <a href="https://profiles.wordpress.org/mantismamita">mantismamita</a>, <a href="https://profiles.wordpress.org/mbootsman">Marcel Bootsman</a>, <a href="https://profiles.wordpress.org/tyxla">Marin Atanasov</a>, <a href="https://profiles.wordpress.org/clorith">Marius L. J.</a>, <a href="https://profiles.wordpress.org/mbelchev">Mariyan Belchev</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/mapk">Mark Uraine</a>, <a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="https://profiles.wordpress.org/markshep">markshep</a>, <a href="https://profiles.wordpress.org/matveb">Matias Ventura</a>, <a href="https://profiles.wordpress.org/matrixik">matrixik</a>, <a href="https://profiles.wordpress.org/mjbanks">Matt Banks</a>, <a href="https://profiles.wordpress.org/mattking5000">Matt King</a>, <a href="https://profiles.wordpress.org/jaworskimatt">Matt PeepSo</a>, <a href="https://profiles.wordpress.org/veraxus">Matt van Andel</a>, <a href="https://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>, <a href="https://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="https://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="https://profiles.wordpress.org/maxcutler">Max Cutler</a>, <a href="https://profiles.wordpress.org/maximeculea">Maxime Culea</a>, <a href="https://profiles.wordpress.org/mayukojpn">Mayo Moriyama</a>, <a href="https://profiles.wordpress.org/mckernanin">mckernanin</a>, <a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="https://profiles.wordpress.org/mhowell">mhowell</a>, <a href="https://profiles.wordpress.org/michael-arestad">Michael Arestad</a>, <a href="https://profiles.wordpress.org/michaelarestad">Michael Arestad</a>, <a href="https://profiles.wordpress.org/michalzuber">michalzuber</a>, <a href="https://profiles.wordpress.org/stubgo">Miina Sikk</a>, <a href="https://profiles.wordpress.org/mauteri">Mike Auteri</a>, <a href="https://profiles.wordpress.org/mihai2u">Mike Crantea</a>, <a href="https://profiles.wordpress.org/mdgl">Mike Glendinning</a>, <a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="https://profiles.wordpress.org/mikelittle">Mike Little</a>, <a href="https://profiles.wordpress.org/mikeschroder">Mike Schroder</a>, <a href="https://profiles.wordpress.org/mikeviele">Mike Viele</a>, <a href="https://profiles.wordpress.org/dimadin">Milan Dinić</a>, <a href="https://profiles.wordpress.org/modemlooper">modemlooper</a>, <a href="https://profiles.wordpress.org/batmoo">Mohammad Jangda</a>, <a href="https://profiles.wordpress.org/deremohan">Mohan Dere</a>, <a href="https://profiles.wordpress.org/monikarao">monikarao</a>, <a href="https://profiles.wordpress.org/morettigeorgiev">morettigeorgiev</a>, <a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="https://profiles.wordpress.org/mor10">Morten Rand-Hendriksen</a>, <a href="https://profiles.wordpress.org/mt8biz">moto hachi ( mt8.biz )</a>, <a href="https://profiles.wordpress.org/mrbobbybryant">mrbobbybryant</a>, <a href="https://profiles.wordpress.org/nnaimov">Naim Naimov</a>, <a href="https://profiles.wordpress.org/natereist">Nate Reist</a>, <a href="https://profiles.wordpress.org/natewr">NateWr</a>, <a href="https://profiles.wordpress.org/nathanrice">nathanrice</a>, <a href="https://profiles.wordpress.org/nazgul">Nazgul</a>, <a href="https://profiles.wordpress.org/greatislander">Ned Zimmerman</a>, <a href="https://profiles.wordpress.org/krstarica">net</a>, <a href="https://profiles.wordpress.org/nikeo">Nicolas GUILLAUME</a>, <a href="https://profiles.wordpress.org/nikschavan">Nikhil Chavan</a>, <a href="https://profiles.wordpress.org/nikv">Nikhil Vimal</a>, <a href="https://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>, <a href="https://profiles.wordpress.org/rabmalin">Nilambar Sharma</a>, <a href="https://profiles.wordpress.org/noplanman">noplanman</a>, <a href="https://profiles.wordpress.org/nullvariable">nullvariable</a>, <a href="https://profiles.wordpress.org/odie2">odie2</a>, <a href="https://profiles.wordpress.org/odysseygate">odyssey</a>, <a href="https://profiles.wordpress.org/hideokamoto">Okamoto Hidetaka</a>, <a href="https://profiles.wordpress.org/orvils">orvils</a>, <a href="https://profiles.wordpress.org/oskosk">oskosk</a>, <a href="https://profiles.wordpress.org/ottok">Otto Kekäläinen</a>, <a href="https://profiles.wordpress.org/ovann86">ovann86</a>, <a href="https://profiles.wordpress.org/imnok">Pantip Treerattanapitak (Nok)</a>, <a href="https://profiles.wordpress.org/swissspidy">Pascal Birchler</a>, <a href="https://profiles.wordpress.org/patilvikasj">patilvikasj</a>, <a href="https://profiles.wordpress.org/pbearne">Paul Bearne</a>, <a href="https://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="https://profiles.wordpress.org/pdufour">pdufour</a>, <a href="https://profiles.wordpress.org/piewp">Perdaan</a>, <a href="https://profiles.wordpress.org/peterwilsoncc">Peter Wilson</a>, <a href="https://profiles.wordpress.org/phh">phh</a>, <a href="https://profiles.wordpress.org/php">php</a>, <a href="https://profiles.wordpress.org/delawski">Piotr Delawski</a>, <a href="https://profiles.wordpress.org/pippinsplugins">pippinsplugins</a>, <a href="https://profiles.wordpress.org/pjgalbraith">pjgalbraith</a>, <a href="https://profiles.wordpress.org/pkevan">pkevan</a>, <a href="https://profiles.wordpress.org/pratikchaskar">Pratik</a>, <a href="https://profiles.wordpress.org/pressionate">Pressionate</a>, <a href="https://profiles.wordpress.org/presskopp">Presskopp</a>, <a href="https://profiles.wordpress.org/procodewp">procodewp</a>, <a href="https://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="https://profiles.wordpress.org/rahulsprajapati">Rahul Prajapati</a>, <a href="https://profiles.wordpress.org/superpoincare">Ramanan</a>, <a href="https://profiles.wordpress.org/ramiabraham">ramiabraham</a>, <a href="https://profiles.wordpress.org/ranh">ranh</a>, <a href="https://profiles.wordpress.org/redsand">Red Sand Media Group</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/iamfriendly">Richard Tape</a>, <a href="https://profiles.wordpress.org/rpayne7264">Robert D Payne</a>, <a href="https://profiles.wordpress.org/iamjolly">Robert Jolly</a>, <a href="https://profiles.wordpress.org/rnoakes3rd">Robert Noakes</a>, <a href="https://profiles.wordpress.org/d4z_c0nf">Rocco Aliberti</a>, <a href="https://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="https://profiles.wordpress.org/rommelxcastro">Rommel Castro</a>, <a href="https://profiles.wordpress.org/fronaldaraujo">Ronald Araújo</a>, <a href="https://profiles.wordpress.org/magicroundabout">Ross Wintle</a>, <a href="https://profiles.wordpress.org/guavaworks">Roy Sivan</a>, <a href="https://profiles.wordpress.org/ryankienstra">Ryan Kienstra</a>, <a href="https://profiles.wordpress.org/rmccue">Ryan McCue</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/salcode">Sal Ferrarello</a>, <a href="https://profiles.wordpress.org/samikeijonen">Sami Keijonen</a>, <a href="https://profiles.wordpress.org/solarissmoke">Samir Shah</a>, <a href="https://profiles.wordpress.org/samuelsidler">Samuel Sidler</a>, <a href="https://profiles.wordpress.org/sandesh055">Sandesh</a>, <a href="https://profiles.wordpress.org/smyoon315">Sang-Min Yoon</a>, <a href="https://profiles.wordpress.org/sanketparmar">Sanket Parmar</a>, <a href="https://profiles.wordpress.org/pollyplummer">Sarah Gooding</a>, <a href="https://profiles.wordpress.org/sayedwp">Sayed Taqui</a>, <a href="https://profiles.wordpress.org/schrapel">schrapel</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/scrappyhuborg">[email protected]</a>, <a href="https://profiles.wordpress.org/scribu">scribu</a>, <a href="https://profiles.wordpress.org/seancjones">seancjones</a>, <a href="https://profiles.wordpress.org/sebastianpisula">Sebastian Pisula</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/sfpt">sfpt</a>, <a href="https://profiles.wordpress.org/shayanys">shayanys</a>, <a href="https://profiles.wordpress.org/shazahm1hotmailcom">shazahm1</a>, <a href="https://profiles.wordpress.org/shprink">shprink</a>, <a href="https://profiles.wordpress.org/simonlampen">simonlampen</a>, <a href="https://profiles.wordpress.org/skippy">skippy</a>, <a href="https://profiles.wordpress.org/smerriman">smerriman</a>, <a href="https://profiles.wordpress.org/snacking">snacking</a>, <a href="https://profiles.wordpress.org/solal">solal</a>, <a href="https://profiles.wordpress.org/soean">Soren Wrede</a>, <a href="https://profiles.wordpress.org/sstoqnov">Stanimir Stoyanov</a>, <a href="https://profiles.wordpress.org/metodiew">Stanko Metodiev</a>, <a href="https://profiles.wordpress.org/sharkomatic">Steph</a>, <a href="https://profiles.wordpress.org/sswells">Steph Wells</a>, <a href="https://profiles.wordpress.org/sillybean">Stephanie Leary</a>, <a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="https://profiles.wordpress.org/stephenharris">Stephen Harris</a>, <a href="https://profiles.wordpress.org/stevenkword">Steven Word</a>, <a href="https://profiles.wordpress.org/stevenlinx">stevenlinx</a>, <a href="https://profiles.wordpress.org/sudar">Sudar Muthu</a>, <a href="https://profiles.wordpress.org/patilswapnilv">Swapnil V. Patil</a>, <a href="https://profiles.wordpress.org/swapnild">swapnild</a>, <a href="https://profiles.wordpress.org/szaqal21">szaqal21</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/tapsboy">tapsboy</a>, <a href="https://profiles.wordpress.org/tlovett1">Taylor Lovett</a>, <a href="https://profiles.wordpress.org/team">team</a>, <a href="https://profiles.wordpress.org/tg29359">tg29359</a>, <a href="https://profiles.wordpress.org/tharsheblows">tharsheblows</a>, <a href="https://profiles.wordpress.org/the">the</a>, <a href="https://profiles.wordpress.org/themeshaper">themeshaper</a>, <a href="https://profiles.wordpress.org/thenbrent">thenbrent</a>, <a href="https://profiles.wordpress.org/thomaswm">thomaswm</a>, <a href="https://profiles.wordpress.org/tfrommen">Thorsten Frommen</a>, <a href="https://profiles.wordpress.org/tierra">tierra</a>, <a href="https://profiles.wordpress.org/tnash">Tim Nash</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/timph">timph</a>, <a href="https://profiles.wordpress.org/tkama">Tkama</a>, <a href="https://profiles.wordpress.org/tnegri">tnegri</a>, <a href="https://profiles.wordpress.org/tomauger">Tom Auger</a>, <a href="https://profiles.wordpress.org/tjnowell">Tom J Nowell</a>, <a href="https://profiles.wordpress.org/tomdxw">tomdxw</a>, <a href="https://profiles.wordpress.org/toro_unit">Toro_Unit (Hiroshi Urabe)</a>, <a href="https://profiles.wordpress.org/zodiac1978">Torsten Landsiedel</a>, <a href="https://profiles.wordpress.org/transl8or">transl8or</a>, <a href="https://profiles.wordpress.org/traversal">traversal</a>, <a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="https://profiles.wordpress.org/nmt90">Triet Minh</a>, <a href="https://profiles.wordpress.org/trishasalas">Trisha Salas</a>, <a href="https://profiles.wordpress.org/tristangemus">tristangemus</a>, <a href="https://profiles.wordpress.org/truongwp">truongwp</a>, <a href="https://profiles.wordpress.org/tsl143">tsl143</a>, <a href="https://profiles.wordpress.org/tywayne">Ty Carlson</a>, <a href="https://profiles.wordpress.org/grapplerulrich">Ulrich</a>, <a href="https://profiles.wordpress.org/utkarshpatel">Utkarsh</a>, <a href="https://profiles.wordpress.org/valeriutihai">Valeriu Tihai</a>, <a href="https://profiles.wordpress.org/zuige">Viljami Kuosmanen</a>, <a href="https://profiles.wordpress.org/vishalkakadiya">Vishal Kakadiya</a>, <a href="https://profiles.wordpress.org/vortfu">vortfu</a>, <a href="https://profiles.wordpress.org/vrundakansara-1">Vrunda Kansara</a>, <a href="https://profiles.wordpress.org/webbgaraget">webbgaraget</a>, <a href="https://profiles.wordpress.org/webmandesign">WebMan Design | Oliver Juhas</a>, <a href="https://profiles.wordpress.org/websupporter">websupporter</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/earnjam">William Earnhardt</a>, <a href="https://profiles.wordpress.org/williampatton">williampatton</a>, <a href="https://profiles.wordpress.org/wolly">Wolly aka Paolo Valenti</a>, <a href="https://profiles.wordpress.org/wraithkenny">WraithKenny</a>, <a href="https://profiles.wordpress.org/yale01">yale01</a>, <a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="https://profiles.wordpress.org/yogasukma">Yoga Sukma</a>, <a href="https://profiles.wordpress.org/oxymoron">Zach Wills</a>, <a href="https://profiles.wordpress.org/tollmanz">Zack Tollman</a>, <a href="https://profiles.wordpress.org/vanillalounge">Ze Fontainhas</a>, <a href="https://profiles.wordpress.org/zhildzik">zhildzik</a>, and <a href="https://profiles.wordpress.org/zsusag">zsusag</a>.\n<p> </p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.8. Their efforts bring WordPress 4.8 fully translated to 38 languages at release time with more on the way.</p>\n<p>Do you want to report on WordPress 4.8? <a href="https://s.w.org/images/core/4.8/wp-4-8_press-kit.zip">We’ve compiled a press kit</a> featuring information about the release features, and some media assets to help you along.</p>\n<p>If you want to follow along or help out, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress — we hope you enjoy!</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:"4770";s: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: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:33:"WordPress 4.8 Release Candidate 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"https://wordpress.org/news/2017/06/wordpress-4-8-release-candidate-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jun 2017 22:13:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a: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=4765";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:336:"The second release candidate for WordPress 4.8 is now available. To test WordPress 4.8, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip). We’ve made a handful of changes since releasing RC 1 last week. For more details about what’s new in version 4.8, check out the […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:1173:"<p>The second release candidate for WordPress 4.8 is now available.</p>\n<p>To test WordPress 4.8, 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.8-RC2.zip">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href="https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=40866&stop_rev=40847">a handful of changes</a> since releasing RC 1 last week. For more details about what’s new in version 4.8, check out the <a href="https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/">Beta 1</a>, <a href="https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/">Beta 2</a>, and <a href="https://wordpress.org/news/2017/05/wordpress-4-8-release-candidate/">RC1</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p>Happy testing!</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:"4765";s: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:31:"WordPress 4.8 Release Candidate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"https://wordpress.org/news/2017/05/wordpress-4-8-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 25 May 2017 23:04: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=4758";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:325:"The release candidate for WordPress 4.8 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.8 on Thursday, June 8, but we need your help to get there. If you haven’t tested 4.8 yet, […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:2365:"<p>The release candidate for WordPress 4.8 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.8 on <strong>Thursday, June 8</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.8 yet, now is the time!</p>\n<p>To test WordPress 4.8, 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.8-RC1.zip">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href="https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=40840&stop_rev=40821">a handful of changes</a> since releasing Beta 2 earlier this week. For more details about what’s new in version 4.8, check out the <a href="https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/">Beta 1</a> and <a href="https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/">Beta 2</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.8 and update your plugin’s <em>Tested up to</em> version in the readme to 4.8. 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. An in-depth field guide to developer-focused changes is coming soon 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>This release’s haiku is courtesy of <a href=\'https://profiles.wordpress.org/matveb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matveb</a>:</p>\n<p><em>Érrese uno</em><br />\n<em>Cien veces y más</em><br />\n<em>Erre ce dos</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:"4758";s: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: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:20:"WordPress 4.8 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 23 May 2017 00:02:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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=4749";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"WordPress 4.8 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.8, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:1621:"<p>WordPress 4.8 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.8, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.8-beta2.zip">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.8, check out the <a href="https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/">Beta 1</a> blog post. Since then, we’ve made <a href="https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=40819&stop_rev=40664&limit=100&sfp_email=&sfph_mail=">over 50 changes</a> in Beta 2.</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>WordPress four point eight<br />\nOne step closer to release<br />\nPlease test Beta 2!</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:"4749";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:32:"https://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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:"Thu, 28 Sep 2017 06:16:09 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:"Wed, 27 Sep 2017 11:56:59 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:11:"HIT lax 250";}}s:5:"build";s:14:"20170928060428";}', 'no'),
(326, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1506622570', 'no'),
(327, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1506579370', 'no'),
(328, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1506622571', 'no'),
(329, '_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:73:"WPTavern: WPWeekly Episode 289 – Where Did WordPress’ Ease of Use Go?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wptavern.com?p=75134&preview=true&preview_id=75134";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wpweekly-episode-289-where-did-wordpress-ease-of-use-go";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3091:"<p>In this episode, <a href="https://jjj.blog/">John James Jacoby</a> and I are joined by <a href="http://scottbolinger.com/">Scott Bolinger</a>. Bolinger recently attended a Content and Commerce Summit where WordPress and WooCommerce were not mentioned. Bolinger <a href="http://scottbolinger.com/perspective-on-wordpress/">shared the perspective</a> he gained from an attending the event and speaking with a friend who uses Shopify.</p>\n<p>We discuss what happened to WordPress’ ease of use, which user segment the project is developed for, and how can it provide an end-to-end user experience that’s on par with SaaS offerings like SquareSpace or Wix. We also talk about the challenges associated with setting up a WordPress site after the installation process. Last but not least, we discuss why some people are not recommending WordPress to friends or family anymore.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="https://wptavern.com/donatewc-reaches-fundraising-goal">DonateWC Reaches Fundraising Goal</a><br />\n<a href="https://wptavern.com/wordcamp-for-publishers-videos-now-available-on-youtube">WordCamp for Publishers Videos Now Available on YouTube</a><br />\n<a href="https://wptavern.com/apply-filters-podcast-to-be-retired-after-83-episodes">Apply Filters Podcast to be Retired after 83 Episodes</a><br />\n<a href="https://wptavern.com/facebook-to-re-license-react-after-backlash-from-open-source-community">Facebook to Re-license React after Backlash from Open Source Community</a><br />\n<a href="https://wptavern.com/wordpress-explores-a-javascript-framework-agnostic-approach-to-building-gutenberg-blocks">WordPress Explores a JavaScript Framework-Agnostic Approach to Building Gutenberg Blocks</a><br />\n<a href="https://wptavern.com/si-captcha-anti-spam-plugin-permanently-removed-from-wordpress-og-due-to-spam-code">SI CAPTCHA Anti-Spam Plugin Permanently Removed from WordPress.org Due to Spam Code</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href="https://make.wordpress.org/plugins/2016/02/12/on-the-topic-of-selling-your-plugins/">Otto shares tips and advice on selling plugins</a>.</p>\n<p><a href="https://en.wikipedia.org/wiki/Metroid:_Samus_Returns">Metroid: Samus Returns</a> and Nintendo 3DS.</p>\n<p><a href="http://amyciavolino.com/assets/MindfulCommunicationInCodeReviews.pdf">Mindful Communication in Code Reviews by Amy Ciavolino</a>.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, October 4th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank" rel="noopener">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="https://wptavern.com/feed/podcast" target="_blank" rel="noopener">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank" rel="noopener">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #289:</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:"Wed, 27 Sep 2017 22:37:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:95:"WPTavern: WordPress.com Adds Google Photos Integration, Available Now for Jetpack-Enabled Sites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=75084";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordpress-com-adds-google-photos-integration-available-now-for-jetpack-enabled-sites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3566:"<p>WordPress.com now supports <a href="https://en.blog.wordpress.com/2017/09/26/upload-once-blog-anywhere-photos-from-google/" rel="noopener" target="_blank">seamless integration between Google Photos and the WordPress media library</a>. Users can connect their Google accounts to have access to their photos when inserting an image.</p>\n<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-27-at-3.39.22-PM.png?ssl=1"><img /></a></p>\n<p><a href="https://www.google.com/photos/" rel="noopener" target="_blank">Google Photos</a> has gained popularity due to its automatic tagless organization and free, unlimited backup for photos and videos up to 16MP and 1080p HD. In May 2017, the service reported <a href="https://www.blog.google/products/photos/google-photos-500-million-new-sharing/" rel="noopener" target="_blank">500 million monthly users</a> backing up more than 1.2 billion photos and videos per day.</p>\n<p>When inserting pictures on WordPress.com, users can also take advantage of Google’s smart image searching capabilities. The service is fairly good at recognizing what is in your images and where they were taken, even if you haven’t specifically categorized them or added descriptions.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-27-at-3.46.51-PM.png?ssl=1"><img /></a></p>\n<p>The new Google Photos integration is also available for Jetpack-enabled sites when posting via the WordPress.com interface. (It is not available in wp-admin of self-hosted sites.) Unfortunately, this experience is still rather buggy. After adding photos, WordPress.com didn’t seem to be able to save drafts and it was also unable to display the most recent photos from the past week.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-27-at-1.44.52-PM-e1506544898526.png?ssl=1"><img /></a></p>\n<p>Users should also note that when you authenticate with Google Photos, it will open access to the photos from every single site that you have connected to that particular WordPress.com account. This access is, however, is limited to the specific user who connected. Multiple users on a site will each need to authenticate separately and can connect their own Google accounts. The users do not have access to each other’s photos. It’s also easy to revoke access at <a href="https://wordpress.com/sharing/" rel="noopener" target="_blank">wordpress.com/sharing</a>.</p>\n<p>The new Google Photos feature has been very well received by WordPress.com users, as it saves them the trouble of downloading images from the service and then uploading to their media libraries. It’s not quite as convenient for Jetpack-enabled sites, because it adds additional steps to the publishing process.</p>\n<p>“Excellent feature, but will it be available directly from self-hosted sites without using WordPress.com?” one user asked. “This cuts out so many steps in our publishing workflow, but then adds several more if we then need to login to WordPress.com to do this. Our admin setup is complex, so switching to editing here isn’t an option. I have multiple contributors who write directly and this would be a game changer if they could directly upload their images from their account.”</p>\n<p>A WordPress.com representative confirmed that there are currently no plans to support a standalone version in Jetpack. They are, however, looking at supporting other services, such as Flickr, in the future.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Sep 2017 22:17: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:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:50:"WPTavern: Camp Press – A Detox from Digital Life";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=75139";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/camp-press-a-detox-from-digital-life";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3381:"<p>The following is a guest post by Brad Williams who shares his experience at <a href="https://camp.press/">Camp Press</a> this past weekend. Brad is the Co-Founder and CEO of the website design and development agency <a href="https://webdevstudios.com">WebDevStudios</a>.</p>\n<p>He is also a co-author of the Professional WordPress book series. Brad is a US Marine Corps veteran and has been developing websites for over 20 years, including the last 10 where he has focused on open-source technologies like WordPress.</p>\n<hr />\n<img />Brad Williams at Camp Press\n<p>I’ve been to a number of WordCamps and tech-related events over the years. They all follow a similar pattern of speakers, panels, sponsors, after-parties, etc. We’ve all been to these types of events and generally know what to expect; so when <a href="https://twitter.com/ifyouwillit?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor">Mendel Kurland</a> pitched the idea of <a href="https://camp.press/">Camp Press</a> to me as ‘geeks camping,’ I was intrigued.</p>\n<p>I went to Camp Press with no idea of what to expect. I honestly have never felt less prepared for an event as I did for this one. I like to plan. So, going to an event where I wasn’t 100% sure how it would work had me feeling nervous. What I soon realized is that I liked being pushed out of my ‘safety bubble.’</p>\n<p>The Camp Press location was absolutely amazing and truly helped make the event special. We stayed at a large summer camp style setup, about an hour outside of Oklahoma City called Fry Lake. If you aren’t familiar with Oklahoma, just imagine driving an hour from a large city to the middle of nowhere. Perfect.</p>\n<p>Fry Lake had cabins, shower and bathroom facilities, an amazing swimming lake with diving boards, and a full cafeteria kitchen. We were literally back at the type of summer camp we experienced as kids, and we immediately knew it.</p>\n<img />Camp Press Fire\n<p>As we learned more about each other, we quickly became more comfortable as a group. We shared stories, laughed, cooked, and debated topics from tech to TV shows. We discussed very personal struggles and experiences, some of which I would guess haven’t been shared outside of close family. We sang songs around the campfire, performed late-night improv, made s’mores, and enjoyed each other’s company.</p>\n<p>Even more amazing is that nothing was scripted. There was no agenda, set activities, presentations. It was just natural interaction. Over the course of a few days, we all grew closer to each other. There was an unspoken bond forming between everyone at Camp Press.</p>\n<p>I didn’t know what to expect going to <a href="https://camp.press/">Camp Press</a>. What I promptly learned is that was the entire point of the event—doing the unexpected, pushing yourself outside of your comfort zone, making new friends, having fun and serious conversations, and doing all of this without the normal technology that is always around us.</p>\n<p>When is the last time you had a detox from digital life? My detox was last weekend, and I can’t wait to do it again!</p>\n<img />Camp Press Attendees\n<p>For more insight into Camp Press and to get Mendel’s perspective, check out the event’s <a href="https://camp.press/general/inaugural-camp-press-2017-huge-success/">official blog post</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, 27 Sep 2017 22:12: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:3;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Dev Blog: Global WordPress Translation Day 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:34:"https://wordpress.org/news/?p=4915";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"https://wordpress.org/news/2017/09/global-wordpress-translation-day-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:3298:"<p><span>On September 30 2017, the WordPress Polyglots Team – whose mission is to translate WordPress into as many languages as possible – will hold its third <a href="https://wptranslationday.org/">Global WordPress Translation Day</a>, a 24-hour, round-the-clock, digital and physical global marathon dedicated to the localisation and internationalisation of the WordPress platform and ecosystem, a structure that powers, today, over 28% of all existing websites.</span></p>\n<p><span>The localisation process allows for WordPress and for all WordPress-related products (themes and plugins) to be available in local languages, so to improve their accessibility and usage and to allow as many people as possible to take advantage of the free platform and services available.</span></p>\n<p><span>In a (not completely) serendipitous coincidence, September 30 has also been declared by the United Nations “International Translation Day”, to pay homage to the great services of translators everywhere, one that allows communication and exchange.</span></p>\n<p><span>The event will feature a series of multi-language live speeches (training sessions, tutorials, case histories, etc.) that will be screen-casted in streaming, starting from Australia and the Far East and ending in the Western parts of the United States.</span></p>\n<p><span>In that same 24-hour time frame, Polyglots worldwide will gather physically in local events, for dedicated training and translations sprints (and for some fun and socializing as well), while those unable to physically join their teams will do so remotely.</span></p>\n<p><span>A big, fun, useful and enlightening party and a lovely mix of growing, giving, learning and teaching, to empower, and cultivate, and shine.</span></p>\n<p><span>Here are some stats about the first two events:</span></p>\n<p><b>Global WordPress Translation Day 1</b></p>\n<ul>\n<li><span> </span><span>448 translators worldwide</span></li>\n<li><span> </span><span>50 local events worldwide</span></li>\n<li><span> </span><span>54 locales involved</span></li>\n<li><span> </span><span>40350 strings translated, in</span></li>\n<li><span> </span><span>597 projects</span></li>\n</ul>\n<p><b>Global WordPress Translation Day 2</b></p>\n<ul>\n<li><span> </span><span>780 translators worldwide</span></li>\n<li><span> </span><span>67 local events worldwide</span></li>\n<li><span> </span><span>133 locales involved</span></li>\n<li><span> </span><span>60426 strings translated, in</span></li>\n<li><span> </span><span>590 projects</span></li>\n</ul>\n<p><span>We would like your help in spreading this news and in reaching out to all four corners of the world to make the third #WPTranslationDay a truly amazing one and to help celebrate the unique and fundamental role that translators have in the Community but also in all aspects of life.</span></p>\n<p><span>A full press release is available, along with more information and visual assets at </span><a href="https://wptranslationday.org/press/"><span>wptranslationday.org/press</span></a>.</p>\n<p><span>For any additional information please don’t hesitate to contact the event team on </span><a href="mailto:[email protected]"><span>[email protected]</span></a><span>.</span></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Sep 2017 11:56:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:36:"HeroPress: Challenge Gladly Accepted";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=2129";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:124:"https://heropress.com/essays/challenge-gladly-accepted/#utm_source=rss&utm_medium=rss&utm_campaign=challenge-gladly-accepted";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:8986:"<img width="960" height="480" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/09/092717-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: I could never have imagined that WordPress would become an important part of my life." /><p>I grew up in a suburb to Stockholm, where me and my brothers would wrestle over who was allowed to use our first PC. I think it was a pre-owned old beaten Compaq Deskpro 386. We only stopped arguing once we could sit down together and play Civ; one of us at the controls, the others giving advice on what moves to make.</p>\n<h3>Dipping Into The Web</h3>\n<p>I learnt HTML and built my first pages on Geocities and out of necessity: I needed a place to publish my angsty teenage poetry. But people didn’t come to my website for the bad poetry, instead they filled my guestbook with webdesign and HTML questions.</p>\n<p>I have built websites for myself and others since the mid 90’s and kept a few clients on the side while studying. At this time, there was not a lot of computer or programming classes available for high school students. It had been easy enough to learn HTML online by reading guides, message boards and similar. During one of my final semesters, my school announced a new class called “Computers for girls”. I signed up hoping to learn enough to assemble or upgrade my own PC. The class was a joke. Instead of teaching us about motherboards, memory or networks, our teacher showed us where to put the cords…</p>\n<p>He didn’t realise that most of us already spent every recess in the computer halls, chatting over IRC. In order to learn the basics of actual programming (not just HTML), I had to take adult education evening- and summer classes since my school didn’t offer any.</p>\n<h3>Derailed</h3>\n<p>After high school I did like many others of my generation: I fell in love with someone I had only met online, who lived on the other side of the world. All to the soundtrack of Savage Garden’s “I Knew I Loved You”.</p>\n<div class="jetpack-video-wrapper"></div>\n<p>It took all my savings and courage to travel back and forward between Sweden and the US, while studying from a distance.</p>\n<blockquote><p>When my boyfriend suddenly passed away in 2001 I had to make drastic changes in my life.</p></blockquote>\n<p>I was in the middle of moving, I couldn’t keep up with deadlines or deal with clients, and I was barely able to finish my project managing and programming classes. I had to forget all our plans, start over, and take a desk job instead.</p>\n<h3>Coming Back To The Web</h3>\n<p>Many years later one of my former clients asked if I had tried WordPress. It took me a few months to decide if I liked it or not, partially because I didn’t know PHP, and because I didn’t have great experiences from trying Joomla and Drupal.</p>\n<p>I did some customization work and eventually I submitted my first theme to WordPress.org. Of course my theme was a mess and did not even work as expected.</p>\n<blockquote><p>But I appreciated that someone took the time to look at my code and explain what I needed to do to fix it and where I could read more. It was very rare to receive such feedback.</p></blockquote>\n<p>I joined the Theme Review Team’s mailing list, listening in and learning. I started reviewing themes to learn more and to improve my own themes.</p>\n<p>For those who do not know what the Theme Review Team does, we test and review the code (every single file) of themes that are submitted to be included in the WordPress.org theme directory.</p>\n<h3>My Secret Power</h3>\n<p>Because I am on the autism spectrum, the structure and patterns of coding languages suits me well. I need both structure and a creative outlet in my life, and coding is therapy, much like a puzzle or a coloring book. I love my once dreaded desk job, because it gives me the opportunity to help people on a different scale than I ever could as a freelancer. Being a volunteer on WordPress.org lets me combine both worlds.</p>\n<p>I could never have imagined that WordPress would become an important part of my life, that I would spend this much time on it (sometimes up to 20 hours per week), or that I would be asked to be one of the team leads for the Theme Review Team in 2017.</p>\n<p>Today I honestly don’t know what I would do if I could no longer contribute to WordPress the way I know and am familiar with. It is an essential part of my everyday life.</p>\n<p>WordPress is also challenging because you can only do so much without interacting with others… And even though I find that difficult, I have had to learn that it is something I need as well.</p>\n<blockquote><p>I have to remind myself from time to time that here, I am allowed to be myself, with all my flaws, to contribute as much or as little as I choose, at my own pace.</p></blockquote>\n<p>And to be able to contribute and to help others, I also have to remind myself that people are not scary.</p>\n<h3>And Then WordCamp</h3>\n<p>I was a volunteer online for 6 years before I had the courage to go to my first WordCamp, which took place in my own home town. When I was finally there, I only spoke to 3 or 4 people. My second WordCamp went better, but the experience was still overwhelming.</p>\n<p>During my third WordCamp, which was WCEU 2017, I helped lead the Theme Review section of the contributor day, having to speak in front of 500 people.</p>\n<blockquote><p>The thing is, even when it overwhelms you, this community and its energy is addicting.</p></blockquote>\n<p>Everything changes once you go to your first meetup or WordCamp, meeting people who share your interest and passion. The community at large is open and welcoming, passionate, curious and caring. And it is trying to be a safe place for us all.</p>\n<h3>The Theme Review Team</h3>\n<p>There always seem to be a lot of opinions and even controversy surrounding the Theme Review Team. It is not always easy to handle the pressure and the amount of responsibility that is placed on you because so many people have a financial interest in WordPress themes. As a team lead or moderator, you often have to try to find the least bad solution to many different kind of situations.</p>\n<p>By the end of September, it is time for the current team leads to step back and welcome our next leads. I am looking forward to the break, but also to see what new ideas they will bring.<br />\nIt takes time to change a system that has been in place for this many years, and truthfully, sometimes it is painfully slow. It has proven difficult to find a system where themes without errors can be added to the directory quickly, and where reviewers can support authors who need extra help.</p>\n<p>This amazing team of volunteers has managed to reduce the queue time from 7 months down to 8-10 weeks. We still hope to be able to reduce it further, possibly by automating parts of the code review.</p>\n<p>Finally, the Theme Review Team is open to everyone and always looking for new volunteers.</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: Challenge Gladly Accepted" class="rtsocial-twitter-button" href="https://twitter.com/share?text=Challenge%20Gladly%20Accepted&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fchallenge-gladly-accepted%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: Challenge Gladly Accepted" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fchallenge-gladly-accepted%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%2Fchallenge-gladly-accepted%2F&title=Challenge+Gladly+Accepted" rel="nofollow" target="_blank" title="Share: Challenge Gladly Accepted"></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/challenge-gladly-accepted/&media=https://heropress.com/wp-content/uploads/2017/09/092717-150x150.jpg&description=Challenge Gladly Accepted" rel="nofollow" target="_blank" title="Pin: Challenge Gladly Accepted"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/challenge-gladly-accepted/" title="Challenge Gladly Accepted"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/challenge-gladly-accepted/">Challenge Gladly Accepted</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, 27 Sep 2017 00:00:54 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Carolina Nymark";s: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:122:"WPTavern: WordPress Core JavaScript Framework Selection Discussion Continues with Input from Open Source Community Leaders";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=75086";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:133:"https://wptavern.com/wordpress-core-javascript-framework-selection-discussion-continues-with-input-from-open-source-community-leaders";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:10632:"<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/javascript.jpg?ssl=1"><img /></a></p>\n<p>WordPress’ #core-js Slack channel hosted a lively and productive meeting this morning led by Andrew Duthie. The discussion focused less on specific framework comparisons and more on the role a framework will play in building JavaScript-powered interfaces for WordPress. Contributors were joined by core developers and leaders from the React and Vue communities, Chrome engineers, and other interested parties from outside the WordPress community.</p>\n<p>“This chat will focus largely on identifying requirements in building core features, overlap with plugin and theme authors, and patterns to reducing framework lock-in,” Duthie said. “Ideally this is higher-level than simply debating the merits of specific frameworks in a vacuum, and should be seen as an opportunity to collaborate between projects to set a path forward for WordPress which will provide flexibility and resiliency to future churn.”</p>\n<p>Duthie began by asking what role a framework should play in a WordPress developer’s workflow and also asked framework contributors to offer their perspectives on recommendations for extendable interfaces. This question provided attendees with the opportunity to weigh in on topics such as <a href="https://github.com/WordPress/gutenberg/pull/2791" rel="noopener" target="_blank">support for web components</a>, <a href="https://github.com/WordPress/gutenberg/pull/2463" rel="noopener" target="_blank">framework-agnostic block interoperability</a> for Gutenberg, and how this might affect WordPress’ plugin ecosystem.</p>\n<p>“I disagree a bit with the idea that whatever core (in this case Gutenberg) uses to power some of the intricacies of building a stateful app is going to be the de facto standard for plugin development,” Gutenberg engineer Matías Ventura said. “The actual framework here, in general terms, is going to be what WordPress exposes and the APIs.”</p>\n<p>With a framework-agnostic approach to building Gutenblocks, the library that core decides to build on doesn’t have to become the de facto standard for plugin developers but many outside the Gutenberg team believe that it will inevitably end up that way in practice. There are entire teams of engineers waiting on this decision that are committed to adopt whichever framework WordPress bets on.</p>\n<p>“To provide some perspective on how WP’s decision on a framework impacts developers downstream, I’m a developer at Boston University and our plan is to focus on whichever framework WP decides upon, even if Gutenberg has a completely agnostic API,” Adam Pieniazek said. “We’re primarily a WP shop (~ 1,000 site WP install powers most/a lot of our public web presence) and end up creating huge customizations on top of WP that often require diving into core to see what is actually happening in the background. I like Vue more than React personally, but if WP decides upon React, BU will focus on building expertise in React for when we need to peek/debug beyond the API. It doesn’t mean we won’t also use Vue but it won’t be our primary focus.”</p>\n<p>Pieniazek feedback echoes that of Gravity Forms co-founder Carl Hancock, who said his team is ready to adopt whatever library WordPress selects.</p>\n<p>“People are going to end up adopting whatever core uses for the most part despite the rainbows and butterflies some are claiming as it relates to creating an abstraction layer so plugin/theme developers can use whatever they want,” Hancock said in the #core-js channel earlier this week.</p>\n<p>Many participants from outside the WordPress community seemed to be in agreement with a framework-agnostic approach and none were eager to force a single framework on all developers working with WordPress. The remaining concern is how this works out practically and whether it puts developers in the confusing position of using a framework on top of a framework.</p>\n<p>“Since Gutenberg itself is going to become a platform to build for, the best level of separation is if the framework is used to build the core, but isn’t exposed as API to block builders,” AMP engineer Paul Bakaus said. “This gives one the choice to replace the underlying foundation whenever necessary.”</p>\n<p>Gutenberg engineer Riad Benguella summarized the approach the team has been discussing:</p>\n<blockquote><p>I think what we try to communicate is something like:</p>\n<p>– WordPress Core is going to use this X framework internally<br />\n – If you want to use it, we think it’s good<br />\n – If you want to use something else, you can just as easily as you’d use the Core’s chosen framework</p></blockquote>\n<p>Benguella also said that one of the goals for Gutenberg is “to set the basis for how we extend WordPress’ UI in the future.” Once it ships, the team will likely set its sights on other parts of the wp-admin and build them in the same way.</p>\n<p>“If all parts of WP’s UI can be extended via a standard interface, whether it be a simple ‘data down, events up’ API, or expecting a WC, I think this would cleanly separate the concerns of ‘what framework to use for core’ vs. ‘what framework to use for extension development,\'” Vue.js creator Evan You said.</p>\n<p>When asked for his thoughts on on React becoming a primary framework for WordPress, React maintainer Dan Abromov was hesitant to advocate for WordPress adopting the library. His response underscored the necessity of having a framework-agnostic approach for extending Gutenberg and future WP interface overhauls.</p>\n<p>“I don’t really know WordPress well, so it’s hard for me to say whether it’s a great fit for the use case or not,” Abramov said. “Generally we use React for highly interactive UIs and find that it scales well with the app size. I’m also happy to answer technical questions about it. But I think in general people have strong opinions about, for example, templating vs expressiveness, and I don’t feel like forcing React upon everyone is the best way.”</p>\n<p>“I also feel the same way,” Evan You said. “Forcing a single framework on everyone, regardless of which one, is IMO not a good idea because it is bound to alienate the group of devs who are not into that framework, and imposes a bigger long term stability risk.”</p>\n<p>Abramov also said that people are already “very bitter and divisive” about the subject of selecting a framework. He also tweeted a similar sentiment prior to the meeting.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">When I read discussion threads (e.g. about WordPress) there’s a sense that people perceive every team as hostile to others. That’s false.</p>\n<p>— Dan Abramov (@dan_abramov) <a href="https://twitter.com/dan_abramov/status/912645022344007682">September 26, 2017</a></p></blockquote>\n<p></p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">Think of it like tending a garden. You’re welcome to hang out at ours. Other gardens are great too <img src="https://s.w.org/images/core/emoji/2.3/72x72/1f642.png" alt="🙂" class="wp-smiley" /></p>\n<p>— Dan Abramov (@dan_abramov) <a href="https://twitter.com/dan_abramov/status/912653828977254401">September 26, 2017</a></p></blockquote>\n<p></p>\n<p>“I believe it’s important (and technically feasible) to separate ‘which framework to use for core’ and ‘which framework community devs use for extensions,\'” Evan You said.</p>\n<p>“Yes, I think there’s a goal here to be unopinionated for what we’re exposing to plugin authors, so long as the APIs/interfaces we do expose are sufficiently flexible (and easy) to build the UIs and interactions they need to implement,” Andrew Duthie said.</p>\n<p>The topic of <a href="https://github.com/WordPress/gutenberg/pull/2791" rel="noopener" target="_blank">supporting web components interoperability for Gutenblocks</a> was also part of the discussion during the meeting.</p>\n<p>“While less powerful than most of the actual frameworks at this point, they are likely to become a W3C standard, ensuring that they will stick around and evolve,” Felix Arntz said. “Plus once browser support is fully there, there’s less functionality to implement by an actual framework built on top.”</p>\n<p>Polymer.js representative Justin Fagnani said he disagreed that they are “less powerful” and noted that web components already are a W3C standard.</p>\n<p>“I think WP is also uniquely positioned to help drive forward support for web components natively everywhere,” EventEspresso core dev Darren Ethier said. “Pretty much all the frameworks have the ability to work with the web component spec now. It’s just a matter of proper implementation.”</p>\n<p>Several participants referenced <a href="https://custom-elements-everywhere.com/" rel="noopener" target="_blank">custom-elements-everywhere.com</a>, a site that displays popular JS frameworks’ progress on communicating Custom Elements in a way that promotes interoperability. Matías Ventura asked React and Vue core devs how web components (and their future) fit into each framework at the moment.</p>\n<p>“In React, we have some web component support but haven’t made it a large priority since use cases have seemed slim in the past, especially since adding Web Components hasn’t made a lot of sense in a first-party application where you control the whole stack – but we do have some support for them nonetheless and I’m happy to entertain adding more, either now or in the future,” Sophie Alpert said.</p>\n<p>“On the high level I think frameworks like React/Vue provide what is not really addressed in web components: efficient and declarative DOM updates reacting to state changes,” Evan You said. “This is also why Polymer exists on top of WC. I have always acknowledged the value of WC as an interop interface.”</p>\n<p>Overall, attendees at the meeting were respectful, collaborative, and eager to contribute their expertise to help WordPress contributors find the best way forward in the framework selection process. The discussion will continue at next week’s meeting and likely in the comments of a forthcoming Make/Core post summarizing the meeting.</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, 26 Sep 2017 22:16:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:93:"WPTavern: SI CAPTCHA Anti-Spam Plugin Permanently Removed from WordPress.org Due to Spam Code";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=75059";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:103:"https://wptavern.com/si-captcha-anti-spam-plugin-permanently-removed-from-wordpress-og-due-to-spam-code";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4092:"<p>The <a href="https://wordpress.org/plugins/si-captcha-for-wordpress/" rel="noopener" target="_blank">SI CAPTCHA Anti-Spam</a> plugin has been removed from the WordPress Directory due to its author including spam code. The plugin added a CAPTCHA image test to WordPress forms to prevent spam and was compatible with forms generated by bbPress, BuddyPress, Jetpack, and WooCommerce. It had more than 300,000 active installs at the time of removal.</p>\n<p><a href="https://profiles.wordpress.org/mikechallis" rel="noopener" target="_blank">Mike Challis</a>, the original author of the plugin, said that a WordPress.org user named “<a href="https://profiles.wordpress.org/fastsecure" rel="noopener" target="_blank">fastsecure</a>” became the new owner of SI CAPTCHA Anti-Spam in June 2017. Challis was not aware of the new owner’s plans for the plugin but <a href="https://wordpress.org/support/topic/where-did-the-plugin-go-2/" rel="noopener" target="_blank">posted a notice</a> on the WordPress.org support forums to inform users about why it was removed.</p>\n<p>“The new owner attempted to put code in several of his newly acquired WordPress plugins that would connect to a 3rd party server he also owned and place spam ads for payday loans and such in the WP posts,” Challis said. He also linked the incident to a ring of WordPress plugins that researchers at Wordfence say were part of a <a href="https://www.wordfence.com/blog/2017/09/coordinated-plugin-spam/" rel="noopener" target="_blank">coordinated spam campaign</a>. Display Widgets, one of the most notable plugins in this group, was recently <a href="https://wptavern.com/display-widgets-plugin-permanently-removed-from-wordpress-org-due-to-malicious-code" rel="noopener" target="_blank">permanently removed from WordPress.org</a> for a series of violations wherein the author had injected malicious code.</p>\n<p>Challis said the new owner failed to display any spam on sites due to how the code was implemented, but the code could have been activated at a later time:</p>\n<blockquote><p>The new owner put spam code in versions 3.0.1 and 3.0.2 but it failed to display any spam because he put the code in the secureimage.php file. The malicious code required WordPress libraries to also be loaded to execute. The reason the spam code did not do anything at all is because the secureimage.php file is not included in the WordPress run time environment. The secureimage.php file is included from another file securimage_show.php that loads the captcha image directly from html img src outside of the WordPress run time. The spam code in this plugin was never activated, it would not have corrupted your posts or changed anything in the WordPress database.</p></blockquote>\n<p>SI CAPTCHA Anti-Spam users who still have the plugin installed may see an update available in the WordPress admin. Plugin team member Samuel (Otto) Wood removed the malicious code and <a href="https://wordpress.org/support/topic/where-did-the-plugin-go-2/" rel="noopener" target="_blank">released 3.0.3</a> as a clean version that is a safe update for users who still rely on the plugin. Wood recommends users find an alternative, because SI CAPTCHA Anti-Spam will not be re-listed in the directory or receive any future updates.</p>\n<p>The incident is another reminder for users to be on alert when WordPress.org plugins change hands, as the buyers do not always disclose their actual intentions for the plugin. Users in search of an alternative to SI CAPTCHA Anti-Spam will find many alternative options on WordPress.org. <a href="https://wordpress.org/plugins/cleantalk-spam-protect/" rel="noopener" target="_blank">AntiSpam by CleanTalk</a>, <a href="https://wordpress.org/plugins/simple-google-recaptcha/" rel="noopener" target="_blank">Simple Google reCAPTCHA</a>, and <a href="https://wordpress.org/plugins/captcha-code-authentication/" rel="noopener" target="_blank">CAPTCHA Code</a> are a few examples that may work as replacements, depending on what other plugins you need the anti-spam capabilities to support.</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, 25 Sep 2017 21:50:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"WPTavern: Facebook to Re-license React after Backlash from Open Source 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=75021";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/facebook-to-re-license-react-after-backlash-from-open-source-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:4566:"<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2015/12/react.png?ssl=1"><img /></a></p>\n<p>Facebook has <a href="https://code.facebook.com/posts/300798627056246/relicensing-react-jest-flow-and-immutable-js/" rel="noopener" target="_blank">announced</a> its intentions to re-license React, Jest, Flow, and Immutable.js under the MIT license. React community members began rallying around a <a href="https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies" rel="noopener" target="_blank">petition to re-license React</a> after the Apache Software Foundation (ASF) added Facebook’s BSD+Patents license to its Category X list of disallowed licenses for Apache PMC members. Facebook’s engineering directors officially denied the request in mid-August, citing the burden of meritless patent litigation as the reason for keeping the patents clause.</p>\n<p>Facebook moved forward on this decision in full recognition that it might lose some React community members as a consequence. Many open source project maintainers began to look for alternatives. In a surprising move, Matt Mullenweg announced that <a href="https://wptavern.com/wordpress-abandons-react-due-to-patents-clause-gutenberg-to-be-rewritten-with-a-different-library" rel="noopener" target="_blank">WordPress would also be parting ways with React</a> and planned to remove it from the upcoming Gutenberg editor.</p>\n<p>Mullenweg’s decision to drop React from consideration for WordPress was likely an influential factor in Facebook’s eventual about-face on the topic of re-licensing the project. Facebook’s announcement on Friday acknowledges that the company failed to convince the open source community of the benefits of its BSD + Patents license:</p>\n<blockquote><p>We’re relicensing these projects because React is the foundation of a broad ecosystem of open source software for the web, and we don’t want to hold back forward progress for nontechnical reasons. </p>\n<p>This decision comes after several weeks of disappointment and uncertainty for our community. Although we still believe our BSD + Patents license provides some benefits to users of our projects, we acknowledge that we failed to decisively convince this community.</p></blockquote>\n<p>The React 16 release, slated for this week, will ship with the updated MIT license. Facebook declined to respond to our request for further comment and said their post is the only public statement they will be providing.</p>\n<p>It’s not yet clear whether WordPress will continue on with React, picking up where the team left off on Gutenberg, or shift to another library. Core contributors had originally <a href="https://twitter.com/nacin/status/911356481936740352" rel="noopener" target="_blank">decided on React</a> while attending WordPress’ community summit in Paris last June, although this decision had not yet been made public when the greater open source community started petitioning Facebook to re-license React.</p>\n<p>“I’m just so tired of this drama,” Gutenberg engineer Riad Benguella said. “We spent days and days thinking about the best framework for WP, and this change will just add more thinking, complexity, and uncertainty to our decision. I’m just tired of all this…we all have to rethink everything.”</p>\n<p>Mullenweg, who had previously penned a several-thousand word unpublished announcement about how WordPress would be adopting React, did not confirm whether WordPress is still examining other libraries.</p>\n<p>“Our decision to move away from React, based on their previous stance, has sparked a lot of interesting discussions in the WordPress world,” Mullenweg said in a <a href="https://ma.tt/2017/09/facebook-dropping-patent-clause/" rel="noopener" target="_blank">post</a> published to his blog this weekend. “Particularly with Gutenberg there may be an approach that allows developers to write Gutenberg blocks (Gutenblocks) in the library of their choice including Preact, Polymer, or Vue, and now React could be an officially-supported option as well.”</p>\n<p>The regularly scheduled core JavaScript meeting is set for Tuesday, September 26 at 15:00 GMT and contributors plan to discuss the role a JS framework will play in current and future core focuses. The time has been changed to be two hours later than originally planned in an effort to accommodate more contributors across various timezones.</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, 25 Sep 2017 16:53:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:37:"Matt: Facebook Dropping Patent Clause";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=47574";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"https://ma.tt/2017/09/facebook-dropping-patent-clause/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1326:"<p>I am surprised and excited to see the news that Facebook is going to drop the <a href="https://ma.tt/2017/09/on-react-and-wordpress/">patent clause that I wrote about last week</a>. They’ve announced that with React 16 the license will just be <a href="https://code.facebook.com/posts/300798627056246/relicensing-react-jest-flow-and-immutable-js/">regular MIT with no patent addition</a>. I applaud Facebook for making this move, and I hope that patent clause use is re-examined across all their open source projects.</p>\n<p>Our decision to move away from React, based on their previous stance, has sparked a lot of interesting discussions in the WordPress world. Particularly with <a href="https://github.com/WordPress/gutenberg">Gutenberg</a> there may be an approach that allows developers to write Gutenberg blocks (Gutenblocks) in the library of their choice including Preact, Polymer, or Vue, and now React could be an officially-supported option as well.</p>\n<p>I want to say thank you to everyone who participated in the discussion thus far, I really appreciate it. The vigorous debate and discussion in the comments here and on Hacker News and Reddit was great for the passion people brought and the opportunity to learn about so many different points of view; it was even better that Facebook was listening.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 24 Sep 2017 16:20:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:87:"WPTavern: Scott Bolinger Shares Unique Perspective of WordPress From Outside the Bubble";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=75015";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/scott-bolinger-shares-unique-perspective-of-wordpress-from-outside-the-bubble";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5058:"<p>Scott Bolinger, a product developer focused on the WordPress space who has created several products, including <a title="Make native iOS and Android Apps with WordPress" href="https://apppresser.com" target="_blank" rel="noopener">AppPresser </a>and <a href="https://hollerwp.com/">Holler Box</a>, recently attended <a href="http://contentandcommercesummit.com/">Content and Commerce Summit 2017</a>.</p>\n<p>This conference focuses on what’s working in eCommerce, digital media, information publishing, and subscription commerce. <a href="http://scottbolinger.com/perspective-on-wordpress/">According to Bolinger</a>, WordPress and WooCommerce were not topics of discussion.</p>\n<p>“It really opened my eyes going to an event where no one even said the word WordPress once,” Bolinger said. “The audience at this conference was non-technical, mostly marketers selling stuff online. I watched a presentation where the presenter had slides with 20+ different recommended tools on them, and not a single mention of WordPress.</p>\n<p>“This is an eCommerce conference, WooCommerce is 41% of all eCommerce stores, and not a single person said the word WooCommerce. All I heard about was Shopify and Amazon.”</p>\n<p>According to <a href="https://www.similartech.com/">SimilarTech</a>, WooCommerce is leading in the top 100K sites, top 1M sites, and the entire web while Shopify is leading in the top 10K sites. While Shopify has a lot less market share, it’s used on substantially higher trafficked sites.</p>\n<p>Bolinger shared the perspective of a friend who uses Shopify to sell clothing and will gross more than $1M in revenue this year. According to his friend, Shopify is easy to use, from setting up a theme, to the plugin/app ecosystem to add functionality.</p>\n<p>“When my friend said Shopify is easy to use, this is a whole different category of great user experience,” Bolinger said. “This is building a site from scratch for a completely non-technical user, and them loving the end result and the experience.”</p>\n<p>Bolinger raised an interesting point in that, Wix, Shopify, and SquareSpace are closed, SaaS offerings where they can control the user experience from end-to-end. This is impossible to do with WordPress because there are too many moving parts and core can not control how plugins and themes take part in that experience.</p>\n<p>While WordPress core can’t necessarily solve the problem, it hasn’t stopped webhosts from trying. <a href="https://wptavern.com/godaddy-launches-new-onboarding-experience-for-wordpress-customers">GoDaddy</a>, <a href="https://www.bluehost.com/blog/bluehost-news/welcome-to-the-new-bluehost-8973/">Bluehost</a>, and others have created onboarding solutions that try to control the end-to-end user experience.</p>\n<p>Bolinger shared a sentiment that many in the WordPress community have advocated in recent years. “If we’re honest, the strength of WordPress is not that it’s easy to use for non-technical people. It’s an open-source platform that is easy for developers to extend and customize for clients.”</p>\n<ul>\n<li><a href="https://mattreport.com/wordpress-is-not-easy/">WordPress is Not Easy</a></li>\n<li><a href="https://mor10.com/wordpress-easy-thats-ok/">WordPress is not easy – and that’s OK</a></li>\n<li><a href="https://neliosoftware.com/blog/is-wordpress-as-easy-as-we-think/">Is WordPress As Easy As We Think?</a></li>\n</ul>\n<p>There was a time, somewhere between WordPress 2.3 and WordPress 3.5, where one of the main reasons people used WordPress was because it was easy. Between then and now, what caused WordPress to lose its ease-of-use factor?</p>\n<p>SquareSpace, Wix, and Shopify didn’t exist in the early days of WordPress, they were late to market. This gave them the advantage of implementing all the lessons learned through WordPress’ lifespan and since it’s a closed system, they can iterate rapidly.</p>\n<p>The biggest reality check that Bolinger shares is that there are a lot of people WordPress simply doesn’t cater too.</p>\n<p>“There is a large contingent of people who just want to get stuff done, they don’t want to fuss with the tech”, He said. “They don’t care about open source or owning their data. They don’t want to install a theme and setup their widgets, or search thousands of results to find the best SEO plugin.</p>\n<p>“They don’t want to set up ‘managed hosting’, an SSL certificate, or a payment gateway. They just want to sell their products and make money as fast and easily as possible.”</p>\n<p>I encourage you to <a href="http://scottbolinger.com/perspective-on-wordpress/">read the full post</a> as it provides a perspective of WordPress not often shared within the WordPress bubble. <a href="http://scottbolinger.com/perspective-on-wordpress/"></a>How does WordPress become a platform that delivers the kind of experience from end-to-end that Bolinger’s friend describes?</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 23 Sep 2017 00:43:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:98:"WPTavern: WordPress Explores a JavaScript Framework-Agnostic Approach to Building 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=74900";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:109:"https://wptavern.com/wordpress-explores-a-javascript-framework-agnostic-approach-to-building-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:9072:"<a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/blocks.jpg?ssl=1"><img /></a>photo credit: found_drama <a href="http://www.flickr.com/photos/28555778@N00/30725752376">E.’s pirate town</a> – <a href="https://creativecommons.org/licenses/by-nc-sa/2.0/">(license)</a>\n<p>The discussion regarding WordPress’ JavaScript framework selection continues in the #core-js Slack channel ahead of next week’s meeting. One of the more recent topics is the possibility of <a href="https://github.com/WordPress/gutenberg/pull/2463" rel="noopener" target="_blank">framework-agnostic block rendering</a> for Gutenberg, which would allow developers to extend the new editor using any JS library they prefer. This means that Gutenberg blocks, which are colloquially referred to as “Gutenblocks,” could be built with Vue, React, Preact, Angular, or whatever the developer feels comfortable using.</p>\n<p>Proponents of this idea contend that pursuing a more flexible approach makes WordPress’ core JS framework decision <a href="https://github.com/WordPress/gutenberg/pull/2463#issuecomment-330637007" rel="noopener" target="_blank">less critical</a>. While answering questions on the #core-js channel, Gary Pendergast explained how Gutenberg could be built to maintain the separation.</p>\n<p>“I’m really not joking when I say that this decision doesn’t matter, even for people contributing to Gutenberg,” Pendergast said. “In <a href="https://github.com/WordPress/gutenberg/pull/2463" rel="noopener" target="_blank">#2463</a>, the library is treated entirely as a utility library, much like we use lodash, for example. It performs a handful of tasks, and it can be relatively easily pulled out and replaced with something entirely different, with no disruption to the rest of the codebase. For people contributing to Gutenberg, they’re contributing in the Gutenberg coding style, not the style of whatever library we happen to import.”</p>\n<p>When asked about a timeline for when the decision will be made and what factors are being considered, Pendergast replied that there is no timeline and that those interested in participating should blog about their experiences and write examples of things they can build with the JS frameworks they are familiar with.</p>\n<p>“There is neither roadmap, nor timeline, nor does there need to be,” Pendergast said. “As Matt mentioned, it’s really just a technical decision – the important decision for the wider community was choosing ‘not React.’ Unfortunately, this decision has been blown way out of proportion, and heavily conflated with ‘what JS library will I be able to build my plugins with?’ and sometimes ‘what JS library’s practices will Gutenberg blocks resemble?,’ neither of which are related. Tweets and posts that treat it like a horse race are not helpful in this way.”</p>\n<p>Pendergast said whatever library is selected will “continue to be wrapped by the WordPress element, the underlying library won’t be exposed.” The Gutenberg team is working to remove all library dependencies from its components so that plugin developers can use any library they choose.</p>\n<p>However, other community members are not so eager to relegate the JS library selected for core to a simple technical decision or utility library.</p>\n<p>“Most developers understand that their plugins are not bound by the framework chosen for core/Gutenberg,” Kevin Hoffman said. “But that doesn’t diminish the significance of the decision. If we want to encourage more contributors, we’d be well served to choose a framework in which a significant majority feel capable and confident. If this majority is out there developing plugins with one framework and has to learn another in order to contribute to core, then we’re limiting the number of potential contributors.”</p>\n<p>Peter Booker contends that no matter how elegant Gutenberg’s separation is, having a decent understanding of the library chosen for core affects a developers’ ability to deeply troubleshoot certain issues.</p>\n<p>“I do not think we should be so dismissive of the choice as a minor technical decision,” Booker said. “Understanding how PHP, JavaScript, and Backbone (among other things) work is essential to be able to properly debug problems with WordPress. The JS framework chosen for Gutenberg is going to impact a great many people, even if we are not core contributors. It will be essential knowledge to be able to fully troubleshoot issues. This is a decision which will impact far more people than just the Gutenberg team.”</p>\n<h3>What are the implications of providing a flexible, framework-agnostic approach to building Gutenblocks?</h3>\n<p>Jason Bahl asked if anyone has tried mixing React, Preact, Vue, and Angular in a single app to see if it is “a recipe for a performance nightmare.” He posed an example scenario wherein Gravity Forms builds Vue-based Gutenblocks, Yoast has React-based blocks, WooCommerce builds blocks with Preact, and another plugin uses Ember.</p>\n<p>“It sounds kind of nice to be flexible and allow folks to use whatever but also like it could lead to a lot of division on best practices, and potentially performance issues,” Bahl said. “We’ll see tutorials pop up for how to build Gutenblocks in Vue, React, Preact, Ember, Vanilla JS, etc., which would be cool to see, but also confusing and potentially cause further divide in the community and accepted best practices. Flexibility is nice to a degree, but a strong opinion at some level is also good.”</p>\n<p>Carl Hancock, co-founder of Gravity Forms, contends that offering a framework-agnostic approach to building Gutenblocks will have little influence on developers who are extending the project. The decision cannot be made less critical by offering more flexibility, because developers will inevitably adopt whatever WordPress core uses.</p>\n<p>“People are going to end up adopting whatever core uses for the most part despite the rainbows and butterflies some are claiming as it relates to creating an abstraction layer so plugin/theme developers can use whatever they want,” Hancock said. “Which means however complex that core framework ends up being will have a direct impact on the barrier to entry for plugin and theme developers. That barrier to entry has been historically low to date and a direct contributor to the growth of WordPress as a self-hosted CMS. Dramatically raising that barrier to entry isn’t necessarily a bad thing. For example, Gravity Forms will use Preact, Vue, whatever, because we have the manpower and skillset to do so when we can finally decide to do so once core makes it’s decision.”</p>\n<h3>WordPress’ Opportunity to Advance the Web</h3>\n<p>WordPress currently powers 28% of all websites, according to <a href="https://w3techs.com/technologies/details/cm-wordpress/all/all" rel="noopener" target="_blank">W3 Techs</a>, and whatever framework it chooses will make a major impact on which library many developers decide to learn in order to extend the software and advance their careers.</p>\n<p>Matías Ventura, one of the technical leads on the Gutenberg project, encouraged participants in the discussion to look at the bigger picture and embrace the opportunity to work together and collaborate on a solution for WordPress that will advance the web. The team’s efforts to collaborate with representatives from competing frameworks stands apart in an ecosystem that is generally fragmented and fractious.</p>\n<p>“I’m excited about the opportunity we have to advance web development in terms of JavaScript UI representation, in a similar way to how WordPress was a driving force for web standards during the past decade,” Ventura said. “That’s also where I see us having a responsibility as a project, as people will continue to learn web development through WP. Many people have been introduced to PHP through WordPress, originally just interacting with WP functions and APIs, eventually diving a bit more deeply into the language as needed. I do see our core remaining close to JS the language, as that gives the most meaningful tool to learn, spanning across all frameworks and libraries.”</p>\n<p>Ventura assured participants in the ongoing discussion that the Gutenberg team is listening and working towards a solution that will push the web forward.</p>\n<p>“We are absolutely aware that how we build and what we offer through Gutenberg is going to affect the dev community and we are not taking this lightly—quite the opposite,” Ventura said. “I’ve been talking with Evan (Vue) and Jason (Preact) because rather than having a ‘choose your framework’ contest, this seems an opportunity to collaborate and push the web forwards.”</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, 22 Sep 2017 22:26:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:43:"WPTavern: DonateWC Reaches Fundraising Goal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=75001";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"https://wptavern.com/donatewc-reaches-fundraising-goal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1702:"<p><a href="https://donatewc.org/">DonateWC</a>, <a href="https://wptavern.com/donatewc-aims-to-provide-travel-sponsorships-to-attend-large-wordcamps">an initiative</a> focused on providing less fortunate people an opportunity to attend large WordCamps has <a href="https://donatewc.org/news/surprise-our-goal-is-fully-funded/">reached its fundraising goal</a> of 1,000€. Ines van Essen expressed gratitude and appreciation for the donations. “The responses and feedback that have come in during the past week have been overwhelming,” She said.</p>\n<p>“I can’t believe we can already move to legalizing things and actually getting things done. Lesson learned: do not spend two years thinking about something you could maybe do at some point in the future. The time is now, and it’s time to change some lives.”</p>\n<img />DonateWC Reaches Fundraising Goal\n<p>Essen confirmed that Automattic is not affiliated with the initiative although quite a few of her colleagues are supportive of the idea. “Everyone can do something to help another community member,” She said. “Whether that’s buying someone a meal, sharing a ride, or even sharing a room. DonateWC is a big picture thing, but there’s so many other things you can do to help under privileged groups.”</p>\n<p>Essen hopes to have the non-profit and other legal aspects of the project taken care of in time to sponsor at least one person to WordCamp US. Part of the funds will be used to pay someone to design a logo and for social media marketing. If you’re interested in helping out with the project, please <a href="https://donatewc.org/get-in-touch/">get in touch.</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, 22 Sep 2017 00:13:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"WPTavern: WordCamp for Publishers Videos Now Available on YouTube";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=74871";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordcamp-for-publishers-videos-now-available-on-youtube";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2772:"<p><a href="https://2017-denver.journalist.wordcamp.org" rel="noopener" target="_blank">WordCamp for Publishers</a>, held last month at The Denver Post building, was the first niche WordCamp to be focused around a specific industry. The event was designed for people who use WordPress to manage publications and also to encourage collaboration among project maintainers who build open source tools for publishers.</p>\n<p>In addition to hands-on technical workshops, the <a href="https://2017-denver.journalist.wordcamp.org/schedule/" rel="noopener" target="_blank">schedule</a> included a variety of publishing-related topics, such as monetization, content distribution, newsletter tools, and print and digital workflows.</p>\n<p>“The schedule prompted a great deal of learning and discussion that extended well beyond the content typically found at a regional WordCamp,” attendee Maura Teal <a href="https://mlteal.com/2017/08/wordcamp-publishers-denver/" rel="noopener" target="_blank">said</a>. “One of the best aspects of this conference was chatting with other developers and leaders involved in media on the web. There were multiple sessions and hallway discussions that brought intriguing solutions to the table. My primary takeaway was that there certainly needs to be more WordCamps of this kind – that is, focused on a niche but still rooted in community.”</p>\n<p>The unique format of the event offered more small group opportunities than a traditional WordCamp does for learning, asking questions, and collaborating around tools and strategies that directly relate to publishers.</p>\n<p>“WordCamp for Publishers was not your average or typical WordCamp,” attendee Dwayne McDaniel <a href="https://www.mcdwayne.com/2017/08/21/wordcamp-for-publishers/" rel="noopener" target="_blank">said</a>. “It felt a lot more like WPCampus insofar as the general mood and feeling I got from the participants. Getting to see folks from competing media companies openly discussing how to solve their common challenges, I learned a whole lot and I am grateful to have had the chance to learn about the publishing space.”</p>\n<p>Videos for all of the sessions held in the auditorium are now available in a <a href="https://www.youtube.com/playlist?list=PLp4P7UHKK-kC1CGF3LDtfPDwtLEzDKiP9" rel="noopener" target="_blank">YouTube playlist</a>. They will also be uploaded to WordPress.tv in the near future. Organizer Steph Yiu said the event was so successful that they are already planning next year’s conference. Anyone interested in volunteering or donating a venue can <a href="https://vip.wordpress.com/2017/09/01/wordcamp-for-publishers/" rel="noopener" target="_blank">get in touch</a> with the organizing team.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 21 Sep 2017 18:53:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:63:"WPTavern: Apply Filters Podcast to be Retired after 83 Episodes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74948";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"https://wptavern.com/apply-filters-podcast-to-be-retired-after-83-episodes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2025:"<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/apply-filters.png?ssl=1"><img /></a></p>\n<p><a href="http://bradt.ca/" rel="noopener" target="_blank">Brad Touesnard</a> and <a href="http://pippinsplugins.com/" rel="noopener" target="_blank">Pippin Williamson</a> are retiring from podcasting. Their bi-weekly show <a href="http://applyfilters.fm/" rel="noopener" target="_blank">Apply Filters</a>, a favorite podcast among WordPress developers, will go off the air after publishing its 83rd episode. The hosts have not yet revealed why they are retiring but plan to share more details in the final episode.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">We’ll answer that next week during the episode! :)</p>\n<p>— Apply Filters (@applyfilters) <a href="https://twitter.com/applyfilters/status/910593317179555840">September 20, 2017</a></p></blockquote>\n<p></p>\n<p>Apply Filters focused primarily on development and technical topics but also provided a wealth of information on business models, pricing, and marketing in the WordPress product ecosystem. The first episode aired August 15, 2013, just after the Heartbeat API was introduced in WordPress 3.6.</p>\n<p>The show’s imminent retirement was announced on Twitter today to the disappointment of its many loyal fans. According to the information available on the sponsors page, each episode was receiving more than 2,000 downloads in the first three months after publishing. Roughly 54% of the audience identified as developers.</p>\n<p>During the past six months, the frequency of the episodes had slowed to once per month. I wouldn’t be surprised if the hosts became too busy to keep up with the show, as they both lead successful WordPress product businesses. Touesnard and Williamson plan to record one final mailbag episode before retiring the show indefinitely and are inviting listeners to <a href="http://applyfilters.fm/submit-topic-idea/" rel="noopener" target="_blank">send in any last questions</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, 21 Sep 2017 03:54:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:60:"WPTavern: New Core Gallery Widget Targeted for WordPress 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:29:"https://wptavern.com/?p=74896";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/new-core-gallery-widget-targeted-for-wordpress-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3816:"<p>The <a href="https://wordpress.org/plugins/wp-core-media-widgets/" rel="noopener" target="_blank">Core Media Widgets</a> feature plugin introduced a gallery widget in the 0.2.0 release this week. WordPress 4.8 added the new audio, image, and video widgets from this feature plugin. The gallery widget is targeted for merge into the upcoming WordPress 4.9 release.</p>\n<p>In testing the new feature I found it to be a simple, straightforward implementation of a gallery widget that could easily replace many plugins that are currently filling this need for users. The option to edit or replace a gallery is immediately available and users can easily rearrange or randomize the images included.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/core-gallery-widget.png?ssl=1"><img /></a></p>\n<p>On the frontend the gallery displays neatly in a thumbnail grid. I was able to change the number of columns while editing the gallery, but the preview in the admin did not match the the way the gallery looks on the frontend. The number of columns is correct on the frontend but not in the admin preview. This might cause some confusion for users if it isn’t fixed before landing in core. Contributors to the plugin are looking at this <a href="https://github.com/xwp/wp-core-media-widgets/issues/190#issuecomment-331011895" rel="noopener" target="_blank">issue</a>.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-20-at-3.16.22-PM-e1505938641908.png?ssl=1"><img /></a></p>\n<p>Overall, the implementation is user-friendly and similar to adding galleries in posts and pages. However, the widget could still use some testing, especially with different plugins installed. For example, with Jetpack enabled, users can choose between a thumbnail and a slideshow gallery, but the slideshow option doesn’t seem to work correctly in the widget. WordPress.org has <a href="https://wordpress.org/plugins/search/gallery+widget/" rel="noopener" target="_blank">several hundred plugins</a> that implement some sort of gallery widget and these plugin authors will want to test the new core widget.</p>\n<p>Theme authors will also need to test how the core gallery widget interacts with their themes. After testing the gallery widget with several popular WordPress.org themes, I found that many display the thumbnails with unsightly outlines and unpredictable spacing between images.</p>\n<p>Weston Ruter, who authored the <a href="https://make.wordpress.org/core/2017/05/26/media-widgets-for-images-video-and-audio/" rel="noopener" target="_blank">dev note post</a> when the previous media widgets were introduced in 4.8, said that the paragraph regarding default theme updates is still applicable:</p>\n<blockquote><p>Themes that add custom styles to the MediaElement.js player (namely Twenty Thirteen and Twenty Fourteen) were updated from just styling it within syndicated content, to also include instances within widgets. Most themes don’t restrict styles for captioned images or media players to just post content, that is, limit CSS selectors to classes output by post_class(). If your theme does, make sure to either remove that constraint or include a .widget selector.</p></blockquote>\n<p>Ruter said another dev note will be coming with common theme changes that are required to add the right styling for galleries. Users and theme/plugin developers can test the gallery widget right now on 4.8.2 or 4.9-alpha using the <a href="https://wordpress.org/plugins/wp-core-media-widgets/" rel="noopener" target="_blank">Core Media Widgets</a> plugin. Once the widget is added to WordPress, it will be deactivated in the feature plugin for future releases. Contributors plan to merge the new widget into core next week, provided testing goes well.</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, 21 Sep 2017 00:35:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:70:"WPTavern: WPWeekly Episode 288 – No React.js Framework for Gutenberg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74933&preview=true&preview_id=74933";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wpweekly-episode-288-no-react-js-framework-for-gutenberg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3046:"<p>While I was supposed to be on vacation last week, I instead had surgery for a broken ankle. Tune in to hear the hilarious explanation on how I broke it. The lesson I learned is to not chase animals out of the yard.</p>\n<p><a href="https://jjj.blog/">John James Jacoby</a> and I discuss the news of the week, including a major decision where Gutenberg will not be written in React due to a patent clause in its license. Other topics include, blind speaker selection for WordCamp US, <a href="https://jjj.blog/2017/09/turbo-boost-for-bbpress-2-6/">bbPress performance improvements</a>, and our picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="https://wptavern.com/equifax-launches-wordpress-powered-site-for-consumers-affected-by-security-breach">Equifax Launches WordPress-Powered Site for Consumers Affected by Security Breach</a><br />\n<a href="https://wptavern.com/swfupload-will-officially-be-removed-from-wordpress">SWFUpload Will Officially Be Removed From WordPress</a><br />\n<a href="https://wptavern.com/wordpress-org-adds-new-support-rep-role-for-plugin-pages">WordPress.org Adds New Support Rep Role for Plugin Pages</a><br />\n<a href="https://wptavern.com/display-widgets-plugin-permanently-removed-from-wordpress-org-due-to-malicious-code">Display Widgets Plugin Permanently Removed from WordPress.org Due to Malicious Code</a><br />\n<a href="https://wptavern.com/wordpress-abandons-react-due-to-patents-clause-gutenberg-to-be-rewritten-with-a-different-library">WordPress Abandons React due to Patents Clause, Gutenberg to be Rewritten with a Different Library</a><br />\n<a href="https://wptavern.com/donatewc-aims-to-provide-travel-sponsorships-to-attend-large-wordcamps">DonateWC Aims to Provide Travel Sponsorships to Attend Large WordCamps</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href="https://wptranslationday.org/">WordPress Global Translation day</a> is next Saturday, September 30th. Twenty-four hours dedicated to translating the WordPress ecosystem through sessions, training marathons, and local events.</p>\n<p><a href="https://local.getflywheel.com">Local by Flywheel</a> is software that easily creates a local environment for WordPress development.</p>\n<p>From the folks behind GiveWP, <a href="https://givewp.com/give-live/">Give Live</a> is a series of webinars for the community.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, September 27th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank" rel="noopener">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="https://wptavern.com/feed/podcast" target="_blank" rel="noopener">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank" rel="noopener">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #288:</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:"Wed, 20 Sep 2017 22:13:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:45:"HeroPress: What I Do Does Not Define Who I Am";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=2109";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/what-i-do-does-not-define-who-i-am/#utm_source=rss&utm_medium=rss&utm_campaign=what-i-do-does-not-define-who-i-am";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:13146:"<img width="960" height="480" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/09/092017-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: I became completely inspired by the mission of WordPress. I had become a part of something bigger than myself." /><p>The first time I ever made a WordPress site, I got 180,000 views in 2 days, 253 comments, and (give or take) 7 death threats.</p>\n<p>It was 2014 and I was working on an MBA at Florida State University during the peak of the Jameis Winston controversy, where a football quarterback was accused of rape and protected from prosecution by the university and local police. I had used WordPress before, but not a lot. But, in true democratizing publishing, giving a voice to the voiceless fashion, when I had something I wanted to say, I knew just the thing to get it out there with minimal know-how: a free, single page WordPress.com site.</p>\n<p>I had just returned to Florida from a summer in New York City. To my amazement, I got the life-changing opportunity, paid for by the university’s College of Social Sciences paid, to go up there for a summer of exploration in the social entrepreneurship and technology circles after pitching Florida State on a concept for financial education.</p>\n<h3>Beginning the Journey</h3>\n<p>I had become interested in financial education around the age of 16, when my family became homeless for a month. My mom hadn’t been able to make the rent, so we got kicked out, and then couldn’t find an apartment easily due to my mom’s lack of credit. Later, I started working at a major commercial bank and met hundreds, if not thousands, of people in similar situations (and saw the ways in which major commercial banks don’t help these people, but that’s a different conversation).</p>\n<p>Imagine having been homeless at 16. Then, 6 years later, you’re attending graduate school, funded by the university, and that same university also paid for you to live in the country’s most expensive place for 3 months so that you could learn about executing your ideas on how to make a positive difference through technology entrepreneurship.</p>\n<p>You would probably be overcome with gratefulness. But you would also likely be extremely protective of the people making such a thing possible.</p>\n<p>Now imagine, that while Florida State University’s programs making such an impact on you, a football player’s actions are driving the narrative of this place you want to be proud of.</p>\n<blockquote><p>Imagine me, telling the story I just told you, and watching people connect the dots between what institution was making all of this possible for me, and what they had heard of it. “Oh, my God, with the quarterback that raped that girl?” they would say.</p></blockquote>\n<p>I would link you to the page I created, but quite honestly, it wasn’t a lot more than a profanity-laden rant (of admittedly epic proportions). But, it got a reaction: she needs to shut the f**k up. She’s completely right. She’s an “attention-seeking whore!”. She’s the story we should be focusing on. She’s just upset her Kickstarter campaign failed.</p>\n<p>There it was: WordPress had amplified my voice, and everyone else’s, too.</p>\n<h3>Finding WordPress Business</h3>\n<p>Today, I’m the lesser-known half of Caldera Labs, makers of Caldera Forms, a top drag-and-drop form building plugin for WordPress. A few weeks ago, we got a one-star review on WordPress.org that called me out by name: “their team is useless, especially Christie Chirinos.” I received caring notes from several seasoned WordPress product developers, reassuring me that these things happen and I ought to not take it personally. “It’s not the first time someone’s been mean to me on the internet, and it probably won’t be the last,” I wrote in a Slack DM to my incredible business partner, the part of Caldera Labs you probably know, Josh Pollock. Josh laughed.</p>\n<p>My road from single-page rants on WordPress.com to WordPress product leadership was actually pretty straightforward, although certainly wrapped in incredible fortune. I kept up that blog for a few months at the request of some of those 253 people (and the dismay of some others). Eventually it was forgotten for my financial education project’s website, which went from Wix to self-hosted WordPress.</p>\n<p>Some months of working on that site made me acutely aware that if I wanted to execute more of my ideas, I should learn more code. I started learning JavaScript and PHP. I met Josh somewhere around that time. He liked my WordPress.com story, and encouraged me to keep learning, while picking my brain on what my almost-finished MBA thought about Caldera Forms.</p>\n<p>A professor asked me if I would work on his academic WordPress website for a fee. I was a broke graduate student, so I said yes. Suddenly I had clients. When I graduated, Josh approached me with a proposal to join him in business. I said yes, but my only condition is that I’m moving back to New York City. Josh said, remote work is the norm.</p>\n<p><img class="aligncenter size-large wp-image-2118" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/09/screen_shot_2017-09-19_at_8.26.20_pm-1024x374.png" alt="Screen shot of Caldera website" width="960" height="351" /></p>\n<p> </p>\n<p>Despite the quote-unquote “formal business education,” I was flabbergasted when the full weight of what a WordPress product business entailed hit me. I didn’t understand the community. I didn’t understand the niche’s culture. Much of what I learned were business norms, were completely non-existent in WordPress. I communicated all of this to Josh.</p>\n<blockquote><p>“I have no idea what I’m doing.”</p>\n<p>“Of course you don’t, you’ve never done this before.”</p>\n<p>He introduced me to the extensive library of talks on WordPress TV on imposter syndrome.</p></blockquote>\n<h3>Diving Into WordCamp</h3>\n<p>For me, it clicked at the inaugural WordCamp US. I showed up to the event looking like a deer caught in the headlights and was welcomed with open arms. I got to put faces to all of the names I had learned in the last half-year, and surprise: they were nice. They were welcoming. They were understanding.</p>\n<p>I scoffed at the idea that I would have anything to contribute on Contributor Day, and then found out that the polyglots team could totally use an immigrant that speaks 4 languages. More importantly, I became completely inspired by the mission of WordPress. I realized that, by total accident (or perhaps completely on purpose), I had become a part of something bigger than myself. I had to stick with it, no matter how hard it was.</p>\n<p>In the year after that, I also began to find a small niche for myself. I became “the girl with the MBA,” smart, young, and clearly lucky. “There’s not a lot of people in the space with your background,” said the host interviewing me on a WordPress podcast. Meanwhile, I’m thinking to myself, “oh my god. I don’t even understand why you invited me. I’m very grateful, but I also really don’t know that much about business. Didn’t you notice? Didn’t anyone tell you?”</p>\n<p>Move forward a year, and results started rolling in. I spoke at 4 WordCamps and many other shows. Josh published his 2016 Year In Review, where he outlined the explosive growth that Caldera Forms experienced at the end of the year and acknowledged the benefit of having partnered with me. He doesn’t know this, but I cried when I read that (now he knows).</p>\n<blockquote><p>It was surreal: the unlikely thing that we set out to do was working.</p></blockquote>\n<p>This year, 2017, has consisted of taking on the next step in that process: teaching myself how to turn all of those thoughts on their heads. I have had to unlearn “why me?” and internalize “why not me?”, and most importantly, practice differentiating the story that I tell myself about myself versus the evidence-based reality.</p>\n<h3>Self Discovery</h3>\n<p>A crucial part of this stage has been learning that what I do does not define who I am. That’s a tired joke where I live. The joke goes that you can go to any bar, and participate in the same script: what’s your name? What do you do? “I’m Christie, and I’m a partner and the business manager at a commercial WordPress plugin shop, Caldera Labs” is a story, and it immediately sparks self-doubt. That isn’t an answer that describes an evidence-based reality, it is an answer that describes a story, and stories by definition require effort to be believed.</p>\n<blockquote><p>Who I am, I am learning, is the collection of my experiences, which then drive my priorities in how I do what I do, which is business.</p></blockquote>\n<p>In that podcast interview, I wasn’t told “there aren’t many business managers in the space.” I was told that there weren’t a lot of people with my background in the space. It’s the collection of my stories – of immigration, difficult childhoods, arguments in business school classrooms and accidentally viral WordPress websites, that perfectly positioned me to do what I’m doing right now.</p>\n<p>The main reason I wanted to write for HeroPress when Topher offered was to take these thoughts out of my story. The more I grow into this role, the more I’m learning that this is especially common with people like me.</p>\n<p>Research is being conducted more and more every day seeking to discover why we don’t become entrepreneurs who fearlessly pursue happiness and high-risk, high-reward situations (the common trope being that privilege is being told to strive to be anything one wants to be, while others are told to strive for an escape from instability).</p>\n<blockquote><p>Most of it boils down to the idea that many minorities, women, immigrants, people from low-income households – take your pick – have convinced themselves of a story that does not, in fact, reflect the reality of their possibilities.</p></blockquote>\n<p>It’s a shame, because there’s almost as much research that demonstrates that businesses with diverse leadership teams outperform homogeneous teams almost every single time.</p>\n<p>Let’s start talking about this, even if this isn’t something that directly relates to you. Because, if that is the case, chances are that this is a topic that relates to someone you know. Diversity of thought is an important part of our WordPress community narrative. If you are not the person who must assess replacing a story with an evidence-based reality, you may be someone who is positioned to engage in powerful actions to promote diversity of thought, like encouraging someone else to challenge the stories they tell themselves and the stories they tell others about themselves. “I’m Christie, and I lead all of the business development and marketing for a commercial WordPress plugin shop, Caldera Labs” sounds a lot better.</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: What I Do Does Not Define Who I Am" class="rtsocial-twitter-button" href="https://twitter.com/share?text=What%20I%20Do%20Does%20Not%20Define%20Who%20I%20Am&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwhat-i-do-does-not-define-who-i-am%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: What I Do Does Not Define Who I Am" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwhat-i-do-does-not-define-who-i-am%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%2Fwhat-i-do-does-not-define-who-i-am%2F&title=What+I+Do+Does+Not+Define+Who+I+Am" rel="nofollow" target="_blank" title="Share: What I Do Does Not Define Who I Am"></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/what-i-do-does-not-define-who-i-am/&media=https://heropress.com/wp-content/uploads/2018/09/092017-150x150.jpg&description=What I Do Does Not Define Who I Am" rel="nofollow" target="_blank" title="Pin: What I Do Does Not Define Who I Am"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/what-i-do-does-not-define-who-i-am/" title="What I Do Does Not Define Who I Am"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/what-i-do-does-not-define-who-i-am/">What I Do Does Not Define Who I Am</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, 20 Sep 2017 12:00:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"Christie Chirinos";s: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:64:"WPTavern: WordPress 4.8.2 Patches Eight Security Vulnerabilities";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74914";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"https://wptavern.com/wordpress-4-8-2-patches-eight-security-vulnerabilities";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:840:"<p>WordPress 4.8.2 <a href="https://wordpress.org/news/2017/09/wordpress-4-8-2-security-and-maintenance-release/">is available for download</a> and users are encouraged to update as soon as possible. This release patches eight security vulnerabilities and has six maintenance related fixes. Hardening was also added to WordPress core to prevent plugins and themes from accidentally causing a vulnerability through <code>$wpdb->prepare()</code> which can create unexpected and unsafe queries leading to potential SQL injection (SQLi).</p>\n<p>To see a full list of changes, check out the <a href="https://codex.wordpress.org/Version_4.8.2">release notes</a>. Auto updates are rolling out to sites that support them but if you’d like to update manually, you can browse to Dashboard – Updates and click the Update Now button.</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, 20 Sep 2017 01:22:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:58:"Dev Blog: WordPress 4.8.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=4909";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/09/wordpress-4-8-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:2799:"<p>WordPress 4.8.2 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.8.1 and earlier are affected by these security issues:</p>\n<ol>\n<li><code>$wpdb->prepare()</code> can create unexpected and unsafe queries leading to potential SQL injection (SQLi). WordPress core is not directly vulnerable to this issue, but we’ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by <a href="https://hackerone.com/slavco">Slavco</a></li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the oEmbed discovery. Reported by xknown of the WordPress Security Team.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the visual editor. Reported by <a href="https://twitter.com/brutelogic">Rodolfo Assis (@brutelogic)</a> of Sucuri Security.</li>\n<li>A path traversal vulnerability was discovered in the file unzipping code. Reported by <a href="https://hackerone.com/noxrnet">Alex Chapman (noxrnet)</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the plugin editor. Reported by 陈瑞琦 (Chen Ruiqi).</li>\n<li>An open redirect was discovered on the user and term edit screens. Reported by <a href="https://hackerone.com/ysx">Yasin Soliman (ysx)</a>.</li>\n<li>A path traversal vulnerability was discovered in the customizer. Reported by Weston Ruter of the WordPress Security Team.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in template names. Reported by <a href="https://hackerone.com/sikic">Luka (sikic)</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the link modal. Reported by <a href="https://hackerone.com/qasuar">Anas Roubi (qasuar)</a>.</li>\n</ol>\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 disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.8.2 contains 6 maintenance fixes to the 4.8 release series. For more information, see the <a href="https://codex.wordpress.org/Version_4.8.2">release notes</a> or consult the <a href="https://core.trac.wordpress.org/query?status=closed&milestone=4.8.2&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.8.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.8.2.</p>\n<p>Thanks to everyone who contributed to 4.8.2.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 19 Sep 2017 22:17: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:17:"Aaron D. Campbell";s: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:114:"WPTavern: WooCommerce 3.2 to Introduce Pre-Update Extension Version Checks, Release Date Pushed Back to October 11";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74908";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:124:"https://wptavern.com/woocommerce-3-2-to-introduce-pre-update-extension-version-checks-release-date-pushed-back-to-october-11";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4251:"<p>WooCommerce 3.2 RC1 is coming next week ahead of the plugin’s second major release this year. <a href="https://wptavern.com/woocommerce-3-1-adds-new-csv-product-importerexporter-improves-extension-management" target="_blank">Version 3.1</a> introduced a new built-in product importer/exporter that supports CSV files and brought significant improvements to extension management. Version 3.2 is on track to make the process of updating stores a smoother experience with a long-awaited new feature that displays version compatibility checks to users prior to updating their extensions.</p>\n<p>Many WooCommerce store owners experienced considerable difficulties in updating to version 3.0 due to incompatibilities with extensions that were not fully compatible. The widespread problems with updating caused a direct hit to the plugin’s reputation, even though the main issue was with third-party extensions not being ready to go for 3.0. WooCommerce 3.2’s new pre-update extension version checks will help users to be more informed about the status of extension compatibility before updating.</p>\n<p>WooCommerce plugin developers can now add two new headers to their extensions to specify a minimum required version and a “tested up to” version.<br />\n<code><br />\n/*<br />\n * Plugin Name: WooCommerce Barter Gateway<br />\n * Plugin URI: https://wordpress.org/plugins/woocommerce-gateway-barter/<br />\n * Description: Take payments by bartering crops and livestock.<br />\n * Author: WooCommerce<br />\n * Author URI: https://woocommerce.com/<br />\n * Version: 3.0.7<br />\n * Text Domain: woocommerce-gateway-barter<br />\n * Domain Path: /languages<br />\n * WC requires at least: 3.0.0<br />\n * WC tested up to: 3.2.0<br />\n */</code></p>\n<p>Plugin authors are recommended to update these headers after each major and minor WooCommerce release. (Patch releases do not require headers to be updated.)</p>\n<p>The core WooCommerce plugin will check through the extension headers and display a warning to users when updates are available, detailing which plugins have or haven’t been tested with the latest major version.</p>\n<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/pre-update-extension-version-checks.png?ssl=1"><img /></a></p>\n<p>WooCommerce developer Claudiu Lodromanean cited several important benefits for extension developers in a <a href="https://woocommerce.wordpress.com/2017/08/28/new-version-check-in-woocommerce-3-2/" target="_blank">post</a> announcing the new feature:</p>\n<ul>\n<li>You will have to field fewer complaints from users that the new WooCommerce version broke your plugin. They will have clear warnings about the dangers of upgrading when the plugin is incompatible. This should reduce your support load when new versions of WooCommerce are released.</li>\n<li>You will not have to rush updates to your plugin. If a user upgrades WooCommerce and your plugin breaks you are under a lot of pressure to release an update fast. If the user waits until a compatible version of the plugin is released before updating WooCommerce you do not have this problem.</li>\n<li>Users will trust your plugin more. By adding the header you are letting the user know that the plugin has been tested, works with their version of WooCommerce, and is actively maintained to be compatible with WooCommerce.</li>\n</ul>\n<p>The pre-update version checks for extensions is an exciting improvement for store owners and the greater WooCommerce developer community. Updates will be much easier when users can see at a glance which of their extensions are ready to go. Developers are also <a href="https://woocommerce.wordpress.com/2017/08/28/new-version-check-in-woocommerce-3-2/#comment-3635" target="_blank">interested in seeing this feature applied for themes</a> and the WooCommerce team confirmed they will look into the possibility.</p>\n<p><a href="https://woocommerce.wordpress.com/2017/09/19/important-update-woocommerce-3-2-will-now-be-released-october-11th/" target="_blank">WooCommerce 3.2’s release date</a> has been pushed back one week to October 11 to give store owners and extension developers enough time to test. The first release candidate is slated for September 27.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 19 Sep 2017 21:06:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:80:"WPTavern: DonateWC Aims to Provide Travel Sponsorships to Attend Large WordCamps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74891";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/donatewc-aims-to-provide-travel-sponsorships-to-attend-large-wordcamps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1919:"<p><a href="https://donatewc.org/">DonateWC</a> is a new initiative by <a href="https://twitter.com/themotherofcode?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor">Ines van Essen</a>, Happiness Engineer at Automattic, that aims to provide an opportunity for less fortunate people to attend large WordCamps. Essen was inspired to create the non-profit organization after realizing how expensive it was to attend WordCamp US 2015. “As I did not work for a company that could send me there, I had to pay for travel, accommodation, and food/drinks myself,” She said. “All in all, I spent a full month’s worth of income to attend.”</p>\n<p>While many WordPress focused businesses purchase and give away WordCamp tickets, DonateWC sponsorships include the following:</p>\n<ul>\n<li>A WordCamp ticket</li>\n<li>Door to door transportation</li>\n<li>Accommodation</li>\n<li>Food and drink money</li>\n<li>Internet access</li>\n</ul>\n<p>To be eligible for a sponsorship, you can not work for a company that is involved in WordPress or known to sponsor employees to WordCamps. You must be active in the community and either a speaker or volunteer at the WordCamp you’re attending.</p>\n<p>Essen has a <a href="https://www.gofundme.com/startup-cost-for-donatewc">crowdfunding campaign</a> through GoFundme and is asking for 1,000€. The initial 1,000€ will be used to design a logo, register the non-profit in the Netherlands, customize the theme for the site, and commercial plugins. However, if you <a href="https://donatewc.org/get-in-touch/">can help out </a>with providing any of the above, the savings will go towards sponsoring more people. Once DonateWC officially becomes a non-profit organization, a call for sponsors will go out.</p>\n<p>If DonateWC is an initiative you believe in, consider <a href="https://www.gofundme.com/startup-cost-for-donatewc">donating to the campaign</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 19 Sep 2017 19:01: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: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:51:"Akismet: Akismet WordPress Plugin 4.0 Now Available";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://blog.akismet.com/?p=1964";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://blog.akismet.com/2017/09/19/akismet-wordpress-plugin-4-0-now-available/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1574:"<p>Version 4.0 of <a href="http://wordpress.org/plugins/akismet/">the Akismet plugin for WordPress</a> is available.</p>\n<p>This update, a.k.a, “Akismet for the REST of Us,” adds endpoints to the WordPress REST API for configuring Akismet and retrieving Akismet stats. Documentation is available <a href="https://blog.akismet.com/akismet-wordpress-plugin-rest-api-endpoints/">here</a>, or you can read the code that adds the endpoints in the <a href="https://plugins.trac.wordpress.org/browser/akismet/trunk/class.akismet-rest-api.php">`class.akismet-rest-api.php` file</a>.</p>\n<p>The progress indicator on the “Check for Spam” button has been improved as well and now shows the percentage of comments that have been rechecked rather than just a loading indicator.</p>\n<p>This release also removes support for versions of WordPress before 4.0. If you’re running anything older than that, you should upgrade.</p>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href="http://wordpress.org/plugins/akismet/">the WordPress plugins directory</a>.</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1964/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1964/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1964&subd=akismet&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 19 Sep 2017 18:12:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"Christopher Finke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:22;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:82:"WPTavern: Why Vue.js Creator Evan You Thinks Vue Could Be a Good Fit for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=74884";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:93:"https://wptavern.com/why-vue-js-creator-evan-you-thinks-vue-could-be-a-good-fit-for-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6230:"<a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/06/evan-you.png?ssl=1"><img /></a>photo credit: <a href="https://www.youtube.com/watch?v=EiTORdpGqns">JSConf China</a>\n<p>After last week’s news that <a href="https://wptavern.com/wordpress-abandons-react-due-to-patents-clause-gutenberg-to-be-rewritten-with-a-different-library" target="_blank">WordPress is abandoning React due to its unfavorable patents clause</a>, the discussion regarding the selection of a new framework is heating up again. As Vue is once again among the leading contenders, I reached out to Vue.js creator Evan You to get his perspective on the possibility of WordPress adopting the framework.</p>\n<p>“Yes, I had a conversation with the WordPress team mostly answering questions they had about Vue,” You said. “The discussion happened before Matt’s announcement of moving away from React. It was mostly intended for filling the team in with the state of Vue and there was no particular conclusion made from it.</p>\n<p>“To be honest, I got the feeling that the team had already decided to go with React and simply wanted to explore other options before they make the final call. I was a bit surprised by Matt’s post, but also understand the concerns behind that decision. I think React is a technically sound choice, and the whole patent issue is unfortunate.”</p>\n<p>Vue is back in the mix alongside Preact.js and other libraries WordPress core contributors are considering adopting. You has been active in the <a href="https://make.wordpress.org/core/2017/05/31/javascript-chat-summary-for-may-30th/#comment-32642" target="_blank">comments</a> on the WordPress core development blog during the previous discussion, as well as more recently in the <a href="https://github.com/WordPress/gutenberg/issues/2733#issuecomment-330124938" target="_blank">discussion</a> in Gutenberg’s GitHub repo, clarifying misconceptions about the financial stability of the project.</p>\n<p>You has been careful to disclose his bias when participating in conversations about which framework WordPress should adopt. During my interview with him, he offered the community three reasons why he sees Vue as a good fit for the project:</p>\n<p>“Now that WP has decided to pick a different framework, as the creator of Vue, I surely hope that the WordPress team can adopt Vue,” You said. “Below is why I believe Vue would be a good fit for the choice:</p>\n<ul>\n<li>“As an independent open source project (not born from within a major corporate), Vue provides a good alignment in terms of OSS values with the WordPress project. It’s fully MIT licensed, and its development is sustained by open financial contribution channels (via Patreon and OpenCollective). This means WordPress can easily ensure Vue’s sustainability by becoming a major sponsor.</li>\n<li>“Vue is one of the most approachable frameworks out there, with an established and active community, and ever-growing amount of learning resources. Adopting Vue would provide a low entry barrier and smooth learning curve for devs just getting into WordPress development. This also aligns with what made WordPress successful.</li>\n<li>“As an incrementally adoptable framework, Vue’s flexibility means it can be adapted in different use cases ranging from embedded widgets, plugin development to full single-page applications. It can be used without any compilation step in simple use cases, while being mature and powerful enough for more complex use cases such as Calypso and Gutenberg. It offers the complete stack from vdom + ability to use raw render functions, server-side rendering, routing, state management, build tooling, browser devtool extensions, to editor tooling support.”</li>\n</ul>\n<p>Evan You and six others from the Vue.js core team will be participating in an <a href="https://hashnode.com/ama/with-vuejs-team-cj7itlrki03ae62wuv2r2005s" target="_blank">AMA on Hashnode at 12PM on September 20</a>, inviting general questions about the project, how to use it and contribute, and general programming advice. The questions are already rolling in and their answers should provide more information about the future of Vue and its place in the wider JavaScript ecosystem.</p>\n<p>WP Tavern has also reached out to <a href="https://twitter.com/_developit" target="_blank">Jason Miller</a>, creator of Preact.js to get his perspective on the possibility of WordPress selecting Preact and what it would mean for both projects. The React-alternative is another strong contender among JS libraries WordPress is looking at for use in core.</p>\n<p>The Gutenberg team has been working to ensure that WordPress developers will be able to create “Gutenblocks” using any JS library they prefer with different explorations of <a href="https://github.com/WordPress/gutenberg/pull/2463" target="_blank">framework-agnostic block rendering</a>. Ultimately, this would make creating plugins and themes less dependent on the library that is chosen for use in core. Other community members involved in the discussion, however, are keen to emphasize that the framework selected will have an impact on the greater WordPress product ecosystem, far beyond its use in Gutenberg, and are not eager to down play it as a simple technical decision. We’ll have a more detailed look on that in a separate post.</p>\n<p>In addition to the discussions on independent blogs, the Gutenberg GitHub issues queue and the #core-js channel on WordPress Slack are both hosting active conversations on the upcoming decision. This week’s core JavaScript chat has been <a href="https://make.wordpress.org/core/2017/09/18/javascript-chat-canceled-for-september-19/" target="_blank">cancelled</a> due to many of those involved traveling or unable to attend. The agenda for the next meeting is to discuss the role a JavaScript framework will play in current and future core focuses (including but not limited to the Gutenberg editor). This meeting is scheduled for <a href="http://www.timeanddate.com/worldclock/fixedtime.html?iso=20170926T1300" target="_blank">Tuesday, September 26, 2017, 8:00 AM CDT</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 19 Sep 2017 17:42:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:23;a:6:{s:4:"data";s:11:"\n \n \n \n \n \n";s:7:"attribs";a: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:47:"HeroPress: DonateWC: Getting People to WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://heropress.com/?p=2113";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:131:"https://heropress.com/donatewc-getting-people-wordcamp/#utm_source=rss&utm_medium=rss&utm_campaign=donatewc-getting-people-wordcamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4050:"<img width="800" height="533" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/09/23950564_1505660479.8301.png" class="attachment-large size-large wp-post-image" alt="Image of a plane wing with the sunset on the horizon" /><p>One of the first addons for HeroPress I ever thought of was sending people to WordCamp who might have a hard time getting there. HeroPress started out to be a voice for people on the fringe of WordPress, and being outside the ability to go to WordCamp practically defines the fringe.</p>\n<p>I never could figure out the logistics of how to make it work. How is money handled? International law? So the idea languished.</p>\n<p>On the other side of the world, <a href="https://heropress.com/essays/getting-a-life/">Ines van Essen</a> had the same idea. She’s far more clever than I though, and she’s making it happen. She’s starting a new organization called DonateWC, specifically to help people get to WordCamp. Not just local WordCamps, but the large ones like WordCamp Europe and WordCamp US. Trips that can cost multiple months, or even a years salary.</p>\n<p>I am so so so excited that this is happening, Ines is my hero.</p>\n<h2>How You Can Help</h2>\n<p>To get things really rolling Ines needs some funds. I mentioned logistics earlier; if this isn’t handled properly a tax agent somewhere is going to come investigating. A non-profit org needs to be created, a logo needs to be created, a site needs to be built, a board needs to be formed, etc. Getting started costs money.</p>\n<p>So <a href="https://www.gofundme.com/startup-cost-for-donatewc">there’s a GoFundMe page for DonateWC</a>. All things considered she’s not looking for very much money right now, we can DO THIS.</p>\n<p>If we can make this thing work it’s going to really change lives. Please help out if you can, and keep an eye on the project. The first person to get sent to WordCamp is going to make history.</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: DonateWC: Getting People to WordCamp" class="rtsocial-twitter-button" href="https://twitter.com/share?text=DonateWC%3A%20Getting%20People%20to%20WordCamp&via=heropress&url=https%3A%2F%2Fheropress.com%2Fdonatewc-getting-people-wordcamp%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: DonateWC: Getting People to WordCamp" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fdonatewc-getting-people-wordcamp%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%2Fdonatewc-getting-people-wordcamp%2F&title=DonateWC%3A+Getting+People+to+WordCamp" rel="nofollow" target="_blank" title="Share: DonateWC: Getting People to WordCamp"></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/donatewc-getting-people-wordcamp/&media=https://heropress.com/wp-content/uploads/2017/09/23950564_1505660479.8301-150x150.png&description=DonateWC: Getting People to WordCamp" rel="nofollow" target="_blank" title="Pin: DonateWC: Getting People to WordCamp"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/donatewc-getting-people-wordcamp/" title="DonateWC: Getting People to WordCamp"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/donatewc-getting-people-wordcamp/">DonateWC: Getting People to WordCamp</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:"Sun, 17 Sep 2017 20:42: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:"";}}}}}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:67:"WPTavern: Vue Project Launches Community Campaign on OpenCollective";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74756";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/vue-project-launches-community-campaign-on-opencollective";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4392:"<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-15-at-2.13.34-PM-e1505502876371.png?ssl=1"><img /></a></p>\n<p>With the recent news that <a href="https://wptavern.com/wordpress-abandons-react-due-to-patents-clause-gutenberg-to-be-rewritten-with-a-different-library" target="_blank">WordPress is abandoning React</a> due to its BSD + Patents license, core contributors are now revisiting the discussion of the merits of other frameworks. Gutenberg development is currently on hold until a new library is chosen to replace React, and selection is likely to be imminent to prevent further delay.</p>\n<p><a href="https://vuejs.org/" target="_blank">Vue</a> is once again a strong contender with a recent surge in enthusiastic support in <a href="https://github.com/WordPress/gutenberg/issues/2733" target="_blank">discussions on GitHub</a>, Mullenweg’s <a href="https://ma.tt/2017/09/on-react-and-wordpress/" target="_blank">announcement</a>, and <a href="https://www.facebook.com/groups/advancedwp/permalink/1624213760974165/" target="_blank">social</a> <a href="https://www.facebook.com/groups/advancedwp/permalink/1624383604290514/" target="_blank">media</a> posts. One of the chief concerns WordPress core contributors had regarding Vue in previous discussions was the longevity of the project and its dependence on creator <a href="https://wptavern.com/vue-js-creator-evan-you-weighs-in-on-wordpress-javascript-framework-discussion" target="_blank">Evan You</a>, who has historically done most of the development.</p>\n<p>The Vue project has recently been taking steps to mitigate this drawback. Earlier this week You announced that <a href="https://medium.com/the-vue-point/vue-is-now-on-opencollective-1ef89ca1334b" target="_blank">Vue is now accepting financial support on OpenCollective</a>, a platform for funding open source projects in a transparent way. You already has a successful <a href="https://www.patreon.com/evanyou" target="_blank">Patreon campaign</a> where contributors are paying $8,815 per month to support his work on Vue, but the new <a href="https://opencollective.com/vuejs" target="_blank">OpenCollective account</a> will support the work of core contributors and community events.</p>\n<p>“When I started the Patreon campaign, the primary goal was providing myself with enough income so that I can work on Vue full-time,” You said. “Today, as the Vue community grows, there are more and more contributions from the community, and OpenCollective’s transparent expense model could help us scale the financial contributions beyond a single developer.”</p>\n<p>Just four days after launching, Vue already has an estimated annual budget of $9,895 on its OpenCollective account. You is still independently accepting contributions on Patreon to fund his full-time work on the project.</p>\n<p><a href="https://preactjs.com/" target="_blank">Preact</a>, the other leading contender WordPress core contributors are considering, has had an <a href="https://opencollective.com/preact" target="_blank">account on OpenCollective</a> since late 2016. Backers and sponsors have contributed to a $16,091 estimated annual budget for the project.</p>\n<p>Both Vue and Preact have growing networks of financial supporters and are not heavily influenced by a single corporation’s interests. WordPress core contributors continue to discuss the merits and drawbacks of the two frameworks on various places around the web, but the discussion is somewhat scattered and it’s difficult for participants to know where their feedback will receive consideration.</p>\n<p>“The main options are actually all pretty good, and we’d probably be fine going with any of them, which is makes it a tough decision — objectively and technically there isn’t one clear without-a-doubt winner,” Matt Mullenweg said today in WordPress’ #core-js Slack channel.</p>\n<p>An updated post detailing the frameworks and technical considerations that contributors are now examining has yet to be published to the make/wordpress.org development blog. Having communication throughout the process of selecting the framework, instead of announcing it after the decision, would go a long way towards keeping the community informed and involved. We’ll be following the public discussion as it develops.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 15 Sep 2017 19:54:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:108:"WPTavern: WordPress Abandons React due to Patents Clause, Gutenberg to be Rewritten with a Different Library";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74834";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:118:"https://wptavern.com/wordpress-abandons-react-due-to-patents-clause-gutenberg-to-be-rewritten-with-a-different-library";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7411:"<a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/wrinkled-paper.jpg?ssl=1"><img /></a>photo credit: <a href="https://stocksnap.io/photo/6XVYR9HYNT"> Lalesh Aldarwish</a>\n<p>This evening Matt Mullenweg <a href="https://ma.tt/2017/09/on-react-and-wordpress/" target="_blank">announced</a> on his blog that WordPress has decided to move away from React due to its BSD + Patents clause licensing. Gutenberg engineers will be rewriting the new editor to use another JavaScript framework and Automattic plans to rewrite Calypso as well:</p>\n<blockquote><p>We had a many-thousand word announcement talking about how great React is and how we’re officially adopting it for WordPress, and encouraging plugins to do the same. I’ve been sitting on that post, hoping that the patent issue would be resolved in a way we were comfortable passing down to our users.</p>\n<p>That post won’t be published, and instead I’m here to say that the Gutenberg team is going to take a step back and rewrite Gutenberg using a different library. It will likely delay Gutenberg at least a few weeks, and may push the release into next year.</p></blockquote>\n<p>Mullenweg clarified that Automattic has been happy with React and that the company’s general counsel <a href="https://github.com/Automattic/wp-calypso/issues/650#issuecomment-235086367" target="_blank">didn’t think they would ever run into the patent issue</a>. He also commended Facebook on being “one of the better open source contributors out there” and for making their intentions clear. Ultimately, Mullenweg decided that he wasn’t comfortable with the larger WordPress community inheriting the patents clause:</p>\n<blockquote><p>Automattic will also use whatever we choose for Gutenberg to rewrite Calypso — that will take a lot longer, and Automattic still has no issue with the patents clause, but the long-term consistency with core is worth more than a short-term hit to Automattic’s business from a rewrite. Core WordPress updates go out to over a quarter of all websites, having them all inherit the patents clause isn’t something I’m comfortable with.</p></blockquote>\n<p>After the Apache Software Foundation added Facebook’s BSD+Patents license to its Category X list of disallowed licenses, many open source project leaders and developers <a href="https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies" target="_blank">petitioned Facebook to consider re-licensing React</a>, as many React-based projects are now having to be rewritten. <a href="https://wptavern.com/facebook-isnt-budging-on-reacts-bsd-patents-license" target="_blank">Facebook decided it wasn’t budging on the patents clause</a> and opted to continue protecting its own interests, fully recognizing that it may lose some React community members.</p>\n<p>In the past Mullenweg has been outspoken about how Automattic was betting on React. Many in the community considered WordPress adopting React to be a foregone conclusion, given that both Calypso and Jetpack’s new admin interface were built on it, as well as WordPress’ new Gutenberg editor. In making the costly decision to rewrite Gutenberg and Automattic’s products in another library, Mullenweg has demonstrated he is willing to lead the WordPress project in a direction where the community can feel confident about continuing to use and extend the software.</p>\n<p>“The decision on which library to use going forward will be another post; it’ll be primarily a technical decision,” Mullenweg said. “We’ll look for something with most of the benefits of React, but without the baggage of a patents clause that’s confusing and threatening to many people. Thank you to everyone who took time to share their thoughts and give feedback on these issues thus far — we’re always listening.”</p>\n<p>Gutenberg could certainly use the extra time and may gain a new crop of contributors, given that the learning curve for the new library isn’t likely to be as steep as learning React.</p>\n<p>At the end of May, WordPress core contributors had <a href="https://wptavern.com/wordpress-core-javascript-framework-debate-heats-up-contributors-narrow-discussion-to-react-vs-vue" target="_blank">narrowed their considerations for a new JavaScript framework to React and Vue</a>. It appears that <a href="https://vuejs.org/" target="_blank">Vue</a> is still a strong contender. After a commenter on Mullenweg’s post suggested switching to Vue, he replied that it has been frequently suggested and that the team has met with Evan You, Vue’s lead developer.</p>\n<p>When I <a href="https://wptavern.com/vue-js-creator-evan-you-weighs-in-on-wordpress-javascript-framework-discussion" target="_blank">interviewed Evan You in June</a>, he said he didn’t have enough perspective on WordPress core to make an unbiased recommendation but offered feedback on some technical issues being discussed at the time. He also clarified some common misconceptions about Vue, which WordPress’ React proponents had been using as leverage in their arguments against adopting it.</p>\n<p>Mullenweg also confirmed in the comments of his post that <a href="https://preactjs.com/" target="_blank">Preact</a> is another library under consideration. Preact.js is a lightweight 3kB alternative to React that uses the same API but is MIT-licensed. Some are already speculating about Preact being the front-runner for the replacement, as Gutenberg already has a branch devoted to trying it.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">There is a Preact “try” Gutenberg branch. But there is no Vue.js “try” Gutenberg branch. <a href="https://t.co/mFRYTLIV3b">https://t.co/mFRYTLIV3b</a></p>\n<p>— Carl Hancock <img src="https://s.w.org/images/core/emoji/2.3/72x72/1f680.png" alt="🚀" class="wp-smiley" /> (@carlhancock) <a href="https://twitter.com/carlhancock/status/908510738066657281">September 15, 2017</a></p></blockquote>\n<p></p>\n<p>Also, Mullenweg’s comment that the decision “will likely delay Gutenberg at least a few weeks, and may push the release into next year,” seems to only be feasible if the team rewrites the project using Preact.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">For Gutenberg, not Calypso. I’d take a friendly bet like some booze. <img src="https://s.w.org/images/core/emoji/2.3/72x72/1f600.png" alt="😀" class="wp-smiley" /></p>\n<p>— Matt Mullenweg (@photomatt) <a href="https://twitter.com/photomatt/status/908539602645827584">September 15, 2017</a></p></blockquote>\n<p></p>\n<p>Public reactions to the news that WordPress is shifting away from React have so far been overwhelmingly positive. Many are thankful and relieved that Mullenweg made the tough decision to change course and select another library after investing so heavily in React.</p>\n<p>The discussion regarding the new framework continues behind closed doors and is not open to the public, although a <a href="https://github.com/WordPress/gutenberg/pull/2732" target="_blank">pull request for using Preact in Gutenberg</a> is open on the project’s GitHub repo and some community discussion regarding the library selection is happening there.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 15 Sep 2017 05:39:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:28:"Matt: On React and WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=47558";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"https://ma.tt/2017/09/on-react-and-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3758:"<p>Big companies like to bury unpleasant news on Fridays: A few weeks ago, <a href="https://code.facebook.com/posts/112130496157735/explaining-react-s-license/">Facebook announced</a> they have decided to dig in on their patent clause addition to the React license, even after Apache had said <a href="https://issues.apache.org/jira/browse/LEGAL-303">it’s no longer allowed for Apache.org projects</a>. In their words, removing the patent clause would "increase the amount of time and money we have to spend fighting meritless lawsuits."</p>\n<p>I'm not judging Facebook or saying they're wrong, it's not my place. They have decided it's right for them — it's their work and they can decide to license it however they wish. I appreciate that they've made their intentions going forward clear.</p>\n<p>A few years ago, Automattic used React as the basis for the <a href="https://developer.wordpress.com/calypso/">ground-up rewrite of WordPress.com we called Calypso</a>, I believe it's one of the larger React-based open source projects. As our general counsel wrote, <a href="https://github.com/Automattic/wp-calypso/issues/650#issuecomment-235086367">we made the decision that we'd never run into the patent issue</a>. That is still true today as it was then, and overall, we’ve been really happy with React. More recently, the WordPress community started to use React for <a href="https://make.wordpress.org/core/2017/02/17/dev-chat-summary-february-15th-4-7-3-week-3/">Gutenberg</a>, <a href="https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/">the largest core project we've taken on in many years</a>. People's experience with React and the size of the React community — including Calypso — was a factor in trying out React for Gutenberg, and that made React the new de facto standard for WordPress and the tens of thousands of plugins written for WordPress.</p>\n<p>We had a many-thousand word announcement talking about how great React is and how we're officially adopting it for WordPress, and encouraging plugins to do the same. I’ve been sitting on that post, hoping that the patent issue would be resolved in a way we were comfortable passing down to our users.</p>\n<p>That post won't be published, and instead I'm here to say that <strong>the Gutenberg team is going to take a step back and rewrite Gutenberg using a different library</strong>. It will likely delay Gutenberg at least a few weeks, and may push the release into next year.</p>\n<p>Automattic will also use whatever we choose for Gutenberg to rewrite Calypso — that will take a lot longer, and Automattic still has no issue with the patents clause, but the <em>long-term consistency</em> with core is worth more than a <em>short-term hit</em> to Automattic’s business from a rewrite. Core WordPress updates go out to over a quarter of all websites, having them all inherit the patents clause isn’t something I’m comfortable with.</p>\n<p>I think Facebook’s clause is actually clearer than many other approaches companies could take, and Facebook has been one of the better open source contributors out there. But we have a lot of problems to tackle, and convincing the world that Facebook’s patent clause is fine isn’t ours to take on. It’s their fight. </p>\n<p>The decision on which library to use going forward will be another post; it’ll be primarily a technical decision. We’ll look for something with most of the benefits of React, but without the baggage of a patents clause that’s confusing and threatening to many people. Thank you to everyone who took time to share their thoughts and give feedback on these issues thus far — we're always listening.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 15 Sep 2017 00:59: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: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: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:53:"WPTavern: First WordCamp Dublin Set for October 14-15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=74595";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"https://wptavern.com/first-wordcamp-dublin-set-for-october-14-15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4577:"<a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/dublin.jpg?ssl=1"><img /></a>photo credit: <a href="http://www.ireland.com/en-us/what-is-available/sightseeing/destinations/republic-of-ireland/dublin/dublin-city/">Ireland.com</a>\n<p>Following up on the success of WordCamp Belfast last October, the WordPress community in <a href="https://2017.dublin.wordcamp.org/" target="_blank">Dublin will be hosting its first WordCamp October 14-15</a>. Both camps <a href="https://wptavern.com/wordpress-meetup-groups-in-belfast-and-dublin-are-planning-wordcamps-for-2016-and-2017" target="_blank">began the early stages of planning last year</a> and the two communities have shared some of the same organizers across their teams to help get these new camps off the ground in Ireland.</p>\n<p>WordCamp Dublin will be held at <a href="http://business.dcu.ie/" target="_blank">DCU Business School</a> and ticket sales will be capped at 250. In truly affordable WordCamp tradition, tickets are only €35 and include access to two tracks of speakers on both camp days, catered lunch, and an after party on Saturday night in Dublin City Centre.</p>\n<p>“Given it’s our first WordCamp Dublin it’s difficult to select a venue when we’ve no idea about how many people would like to attend,” co-organizer Colm Troy said. “But demand so far has been great so if you want a ticket I’d recommend getting one sooner rather than later.”</p>\n<p>Most of the camp’s five organizers are also part of the Dublin WordPress meetup, which is fairly active with 25-30 people attending regularly. They meet the first Thursday of every month and host a local speaker to teach attendees something new. WordPress developers generally gravitate towards the more technical talks, while WordPress users are more interested in talks about improving and promoting their websites.</p>\n<p>WordCamp Dublin will feature one track with advanced WordPress, coding, and development topics and a second track that covers aspects of running a business, growing website traffic, podcasting, and other related topics.</p>\n<p>“The Dublin WordPress community, based on what I’ve seen and experienced elsewhere (Buenos Aires, Paris, Vienna, UK, Italy), is pretty unusual,” co-organizer Rodolfo Melogli said. In addition to co-organizing the local WordPress meetup, Melogli also organizes the Dublin E-commerce and WooCommerce Meetups.</p>\n<p>“We have complete beginners, who after years of using other CMSs have finally decided to start using WordPress,” Melogli said. “We have passionate bloggers, who have been exploiting the SEO and content management features of WordPress since the very beginning. Then, we’ve got successful themers, popular plugin developers and experienced WordPress freelancers. Making sure everyone is catered for at each WordPress meetup and at the upcoming WordCamp is our biggest challenge and main priority.</p>\n<p>“The beautiful thing about the WordPress community, and especially in Dublin, is that you can have a successful theme seller sitting beside a complete beginner. And they both have things to share.”</p>\n<p>Organizers have just announced the <a href="https://2017.dublin.wordcamp.org/speakers-2017/" target="_blank">full lineup of speakers</a> for the WordCamp and co-organizer Colm Troy said the team was “blown away by the quality and quantity of excellent speaking applications” they received.</p>\n<p>The camp’s designers have created a new “blocky” style wapuu for the occasion to accompany the event’s modular design theme. They were aiming for a Lego-like wapuu while incorporating the cosmopolitan landmark “<a href="https://en.wikipedia.org/wiki/Spire_of_Dublin" target="_blank">Spire of Dublin</a>.”</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/wordcamp-dublin-2017.png?ssl=1"><img /></a></p>\n<p>“We have a couple of ideas floating around that will definitely add a unique Irish aspect to WordCamp Dublin but it’s too early to let the cat out of the bag on those yet,” Troy said. “In terms of what people can expect, Dublin and Ireland in general has a well earned reputation as one of the most welcoming places in the world. In many ways, our welcoming spirit is closely aligned with the ethos of the WordPress community and I think it’s going to be a really special weekend for attendees regardless of whether they’re new to WordPress or WordCamp veterans.”</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 14 Sep 2017 21:15:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:59:"WPTavern: GitHub Partners with Facebook to Release Atom-IDE";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74752";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"https://wptavern.com/github-partners-with-facebook-to-release-atom-ide";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3269:"<p>GitHub <a href="http://blog.atom.io/2017/09/12/announcing-atom-ide.html" target="_blank">announced</a> the launch of Atom-IDE this week, a new set of packages that extend its open source JavaScript-powered code editor to include IDE-like functionality. This first release includes packages that support TypeScript, Flow, JavaScript, Java, C#, and PHP.</p>\n<p>“The start of this journey includes smarter context-aware auto-completion as well as a host of code navigation features such as an outline view, go to definition, find all references as well as other useful functions such as hover-to-reveal information, errors and warnings (diagnostics) and document formatting,” Atom engineer Damien Guard said.</p>\n<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/atom-ide.png?ssl=1"><img /></a></p>\n<p>Atom, which was open sourced in 2014, is relatively new to the world of text editors, but its directory lists more than 6,700 packages to extend its functionality. WordPress developers have created <a href="https://atom.io/packages/search?q=WordPress" target="_blank">more than a dozen packages</a> that support actions and filters, WP-CLI commands, documentation, and snippets for third-party plugins.</p>\n<p>Those who have adopted Atom appreciate its extendability, but the most common complaint from the Atom community is that the code editor is noticeably <a href="https://discuss.atom.io/t/why-is-atom-so-slow/11376/193" target="_blank">slower than many others</a>. This has been a frequent <a href="https://discuss.atom.io/t/atom-is-painfully-slow/36298" target="_blank">topic</a> of <a href="https://news.ycombinator.com/item?id=8989606" target="_blank">discussion</a> for several years and its creators admit that <a href="https://discuss.atom.io/t/atom-feels-slow-or-is-consuming-too-much-cpu-or-memory/32662?source_topic_id=36298" target="_blank">performance isn’t one of its strongest features</a>. However, sometimes extreme performance issues can be caused by a package that a user has installed.</p>\n<p>Atom partnered with Facebook’s <a href="https://nuclide.io/" target="_blank">Nuclide</a> project developers to develop the new <a href="https://atom.io/packages/atom-ide-ui" target="_blank">Atom IDE UI</a> package that uses Atom’s <a href="https://github.com/atom/atom-languageclient" target="_blank">atom-languageclient</a> library in displaying features supported by the <a href="http://langserver.org/" target="_blank">language server protocol</a>. Users who want to get started with Atom-IDE will need to install the Atom IDE UI package as well as an IDE language support package (i.e. <a href="https://atom.io/packages/ide-php" target="_blank">ide-php</a>).</p>\n<p>Using Atom-IDE currently requires Atom Beta 1.21+. In the future the team plans to add support for more languages, which will most likely happen through outside package contributions.</p>\n<p>“With the help of our community, we plan to expand the number of languages that Atom-IDE can support and make it possible for you to run and edit applications, making Atom-IDE a true IDE,” Damien Guard said. “We hope to see future language support for the great languages out there including Rust, Go, Python, etc.”</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 14 Sep 2017 02:12: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:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:93:"WPTavern: Display Widgets Plugin Permanently Removed from WordPress.org Due to Malicious Code";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74768";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:104:"https://wptavern.com/display-widgets-plugin-permanently-removed-from-wordpress-org-due-to-malicious-code";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6033:"<p><a href="https://wordpress.org/plugins/display-widgets/" target="_blank">Display Widgets</a>, a plugin with more than 200,000 active installs, has been removed from WordPress.org due to its authors inserting malicious code. SEO consultant <a href="https://www.linkedin.com/in/david-law-9444b637/" target="_blank">David Law</a> was the first to bring this issue to the attention of the plugin team after discovering that Display Widgets was inserting content into sites from external servers and also collecting visitor data without permission. He posted to the WordPress.org forums <a href="https://wordpress.org/support/topic/display-widgets-plugin-v2-6-1-deleted-from-the-plugin-repository/" target="_blank">several</a> <a href="https://wordpress.org/support/topic/display-widgets-plugin-v2-6-3-1-includes-hacking-code/" target="_blank">times</a> to warn other users.</p>\n<p>Wordfence has been warning its customers about the plugin during the past several months and published a <a href="https://www.wordfence.com/blog/2017/09/display-widgets-malware/" target="_blank">timeline</a> tracking how Display Widgets was removed from WordPress.org on four separate occasions. According to their independent investigation, the plugin included a backdoor that allowed the plugin author to publish spam content to the sites where Display Widgets is installed. It also prevented logged-in users from being able to see the content.</p>\n<p><a href="https://pagely.com/blog/2017/09/malicious-code-display-widgets/" target="_blank">Pagely banned the Display Widgets plugin</a> from its hosting platform this week:</p>\n<blockquote><p>For our customer’s safety, we have banned the plugin from our customer sites…The plugin will remained banned on our network until a time that we see someone has taken responsibility for the plugin and the future of patching its code.</p></blockquote>\n<p>Display Widgets had recently changed hands, as it was acquired from the team that created Formidable Forms. The previous owners have issued a warning about the plugin on Twitter, advising users to remove it from their sites.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">We don\'t have a way of contacting users of our old Display Widgets plugin. But if you are using it you should uninstall immediately.</p>\n<p>— Formidable Forms (@FormidableForms) <a href="https://twitter.com/FormidableForms/status/907654976708726787">September 12, 2017</a></p></blockquote>\n<p></p>\n<p>It is not yet confirmed whether the plugin was acquired solely for the purpose of distributing malware, but its new owners have been fairly persistent about getting it added back to WordPress.org after each of its violations.</p>\n<h3>Display Widgets Users Advised to Update to Version 2.7 or Remove the Plugin</h3>\n<p>Users have no way of finding out that they are running malicious code unless they hear about from their host, security company, or some other third party. They do not receive a notice in the WordPress admin about the plugin having been removed from the directory. Since Display Widgets was a fairly popular plugin, there are likely many sites that still have it active and those website owners are probably unaware of the spam content they are publishing.</p>\n<p>Yesterday the plugin team issued a notice that <a href="https://wordpress.org/support/topic/display-widgets-2-7-is-safe/" target="_blank">Display Widgets 2.7 is a clean version</a> that restores the plugin to version 2.0.5 before the malicious code was added:</p>\n<blockquote><p>We will be leaving this version deploying updates, however at this time we will NOT be allowing for its adoption. The second owner has effectively destroyed any trust a person might have in the plugin.</p>\n<p>Note: You CANNOT visit the page or download it as a new plugin for a reason. This plugin is done. It’s not supported, it’s not worked on, nothing. So if you have it, upgrade. Otherwise, find something else to use.</p></blockquote>\n<p>Display Widgets is now likely to end up in the graveyard of abandoned plugins, but there are many other options for adding conditional widget display to WordPress sites. Jetpack’s <a href="https://jetpack.com/support/widget-visibility/" target="_blank">widget visibility module</a>, <a href="https://wordpress.org/plugins/widget-options/" target="_blank">Widget Options</a> by Phpbits Creative Studio, <a href="https://wordpress.org/plugins/custom-sidebars/" target="_blank">Custom Sidebars</a> by WPMU Dev, and <a href="https://wordpress.org/plugins/content-aware-sidebars/" target="_blank">Content Aware Sidebars</a> are a few popular alternatives on WordPress.org.</p>\n<p>The plugin team does not currently disclose why certain plugins have been closed or removed from WordPress.org, but they are working on providing better communication for users. One meta trac <a href="https://meta.trac.wordpress.org/ticket/2627" target="_blank">ticket</a> requests that closed plugins have a public page instead of disappearing completely. In another related <a href="https://meta.trac.wordpress.org/ticket/2860" target="_blank">ticket</a>, plugin team member Mika Epstein has proposed that when plugins are closed or disabled, there should be a dropdown for WordPress.org admins to select a reason why. She suggested the following as available options:</p>\n<ul>\n<li>Security Issue</li>\n<li>Author Request</li>\n<li>Guideline Violation</li>\n<li>Licensing/Trademark violations</li>\n<li>Merged into Core</li>\n</ul>\n<p>The issue with Display Widgets was fairly public as users posted about their investigations on the WordPress.org support forums and various companies issued warnings about it. However, many plugins are disabled without the public knowing why. Even a short explanation like the proposed examples above would be a major improvement over leaving WordPress.org plugin users in the dark. It would assist site owners in knowing whether they need to prioritize looking for an alternative or simply wait until the situation is resolved.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 13 Sep 2017 20:08:29 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:31:"HeroPress: Making My Own Normal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=2098";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:114:"https://heropress.com/essays/making-my-own-normal/#utm_source=rss&utm_medium=rss&utm_campaign=making-my-own-normal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:8262:"<img width="960" height="480" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/09/091317-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: There are more sorts of normal than I could ever imagine." /><p>As long as I can remember being normal was my only goal in life. If only I could be normal, then everything would be alright. There was not a lot wrong in my life when I was a kid, growing up in a small dutch town. I had a normal family with 2 parents (a mum and a dad) and a younger sister. My life was pretty normal. The problem was: It didn’t feel normal; I didn’t feel normal. You see, everybody was going through life living by certain rules and I lived my life not knowing those rules. Nobody told me, but apparently they told everybody else.</p>\n<h3>Understanding</h3>\n<p>When I was 35 I got diagnosed with Asperger syndrome. I cannot tell you how relieved I was after receiving such a clear diagnoses. All those years working so hard to fit in there was an explanation why I didn’t. Why I couldn’t. That was a big deal. It was not that I wouldn’t that I didn’t try hard enough or was to lazy. There was something different about me why I couldn’t. Not understanding the rules of life? Being clumsy and inappropriate in social situation? Being obsessed about some things and totally not interested in others? It was all part of the package.</p>\n<blockquote><p>Getting the right diagnosis changed everything and at the same time it didn’t change anything.</p></blockquote>\n<p>The problems I had to face were still the same. The way to handle them just got more clear. And there was help. I started reading books, I started therapy and I started working with a coach to find a way to integrate this new knowledge into my life. I started looking at what I needed (what??) and finding ways to take care of myself. I really thought this was it. I found the keys, I could learn the rules and finally be a normal person.</p>\n<p>And then I got fired.</p>\n<p>Having a job was a big part of being normal in my head. Getting fired ruined my chances of ever getting there. I was working as an assistant manager in the local library. I liked my job, and the people I worked with and they liked me. I loved going to work. But the library had to cut their expenses and I was one of the people that got fired. It happens but I was completely shocked.</p>\n<p>My experiences with jobs were not good (to put it mildly). There wasn’t one I kept longer than 2 years. You can do the math; I had a lot of jobs since I started working. Some were fun most were not. I got fired many of times. Getting fired was not a new thing. Liking a job and not wanting to get fired and getting fired anyway was what upset me the most. So I decided to start my own company.</p>\n<h3>Taking Control</h3>\n<p>Looking back it was a ridiculous plan but strangely enough, it worked out. I started helping people with their Social Media and building website with WordPress.</p>\n<p>I learned WordPress for fun. I wasn’t interested in computers or tech stuff. I was just a little obsessed with making a website for the domain name my boyfriend gave me for my birthday a few years earlier. I had nothing to say but was totally fascinated by what you can do with a website. It was like magic to me. Some written code turned into a beautiful page, or an ugly one. I wanted to know all about that. Building things with HTML and CSS was easy. Code is logic (and poetry of course;-)). It does what you tell it to do. If it doesn’t you did something wrong. Never a discussion about it.</p>\n<p>I shied away from people. It was too confusing for me now that I found something that was so easy and logical.</p>\n<blockquote><p>I could make money without seeing other people, it felt like heaven.</p></blockquote>\n<p>For a while. This is really what makes this whole thing so disturbing. I want to be alone, but also want to be around other people. I appear to be good with people. A lot of people like me (who knew?!). They have no idea how confusing it is not knowing what the underlying rule set is others are acting by. It’s like interacting with someone from a totally different culture speaking a different language but both of you don’t know that. I got really good at guessing things through the years, but that didn’t make it any less uncomfortable. I also got really scared. Because not all people are understanding and friendly when you try to explain.</p>\n<h3>And Then WordCamp</h3>\n<p>In 2011 I went to my first WordPress meetup. I was shocked! These people did what I did and actually knew what they were doing and talked about it. I was blown away with all this new knowledge and information. I needed to know more and learn more. So I went back into my WordPress cave and studied, practiced and learned more.</p>\n<p>WordCamp Europe happened for the first time in 2013 in The Netherlands. I signed up as a volunteer. I visited WordCamp NL the year before. As a visitor I didn’t know how to meet new people. That was a lonely experience. I loved the knowledge that was shared but I knew I had to find a way to talk to those people. I figured being a volunteer would give me something to do and a reason to talk to people. And it did.</p>\n<p>I met new people, I was shy, I was scared, I acted totally inappropriate and I was exhausted for a week after the event but I did it. The people were nice. Some seem to like me and I had fun. This was a totally new experience. If only this could normal.</p>\n<blockquote><p>I attended more WordCamps, always as a volunteer, that was my safe place.</p></blockquote>\n<p>My confidence grew. The number of people I knew grew. The amount of fun I had grew. And never ever did I feel not normal. As my confidence grew I got more visible and things got even better. It’s an upward spiral. This year I held my first talk, at WordCamp London. I was MC at WordCamp EU in Paris en I am on the organising team for WordCamp EU 2018 (BIG things!).</p>\n<p>Did these experiences end my quest to becoming “normal”?</p>\n<p>When I turned 40 I decided to quit the quest. I was done trying to be normal. Not because I became normal but I broadened my worldview. There are more sorts of normal than I could ever imagine. It took me a while ( and a lot of redirections) to find the one that fits me best.</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: Making My Own Normal" class="rtsocial-twitter-button" href="https://twitter.com/share?text=Making%20My%20Own%20Normal&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fmaking-my-own-normal%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: Making My Own Normal" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fmaking-my-own-normal%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%2Fmaking-my-own-normal%2F&title=Making+My+Own+Normal" rel="nofollow" target="_blank" title="Share: Making My Own Normal"></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/making-my-own-normal/&media=https://heropress.com/wp-content/uploads/2017/09/091317-150x150.jpg&description=Making My Own Normal" rel="nofollow" target="_blank" title="Pin: Making My Own Normal"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/making-my-own-normal/" title="Making My Own Normal"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/making-my-own-normal/">Making My Own Normal</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, 13 Sep 2017 12:00:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:24:"Wendie Huis in ‘t Veld";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:31;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:66:"WPTavern: WordPress.org Adds New Support Rep Role for Plugin Pages";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=74726";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordpress-org-adds-new-support-rep-role-for-plugin-pages";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1424:"<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/collaboration.jpg?ssl=1"><img /></a></p>\n<p>WordPress.org introduced a new feature for plugin pages this week that highlights official support representatives. Plugin authors can now find the UI for adding support reps under the Advanced View on the plugin page. Unlike the contributors and developers role, individual support reps do not have commit access and do not appear on the plugin details page.</p>\n<p>The new <a href="https://make.wordpress.org/plugins/2017/09/04/plugin-support-reps/" target="_blank">“support rep” role</a> is especially useful for larger plugins that have a support team managing the forum. It includes the ability to mark forum topics as resolved or sticky. Previously, only plugin authors were able to do this, which made it difficult for support teams to fully manage forum topics. Support reps will now have their interactions highlighted in the forum:</p>\n<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/support-rep-reply.png?ssl=1"><img /></a></p>\n<p>Adding these official indicators to support reps’ replies puts them in context within the thread and lends more authority to their answers. It is a small addition that will allow plugin shops to provide better support to their users. The feature is already active on WordPress.org and available for any plugin author to use.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 12 Sep 2017 21:38:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:32;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:125:"WPTavern: Gutenberg to Offer New Approach to TinyMCE in WordPress 5.0, a Plugin to Bring Back Old Interface Will be Available";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74639";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:135:"https://wptavern.com/gutenberg-to-offer-new-approach-to-tinymce-in-wordpress-5-0-a-plugin-to-bring-back-old-interface-will-be-available";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9397:"<a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2016/08/typewriter.jpg?ssl=1"><img /></a>photo credit: <a href="https://stocksnap.io/photo/4OURRGDU7Z">Sergey Zolkin</a>\n<p>The WordPress community is currently knee-deep in Gutenberg takes, as the new editor is poised to impact nearly every corner of the ecosystem when it <a href="https://wptavern.com/matt-mullenweg-addresses-concerns-about-gutenberg-confirms-new-editor-to-ship-with-wordpress-5-0" target="_blank">ships in WordPress 5.0</a>. With billions of dollars flowing through the WordPress economy, tensions are high, as many people support themselves and their families with the revenue earned from products and services that have been built on the existing editor.</p>\n<p>First impressions range from outright rejection of the new editor to those who embrace it and are hopeful for what it will bring to WordPress. For the past several years, most major new features added to WordPress have come through the feature plugin/feature project process where release leads and other contributors decide whether a proposed feature is ready for merge. The Gutenberg project is taking a somewhat different path to core in that Matt Mullenweg has already confirmed that <a href="https://wptavern.com/matt-mullenweg-addresses-concerns-about-gutenberg-confirms-new-editor-to-ship-with-wordpress-5-0" target="_blank">Gutenberg will ship with WordPress 5.0</a>, but the release will come out when Gutenberg is ready. This approach is part of Mullenweg’s new strategy for core development that makes releases more project-based instead of time-based.</p>\n<p>One of the most common concerns that developers and agency owners have about the plan to include Gutenberg in 5.0 is that they may need to hold back some of their sites from updating. The most vocal opponents have called for a way to “opt out” of Gutenberg so that it isn’t forced on their users.</p>\n<p>In a post titled “<a href="http://valiantchickendigital.com/blog/wordpress-new-coke-moment/" target="_blank">WordPress is about to have its New Coke moment</a>,” Nate Hoffelder shared his first impressions of the new edidtor after taking it for a test run. He said he appreciates the changes it promises but was unable to figure out how to create the blocks in the demo and worries about the “average non-techie” trying to use the interface.</p>\n<p>Hoffelder referenced Coca-Cola’s attempt to introduce New Coke in April 1985, which quickly ended in consumers calling for a return of the original flavor.</p>\n<p>“My gut feeling is that if users share my frustrations with Gutenberg, they will demand the return of the old interface,” Hoffelder said. “But the official release is months and months away, so it is entirely possible that a UX (user experience) expert will force the Gutenberg developers to make Gutenberg easier to use before it is inflicted upon an unsuspecting public.”</p>\n<h3>WordPress Users Will be Able to Restore the Old Editor with a Plugin after Gutenberg Lands in Core</h3>\n<p>WordPress will move forward with the Gutenberg editor as the default experience in the 5.0 release, but Matt Mullenweg confirmed in a <a href="https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/#comment-587616" target="_blank">comment</a> on his blog that a plugin will be available for users who want to restore the old editor.</p>\n<p>“Gutenberg uses TinyMCE, so a better way to think of it is that Gutenberg is a new version of our approach to TinyMCE,” Mullenweg said. “It will be the default experience of WP, for people that want to use something more like what’s currently there we’ll have a plugin they can use.”</p>\n<p>This should bring some relief to developers who will not yet have updated their extensions to work with Gutenberg, as well as agency owners who are not ready to give their clients access to the new editor.</p>\n<p>In his post, titled <a href="https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason" target="_blank">We Called it Gutenberg for a Reason</a>, Mullenweg shared his vision for how the new editor will will re-imagine TinyMCE and the advantages it will bring for plugin editors:</p>\n<blockquote><p>Plugin developers will be able to completely integrate into every part of WordPress, including posts, pages, custom post types, and sidebars without having to hack TinyMCE or squeeze their entire feature behind a toolbar button. Today, every plugin that extends WordPress does it in a different way; Gutenberg’s blocks provide a single, easy-to-learn entry point for an incredible variety of extensions. Some folks have already begun to port their plugins over, and are finding that they’re easier to build and have a much improved UI.</p></blockquote>\n<p>For developers who are worried about the compatibility of their metaboxes, Mullenweg said <a href="https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/#comment-587620" target="_blank">a plugin will be available for providing the legacy edit page for metaboxes</a>. One commenter, whose sites are heavily dependent on Advanced Custom Fields (ACF), asked if there is going to be a version of WordPress that will get long-term support for sites that can’t be upgraded to 5.0 without breaking.</p>\n<p>“There won’t be a version of WP like that, but there will definitely be a plugin that gives you the legacy / old edit page. Make sure to let ACF know that Gutenberg compatibility is a top priority,” Mullenweg said.</p>\n<p>Scott Kingsley Clark, lead developer of the Pods plugin, said this support for legacy PHP meta boxes is welcome news for the project but that Pods is also looking to get on board with Gutenberg once the project’s engineers have a solution for metaboxes.</p>\n<p>“I’m very excited to start using the new meta boxes from Gutenberg once the API supports it and gives us more to utilize,” Clark said. “As soon as that’s available, count us in for immediate adoption.”</p>\n<p>Despite assurances that a plugin will be available to restore the old interface, some are still concerned about how Gutenberg will impact the WordPress ecosystem. The average WordPress user has never heard of Gutenberg and its inclusion in 5.0 will be a major change.</p>\n<p>In a recent article on WPShout Fred Meyer contends that <a href="https://wpshout.com/stop-presses-gutenberg-wordpress-needs-doesnt-go-nearly-far-enough/" target="_blank">Gutenberg doesn’t go nearly far enough</a> towards giving users what they really want, which he identifies as front-end editing and the ability to create layouts within post content.</p>\n<p>“Gutenberg doesn’t go nearly far enough,” Meyer said. “It won’t make WordPress’ core content editor competitive with hosted builder solutions, or even with WordPress’ own themes and plugins (including badly built, bad-for-the-community solutions like Visual Composer.)”</p>\n<p>Meyer believes Gutenberg has the opportunity to defragment WordPress’ ecosystem of page building tools, but only if it moves towards providing “a feature-rich, developer-friendly, front-end page builder and content editor.”</p>\n<p>In responding to feedback from the community, Gutenberg design lead Tammie Lister has said that the project is currently focusing on editing before tackling the page building experience. The team has also been <a href="https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/#comment-587693" target="_blank">working with the authors of page builder plugins</a> ahead of the next focus on customization.</p>\n<p>“It is still a little early to say what will happen to plugins and builders,” Lister <a href="https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/#comment-587692" target="_blank">said</a>. “Initially, Gutenberg is focusing on the editor. The next stage is for the Customization focus (the building of pages). One thing that will need to happen is a lot of testing of existing plugins with Gutenberg. That’s how we can ensure things do work and limit issues. Ultimately, more and more plugins won’t be needed – or at least not so many together to achieve simple things. This benefits users and creates a better, more unified experience for all.”</p>\n<p>If users’ first impression of Gutenberg is that it is unable to deliver on all of the lofty promises of the project, they may return to the old interface en masse. WordPress will then have a battle to convince users to give it a another chance as the experience improves to include customization.</p>\n<p>Multi-column layouts, which are the gateway to page building, are <a href="https://wptavern.com/gutenberg-contributors-explore-adding-drag-and-drop-and-multi-column-support-for-blocks" target="_blank">not currently within the scope of the first official version coming to core</a>. Gutenberg’s one-dimensional, vertically stacking approach to designing pages isn’t very inspiring. This may frustrate average users whose expectations have not been tempered with the understanding that a future version will include an expanded page building experience. A plugin that allows users to opt out until it is an improvement over their current tools is going to be crucial for keeping the community happy.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 12 Sep 2017 04:22:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:33;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:100:"WPTavern: “The Final Word” Plugin Extends O2 to Pin a Highlighted Comment to the Top of a Thread";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74707";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/the-final-word-plugin-extends-o2-to-pin-a-highlighted-comment-to-the-top-of-a-thread";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3311:"<p>“<a href="https://wordpress.org/plugins/the-final-word/" target="_blank">The Final Word</a>” is a new plugin that extends O2 to highlight a comment at the top of a thread. <a href="https://github.com/Automattic/o2" target="_blank">O2</a> is the plugin successor to <a href="https://wordpress.org/themes/p2/" target="_blank">P2</a>, Automattic’s group blogging theme that introduced quick posting from the front page with real-time comment updates. The code was <a href="https://wptavern.com/o2-is-now-available-on-github" target="_blank">released on GitHub in 2015</a> and it powers the <a href="http://make.wordpress.org" target="_blank">make.wordpress.org</a> blogs.</p>\n<p>If you use O2 as a WordPress contributor or within another organization, then you have likely been a part of lengthy conversations that require a decent chunk of time to read and comprehend. Hugh Lashbrooke <a href="https://make.wordpress.org/meta/2017/08/24/o2-plugin-request-the-final-word/" target="_blank">created The Final Word for use on the WordPress Community Team blog</a> so that long discussion threads could be summed up in a single comment. He likened the new feature as something similar to the “accepted answer” function on Stack Exchange or other support forums where the best answer floats to the top. Discussions in the Community P2 often involve decision making, and the plugin is useful for highlighting the team’s conclusion on a matter.</p>\n<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/top-comment.png?ssl=1"><img /></a></p>\n<p>The Final Word gives users who are able to edit the post the ability to mark a specific comment as the “top comment.” Other features include the following:</p>\n<ul>\n<li>The top comment is displayed at the top of the comment list with a ‘view in context’ anchor link</li>\n<li>The top comment is also highlighted in context in the thread</li>\n<li>Only one comment can be selected as the top comment</li>\n<li>The top comment flag can be removed</li>\n<li>Includes basic styling for top comments</li>\n<li>‘Top comment’ label can be translated and/or filtered</li>\n</ul>\n<p>The plugin currently will not work without 02 enabled because of its specific way of handling comments, but Lashbrooke said it may be updated in the future to work without O2. (While O2 is not theme-dependent, the plugin is also not guaranteed to work with every theme and is recommended to be used in combination with the <a href="https://wpcom-themes.svn.automattic.com/p2-breathe" target="_blank">p2-breathe theme</a>.)</p>\n<p>The Final Word is now active on the <a href="http://make.wordpress.org/community" target="_blank">WordPress Community team’s blog</a> and is available for other teams to activate as well. With the number of O2 blogs that many contributors are subscribed to, there is a massive amount of information and discussion to keep up with. This plugin gives thread authors and team leaders the ability to summarize conversations and keep them more manageable for readers and participants. The Final Word is available on both <a href="https://wordpress.org/plugins/the-final-word/" target="_blank">WordPress.org</a> and <a href="https://github.com/hlashbrooke/The-Final-Word" target="_blank">GitHub</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 11 Sep 2017 04:10:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:34;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:91:"WPTavern: Equifax Launches WordPress-Powered Site for Consumers Affected by Security Breach";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=74677";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/equifax-launches-wordpress-powered-site-for-consumers-affected-by-security-breach";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7328:"<a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/security.jpg?ssl=1"><img /></a>photo credit: <a href="http://www.flickr.com/photos/58441544@N00/2660230441">Lock</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>Equifax has launched <a href="https://www.equifaxsecurity2017.com/" target="_blank">a WordPress-powered website</a> to connect with consumers affected by its recent security breach, which compromised 143 million customers’ personal data. The exposed data includes names, birth dates, social security numbers, addresses, credit card numbers, driver’s license numbers, and other sensitive financial information.</p>\n<p>The <a href="https://www.equifaxsecurity2017.com/" target="_blank">equifaxsecurity2017.com</a> site was launched shortly after disclosure to give consumers information about the security incident. Equifax reports that the company has found no evidence of unauthorized activity on its core consumer or commercial credit reporting databases but is offering free identity theft protection and credit file monitoring services to U.S. consumers who enter their last names and last six digits of their social security number into its form.</p>\n<p>Consumers are rightfully wary of the website, as the company is asking for more personal information in order to sign people up for another one of its products. Various <a href="https://www.theregister.co.uk/2017/09/08/equifax_breach_notification/" target="_blank">news</a> <a href="https://arstechnica.com/information-technology/2017/09/why-the-equifax-breach-is-very-possibly-the-worst-leak-of-personal-info-ever/" target="_blank">outlets</a> are decrying the fact that the site is built on WordPress.</p>\n<p>“What’s more, the website which Equifax created to notify people of the breach, is highly problematic for a variety of reasons,” Ars Technica Security Editor Dan Goodin said. “It runs on a stock installation WordPress, a content management system that doesn’t provide the enterprise-grade security required for a site that asks people to provide their last name and all but three digits of their Social Security number.”</p>\n<p>Goodin also referenced the output of <a href="https://www.equifaxsecurity2017.com/wp-json/wp/v2/users/" target="_blank">https://www.equifaxsecurity2017.com/wp-json/wp/v2/users/</a> which earlier in the day exposed the username for the site’s administrator before the page was protected.</p>\n<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/equifax-site-users-endpoint.png?ssl=1"><img /></a></p>\n<p>WordPress’ handbook has a section on reporting security vulnerabilities that explains <a href="https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/#why-are-disclosures-of-usernames-or-user-ids-not-a-security-issue" target="_blank">why disclosures of usernames or user IDs is not a security issue</a>:</p>\n<blockquote><p>The WordPress project doesn’t consider usernames or user ids to be private or secure information. A username is part of your online identity. It is meant to identify, not verify, who you are saying you are. Verification is the job of the password.</p>\n<p>Generally speaking, people do not consider usernames to be secret, often sharing them openly. Additionally, many major online establishments — such as Google and Facebook — have done away with usernames in favor of email addresses, which are shared around constantly and freely. WordPress has also moved this way, allowing users to log in with an email address or username since version 4.5.</p></blockquote>\n<p>WordPress Core Security Team Lead Aaron Campbell clarified this section of the handbook to confirm that the users endpoint is intended to be an open API endpoint that serves public data.</p>\n<p>“It does in fact include usernames and user IDs (among other things) for users that have published posts in a post type that is set up to use the API, but all the data is considered public,” Campbell said.</p>\n<p>Campbell also said he is wary of entering personal data into the equifaxsecurity2017.com website, but not because it is using WordPress.</p>\n<p>“I don’t think the fact that it runs on WordPress is a concern from a security standpoint, with the caveat that I don’t know what ELSE it’s using,” Campbell said. “‘Equifax’ is a trusted brand, but it’s not the official Equifax domain and the SSL certificate doesn’t verify ownership. So you know your data is encrypted, but not necessarily who it’s being sent to since you don’t know who owns the site.”</p>\n<p>It’s not clear why Equifax simply didn’t build out the information site on its own domain. According to security investigator <a href="https://krebsonsecurity.com/2017/09/equifax-breach-response-turns-dumpster-fire/" target="_blank">Brian Krebs</a>, the company appears to have hired Edelman PR, a global PR firm, to handle its public response to the data breach, citing the username publicly displayed by WordPress’ API. Edelman PR opted to use a free Cloudflare certificate to secure the site.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">Not only did <a href="https://twitter.com/Equifax">@Equifax</a> suffer a massive data breach, but their site about the breach is using a free shared CloudFlare SSL cert. ಠ_ಠ <a href="https://t.co/r4bvPpde1i">pic.twitter.com/r4bvPpde1i</a></p>\n<p>— Daniel Lo Nigro (@Daniel15) <a href="https://twitter.com/Daniel15/status/905953979934187520">September 8, 2017</a></p></blockquote>\n<p></p>\n<p>Consumers were also off put by the verbiage of the arbitration clause included in the terms and services of the free credit monitoring, which appears to force those who sign up to waive their rights to participate in class action lawsuits against the company.</p>\n<p>“I cannot recall a previous data breach in which the breached company’s public outreach and response has been so haphazard and ill-conceived,” Krebs said.</p>\n<p>Kenneth White, a security researcher and director of the Open Crypto Audit Project, said on Twitter that he was amazed the site was running stock WordPress but that his comments specifically referenced the sloppy implementation of the site.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">intent wasn\'t to blast WP, this is just sloppy—default admin pages, default nginx errors, wonky certs, phish flagged…</p>\n<p>— Kenn White (@kennwhite) <a href="https://twitter.com/kennwhite/status/906152286908551168">September 8, 2017</a></p></blockquote>\n<p></p>\n<p>Due to how the site was set up, it appeared to many consumers and researchers as Equifax’s way of stalling or perhaps even scamming those who may have been affected by the breach. Various browsers flagged it as a phishing threat, and some consumers found they were given different answers from the form based on whether they checked with desktop or mobile devices. In responding to the incident with a website that appears to have been hastily implemented for its own convenience and corporate interests, Equifax has missed an opportunity to reclaim any remaining consumer confidence from the public.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 08 Sep 2017 20:04:54 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:35;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:61:"WPTavern: SWFUpload Will Officially Be Removed From 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:29:"https://wptavern.com/?p=74660";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/swfupload-will-officially-be-removed-from-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:2000:"<p>SWFUpload is an open-source library that was used by WordPress in 2011 and earlier that allowed users to upload files. The library was abandoned and replaced with <a href="http://www.plupload.com/">Plupload</a> in WordPress 3.3, released in 2011. Despite being replaced, WordPress continued to bundle the library for plugins that didn’t migrate to Plupload. In 2013, the core team <a href="http://github.com/wordpress/secure-swfupload">forked SWFUpload</a> and maintained the project, applying security fixes submitted by contributors.</p>\n<p>After six years of deprecation, the core team <a href="https://make.wordpress.org/core/2017/09/07/removing-swfupload/">has announced</a> that SWFUpload will officially be removed from WordPress core. The team searched the WordPress plugin directory and <a href="https://core.trac.wordpress.org/ticket/41752">compiled a list</a> of plugins that contain references to swfupload in their code. <a href="https://core.trac.wordpress.org/ticket/41752#comment:4">According to Weston Ruter</a>, the list includes 128 themes and plugins.</p>\n<p>Some of the most popular plugins include:</p>\n<ul>\n<li><a href="https://wordpress.org/plugins/wysija-newsletters/">MailPoet 2</a></li>\n<li><a href="https://wordpress.org/plugins/wp-all-import/">WP All Import</a></li>\n<li><a href="https://wordpress.org/plugins/profile-builder/">Profile Builder</a></li>\n<li><a href="https://wordpress.org/plugins/flash-album-gallery/">Gallery Grand Flagallery</a></li>\n</ul>\n<p>The team is working on a way to provide enough backwards compatibility to ensure there are no JavaScript errors and an upload form is displayed instead of embedded Flash. Andrew Ozz also apologized to plugin authors noting that the list likely contains some false positives. If you use one or more of the plugins mentioned above, please get in touch with the author and ask if it will function <a href="https://make.wordpress.org/core/2017/09/07/removing-swfupload/">without SWFUpload in core</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 08 Sep 2017 08:06:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:36;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"WPTavern: WordCamp Ann Arbor to Host Second WordCamp WarmUp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74654";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"https://wptavern.com/wordcamp-ann-arbor-to-host-second-wordcamp-warmup";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2080:"<p><a href="https://2017.annarbor.wordcamp.org/">WordCamp Ann Arbor, MI</a>, is set to take place October 13-14 and for the second year in a row, organizers will host a secondary event called <a href="https://wptavern.com/wordcamp-warmup-an-experimental-event-aimed-at-breaking-the-ice-for-new-wordcamp-attendees">WordCamp WarmUp</a>. WordCamp WarmUp provides an environment for attendees to break the ice and meet new people before the main event.</p>\n<p>Janelle Reichman is co-organizing WordCamp WarmUp. “I’ve been running my own WordPress business for about eight years,” Reichman said. “However, I attended my first WordCamp just last fall. I’ll never forget it – I was pretty much terrified.</p>\n<p>“But then, I got an invitation to a WordCamp WarmUp. I couldn’t believe my luck. I couldn’t believe there was an event made exactly for people like me, who were shaking in their boots at the prospect of showing up at a conference and not knowing anybody.</p>\n<p>“I attended the WarmUp, made friends, saw them all the next day at WordCamp, and ended up having an amazing and unforgettable time”</p>\n<p>Unlike last year’s WarmUp, details for this years event will only be announced to WordCamp Ann Arbor <a href="https://2017.annarbor.wordcamp.org/tickets/">ticket holders</a>. The event is maxed out to fifty people and is available on a first come, first serve basis. Appetizers and beverages will be provided.</p>\n<p>Rebecca Gill, founder of <a href="https://www.web-savvy-marketing.com/">Web-Savvy-Marketing</a>, organized <a href="https://wptavern.com/wordcamp-warmup-is-a-success">the event last year</a> and <a href="https://www.web-savvy-marketing.com/2016/10/recap-of-wordcamp-ann-arbors-wordcamp-warmup/">considered it a success</a>. “Not only did most WarmUp guests arrive right on time, we had a full room of WarmUp attendees and even had a few unexpected friends show up,” Gill said.</p>\n<p>Ticket holders can expect to see an email with event details within the next few weeks.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 08 Sep 2017 03:14:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:116:"WPTavern: Gutenberg 1.1.0 Adds Autocomplete for Blocks, Developers Elaborate on How New Editor Will Work with Themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=74545";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/gutenberg-1-1-0-adds-autocomplete-for-blocks-developers-elaborate-on-how-new-editor-will-work-with-themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4082:"<p>Gutenberg contributors continue marching forward this week on their relentless drive to improve the usability of the controversial new editor that will <a href="https://wptavern.com/matt-mullenweg-addresses-concerns-about-gutenberg-confirms-new-editor-to-ship-with-wordpress-5-0" target="_blank">ship with WordPress 5.0</a>. Meanwhile, discussions about Gutenberg’s timing, implications, UI, architecture, and other aspects of the project continue across the web, as the community grapples with what this new editor will mean for the future of WordPress.</p>\n<p><a href="https://make.wordpress.org/core/2017/09/05/whats-new-in-gutenberg-september-5/" target="_blank">Version 1.1.0</a> was released this week with a new autocomplete-shortcut for adding new blocks without leaving the keyboard.</p>\n<p>Many testers have been frustrated with the amount of pointing and clicking required to create new blocks. Autocomplete for blocks is a new feature that partially answers this problem, but it relies on the user knowing that typing a slash <code>/</code> in a new default paragraph block will trigger autocomplete. It may also be added to other blocks in the future.</p>\n<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/autocomplete.gif?ssl=1"><img /></a></p>\n<p>“We still need to get the point-click/tap interactions right since most people won’t discover, remember, nor use keyboard shortcuts,” Gutenberg engineer Matías Ventura <a href="https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/#comment-587704" target="_blank">said</a> in response to user feedback on the plugin.</p>\n<p>This release of the plugin adds the ability to remove images from the gallery block inline. It works smoothly and resizes the thumbnail previews to fit the available space after an image is removed.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/gutenberg-gallery-delete-image.png?ssl=1"><img /></a></p>\n<p>Version 1.1.0 also includes small updates like the ability to set links to <a href="https://github.com/WordPress/gutenberg/pull/2628" target="_blank">open in a new window</a>, accessibility improvements to the add-new-category form, caption styling for video blocks, adjustments to column width calculation in the gallery block, and many other tweaks and improvements. The <a href="http://gutenberg-devdoc.surge.sh/" target="_blank">Gutenberg docs</a> also received <a href="https://github.com/WordPress/gutenberg/pull/2638" target="_blank">an updated design</a> and improvements to the content.</p>\n<h3>A Preview of How Gutenberg Will Interact with Themes to Build Websites</h3>\n<p>Gutenberg engineers elaborated on how they expect the new editor will work with themes in a <a href="https://make.wordpress.org/core/2017/08/31/gutenberg-themes/" target="_blank">post</a> on the make.wordpress./core blog. Matías Ventura published two video examples to demonstrate where they see Gutenberg headed on its journey towards becoming a full-fledged website building tool. Ventura said this is the long-term goal after the project completes the post and page editing milestone.</p>\n<p>The first video shows how Gutenberg can be used for page building, starting with a blank slate and a theme that defines specific styles for blocks. The second one shows how a theme might include templates with blocks already in place that provide users with a guided page-building experience.</p>\n<p></p>\n<p></p>\n<p>These examples clarify some of the benefits the team is aiming for with Gutenberg and how WordPress theme authors will be able to build more user-friendly experiences on top of the new editor.</p>\n<p>“These are quickly put together, but I hope it shows how things can progress even with very straightforward theme integration,” Ventura said. “As soon as we expand the scope and include more blocks (site title, site header, menus, more widgets, etc), and describe a way to store page templates as a «list of blocks», Gutenberg would be fundamentally capable of building an entire website.”</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 07 Sep 2017 20:02:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:38;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:97:"WPTavern: WPWeekly Episode 287 – WordPress Meetups, Events, and WordCamps with 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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wptavern.com?p=74614&preview=true&preview_id=74614";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/wpweekly-episode-287-wordpress-meetups-events-and-wordcamps-with-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1776:"<p>In this episode, <a href="https://jjj.blog/">John James Jacoby</a> and I are joined by <a href="https://andreamiddleton.blog/">Andrea Middleton</a>, Dot org Wrangler at Automattic. Middleton supports WordPress community organizers by helping them <a href="https://make.wordpress.org/community/">plan community events</a> that inspire people to do more with WordPress, connect the community, and contribute to the WordPress project.</p>\n<p>We discussed a variety of topics including, whether or not speakers should be compensated, regional WordCamps, and improvements that have been made to WordCamp.org. By the way, if you can lend a hand with <a href="https://meta.trac.wordpress.org/ticket/2992">this trac ticket</a>, it would be appreciated.</p>\n<p>We also discussed the possibilities of expanding WordCamps to be more subject focused events. Last but not least, we talked about the successful <a href="https://wptavern.com/wordpress-to-launch-experimental-wordcamp-incubator-program">WordCamp Incubator program</a> and whether or not it will continue.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, September 13th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank" rel="noopener">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="https://wptavern.com/feed/podcast" target="_blank" rel="noopener">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank" rel="noopener">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #287:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 07 Sep 2017 01:59:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:37:"HeroPress: Crafting the Life You Want";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=2086";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:110:"https://heropress.com/essays/crafting-life-want/#utm_source=rss&utm_medium=rss&utm_campaign=crafting-life-want";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9042:"<img width="960" height="480" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/09/090617-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: WordPress turned out to be a tool that led me to meeting a fantastic community of interesting and friendly people." /><p>I grew up in a small country town in Poland, where life was pretty simple. People would know all the neighbors, they would pay each other visits every week to talk about what’s been going on in the community and to have a beer or two. It all seemed great until the moment when I got a bit older and went to Junior High School. My hair, unlike all other boys’, was long and I enjoyed listening to rock / metal music, the genre that was considered weird, unknown, maybe even evil.</p>\n<blockquote><p>Suddenly this friendly community started treating me like an alien, someone they refused to treat as one of their own or spend time with.</p></blockquote>\n<p>Almost every day I would get some beatings from school bullies, they would pull my hair, call me names, in short – my life became miserable. I had to find a way to survive, something to focus on.</p>\n<p>That’s when I started spending even more time with my computer, playing Diablo (I even set up a Diablo fan club which became quite popular in Poland) and other multiplayer games that connected me with new people. All these interesting personalities living there, somewhere far away, (and the unforgettable sound of a dial-up modem) made me believe there was something good out there waiting for me.</p>\n<p>Next, natural step was the analysis of how a game could be created. I spent months looking at the code and analyzing its components. There weren’t many tutorials back then, so sometimes it took a while to figure things out. But it all led to building my first website, which was full of tables and hundreds of colorful elements, everything was there! I was so proud of myself! <img src="https://s.w.org/images/core/emoji/2.3/72x72/1f642.png" alt="🙂" class="wp-smiley" /></p>\n<p>When I went to High School, I already knew a thing or two about coding and I wasn’t afraid to use it! I moved to a big city, got my first job as a graphic designer and started renting my own apartment.</p>\n<blockquote><p>I was very young, full of energy and determination to change my life.</p></blockquote>\n<p>After a while I got another job and another, and suddenly I realized that coding became an essential part of my life. Instead of learning chemistry and biology, I spent my nights learning new ways of improving my skills and finally was offered a pretty sweet job in a huge company, where I led a team of front-end developers. Yes, I was about 19, but I felt so mature. It’s so funny now, when I recall that feeling of accomplishing “everything”, but hey, I knew CSS ‘hacks’ on IE 6, I knew it all!</p>\n<blockquote><p>Of course, I had heard of WordPress, but none of the ‘true’ coders would use it, so why would I want to dig into that?</p></blockquote>\n<p>Well, I’m glad someone helped me change my mind. In 2010 my colleague invited me to join him on WordCamp. In Poland WordPress was still considered a cute little tool for creating internet blogs, so I thought going there would be a waste of time, but it turned out to be a life-changing experience. The opportunity to meet people from different countries, hear them talk about the growing possibilities of WordPress made me realize I was in the right place. The fact that a few people I met there are still my friends today only stresses the importance of that event.</p>\n<blockquote><p>It simply dawned on me that it’s not really about the CMS or other technical elements.</p></blockquote>\n<p>WordPress turned out to be a tool that led me to meeting a fantastic community of interesting and friendly people. And this was one of the reasons I wanted to delve further into WordPress.</p>\n<p>Two years later I started cooperating with a company based in the United States. Their main tool to build sites on was WordPress, obviously. By the way, I’ve been with this company for over 5 years now and to be honest, I can’t imagine my life without those guys now, but I don’t want to keep you here too long, so let’s move on. I quit my safe, ‘nine to five’ job to the dismay of my parents and started working remotely. Everything was so new, so exciting, but at the same time physically and mentally exhausting. I was doing my master’s degree in e-business and I rarely slept through the night, mostly because my clients were from different time zones.</p>\n<p>To make things more exciting, I applied for a grant from the European Union and registered my own little company in Poland. But hey, I still felt unsated. It took me around a year to decide to move my company to the United States and go there to manage it. Actually, part of this time was spent on convincing my wife to quit the job she didn’t like anyway, but again, no subplots.</p>\n<blockquote><p>To say that moving to the States was easy would be a monstrous lie.</p></blockquote>\n<p>Dealing with visas and all types of immigration documents is very time-consuming and caused us way too many sleepless nights, but eventually we got to California! I registered my company (again!), opened a bank account (you wouldn’t believe how difficult it was, so thank you, dear Russian lady for fighting with the system for over 2 hours!), and looked for a place to stay.</p>\n<p>Almost 3 years have passed, I’ve been given a chance to work with amazing people whom I truly admire, and I work for and with a few startups that, I admit, are close to my heart. One of the projects my wife and I are working on is a platform (based on WordPress, of course) that will help freelancers find good, well paid projects. Again, right time, right place, no doubt about it.</p>\n<blockquote><p>“I know you’ve heard it a thousand times before. But it’s true – hard work pays off. If you want to be good, you have to practice, practice, practice. If you don’t love something, then don’t do it.“ (Ray Bradbury)</p></blockquote>\n<p>Very often people ask me if it’s all worth it, if I’m a masochist and enjoy burning the midnight oil, but I don’t see it that way. If I have a goal, whether it’s one to create a new website, or learn how to prepare real pierogi (dumplings) for my wife, I’m ready to spend as much time as needed to accomplish it. Sure, if it’s not something I truly ‘feel’, I might not be able to devote 100 percent of my energy to make it happen, but I like to think it’s a matter of making the right choices.</p>\n<p>I’m not saying it’s all rainbows and butterflies right now, I’m not a guy who spends his days surfing or drinking cocktails. To be honest I don’t think I’ll ever be that guy. I’m still working very hard and I rarely take days off, but at least when I go to bed I have a feeling that I’ve done all I could to help others and improve my skills as a front-ender, project manager and most of all, a human being.</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: Crafting the Life You Want" class="rtsocial-twitter-button" href="https://twitter.com/share?text=Crafting%20the%20Life%20You%20Want&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fcrafting-life-want%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: Crafting the Life You Want" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fcrafting-life-want%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%2Fcrafting-life-want%2F&title=Crafting+the+Life+You+Want" rel="nofollow" target="_blank" title="Share: Crafting the Life You Want"></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/crafting-life-want/&media=https://heropress.com/wp-content/uploads/2017/09/090617-150x150.jpg&description=Crafting the Life You Want" rel="nofollow" target="_blank" title="Pin: Crafting the Life You Want"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/crafting-life-want/" title="Crafting the Life You Want"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/crafting-life-want/">Crafting the Life You Want</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, 06 Sep 2017 12:00: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:14:"Damian Samolej";s: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:86:"WPTavern: Jetpack 5.3 Adds PHP 7.1 Compatibility, Better Control for WordAds Placement";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74547";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:96:"https://wptavern.com/jetpack-5-3-adds-php-7-1-compatibility-better-control-for-wordads-placement";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2636:"<p><a href="https://jetpack.com/2017/09/05/jetpack-5-3-php-7-1-compatibility/" target="_blank">Jetpack 5.3</a> was released with compatibility for PHP 7.1, a task the Jetpack team has been working on <a href="https://github.com/Automattic/jetpack/issues/6106" target="_blank">since January 2017</a> after they received multiple reports of <a href="https://github.com/Automattic/jetpack/issues/6629" target="_blank">failures with PHP 7.1 when opcache was enabled</a>. This interfered with XML-RPC requests and some users reported issues managing their sites from WordPress.com and connecting to third-party apps. Downgrading to PHP 7.0 or disabling opcache in PHP 7.1 provided temporary workarounds for many users but this is no longer required as of Jetpack 5.3.</p>\n<p>In January 2017, <a href="https://wptavern.com/jetpack-4-5-expands-monetization-with-wordads-integration" target="_blank">Jetpack added integration with WordAds</a>, WordPress.com’s advertising program. Over the past few years the program has evolved to get better at distinguishing sites with higher quality traffic and allocating earnings accordingly. This correction, along with industry-wide declining ad rates, has given publishers more modest earnings expectations after the first few years of unpredictable payouts. Jetpack 5.3 offers customers on the Premium and Professional plans more control over how ads are displayed.</p>\n<p>This release adds the ability for publishers to display multiple ads and introduces more control options for where they can be placed. Since WordAds pays based on the number of impressions (combined with many other factors) and not the number of clicks, selecting the right combination of placement options is important for success.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/wordads-jetpack5-3.png?ssl=1"><img /></a></p>\n<p>Other notable changes and improvements include the following:</p>\n<ul>\n<li>Users can preview their sites without leaving WordPress.com</li>\n<li>WordPress.com Toolbar updated to include link to comments</li>\n<li>Omnisearch feature was removed</li>\n<li>Improved performance in the admin by cutting back on unnecessary requests</li>\n<li>VideoPress shortcode includes option to stop video from looping during autoplay</li>\n<li>Fixed compatibility issues with plugins using TinyMCE</li>\n<li>Re-added a filter for Widget Visibility that was accidentally removed</li>\n</ul>\n<p>For a full list of all the changes included in Jetpack 5.3, check out the plugin’s <a href="https://wordpress.org/plugins/jetpack/#developers" target="_blank">changelog</a> on WordPress.org.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 06 Sep 2017 05:46:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:41;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:78:"WPTavern: WordCamp Grand Rapids Attendees Share First Impressions of Gutenberg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74538";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordcamp-grand-rapids-attendees-share-first-impressions-of-gutenberg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2688:"<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/wordcamp-grand-rapids.png?ssl=1"><img /></a></p>\n<p>While attending <a href="https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event" target="_blank">WordCamp Grand Rapids</a> I had the opportunity to interview developers and business owners about their first impressions of the new Gutenberg editor. Many attendees I spoke to had not yet heard of the project but were intrigued and decided to install the plugin on a test site. A few attendees were developers who have already contributed to Gutenberg and are experimenting with extending the editor.</p>\n<p>Those who have tested the beta have varied concerns, depending on how they use WordPress in their professions. Some are waiting to begin testing until the plugin provides a more consistent experience. One of the most common concerns for developers is how the editor will handle meta boxes. Freelancers and agency owners are waiting to see how the new editor will affect their businesses.</p>\n<p>“How much am I going to have to change what my company does as a business to build websites with this new tool?” Topher DeRosia asked.</p>\n<p>Agency owner Sara Dunn said she is excited about what Gutenberg will bring to WordPress and undaunted by the prospect of getting clients acquainted to a new interface. She believes the project has a lot of potential to solve some of the most common client frustrations.</p>\n<p>“I’m excited about it, because I have a lot of clients who say they can’t stand WordPress because when they look at the backend and update their pages and posts, it doesn’t look how it looks on the frontend,” Dunn said. “I really think WordPress needs this move to compete in the future, and I’m excited about where it’s going.”</p>\n<p>John James Jacoby, one of the developers who has contributed to Gutenberg and experimented with extending it, said he considers it to be a very ambitious project.</p>\n<p>“It is probably one of the most important projects that anyone has worked on with WordPress in a number of years, in my opinion,” Jacoby said. “My take on it is that everyone has the responsibility to try to influence the direction that it’s going to take. If we care about the open web and the freedom of how people publish to it, then we should all try to join in and help with its ongoing development and make it as good as it can be if it’s going to end up as part of WordPress in the coming months.”</p>\n<p>Check out the interviews below to see how attendees weighed in on Gutenberg.</p>\n<p></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 05 Sep 2017 23:31: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:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:45:"Dev Blog: The Month in WordPress: August 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4899";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"https://wordpress.org/news/2017/09/the-month-in-wordpress-august-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6420:"<p>While there haven’t been any major events or big new developments in the WordPress world this past month, a lot of work has gone into developing a sustainable future for the project. Read on to find out more about this and other interesting news from around the WordPress world in August.</p>\n<hr />\n<h2>The Global WordPress Translation Day Returns</h2>\n<p>On September 30, the WordPress Polyglots team will be holding <a href="https://wptranslationday.org/">the third Global WordPress Translation Day</a>. This is a 24-hour global event dedicated to the translation of the WordPress ecosystem (core, themes, plugins), and is a mix of physical, in-person translation work with online streaming of talks from WordPress translators all over the world.</p>\n<p>Meetup groups will be holding events where community members will come together to translate WordPress. To get involved in this worldwide event, <a href="https://www.meetup.com/pro/wordpress/">join your local meetup group</a> or, if one is not already taking place in your area, organize one for your community.</p>\n<p>You can find out more information <a href="https://wptranslationday.org/global-wordpress-translation-day-3/">on the Translation Day blog</a> and in the #polyglots-events channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a>.</p>\n<h2>WordPress Foundation to Run Open Source Training Worldwide</h2>\n<p>The WordPress Foundation is a non-profit organization that exists to provide educational events and resources for hackathons, support of the open web, and promotion of diversity in the global open source community.</p>\n<p>In an effort to push these goals forward, <a href="http://wordpressfoundation.org/2017/call-for-organizers-introduction-to-open-source/">the Foundation is going to be offering assistance</a> to communities who would like to run local open source training workshops. A number of organizers have applied to be a part of this initiative, and the Foundation will be selecting two communities in the coming weeks.</p>\n<p>Follow <a href="http://wordpressfoundation.org/news/">the WordPress Foundation blog</a> for updates.</p>\n<h2>Next Steps in WordPress Core’s PHP Focus</h2>\n<p>After <a href="https://wordpress.org/news/2017/08/the-month-in-wordpress-july-2017/">last month’s</a> push to focus on WordPress core’s PHP development, a number of new initiatives have been proposed and implemented. The first of these initiatives is a page on WordPress.org that will educate users on the benefits of upgrading PHP. The page and its implementation are still in development, so <a href="https://github.com/WordPress/servehappy">you can follow and contribute on GitHub</a>.</p>\n<p>Along with this, <a href="https://make.wordpress.org/plugins/2017/08/29/minimum-php-version-requirement/">plugin developers are now able to specify</a> the minimum required PHP version for their plugins. This version will then be displayed on the Plugin Directory page, but it will not (yet) prevent users from installing it.</p>\n<p>The next evolution of this is for the minimum PHP requirement to be enforced so that plugins will only work if that requirement is met. You can assist with this implementation by contributing your input or a patch on <a href="https://core.trac.wordpress.org/ticket/40934">the open ticket</a>.</p>\n<p>As always, discussions around the implementation of PHP in WordPress core are done in the #core-php channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a>.</p>\n<h2>New Editor Development Continues</h2>\n<p>For a few months now, the core team has been steadily working on Gutenberg, the new editor for WordPress core. While Gutenberg is still in development and is some time away from being ready, a huge amount of progress has already been made. In fact, <a href="https://make.wordpress.org/core/2017/08/29/whats-new-in-gutenberg-august-29/">v1.0.0 of Gutenberg</a> was released this week.</p>\n<p>The new editor is available as a plugin <a href="https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/">for testing</a> and <a href="https://make.wordpress.org/core/2017/08/11/revised-suggested-roadmap-for-gutenberg-and-customization/">the proposed roadmap</a> is for it to be merged into core in early 2018. You can get involved in the development of Gutenberg by joining the #core-editor channel in the <a href="https://make.wordpress.org/chat/">Making WordPress Slack group</a> and following the <a href="https://make.wordpress.org/core/">WordPress Core development blog</a>.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>On the topic of Gutenberg, <a href="https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/">Matt Mullenweg wrote a post</a> to address some of the concerns that the community has expressed about the new editor.</li>\n<li><a href="http://hookrefineandtinker.com/2017/08/jaiwp-an-alternative-project-to-wordcamp-india/">A new movement has started</a> in the Indian WordPress community named JaiWP — the organizers are seeking to unite and motivate the country’s many local communities.</li>\n<li><a href="https://richtabor.com/merlin-wp/">Merlin WP</a> is a new plugin offering theme developers an easy way to onboard their users.</li>\n<li>Ryan McCue posted <a href="https://make.wordpress.org/core/2017/08/23/rest-api-roadmap/">an ambitious roadmap</a> for the future of the WordPress REST API — many contributions from the community will be needed in order to reach these goals.</li>\n<li>Want to know what you can expect in the next major release of WordPress? <a href="https://make.wordpress.org/core/2017/08/11/wordpress-4-9-goals/">Here’s a look</a> at what the core team is planning for v4.9.</li>\n<li>To help combat the difficulties that Trac presents to WordPress Core contributors, Ryan McCue built an alternative platform dubbed <a href="https://github.com/rmccue/not-trac">Not Trac</a>.</li>\n<li><a href="https://make.wordpress.org/cli/2017/08/08/version-1-3-0-released/">v1.3.0 of WP-CLI was released</a> earlier in the month, adding a whole lot of great new features to the useful tool.</li>\n</ul>\n<p><i><span>If you have a story we should consider including in the next “Month in WordPress” post, please </span></i><a href="https://make.wordpress.org/community/month-in-wordpress-submissions/"><i><span>submit it here</span></i></a><i><span>.</span></i></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 01 Sep 2017 10:02:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:82:"WPTavern: WordCamp Grand Rapids 2017 Sells Out, Organizers On Board for 2018 Event";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74039";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:92:"https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:8631:"<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/wordcamp-grandrapids.png?ssl=1"><img /></a></p>\n<p>The 4th edition of <a href="http://2017.grandrapids.wordcamp.org" target="_blank">WordCamp Grand Rapids</a> was held last weekend at Grand Valley State University’s downtown Pew Campus. After a brief hiatus following previous events in 2012, 2013, and 2014, the WordCamp is back in action with first-time lead organizer <a href="https://twitter.com/mysweetcate" target="_blank">Cate DeRosia</a> at the helm.</p>\n<p>Tickets sold out shortly before the event and the vast majority of them were local to Michigan. DeRosia estimates that 40% came from Grand Rapids and 60% of attendees were within an hour radius. She published the camp’s details with a local events webpage and set up a Facebook page to increase local awareness. Organizers also received contacts from the WordPress dashboard events widget and the local MeetUp announcement.</p>\n<p>Despite being a relatively small WordCamp with 144 attendees, organizers had enough speaker submissions to fill three tracks with topics ranging from development and design to freelance best practices and scaling a business. Attendees characterized the organizers as “connectors” who have a natural gift for helping people and businesses get to know each other. DeRosia said one of the unique things about the lower Michigan WordPress community is its dedication to helping each other succeed with WordPress.</p>\n<p>“The core group in Grand Rapids, and really across the lower half of Michigan, is highly experienced and sincerely dedicated to helping people,” DeRosia said. “No one is fighting to be top dog on the pile. No one’s gloating. Meetups and WordCamps are ways to give back, to encourage and grow others in the community. The focus is on the opportunities that WordPress can provide anyone and a willingness to share their years of hard earned experience to help others succeed.”</p>\n<p>DeRosia said the organizing team’s goal was to provide a little something for everyone and “an opportunity to learn what can be done and take that home to foster and grow at each individual’s own pace.” The event was marked by the friendliness and enthusiasm of the volunteers and provided several breaks and social times for attendees to exchange ideas and build relationships with others in the industry.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">4yrs ago I attended <a href="https://twitter.com/hashtag/wcgr?src=hash">#wcgr</a> and knew no one. Attended yesterday and it\'s all handshakes, high fives and hugs. <a href="https://twitter.com/hashtag/community?src=hash">#community</a> <a href="https://twitter.com/hashtag/wcfamily?src=hash">#wcfamily</a> <img src="https://s.w.org/images/core/emoji/2.3/72x72/1f604.png" alt="😄" class="wp-smiley" /></p>\n<p>— Kyle Maurer (@MrKyleMaurer) <a href="https://twitter.com/MrKyleMaurer/status/901914242626007040">August 27, 2017</a></p></blockquote>\n<p></p>\n<p>WordCamp Grand Rapids had 13 volunteers who gave up their Saturday, including all of the organizers, and all of them were hands on the day of event. DeRosia’s teenage daughter Sophia, who has been volunteering at camps for years, also joined by contributing the event’s wapuu design and helping with operations. In the short interview below she describes how she came up with the idea for the wapuu and why she enjoys getting involved in WordPress events.</p>\n<p></p>\n<p>DeRosia had just four months to get the event organized and said she relied heavily on information and resources from other WordCamp organizers in Michigan. She stayed with the same venue from previous camps, which she said met her criteria for making things convenient for attendees: lunch was easily available, parking was easy to find (and free), and it was within a reasonable walking distance of hotels and the after party. The camp had no issues getting local sponsorships.</p>\n<p>“Our sponsors were amazing,” DeRosia said. “We came in late to the schedule and still had the sponsorship we needed with out any problems. It helps that as an organizing group we’ve created friendships in the community, but most of our sponsorship was local or regional which really helped cement the idea that another WordCamp in the area has value.”</p>\n<p>DeRosia said with the number of people who left talking about the next event, she anticipates there will be another WordCamp Grand Rapids in 2018 and she hopes to help again as lead organizer.</p>\n<p>“I knew tackling the ‘unknowns’ of this first one (and doing it in a short time frame) was going to be emotionally difficult for me personally, but I also realized that most of what I was planning for this year would simply be able to move over into next year,” DeRosia said. “In a sense, I was planning much of the next camp while planning the first.”</p>\n<p>As a first-time organizer, DeRosia said she was impressed by the volunteers, speakers, and attendees’ positive attitudes and their willingness to help given the short time frame.</p>\n<p>“Aside from being terrified of what I didn’t know, it was actually a very positive experience,” DeRosia said. “I had tons of encouragement from our organizing team and the community at large. I was really able to build on the success of the first three Grand Rapids WordCamps, WordCamp Ann Arbor, and the newest area WordCamp in Jackson (MI). I had serious doubts that the community would even care about having another WordCamp (Was I just wasting my time?), but they proved that it’s a wanted commodity.”</p>\n\n<a href="https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/screenshot_20170831-155129"><img width="150" height="150" src="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/Screenshot_20170831-155129.png?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" /></a>\n<a href="https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/wcgr-sara"><img width="150" height="150" src="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/wcgr-sara.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" /></a>\n<a href="https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/wcgr-br"><img width="150" height="150" src="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/wcgr-br.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" /></a>\n<a href="https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/wcgr-stickers"><img width="150" height="150" src="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/wcgr-stickers.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" /></a>\n<a href="https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/wcgr-jjj"><img width="150" height="150" src="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/wcgr-jjj.jpg?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" /></a>\n<a href="https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/wcgr-stickers2"><img width="150" height="150" src="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/wcgr-stickers2.png?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" /></a>\n<a href="https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/screenshot_20170831-154730"><img width="150" height="150" src="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/Screenshot_20170831-154730.png?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" /></a>\n<a href="https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/screenshot_20170831-154854"><img width="150" height="150" src="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/Screenshot_20170831-154854.png?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" /></a>\n<a href="https://wptavern.com/wordcamp-grand-rapids-2017-sells-out-organizers-on-board-for-2018-event/screenshot_20170831-155040"><img width="150" height="150" src="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/Screenshot_20170831-155040.png?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail" alt="" /></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:"Thu, 31 Aug 2017 21:08:33 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:44;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:74:"WPTavern: Gutenberg 1.0.0 Introduces Drag and Drop for Adding Image 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=74447";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/gutenberg-1-0-0-introduces-drag-and-drop-for-adding-image-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:3151:"<p><a href="https://make.wordpress.org/core/2017/08/29/whats-new-in-gutenberg-august-29/" target="_blank">Gutenberg 1.0.0</a> was released this week as another iteration in the beta period that will continue on with 1.1 next week. Design lead Tammie Lister said the team decided “not let numbers set expectations” and will carry on at the same pace with weekly releases.</p>\n<p>One of the most visible UI updates in version 1.0 is the new ability to <a href="https://github.com/WordPress/gutenberg/pull/2447" target="_blank">add image blocks by dragging and dropping them into the editor</a>. They can be placed directly within the content (between blocks) and also onto the image block placeholder. Gutenberg includes a blue line indicator for dropzones where users can place an image.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/gutenberg-image-upload.gif?ssl=1"><img /></a></p>\n<p>After testing I found this feature works smoothly but is a little slow. The slight delay of uploading the image after placing it may leave the user confused about what is happening. However, feedback on this particular pull request indicates that the team is working on displaying an immediate reaction to the image having been dropped, instead of waiting for the upload to finish.</p>\n<p>This release also <a href="https://github.com/WordPress/gutenberg/pull/2452" target="_blank">merges the paragraph and cover text blocks</a>. Contributors agreed that the two blocks could be easily combined and the colors and font size options from the previous cover block have now been added to the block settings sidebar.</p>\n<p>A few other improvements in this release include the following:</p>\n<ul>\n<li>Reworked color palette picker with a “clear” and a “custom color” option</li>\n<li>Further improvements to inline pasting and fixing errant empty blocks</li>\n<li>Added thumbnail size selector to image blocks</li>\n<li>Added support for url input and align and edit buttons to audio block</li>\n<li>Restored keyboard navigation with more robust implementation, addressing previous browser issues</li>\n<li>Added align and edit buttons to video block</li>\n<li>Show “add new term” in hierarchical taxonomies (including categories)</li>\n</ul>\n<p>Overall, the experience of writing within Gutenberg is improving, and the 1.0 release announcement includes an animated gif to demonstrate a user typing in the paragraph block:</p>\n<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/typing.gif?ssl=1"><img /></a></p>\n<p>The editor is getting better at staying out of the way when a user is writing, but the slightest mouse move within the paragraph block will slide all of the block’s surrounding controls into view. This experience can be a bit jarring, but it may be inevitable unless more of the UI can be buried under the inspector. The paragraph blocks currently display the most commonly used controls for writing text content, but I could see plugins hooking into this to create different types of writing experiences that either add more controls or pare it back to something more minimalist.</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, 30 Aug 2017 20:42:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:45;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:94:"WPTavern: WordPress.org Now Allows Plugin Authors to Specify a Minimum PHP Version Requirement";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=74438";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordpress-org-now-allows-plugin-authors-to-specify-a-minimum-php-version-requirement";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2585:"<p>Although WordPress core currently maintains backwards compatibility with PHP 5.2.4+, plugin and theme authors are not required to do so. When developers include features that require more recent versions of PHP, it can break sites or cause otherwise unexpected behavior. As part of a larger effort to encourage users to upgrade their PHP versions, WordPress.org now allows plugin authors to <a href="https://make.wordpress.org/plugins/2017/08/29/minimum-php-version-requirement/" target="_blank">specify a minimum PHP version requirement</a> in the <code>readme.txt</code> file with a new Requires PHP header. It is displayed to users in the sidebar of the plugin’s description:</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/requires-php-version.png?ssl=1"><img /></a></p>\n<p>This addition to the readme.txt file has been well-received by developers who are already updating their plugins in the directory with minimum PHP version requirements. It also complements WordPress’ Core PHP team’s recent efforts to <a href="https://wptavern.com/wordpress-org-to-add-new-page-educating-users-on-benefits-of-upgrading-php" target="_blank">educate users about the benefits of upgrading PHP</a>, as the minimum supported version was released 10 years ago and hasn’t received security patches for nearly seven years.</p>\n<p>“As a plugin developer (who maintains my plugins in my spare time), it is becoming increasingly difficult to build new functionality that works in older versions of PHP,” Paul Gilzow <a href="https://make.wordpress.org/plugins/2017/08/29/minimum-php-version-requirement/#comment-43314" target="_blank">commented</a> on the announcement. “There are some things that simply cannot be done in the older versions, and in those cases, I have to build out functionality to check PHP versions and disable those features. That takes time and energy away from building out other new features.”</p>\n<p>WordPress Core Committer Sergey Biryukov said the next step is exploring the possibility of <a href="https://core.trac.wordpress.org/ticket/40934" target="_blank">displaying a notice to users when they cannot install a theme or plugin</a> due to their installations not meeting the required criteria. Ideally, these notices would include host-specific instructions to assist users in getting their sites upgraded to a newer PHP version. This particular move could make a significant impact on the wider WordPress community, if popular plugins start triggering notices requiring newer versions of PHP.</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, 30 Aug 2017 18:13:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:62:"HeroPress: Retiring Young From Bangladesh, Thanks To WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:56:"https://heropress.com/?post_type=heropress-essays&p=2064";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/retiring-young-bangladesh-thanks-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=retiring-young-bangladesh-thanks-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:60068:"<img width="960" height="480" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/083017-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: You can\'t always win. You have to learn from the journey and move on." /><p><span>When you are reading this, I am very near to celebrate my 33rd Birthday. I don’t know how this number ’33’ sounds to you, but in some ways, I feel it’s a big number. I know many of you would argue that 33 is not an age to be considered old. In this article I will share about my career with <strong>WordPress</strong> lasting over 13 years, and how I am planning to retire within a year, more or less. And if you are an <strong>Entrepreneur</strong> yourself or self-established person, I think this will be an intriguing discussion, I will add some key pointers from my life that lead me to this decision.</span></p>\n<a href="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/edit_IMG_1358.jpg"><img class="wp-image-2067 size-large" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/edit_IMG_1358-1024x819.jpg" alt="Me Enjoying the Sun & Jetpack Tees after a long drive to Key West!" width="960" height="768" /></a>Me Enjoying the Sun & Jetpack Tees after a long drive to Key West, FL!\n<h3><b>What do I mean by ‘retire’?</b></h3>\n<p><span>So, may be you are shocked to just see the title. The word ‘retire’ could be little confusing. Does that mean I am going to take leave from all of my ventures permanently? Will not be involved with anything day to day basis. And will be walking out in my beach-shorts in broad daylight, or vacationing endlessly anywhere in the world? </span></p>\n<p><span>In some sense, Yes, in some sense, No. The kind of office I have I could literally go in shorts though, and my life has given me the opportunity to vacation as I want, almost!</span></p>\n<p><span>But, yes, I am talking about taking leave from most of my ventures, at least not being involved day to day. And kind of taking a break to reflect more into life. I have been working tirelessly for a decade. I need some kind of breathing space, it’s not exactly what you think though. It’s kind of reboot. I will keep expanding the idea throughout the article. If you are really into, sadly you have to keep reading.</span></p>\n<h2><b>So, who am I?</b></h2>\n<p><span>I am not sure how boring this might get, but still, let me introduce myself. My name is <a href="https://asif.im"><strong>Asif</strong></a>, I am the CEO of <a href="https://wedevs.com/" target="_blank" rel="noopener">weDevs</a>, a large WordPress product company (in WordPress Ecosystem) with a team of over 45 people. I am also the Founder of <a href="https://arcom.com.bd">ARCom</a>, a decade old WordPress focused Media Company. I am involved with WordPress community since 2004 and been very actively involved ever since. </span></p>\n<p><span>I have founded many startups in my Entrepreneurial career, including but not limited to (those are the successful one, but I obviously have fair share of failures as well)</span></p>\n<p><a href="https://thetechjournal.com" target="_blank" rel="noopener"><b>The Tech Journal</b></a><span> – A Tech Magazine with a peak monthly user base of 10.2 Million.</span></p>\n<p><a href="https://thedhakatimes.com/"><b>The Dhaka Times</b></a><span> – The Biggest Lifestyle Magazine in Bangla language (</span> <a href="https://en.wikipedia.org/wiki/List_of_languages_by_number_of_native_speakers"><span>seventh most spoken native language in the world</span></a><span> by population) with average monthly 15-35 Million user base.</span></p>\n<p><a href="https://wpdeveloper.net"><b>WPDeveloper.net</b></a><span> – A (half-baked) WordPress Product Marketplace, focused to solve simple problems in WordPress, connecting User with the Developers.</span></p>\n<p><b><a href="https://wordpress.org/plugins/wp-analytify/">Analytify</a> – </b><span>A very advanced and highlighted Free WordPress Plugin that makes Google Analytics easy inside WordPress, and helps ecommerce and other brands.</span></p>\n<p> </p>\n<p><span>I am also involved heavily in either as Founder or Investor, or many weird capacities at</span></p>\n<p><a href="https://geekysocial.com/"><b>Geeky Social</b></a><span> – A progressive digital agency in Bangladesh, focused on Knowledge Leadership! </span></p>\n<p><a href="http://aamarpay.com/"><b>AamarPay</b></a><span> – A Payment Processor.</span></p>\n<p><a href="https://3rdbell.co"><strong>3rdBell</strong> </a>– Bangladeshi Online TV – A forward thinking digital brand, focusing on Video Content. Not exactly, but kind of disrupting Bangladeshi Entertainment Space like Netflix in the US.</p>\n<p><b>Alo Venture</b><span> – Once very active, now semi-dead venture capital wing, invested mainly in mobile and game industry.</span></p>\n<p><span>And ARCom is always rocking with several projects, for past few year we have a wing to handle Enterprise WordPress Support, and serving even Fortune 500 company, who rely on us entirely, and we manage their entire stack, month by month, for years.</span></p>\n<h2><b>Enough of me!</b></h2>\n<p><span>Is it? As this article is entirely about me, you have to tolerate a lot more. <img src="https://s.w.org/images/core/emoji/2.3/72x72/1f600.png" alt="😀" class="wp-smiley" /></span></p>\n<p><strong>This is going to be the biggest ever article published in HeroPress!</strong></p>\n<h2><b>So, I always wanted to do WordPress?</b></h2>\n<p><span>No, obviously not. In my childhood I always wanted to be <strong>a scientist, a Physicist</strong> to be exact. And it’s not just like an aim-in-life, I was literally very serious. I was always into Space Science. Later it grew more into Physics. To give you an idea how serious I was, let me tell you something. While going through some old boxes, I found out some paper-cutting from back in 1993(I was in 3rd Grade back then), about coverage of different space exploration, news about Pioneer, upcoming plan on a Probe in Saturn. I literally had a file to collect those. Back in that day, that’s what you could do most, without any internet, and from a remote part of <strong>Bangladesh</strong>.</span></p>\n<p><span>I was not extremely good in school, it’s not like what you read in the story, never stood 2nd type(always 1st)! It’s more like I never stood 1st type! But I was good in math, I was always progressing, and the main blessing I had in my life was support of my parents, unlikely most parents in our time, they never pushed me into things, never tried to push their judgment into my life. When I advanced from one Class to another, making some progress, they were happy with it, and I always made progress. So, they were happy, I was happy being a mediocre-student. But the issue was, in my mind, I was the best. I know how childish it sounds, but I was really a child back then! I always thought that I am best if I try enough, and if I was given enough opportunity. So, Instead of trying to do best in the Class, I focused on many things, like starting a Detective Company to Secret R&D Team, and none of those was a joke, we were serious. </span></p>\n<h2><b>Reading!</b></h2>\n<p><span>I always loved reading, and I was extremely lucky to have so much opportunity to read in my childhood. My house has some collection of children’s book, some cheap but interesting translation, my parents always brought me books on every possible occasion, as that’s what would make me happy. When that was not enough, I practically sneaked into most houses in the neighborhood. I was in 7th Grade at that time, and if a neighbor had an older kid they would have more books, and good part was if you show interest in reading books, and return it carefully, they would not mind to open up their bookshelf door for you, and most of them even loved me for this. Later on, I also finished up most of my relatives collection in the same town. Later on when in high-school everyone around knew I love books. Later on, this grew on my friends as well. I was lucky to have good childhood friends, who also enjoyed books as well. So, we would gift books to each others birthday, so we could read it ourselves. And few of my friend was very good students, and they always got some scholarship money, so we spend everything in our school life on books!</span></p>\n<p><b>So, what was I was reading? Everything!</b></p>\n<p><b> – Everything!</b></p>\n<p><span>Starting from Children’s story later grew into Detective Story, Science Fiction, and later into the adventure story, literature, whatever comes into my hand. One interesting thing I also did from the very early stage, keeps track on what I am reading. It probably came from my hobby of collecting Stamps. We used to make notes and categorize our collection. So, I started doing the same for Books. I made a notebook, started noting and making a list of what I am reading, later on, I started to make some remarks, note, what I liked, what not. </span></p>\n<h2><b>Writing!</b></h2>\n<p><span>In my teenage life writing took even more meaning. I was always good at expressing myself, and creative writing. But when one of our best friends left the country, and the only way to communicate was to write letters, so, we started to do that. It took different turn very soon. We were enjoying writing letters so much, few of us in the same class who we see every day also started writing letters to each other. However, it was nothing like a love letter or anything related to the affair, we were writing about anything, everything. At one point we were in a competition who could write the longest letter. In this competition, one of my friends wrote a letter to me (again from the same class, sitting almost on my next desk! <img src="https://s.w.org/images/core/emoji/2.3/72x72/1f600.png" alt="😀" class="wp-smiley" /> ) over 50 pages, and to defeat her I wrote an over <strong>100-page long letter</strong>! </span></p>\n<p><span>*If you are wondering what I wrote in those 100 pages – I have a very large family, where my relatives of great-great-grandfather’s cousin’s and their family are still very connected and if you saw me talking with any of them you would think they are my 1st Uncle or Aunt. So, what I did is wrote about my whole family tree, describing family history and later on describing each and every member I could remember! In my house we had a very old “Family Birth Register” (জন্ম কষ্টি খাতা), dating back in the early 1900s, I even took help from it!</span></p>\n<p>Over all this had a different impact on our life. I don’t know how hard it is to believe, but I was into Bangla Literature, specially poem as well, I even had a notebook full with my own poem! One of our classmates even wrote a full-blown 150+ pages novel in that age! And I am still enjoying writing!</p>\n<p><b>Dramatic changes in my Educational life!</b></p>\n<p><span>As described earlier, </span><span>I was average in studies</span><span> but not extremely good. And I was happy about it! All my </span><span>close friends were very good students and would achieve the first or second position in class every time. Whereas, I was happy being in the 8th or 10th position. But as said in my mind I was the best!</span></p>\n<p><span>Our educational system requires you to memorize and write as it is. But I was driven into reading books, and other things (also including playing Cricket seriously). I never tried to focus on memorizing anything. And from childhood, teachers grow an impression of what to expect from a particular student. So, for an example, my social science teacher knew for years what to expect from me, and it’s very hard to get past that impression. </span></p>\n<p><span>When I was advancing from Grade 8 to 9, I took part in a Scholarship exam. </span><span>We prepared for a year. Only a handful of us was participating from our school, I was among those few, but I had literally zero chance to get the scholarship. I was not very bothered about it at all. But during the exam, we had to travel to another town to the exam, and it was in the month of Ramadan, and I did not break my fast. It was hard, I had 2 exams in a single day. When I came back home one day with my father, my mom was sad seeing me so tired and drained out. But was happy that I was still fasting. Then she told me something very simply, which started a chain-reaction in my life. She told me, “You think of yourself so highly, you spend all of your time with those same kids, who are doing so good in school. But if you really think of yourself so highly, why not try to reflect that in your grade?”</span></p>\n<p><span>Maybe it’s very normal for parents to talk like that. But as my parents never compared me with anybody or always let me do in my way, I kept on thinking about this. </span><span>What clicked in my mind was that, i</span><span>f I am really good, I should be able to do good in any circumstances, if this requires me to memorize everything I could do that. If I want to be really that good, and be a good scientist, I need to learn to cope up and fight in any situation. </span></p>\n<p><b>So, I changed myself, was even memorizing books, that I absolutely did not like!</b></p>\n<p><span>In grade 9 & 10, I studied very hard. I changed my lifestyle a lot. I changed the way I write in exam paper to change the impression of my teacher. Before I was always like studying in my mind, not writing what I just read, I forced myself in writing those answer I just read, it was very hard and boring at the beginning. But I had a very good private tutor, who guided me in every way. Later on my teachers in school helped in every way possible. In Bangladesh student have to take a part in a Certification Exam after 10th Grade, to advance in College, its called SSC, Secondary School Certificate Exam. I prepared for that. At the end of 10th Grade, I almost had the book fully memorized, I could write as it is, correct to each and every comma and space. I improved my english a lot. I learned some calculous which was not part of our curriculum, just to advance myself for college, and I knew if I had to do better in Physics I need to learn math and Calculous better. I did took part in more Prep test than most other students. And ultimately in the School Preparation Exam, I did extremely well to boost up my energy!</span></p>\n<p><span>Everything was perfect, we took part in the big exam!</span></p>\n<p><b>And I did not get the grade I expected!</b></p>\n<p><span>Interestingly our batch did not get good grades in SSC</span><span>, we were the first batch in a new grading system, and we did not know that even before the exam, so none got perfect grade of 5.0, I got a very average grade(not bad, but not very good either). I was extremely disappointed, broken, but later learned to cope up.</span><span> I realized a good lesson of life that </span><b>– Even though you may work hard and go to great lengths to do everything possible, still you might have to deal with failures and disappointments.</b></p>\n<p><span>Another good thing also happened in my life too. I moved from the small town I grew up, <strong><a href="https://en.wikipedia.org/wiki/Ishwardi_Upazila">Ishurdi</a></strong>, to the Capitol of the Nation, <strong>Dhaka</strong>, and was able to get a chance in the entrance exam, of all big colleges in the country where I tried. This gave me a huge boost in confidence. I selected to study in <strong>Notre Dame College</strong>, in English Medium of Science. It was another controversial decision I made, for me a kid coming from rather a small town, and from Bangla Medium it was a tough decision, but I stick to it for the future, because I still wanted to be a Physicist, wanted to study further in my life, I knew I had to be in English Medium.</span></p>\n<p><b>I had very hard time at the beginning of College!</b></p>\n<p><span>At the start it was very hard, our whole group suffered a lot to cope up with new curriculum, our first semester in College was the worst. But later we learned to cope up, we were 130 students in our Group (famous Group 8 in Notre Dame College), we all were helpful to each other, not everyone had private teacher in this point, we shared our notes, I was living first time without my parents, I was also dealing with occasional sickness due to not eating properly. So, there was a lot of struggle, but by the end of 1st year, I was dealing with everything properly. I got a good friend circle, I was not only doing well in college, I was also enjoying my freedom and mostly dealing with anything life throws at me!</span></p>\n<h2><b>My Introduction to Computer & Programming!</b></h2>\n<p><span>Actually, I always loved programming, before entering University I already knew some basic programming, like qBasic, FORTRAN, even some level of Pascal. The kind of society I grew up, a computer was extremely rare before the year 2000. I was kind of lucky to be able to learn basic computer usage starting from the year 1998, got my first computer in 1999. It was so rare to own a computer in that time for that part of the word, that I was not only the first kid in my class to own a computer, but only a handful of people in my town knew how to use a computer. So, though I am not from a very rich or privileged family, extremely lucky that my parents understood the importance in that time. </span></p>\n<p><span>Another interesting aspect was unlike most people, I was not fully taken over by Computer Games. I am not saying gaming is bad, but most of the people I later see own a computer, the main thing they do with it was playing the game all the time. And you have to understand that almost pre-internet period in Bangladesh. I use the internet first in my life back in 2001. I was more into tweaking things, trying to create or modify the software or create very basic type tools. I am super amazed by internet from first interaction. The search engine was in its peak time, discovering new resource was easy. I tried creating my first webpage in Yahoo Geocities back in 2001, wap page generator was also taking shape in coming years. </span></p>\n<p><b>Say Hi to WordPress in my life!</b></p>\n<a href="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Asif-R1.jpg"><img class="wp-image-2068 size-large" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Asif-R1-1024x863.jpg" alt="" width="960" height="809" /></a>M Asif Rahman – Wearing Tees by WordPressian Group!\n<p><span> I created my first blog back in 2003 in Blogger, but while trying to add a sidebar and customizing home page look, I find it’s very difficult for me to do anything in ASP.net, then I found WordPress, back in the year 2004. I still remember reading Matt’s blog and write up about how the whole project is moving ahead from b2 cafelog. WordPress was so easy, I hardly knew any PHP in that time, but my HTML and CSS knowledge was well enough for me being able to edit my personal blog. At the start hosting was one issue, but again I was lucky to manage one. Later when WordPress.com came, I migrated my blog over there and was happy at the beginning, as less hassle. I was also heavily involved with forum community. There was some very large community for webmaster and developer, I loved PHPbb and other solution for forums as well. But after experiencing some massive vulnerabilities, which lead to a major data breach, I focused more on personal blogging and soon into web development. Wth WordPress it was extremely easy to create a website, plugin and theming turn out to be not a complex task. The community and developers contributing in this ecosystem were another main factors. I feel very connected with the whole ecosystem, eventually became habituated with this, and started to feel it’s my comfort zone.</span></p>\n<p><b>How I started my career and company!</b></p>\n<p><span>I was using the name A. R. Communication, an as an acronym of my initials (Asif Rahman) back in 2001 as well, but it was nothing serious, no particular business. When in college, to support myself I first started a Marketing Trainee job in a Multi-international company. It was convenient with my college time and location, and they were literally paying to learn things. I started it just the as need of money, but later I enjoyed marketing, corporate training, and even enjoyed sales training as well. But I never took that job a as career choice.</span></p>\n<h3><b>My first venture!</b></h3>\n<p><span>In the year 2003, before even going to Universities I started a full 4 color magazine, printed publication with a close friend of mine. It was a fun ride. The name of the magazine was “</span><b>Fortnightly Tumi</b><span>”, the Bangla word “Tumi” means “</span><b>You</b><span>”! It was a lifestyle Magazine. My family already had a history with the printing business, so I had some experience. We did this business very thoroughly if you consider this as our first venture. We did a proper market study, interviewed potential readers, organized group discussion, and got good funding. And we also started with bang! Hired renowned journalist and writer. I was barely <strong>19 years old</strong> that time, have very experienced people in my team over 50 years old, and managing them was good lesson. All together we published 3 edition, with good marketing trick we were able to sell 10,000 copy nationwide for that last edition, we had over 20 big brands in the country advertising with us. But still, that business did not work out. We had to shut down, as our investor (my friend’s family) want us to focus on our education instead of this, and we were probably way ahead of our time.</span></p>\n<p><b>Too many choices after college!</b></p>\n<p><span>I did fairly good in college, despite being in English medium. I applied for the various scholarship in different university all around the world, and was in a process of ISSB for Airforce as GD Pilot, the whole process was lengthy, and I was only doing it for 2 reasons.</span></p>\n<ol>\n<li><span>One of my friends asked me to collect the form, as it was close from my house, and I thought why not fill up together.</span></li>\n<li><span>GD Pilots also get the chance of studying Aeronautical Engineering and even switch to Engineering in future, and they will have a chance to study higher in that subject, which could open up my door for getting into Space Science. All for free, paid by Govt.</span></li>\n</ol>\n<p><span>Interestingly I get past all the test and selected finally. But they informed me, I have to stay in GD Pilot as a cadet and will be commissioned in 2 years, but have to think Pilot as a career, I was confused, I never enjoyed or felt the passion for speed before in my life. And we had few months time before joining the Force.</span></p>\n<p><span>In the meantime, I got so many opportunities in various universities. And one of my dream to study further in Physics was too close, as I got a chance in Uni Penn, and got a scholarship there as well. I had few other opportunities at Canada and Australia. I even applied for Visa for Australia as well, but later had to decide against all of those for some family and personal reason. </span></p>\n<p><span>I ultimately left Air Force as well, me & my parents agree that’sts not a good career choice for me, given the option I had. I got a scholarship at North South University in Electrical & Telecommunications Engineering. And as I started my company seriously at beginning of 2004, then a University that offers Open Credit, where I am able to choose my workload, it was just convenient. So, out of all promising option, I almost chose the risky one, to make my own company and study in Bangladesh, at least for the Bachelor.</span></p>\n<h2><b>The inception of ARCom:</b></h2>\n<p><span>Actually, ARCom is the short version of A. R. Communications. As I found making website too easy with WordPress, and a new found talent was helping me as well. </span></p>\n<p><span>Just as I never waste time on gaming, rather enjoyed my time to tweak things, creating new application. Instead of most people, when they visit a new website, they look at the shiny look, or how good or better information it provides, whenever I visit a good site, I was always thinking how they are making money, how is this built and sustained. This quest has helped me making our first successful business. It took years, it did not turn into something very big in a night. During University years I did make many different kinds of websites, in that time I started earning first from selling websites. That was during the year 2005 or 2006, it was long before Sitepoint turn into Flippa, back in the shining days of DigitalPoint! I used that money to buy more domain. I hired my university classmate to work with me. The first outsider I hired in my company was a designer, as I needed help in there. Later it kept growing over the year.</span></p>\n<h3><b>First Big Success:</b></h3>\n<p><span>Though I already enjoyed some good (if not very big) payday by selling a website, point to note here, I was selling website as a business, not like you design a site and sell, its more about creating a business, create a process and sell it for a 2X – 5X yearly profit. But my big success came after 2008. Everything was turning so well, I was done with my University. My company was already a Team of over 20 people, with an office of 2500 square feet space. We started </span><a href="https://thetechjournal.com"><b>The Tech Journal</b></a><span>, it worked so well in every aspect. As I was into writing blogs and also into the gadget. After the first iPhone release I was involved in many ways, from working with the secret group who were Jailbreaking each and every firmware, also new kind of responsive websites, I was also into News & those kinds of stuff. And because of my quest to understand how a thing works, I had a good grasp already into Content Distribution. Facebook and other Social Media are playing a role in content and distribution already. It all helped.</span></p>\n<p><b>The Tech Journal became very big!</b></p>\n<p><span>Within 6 months of start, we ranked within top 20k website. I was enjoying the ride to play with monetization and taking things into next phase. At one pick point, we were ranked even within top 4000 websites in Alexa. I had a good team with me. I finished my university already, 3 of my University friend was working with me full time. We all shared same vision for The Tech Journal, and it kept on growing. Because of our experience with WordPress we kept on innovating, for us we could build anything in WordPress, I had a solid Development team as well.</span></p>\n<h3><b>Marriage & Beyond!</b></h3>\n<p><span>I got married at 2009, I was 25 years old back then. I don’t know if there is any perfect age for marriage, but I felt that was the right time, I was doing good in business, was looking for more stability in emotional life as well. I suddenly found my long lost childhood friend, <strong>Bipasha</strong>, whom I did not have any communication for past 13 years, but suddenly fall in love and we decide to get married. <strong>Just like that!</strong> I will not go into details here(it’s already too big) how we studied together since 1st grade and got detached when we were in 7th Grade, but still got married 13 years later. We started a new life, life was never better!</span></p>\n<p><b>Moving Further with WordPress:</b></p>\n<p><span>Over the year WordPress kept growing so was I. I was writing, blogging, building things with WordPress. WordCamp was already something, but I was not able to attend or participate as I was still in Universities, but after finishing up, I decide to get more involved. I spoke in my first WordCamp in WordCamp Melbourne. For many years I was also very vocal about security and optimization, so I started to get so many opportunities into speaking and participating in various things. I still remember I spent one crazy summer in the US, participating 6 WordCamps, visiting 9 States and 13 cities in the process, starting from Boston and finishing at San Francisco! </span></p>\n<a href="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Asif-Speaking-At-WordCamp-SF-2014-V1.1.jpg"><img class="size-large wp-image-2069" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Asif-Speaking-At-WordCamp-SF-2014-V1.1-1024x514.jpg" alt="" width="960" height="482" /></a>WordCamp SF 2014 – Mission Bay Conference Center\n<p><span>I was very lucky to be able to speak at last ever WordCamp San Francisco.</span></p>\n<p><b>Pursuing more into Investment!</b></p>\n<p><span>It’s mainly because of <strong>The Tech Journal</strong>, I was involved in many tech conferences, and always getting the pitch from various startups. And my new grown circle of friends from WordPress and various other tech scenes, I already established a good connection in Silicon Valley. It was in the year 2009 when I made my first Angel investment, the credit must go to my friend circle, it was years before Angel List, there was offline syndicate where folks will share investment opportunity. But I really loved talking with young entrepreneur and seeing how new business works. I kept my focus in my sector, the field I understand. So, I mainly invested in tech. Out of several investments, one of my lucky ones was Facebook, I was able to invest in <strong>Facebook</strong> before their IPO, not very early, but still Pre-IPO stage, it was one of my lucky breaks. As I was already doing good in my business I tried to utilize it. I did not start investing because I had too much cash laying around, I started because I liked those opportunities, I wanted to help those ideas or startups.</span></p>\n<h2><b>Moving into the US:</b></h2>\n<p><span>I started another business in US, where my partner was from Orlando, I spent one Thanksgiving with my Wife in Orlando, really loved the place, people, and we already got a long term Visa, and had full opportunity to live anywhere we want. My company in Bangladesh was already in a stable phase, and as I was traveling heavily for years, my team was used to being managed remotely, so it was not a hard decision. But staying far from parents was hard. So, what we started maintaining both houses in Bangladesh and Florida. For years we spend some part of the year in US, rest in Bangladesh. </span></p>\n<h3><b>Child & Changes in Life!</b></h3>\n<p><span>Like everybody else our life was bound to change when we had baby. In year 2014 we were getting for our first baby. We decide to stay in US, because of better medical facility and my involvement in different things. Just a month after speaking at WordCamp San Francisco in November we were blessed with <strong>Aaniyah</strong>. Actually, our life already changed when we were planning and waiting for the baby. I was feeling the work routine I have would never let me spend the time I want to have with my baby.</span></p>\n<p><a href="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Laugh.jpg"><img class="aligncenter size-large wp-image-2070" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Laugh-1024x691.jpg" alt="" width="960" height="648" /></a></p>\n<h2><b>Analytify & A New friendship!</b></h2>\n<p><span>I became friends with </span><a href="http://www.adnan.pk/"><span>Muhammad Adnan</span></a><span> online back in 2014, he was working with his premium Plugin <a href="https://analytify.io/"><strong>Analytify</strong></a> back then. I found this as a real good project and started talking with him, giving him various advice, and we later decided to team up, and we released the first free version of Analytify WordPress plugin on 1st January 2015. It was a success, it completely revolutionizes how people use Google Analytics in WordPress. Later Adnan visited me in the US in 2015, and together we attended WordCamp Miami and had a good trip and drive to Key West! The most interesting part of the friendship lies somewhere else. I am a Bangladeshi, and Adnan is Pakistani. Both of our nation has a very bad past. Bangladesh was once part of Pakistan, back in 1971 we fought for about 9 months, and millions of people died in the process before we got Freedom and Declared Independence from Pakistan. But it creates a life long enmity between two countries. I know for an outsider it does not make sense to keep some feelings for that long, but for its very personal for us. Our country lost so much in that war, even if you speak about just my family, My Grandmother lost half of her family in that war, Bangladeshi especially have a very strong opinion about any Pakistani. But meeting Adnan, becoming friends, and working together made me realize few interesting thing, this feeling, this agony against any Pakistani was one-way. Most of the Pakistani did not have any idea what their Government or Army did, they hardly have idea about their Ancestors’ doing. They rather still consider us Brother! Some of the history he never knew, they never read in their history book. I would never know this if it’s not for </span><b>WordPress</b><span>, we would never meet, this change in understanding for both of us never happened.</span></p>\n<p><span>And we together kept on growing <strong>Analytify</strong>, as the best Google Analytics Plugin in WordPress, and planning many interesting things together.</span></p>\n<h2><b>Coming Back to Bangladesh!</b></h2>\n<p><span>While I was staying and mostly investing in the US, I started investing in some interesting Teams in Bangladesh from the year 2012. Over the year, a few failed, but some really kept on growing. In the year 2016, in Pre-Trump period we were expecting our 2nd Baby, and it was too hard for us to manage alone in the US, and we both were missing our family. I want my kids to grow up having their family close to them, the way I grew up. I want my parents to feel close to them. Occasionally when we visited Bangladesh with our first child, I was quite blown away the way they loved and took care of the baby. It all made sense if we spend some more time in Bangladesh, and have the Baby in here. And the weird things going on with the US also motivated my decision. The kind of craziness we are seeing in the US, actually did not start just by having Trump elected. It goes way back. We were living in a very peaceful neighborhood in Florida, a small town called Orange City, near Daytona Beach! But we could still feel the change in air. Our parents have a pending Immigration Application for near a decade, they are on the que to become US citizen anyway. We first tried to have them with us, but US Embassy in Bangladesh rejected that application, for absolutely no reason. And my other venture was already growing in Bangladesh. So, all together we decide to stay in Bangladesh for awhile, we moved in mid-2016.</span></p>\n<h3><b>Welcoming Aadiyah into the Family!</b></h3>\n<p><span>We had our 2nd Baby <strong>Aadiyah</strong> in September 2016, a bit ahead of time, my wife got little too sick, but we were able to handle everything because of having family together. We moved into a large Duplex house, to have enough space for the baby. We feel we are complete as family and never been this happy before.</span></p>\n<a href="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_1610.jpg"><img class="size-large wp-image-2071" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_1610-1024x683.jpg" alt="" width="960" height="640" /></a>Complete Family!\n<h1><b>weDevs & My Legacy!</b></h1>\n<p><span>I will discuss later my involvement in Bangladeshi WordPress Eco-system. But back in 2013 I first met <a href="https://tareq.co/">Tareq</a>, a very talented Bangladeshi Programmer, running a successful WordPress product company. He and his Partner <strong>Nizam</strong> built an amazing company, and they had few very interesting and super successful products for WordPress. I started helping as possible from my end, I want them to succeed and pushing them to move forward. I became an official partner and board member of <a href="https://wedevs.com"><strong>weDevs</strong></a> back in 2015. I was helping them to grow internationally and advising them as part of the board. We established a US company and kept on growing. Though I was in WordPress for very long time, my main company <strong>ARCom</strong> was never serious into WordPress Product. I released some of <a href="https://profiles.wordpress.org/asif2bd">our work</a> in Open Source via WordPress.org Plugin Directory, and with my growing experience with <strong>Analytify</strong> made me dig more into WordPress products.</span></p>\n<p><span>Somehow at the end of 2016, <strong>Tareq</strong> and I was looking at our numbers for <strong>weDevs</strong> in 2016, we noticed something very important. Three of us spend more time digging deep into the numbers and re-analyzed our process and priorities. Soon we all came into understanding we have to take things forward with <strong>weDevs</strong>, the growth of the industry is very important if we want to be big in future this is the right time. They proposed to me if I could take over as <strong>CEO</strong>. Nizam was running weDevs successfully as CEO for years, and I never thought seriously about running another company, and my retirement plan was already in place. But we found this could be the best thing we could do in the year 2017, where I have little over 1.5 years before my planned retirement. </span></p>\n<p><span>So, I jumped into the ship. I always dreamed to make a rocking and successful company in WordPress product space, and it was my chance. And as it’s already a running successful company, my goal here to build a legacy, instead of just making a profitable company, built a sustainable company, and proper team, a fine management, that could grow into future, that could </span><b>outgrow us</b><span>, something even bigger than us combined. </span></p>\n<a href="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5190R.jpg"><img class="wp-image-2073 size-large" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5190R-1024x683.jpg" alt="" width="960" height="640" /></a>weDevs new office – Reception Area from inside – WordPress Flavoured!\n<p> </p>\n<p><span>So, I took over <strong>weDevs of CEO</strong> in January 2017, I took 2 months as the transition period and blend fully into the day to day system. We announced this officially in the month of March. Dhaka is a very jam packed city with the highest number of people living in per square miles in the world. We were already a Team of about 25 people. I still had few other business that I have to take care. So, we moved to a new large space. A total of 5000 square feet space, fully open, we built a unique office that could sustain us for next few year. I moved my house and office in the same area, called <strong>Mirpur DOHS</strong>. Me, my partners, and almost 12 of us together moved into this area together. As we now live within 2 min distance from the office, the Traffic could not bother us at all. We gave the option for our employees to move into too. We paid the moving cost, we even adjusted salary if they faced any increase of cost for housing or anything. We took time, but now our new office is complete, it’s one very interesting WordPress themed workplace.</span></p>\n<p><a href="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5240R.jpg"><img class="aligncenter size-large wp-image-2074" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5240R-1024x683.jpg" alt="" width="960" height="640" /></a></p>\n<p> </p>\n<p><span>We are growing further, our team of 25 people will soon <strong>become a team of 50+</strong>. We are working on new stunning products, we just launched a brand new super fast Form Builder plugin named <a href="https://wedevs.com/weforms/"><strong>weForms</strong></a>. It will revolutionize the way people build forms and create anything from just a simple contact form to organize a quiz. Our team built it entirely on Vue.JS, as a single page app. It’s unbelievably fast, almost nothing we have seen so far inside WordPress.</span></p>\n<p><span>Our Team internally working very hard to update our existing product and we are working on some new things that I am incredibly looking forward to. Before I join, weDevs did not have a marketing team, we ran entirely autonomous. In last 6 months, we have built a sustainable Content & Marketing Team. I am working tirelessly with my CTO & COO to build a new culture. We have a two-way feedback evaluation process. I created a kind of unique in its way, a grading system where the company could give feedback to an employee, on exact point, and inform directly where they need to improve. It’s a kind of algorithm I have developed over the years and really helps you to make a happy and working team. In the same way, Employee also have the opportunity to give feedback to the company directly – about what makes them happy, how a company could help him grow more, or if the company is addressing every concern properly. We do this quarterly basis, and review in each quarter, so the improvement could always be tracked, graphed and addressed properly.</span></p>\n<h2><b>Bangladeshi WordPress Community!</b></h2>\n<p><span>This is another very proud thing I would like to talk about. When I first had a very detail conversation with Matt Mullenweg, back in 2011, he was very happy that I attending so many WordCamp, and be that much involved with the community, he asked me about WP community back my country, and told me if we are able to have a good group, a nice meetup and eventually a WordCamp, he will try to attend. I found a new role for myself, over the year we grew Bangladeshi WordPress community. Locally we have very growing and engaging WordPress Group, called WordPressians, we have over 21,000 Members in Facebook. We are a team of 15 Admin/Organizer who maintains everything, and it’s an open group so always evolving. Over the year, we 15 became very close to each other, and we all consider each other as best friend. We contribute in Open Source together, we hangout together, attend various WordCamps around together now, we plan day out together as well. This is another blessing happened to our life mainly because of WordPress.</span></p>\n<p><a href="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_9881.jpg"><img class="aligncenter size-large wp-image-2075" src="http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_9881-1024x417.jpg" alt="" width="960" height="391" /></a></p>\n<p> </p>\n<p><span>Starting from 2013 we are official meetup chapter in Dhaka. We organized over 15 meetup, where each and every meetup of our could be considered little WordCamp, with 4-6 session, and had 150-300 attendees. We organized all of our meetup in our own platform, a WordPress plugin we created, so everything happened at – WPressians.net, not at Meetup.com, we did it with direct permission from WordPress Foundation. We have made WordCamp Application starting from 2013. And I even faced Organizer interview twice in 2014.</span></p>\n<h3><b>But the sadness!</b></h3>\n<p><span>There is one thing that hurt me a lot. Though me and our organizing team worked so hard to grow Bangladeshi WordPress community, but due to some miscommunication, we still don’t have any WordCamp yet. The foundation failed to take timely measures to proceed with our WordCamp application, we faced repeated issues in getting the proper timely response from them. Out of frustration and years of waiting back in 2015, we organized a CMS Conference in Dhaka, where we had over 10 speakers, and there were over 1500 attendees. So our team has proven their position, but things took so long from the Foundation. I wrote to foundation much time, there is one on-going conversation, still, we hope for the best, this the way Foundation handled our communication, shows the lack-of-attention clearly. I am almost devastated in this and very hurt! When I first attended and spoke in WordCamp Melbourne in 2011, I was the first Bangladeshi to ever do so. I but I kept on pushing. Now there is over 10 from even just our organizing team where they attended in various <strong>WordCamps around the World</strong>. Last year we attended WordCamp Singapore with a team of 9 people from Bangladesh. We are gaining experience, we are driven, but still lacking behind because of Foundation, sadly! I attended over <strong>50 WordCamps</strong> worldwide, I helped to organize over 10 WordCamps in various cities, but could not organize a single one in my home country for 6 years, this keeps bugging me all the time!</span></p>\n<h1><b>My Future Plan!</b></h1>\n<h2><b>Plan to retire by my next Birthday!</b></h2>\n<h3><b>weDevs to keep on Growing!</b></h3>\n<p><span>I am here at weDevs to create and fine tune the process and build the vision. I already described what’s happening in there. From my start as CEO we are seeing about 15% month to month growth in revenue and about 20% in market reach, We will keep on doing so and beyond. And we will probably get more result in long term, and building team, forming up a new culture and getting result certainly take more than 6 months.</span></p>\n<p><span>So far the plan is to me stay in Day to Day involve up until June 2018. This is not an exact day plan, could change with time. But possibly by September!</span></p>\n<h2><b>ARCom being Autonomous!</b></h2>\n<p><span>I am running ARCom without much of daily maintenance for awhile now. I have Team Lead, Editors, Managers in place, that’s running their wing successfully for awhile now. There are few new plans and things my Team working, but all team has a lead, which they ran with ownership, and mostly sustainable. There are some places where we need some work, I hope it will be done by that projected time.</span></p>\n<h2><b>Geeky Social, 3rdBell and my other venture!</b></h2>\n<p><b>Geeky Social</b><span> has a solid team, and they are running amazingly. I am very proud of our team. I am part of the board and now serving as Chairman, and probably will continue to do so. I hope by next 6-9 months we will be even stronger financially, our month to month growth is already steady and growing, we are clear it will grow a lot from there. One of our core success is to grow beyond a cash-hungry business, which is incredibly hard if you are involved in Digital Media, and buying. But we got past that and now everything taking shape. I am very confident in the team and looking forward.</span></p>\n<p><a href="https://3rdbell.co"><b>3rdBell</b></a><span> faced so much issues over the year, but now we have a solid platform, the founders are incredibly motivated. Me and other investors are looking forward. I am still involved as Technical Director, this role could extend for the time being when we go through some changes, but we have solid plan to move forward, and by mid-next year, it should be i a different height.</span></p>\n<p> </p>\n<h2><b>Me & WordPress – going forward! </b></h2>\n<p><span>I will have people to maintain my plugin, and provide even better support, and few of them are even joining next month, so it will be well taken care of. I will shift the community role mostly to new people and others. Next 9 months I will dedicate to have more Contributor from my community and circle. I will literally incubate contributor, from Core contribution to Docs and Community team. I will drive more into sharing my experience and finding over the decade. Besides writing, which I think is my superpower(!), but still under used, I will drive more into Speaking. Those are my next upcoming Session, if you are happened to any of those WordCamp, please say Hi!</span></p>\n<ol>\n<li><strong>WordCamp Colombo, Sri Lanka – 23rd September</strong></li>\n</ol>\n<p><b>Topic –</b><a href="https://2017.colombo.wordcamp.org/speaker/m-asif-rahman/"><span> Making Million in WordPress Plugin But Not Being Evil!</span></a></p>\n<p><span> 2) <strong>WordCamp Ahmedabad, India – 7th October</strong></span></p>\n<p><b>Topic –</b> <a href="https://2017.ahmedabad.wordcamp.org/"><span>You heard content is the king, but are you paying attention to Content Distribution?</span></a></p>\n<p><span>If you read so far, you should understand how relevant both topic to my life! </span></p>\n<p> </p>\n<h2><b>How could I financially sustain this?</b></h2>\n<p><span>I am thinking, planning and working on this retirement plan for awhile now. The main question I got asked how could I financially sustain. I don’t know what kind of impression you have got so far by reading about my life. Yes, I own several successful ventures, running a very growing and profitable business, I also invested in the 20+ venture and was extremely lucky to enjoy some exit from the investment. But not in very big scale. Some of my investment looks promising, but that does not make me very rich in cash. So this plan further is not about having tons of cash in hand laying around, it’s more about having sustainable and ongoing earning. I do certainly have some exit I am looking forward to but my plan will not depend on it. I am confident now I could easily go beyond this month-to-month type calculation! </span></p>\n<h2><b>The Hardest Part!</b></h2>\n<p><span>When you grow business for over a decade, the main challenges are people. Like some successful venture, I also have businesses that are not cash-positive but has people involved with it for years. When you run a business, you become responsible for those people, their family depends on your decision, that type of responsibilities will limit you sometimes taking logical business decision. And really relying so much into people, and the fear of let going control could be hard dilemma any Entrepreneur could feel. </span></p>\n<p><span>But over the year I learned,<strong> sometimes you have to let go to get things done for future, sometimes you have to take a leap of faith</strong>. So, I practiced that for some time now. I am positive that things will work out, and won’t break apart.</span></p>\n<h1><b>Reason: Why I am doing this?</b></h1>\n<p><span>In some ways I feel I am doing this for very long time. I have built team, product, faced hard time, and also enjoyed when things work out, I have gone through this circle so many times. There is always hard time and I have seen how it all ultimately always worked out. I kind of want to get out of this circle. Sometimes I feel tired. Though for a person like me who single handily started everything, broke so many barriers, it’s hard to get me tensed. I know how to deal with pressure, hard time, shitty situation. In some ways I am resistant to those. But when I reflect everything in my life I am very proud what I have done, what I have Achieved.</span></p>\n<p><b>Monetary wealth did not make me rich! </b><span>But the experience and relation that I cultivated did. I feel rich because of this. </span></p>\n<p><span>When I was still a teenager, dreaming to be a physicist, I had a very thorough vision of my future, I wanted to finish my PhD by age 25. Later in the course of life I became Entrepreneur. Then my goal was to become a millionaire by age 25 and have a stable family. I was successful in that. I have the vision to built amazing WordPress team and product, I am doing that right now. </span></p>\n<p><b>I want to move on, I would like to see greater meaning of life. </b><span>That does not mean what I am doing is great, it’s just going beyond. I always thought life has a bigger meaning for me, I always felt privileged, the kind of life I had, most people from my demography could not have, so I have bigger responsibilities! </span></p>\n<h2><b>How ‘Big’ is WordPress?</b></h2>\n<p><span>WordPress is biggest CMS and No.1 solution to make Website, but how many businesses do you see worth over a $100M in WordPress Ecosystem? Or over $50M? Not much. And because of so much recent #WPDrama, one thing is very clear, we have a long way to grow. I kind of feel to make it too big, we even limited ourself as well. I do see the power struggle inside the community as well. The most respected person in the community, now have very large number of haters, and for few semi-valid reasons.<strong> That is sad, maybe we all need to rethink!</strong></span></p>\n<h1><b>What will I do in future?</b></h1>\n<p>Maybe I will <strong>drive deep into science</strong>, I will be still 34, even enough time to study something new! <span>Maybe I will just enjoy the break for awhile. Maybe I will try to find the better meaning of life. Or maybe will write a book, I don’t know, I want to keep the option open, have an open heart. I do certainly earn this freedom myself, I am very grateful to the list of endless great people that helped me throughout the decade of my career.</span></p>\n<h2><b>Your kids to reflect You!</b></h2>\n<p><span>We all want our kids to be like us, we want them to reflect us in a good way, and go beyond. But If we are not involved in every process of their life how could this happen? If you let your family, mainly wife to entirely take care of your kid how they are going to learn from you? Do you really believe just giving 1-2 hours a day will do the trick? It’s way more than that. I want to be an integral part of my kids’ life. I want to be fully involved in their process of growing up. In this whole thing, there is nothing related of deciding fate of their life. I have no expectation of making my kids something, I am fully open, they will decide their destiny, their own venture. I just want to help them understand this World, </span><b>be their Dad</b><span>, be the friend they could play with, be the teacher they need, as long as they need.</span></p>\n<p><span>I will spend more time with my family, my 2 young daughters really need more of me, they will be 4 & 2 by next year. They will go into school, perfect time for me to jump in.</span></p>\n<h1><strong>Conclusion: For You!</strong></h1>\n<p>If you came this far reading this, you could probably tell I enjoyed writing! My routine hardly gives me more option to do it regularly. I was meant to write this HeroPress article last year but was too busy, and the timing was too near of the 2nd baby’s birth!</p>\n<p>I don’t expect others to try to retire early, but having a choice in life is important. Try to look back. Why do you work? Is it because of earning money? Just to survive, just to sustain your family? This should not be the purpose of human life. I believe our Creator created us for a reason, <strong>we are not meant to live and die selfishly like an animal. There should be more meaning of life other than trying to buy luxury!</strong></p>\n<p>There is a Ted talk describing Humans, how evaluated to be Human, one of the core reason was we cooked, and gathered and stored food, so we spent less time like other Gorillas to try to find food and spend most of the days for that purpose. We cooked, it was easy to chew, and it gave us more free time, so we were able to innovate! Interesting theory, but surely intriguing.</p>\n<p><strong>Life is not always about achieving it all. It’s sometimes about the journey. You can’t always win. You have to learn from the journey and move on.</strong></p>\n<p>When I look back I do see, my decision to invest worked out many ways. <strong>As I diversified my venture it was a good move.</strong> I made many mistakes and described in details here as well, but I tried to learn and reflect that in my further life. I am who I am, because of the journey. I don’t regret any part of it. If I had the chance would I have done it differently? I don’t know, maybe that could be a different journey. My life is wrapped up entirely with WordPress, I am and will always be proud of that. But maybe I need to give myself a fair chance to see the world clearly. For past 13-14 years, I have worked every day on an average 14 hours of more, I still stay at the office for over 12 hours. But I don’t do it because I have to, I do it because I enjoy it. But this is taking too much of my life, I am too swamped up. This break is necessary.</p>\n<p> </p>\n<p><em><strong>Note:</strong> I really like to thank Topher & HeroPress for giving me this opportunity and pushing me on writing this. I was very confused as it turns out this BIG. I thought it was just 2500-3000 words, I wrote almost on the fly, so was not looking at word count. Probably this is kind of my thing, if an idea is clear in my head, I don’t have issues putting it into letters.</em></p>\n<p><em>Topher told me this is twice the size of the previous longest essay in HeroPress. <strong>I am glad if you read it completely! That’s also an achievement!</strong> Then why not spent few second more to say Hi in the comments, so I could know who read this far!</em></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: Retiring Young From Bangladesh, Thanks To WordPress" class="rtsocial-twitter-button" href="https://twitter.com/share?text=Retiring%20Young%20From%20Bangladesh%2C%20Thanks%20To%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fretiring-young-bangladesh-thanks-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: Retiring Young From Bangladesh, Thanks To WordPress" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fretiring-young-bangladesh-thanks-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%2Fretiring-young-bangladesh-thanks-wordpress%2F&title=Retiring+Young+From+Bangladesh%2C+Thanks+To+WordPress" rel="nofollow" target="_blank" title="Share: Retiring Young From Bangladesh, Thanks To 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/retiring-young-bangladesh-thanks-wordpress/&media=https://heropress.com/wp-content/uploads/2018/08/083017-150x150.jpg&description=Retiring Young From Bangladesh, Thanks To WordPress" rel="nofollow" target="_blank" title="Pin: Retiring Young From Bangladesh, Thanks To WordPress"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/retiring-young-bangladesh-thanks-wordpress/" title="Retiring Young From Bangladesh, Thanks To WordPress"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/retiring-young-bangladesh-thanks-wordpress/">Retiring Young From Bangladesh, Thanks To 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, 30 Aug 2017 00:00:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"M Asif Rahman";s: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:43:"Akismet: Akismet and Drupal, Together Again";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://blog.akismet.com/?p=1960";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"https://blog.akismet.com/2017/08/29/akismet-and-drupal-together-again/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1569:"<p>Akismet is used on millions of WordPress sites, but it isn’t only used with WordPress. In fact, Akismet can be integrated with any CMS, and <a href="https://akismet.com/development/api/#use-a-library">more than 30 Akismet libraries and plugins are available for non-WordPress systems</a>.</p>\n<p>The <a href="https://www.drupal.org/">Drupal CMS</a> has had an unofficial Akismet integration available via the <a href="https://www.drupal.org/project/antispam">AntiSpam module</a> since 2009, but it hadn’t been updated since 2012, and thousands of sites were still using it despite some significant bugs. In the interest of providing the best experience possible for Akismet customers, we’ve contributed some time and code, and <strong>we’re happy to announce that a new stable version of AntiSpam for Drupal is available.</strong></p>\n<p>Version 7.x-1.6 can be downloaded from the <a href="https://www.drupal.org/project/antispam">AntiSpam project page</a> on Drupal.org. Please let us know about any issues you may encounter by leaving a comment below or by opening a ticket at <a href="https://www.drupal.org/project/issues/antispam">the issue tracker for the AntiSpam module</a>.</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1960/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1960/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1960&subd=akismet&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 29 Aug 2017 19:16: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:17:"Christopher Finke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:21:"Dougal Campbell: 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:34:"http://dougal.gunters.org/?p=81413";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"http://dougal.gunters.org/blog/2017/08/29/81413/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:551:"<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">I seem t\' have a knack fer findin\' obscure edge-case bugs in WordPress. <a href="https://twitter.com/hashtag/wordpress?src=hash">#wordpress</a> <a href="https://twitter.com/hashtag/oembed?src=hash">#oembed</a> <a href="https://t.co/aucCSDb76H">https://t.co/aucCSDb76H</a></p>\n<p>— Dougal Campbell (@dougal) <a href="https://twitter.com/dougal/status/902299942701674497">August 28, 2017</a></p></blockquote>\n<p></p>\n<p> </p>\n<div class="yarpp-related-rss yarpp-related-none">\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 29 Aug 2017 15:53:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Dougal Campbell";s: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:107:"WPTavern: Matt Mullenweg Addresses Concerns About Gutenberg, Confirms New Editor to Ship with WordPress 5.0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=74414";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:117:"https://wptavern.com/matt-mullenweg-addresses-concerns-about-gutenberg-confirms-new-editor-to-ship-with-wordpress-5-0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6828:"<p>Matt Mullenweg published an appeal to WordPress users over the weekend in a post titled “<a href="https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/" target="_blank">We Called it Gutenberg for a Reason</a>.” In it he offers a better look at his vision for Gutenberg, which he contends will be as transformative for WordPress’ future as the first movable type printing was for Europe’s printing revolution.</p>\n<p>Mullenweg identified the new Gutenberg editor as the tool that will enable WordPress to meet its competition and the opportunities available in the small business sector:</p>\n<blockquote><p>WordPress’s growth is impressive (28.5% and counting) but it’s not limitless — at least not in its current state. We have challenges (user frustrations with publishing and customizing, competition from site builders like Squarespace and Wix) and opportunities (the 157 million small businesses without sites, aka the next big market we should be serving). It’s time for WordPress’ next big thing, the thing that helps us deal with our challenges and opportunities. The thing that changes the world.</p></blockquote>\n<p>Automattic has been moving towards offering better support for small businesses with its 2015 <a href="https://wptavern.com/automattic-acquires-woocommerce" target="_blank">acquisition of WooCommerce</a> and steady commercialization of Jetpack, with plans targeted at business owners. The company is poised to capture even more of the self-hosted small business market by allowing customers to <a href="https://wptavern.com/wordpress-coms-business-plan-gives-subscribers-a-way-to-tap-into-wordpress-orgs-third-party-ecosystem" target="_blank">tap into WordPress’ third-party ecosystem</a>.</p>\n<p>However, many vocal opponents to Gutenberg (and the changes that will come along with it) are concerned that the project is being developed chiefly to serve Automattic’s customers and corporate interests.</p>\n<p>“Gutenberg has been mainly introduced by one particular company which seems to be in urgent need to compete with other SaaS businesses,” WordPress theme development company owner <a href="https://www.mhthemes.com/" target="_blank">Michael Hebenstreit</a> said. “That’s fine, but then keep it as a plugin for at least 1-2 years, put it on WordPress.com (to gather real live feedback and usage data) and nobody will have any issues with that approach.”</p>\n<p>Mullenweg addressed concerns that Gutenberg is being developed for Automattic’s customers in a <a href="https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/#comment-587598" target="_blank">reply</a> to a similar comment on his post.</p>\n<p>“There definitely is a contingent that seems to think that, but if you think through it logically it doesn’t make sense: if it were just to benefit Automattic it would be far easier and more advantageous to just do Gutenberg unilaterally in Calypso, where it would primarily benefit WordPress.com,” Mullenweg said. “Doing it in wp-admin and core first involves a lot more discussion, public feedback, backwards compatibility concerns, and breaking a lot of new ground for how core uses Javascript, and because it’s in core the benefits will accrue to all hosts of WordPress, many of which directly or indirectly compete with Automattic. We are reading and trying to learn from all the negative feedback though, even when it’s from people who haven’t used Gutenberg much yet.”</p>\n<p>Those who build websites for clients have voiced concerns about how Gutenberg will affect their businesses, whether the brand new interface will drive users away from WordPress. Developers and product owners are eagerly awaiting more answers on what it means for existing plugins and themes in the ecosystem, as the project has yet to iron out some of the more technical details regarding extensibility and support for metaboxes. This naturally raises concerns about Gutenberg’s timeline.</p>\n<p>“Gutenberg will ship with WordPress 5.0, but the release will come out when Gutenberg is ready, not vice versa,” Mullenweg said. “We still have target dates to help us think about scope and plan for all the supporting documentation, translation, and marketing efforts, but we’re not going to release anything until Gutenberg is something the team working on it agrees is ready.”</p>\n<p>WordPress users have been conditioned to anticipate releases on a regular schedule but the new approach to core development will allow for the next major release to wait until the targeted features are ready. Mullenweg confirmed in the comments of his post that Gutenberg will ship with a legacy interface to offer backwards compatibility for PHP metaboxes that have not yet updated to be JS-powered.</p>\n<p>“Some things like toolbar buttons will definitely need to be updated to work with Gutenberg, other things like Metaboxes there will be no problem to provide a legacy interface for a few releases,” Mullenweg said. “But I would say that plugin authors should start updating their plugins in late September if they want to benefit from Gutenberg’s launch.”</p>\n<p>One of the most prevalent concerns that remains is React’s licensing issues, which came to a head after the Apache Software Foundation added Facebook’s BSD+Patents license to its Category X list of disallowed licenses for Apache PMC members. Facebook’s engineering directors considered re-licensing the project but <a href="https://wptavern.com/facebook-isnt-budging-on-reacts-bsd-patents-license" target="_blank">decided against it</a>, citing “meritless patent litigation” as the reason behind adopting the BSD + patents license. The WordPress project has yet to announce its stance on the decision.</p>\n<p>“We anticipated a decision on React around the Apache deadline (closer to now), will have more to announce about WP and Gutenberg’s approach here in the next few weeks,” Mullenweg said.</p>\n<p>He also reiterated how invested he is in the WordPress project and ecosystem as a whole. His post elaborated on the many benefits he anticipates for plugin, theme, and core developers, agencies, users, and hosting companies. He challenged the WordPress community to see Gutenberg in the same light.</p>\n<p>“My life’s work is improving WordPress,” Mullenweg said. “I firmly believe that Gutenberg is the direction that will provide the most benefit to the maximum number of people while being totally in line with core WordPress’s philosophies and commitment to user freedom. So keep giving us your feedback, and let’s push through the fear together. It’s worth a little discomfort to change the world.”</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, 28 Aug 2017 18:01:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}}}}}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:"Thu, 28 Sep 2017 06:16:10 GMT";s:12:"content-type";s:8:"text/xml";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Thu, 28 Sep 2017 06:00:09 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";s:16:"content-encoding";s:4:"gzip";}}s:5:"build";s:14:"20170928060428";}', 'no'),
(330, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1506622572', 'no'),
(331, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1506579372', 'no'),
(332, '_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b', '1506622572', 'no'),
(333, '_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b', '<div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/09/global-wordpress-translation-day-3/\'>Global WordPress Translation Day 3</a></li></ul></div><div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpweekly-episode-289-where-did-wordpress-ease-of-use-go\'>WPTavern: WPWeekly Episode 289 – Where Did WordPress’ Ease of Use Go?</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-com-adds-google-photos-integration-available-now-for-jetpack-enabled-sites\'>WPTavern: WordPress.com Adds Google Photos Integration, Available Now for Jetpack-Enabled Sites</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/camp-press-a-detox-from-digital-life\'>WPTavern: Camp Press – A Detox from Digital Life</a></li></ul></div>', 'no'),
(336, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1506579537;s:7:"checked";a:3:{s:30:"advanced-custom-fields/acf.php";s:6:"4.4.12";s:19:"akismet/akismet.php";s:3:"4.0";s:9:"hello.php";s:3:"1.6";}s:8:"response";a:0:{}s:12:"translations";a:0:{}s:9:"no_update";a:3:{s:30:"advanced-custom-fields/acf.php";O:8:"stdClass":6:{s:2:"id";s:36:"w.org/plugins/advanced-custom-fields";s:4:"slug";s:22:"advanced-custom-fields";s:6:"plugin";s:30:"advanced-custom-fields/acf.php";s:11:"new_version";s:6:"4.4.12";s:3:"url";s:53:"https://wordpress.org/plugins/advanced-custom-fields/";s:7:"package";s:72:"https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.12.zip";}s:19:"akismet/akismet.php";O:8:"stdClass":6:{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:3:"4.0";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:54:"https://downloads.wordpress.org/plugin/akismet.4.0.zip";}s:9:"hello.php";O:8:"stdClass":6:{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";}}}', 'no'),
(340, 'theme_mods_twentyfifteen', 'a:4:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:3:"top";i:16;s:6:"social";i:18;}s:18:"custom_css_post_id";i:-1;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1506582363;s:4:"data";a:2:{s:19:"wp_inactive_widgets";a:4:{i:0;s:6:"text-2";i:1;s:6:"text-3";i:2;s:6:"text-4";i:3;s:6:"text-5";}s:9:"sidebar-1";a:3:{i:0;s:8:"search-2";i:1;s:12:"categories-2";i:2;s:13:"media_video-2";}}}}', 'yes'),
(343, '_site_transient_timeout_available_translations', '1506593329', 'no'),
(344, '_site_transient_available_translations', 'a:109:{s:2:"af";a:8:{s:8:"language";s:2:"af";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-09-04 12:02:13";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.8.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.8.1";s:7:"updated";s:19:"2017-07-29 08:49:40";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.8.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.6";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.6/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: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:"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:3:"bel";a:8:{s:8:"language";s:3:"bel";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-07-30 18:40:55";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.8.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.8.1";s:7:"updated";s:19:"2017-08-09 09:24:45";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.8.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.7.2";s:7:"updated";s:19:"2017-01-04 16:58:43";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.7.2/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.2";s:7:"updated";s:19:"2016-09-05 09:44:12";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.2/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.8.1";s:7:"updated";s:19:"2017-08-08 21:01:45";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.8.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.7.2";s:7:"updated";s:19:"2017-01-12 08:46:26";s:12:"english_name";s:5:"Czech";s:11:"native_name";s:12:"Čeština";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/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.8.1";s:7:"updated";s:19:"2017-09-19 16:27:32";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.8.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.8.1";s:7:"updated";s:19:"2017-08-27 19:10:04";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.8.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_DE";a:8:{s:8:"language";s:5:"de_DE";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-09-14 20:03:25";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.8.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.8.1";s:7:"updated";s:19:"2017-09-04 15:29:24";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.8.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:5:"de_CH";a:8:{s:8:"language";s:5:"de_CH";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-09-09 11:51:58";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.8.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:14:"de_CH_informal";a:8:{s:8:"language";s:14:"de_CH_informal";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-09-09 11:53:31";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.8.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.8.1";s:7:"updated";s:19:"2017-07-28 10:51:51";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.8.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_GB";a:8:{s:8:"language";s:5:"en_GB";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-07-25 17:31:04";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.8.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.8.1";s:7:"updated";s:19:"2017-07-25 10:03:08";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.8.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_CA";a:8:{s:8:"language";s:5:"en_CA";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-07-25 19:47:01";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.8.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_NZ";a:8:{s:8:"language";s:5:"en_NZ";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-08-02 03:57:05";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.8.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.7.6";s:7:"updated";s:19:"2017-01-26 15:53:43";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.7.6/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.8.1";s:7:"updated";s:19:"2017-07-26 10:38:53";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.8.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_AR";a:8:{s:8:"language";s:5:"es_AR";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-08-01 04:48:11";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.8.1/es_AR.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_ES";a:8:{s:8:"language";s:5:"es_ES";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-09-18 14:39:36";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.8.1/es_ES.zip";s:3:"iso";a:1:{i:1;s:2:"es";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_MX";a:8:{s:8:"language";s:5:"es_MX";s:7:"version";s:5:"4.8.1";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.1/es_MX.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_VE";a:8:{s:8:"language";s:5:"es_VE";s:7:"version";s:5:"4.8.1";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.1/es_VE.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_GT";a:8:{s:8:"language";s:5:"es_GT";s:7:"version";s:5:"4.7.6";s:7:"updated";s:19:"2017-01-26 15:54:37";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.7.6/es_GT.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_PE";a:8:{s:8:"language";s:5:"es_PE";s:7:"version";s:5:"4.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:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CL";a:8:{s:8:"language";s:5:"es_CL";s:7:"version";s: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:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CO";a:8:{s:8:"language";s:5:"es_CO";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-08-13 17:00:30";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.8.1/es_CO.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:2:"et";a:8:{s:8:"language";s:2:"et";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-27 16:37:11";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.7.2/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.8.1";s:7:"updated";s:19:"2017-09-19 12:08:05";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.8.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.8.1";s:7:"updated";s:19:"2017-07-28 11:00:29";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.8.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_FR";a:8:{s:8:"language";s:5:"fr_FR";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-09-13 19:34:52";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.8.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_BE";a:8:{s:8:"language";s:5:"fr_BE";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-07-28 09:14:18";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.8.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_CA";a:8:{s:8:"language";s:5:"fr_CA";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-07-28 12:37:07";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.8.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: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.8.1";s:7:"updated";s:19:"2017-07-26 12:45:35";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.8.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.8.1";s:7:"updated";s:19:"2017-08-31 06:54:10";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.8.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.8.1";s:7:"updated";s:19:"2017-09-12 21:37:24";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.8.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.8.1";s:7:"updated";s:19:"2017-07-28 10:29:26";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.8.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.8.1";s:7:"updated";s:19:"2017-09-17 21:32:24";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.8.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.7.2";s:7:"updated";s:19:"2017-01-26 15:48:39";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.7.2/hu_HU.zip";s:3:"iso";a:2:{i:1;s:2:"hu";i:2;s:3:"hun";}s:7:"strings";a:1:{s:8:"continue";s: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.8.1";s:7:"updated";s:19:"2017-07-28 12:45:08";s:12:"english_name";s:10:"Indonesian";s:11:"native_name";s:16:"Bahasa Indonesia";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.8.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.6";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.6/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.8.1";s:7:"updated";s:19:"2017-09-10 18:53:47";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.8.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.8.1";s:7:"updated";s:19:"2017-08-03 23:23:50";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.8.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:"ka_GE";a:8:{s:8:"language";s:5:"ka_GE";s:7:"version";s:3:"4.8";s:7:"updated";s:19:"2017-06-12 09:20:11";s:12:"english_name";s:8:"Georgian";s:11:"native_name";s:21:"ქართული";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.8/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.8.1";s:7:"updated";s:19:"2017-08-22 15:33:00";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.8.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.8.1";s:7:"updated";s:19:"2017-07-28 10:48:16";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.8.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.8.1";s:7:"updated";s:19:"2017-07-28 11:02:15";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.8.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.6";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.6/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.6";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.6/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:3:"4.8";s:7:"updated";s:19:"2017-07-05 19:40:47";s:12:"english_name";s:7:"Marathi";s:11:"native_name";s:15:"मराठी";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.8/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.7.6";s:7:"updated";s:19:"2017-03-05 09:45:10";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.7.6/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.19";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.19/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.8.1";s:7:"updated";s:19:"2017-08-02 21:02:39";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.8.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.1";s:7:"updated";s:19:"2017-07-31 08:47:10";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.1/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.8.1";s:7:"updated";s:19:"2017-09-17 11:00:54";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.8.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.8.1";s:7:"updated";s:19:"2017-08-30 07:58:32";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.8.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.8.1";s:7:"updated";s:19:"2017-07-27 16:44:39";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.8.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.1";s:7:"updated";s:19:"2017-08-01 07:32:10";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.1/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.1";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.1/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.8.1";s:7:"updated";s:19:"2017-09-06 08:34:38";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.8.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.19";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.19/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:5:"pt_PT";a:8:{s:8:"language";s:5:"pt_PT";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-09-10 19:12:13";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.8.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:10:"pt_PT_ao90";a:8:{s:8:"language";s:10:"pt_PT_ao90";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-09-05 18:31:50";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.8.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.8.1";s:7:"updated";s:19:"2017-07-26 21:35:20";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.8.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: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.8.1";s:7:"updated";s:19:"2017-09-19 13:05:58";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.8.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.8.1";s:7:"updated";s:19:"2017-09-19 20:27:57";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.8.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.8.1";s:7:"updated";s:19:"2017-08-09 13:26:18";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.8.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.8.1";s:7:"updated";s:19:"2017-09-12 12:51:50";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.8.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.7.6";s:7:"updated";s:19:"2017-04-24 08:35:30";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.7.6/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.8.1";s:7:"updated";s:19:"2017-07-28 12:07:44";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.8.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.8.1";s:7:"updated";s:19:"2017-09-19 08:58:31";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.8.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.7.2";s:7:"updated";s:19:"2017-01-26 15:48:43";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.7.2/th.zip";s:3:"iso";a:2:{i:1;s:2:"th";i:2;s:3:"tha";}s:7:"strings";a:1:{s:8:"continue";s:15:"ต่อไป";}}s: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.8.1";s:7:"updated";s:19:"2017-07-31 11:38:12";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.8.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.1";s:7:"updated";s:19:"2017-09-19 19:56:39";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.1/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.8.1";s:7:"updated";s:19:"2017-07-28 14:27:29";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.8.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.8.1";s:7:"updated";s:19:"2017-09-11 16:54:43";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.8.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.8.1";s:7:"updated";s:19:"2017-09-13 04:19:14";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.8.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_TW";a:8:{s:8:"language";s:5:"zh_TW";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-09-12 11:35:05";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.8.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.8.1";s:7:"updated";s:19:"2017-08-14 16:47:28";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.8.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:"繼續";}}s:5:"zh_CN";a:8:{s:8:"language";s:5:"zh_CN";s:7:"version";s:5:"4.8.1";s:7:"updated";s:19:"2017-08-04 07:53:05";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.8.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:"继续";}}}', 'no'),
(349, '_site_transient_timeout_theme_roots', '1506588790', 'no'),
(350, '_site_transient_theme_roots', 'a:5:{s:12:"alumni-theme";s:7:"/themes";s:11:"assignment1";s:7:"/themes";s:13:"twentyfifteen";s:7:"/themes";s:15:"twentyseventeen";s:7:"/themes";s:13:"twentysixteen";s:7:"/themes";}', 'no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
-- Dumping structure for table wordpress-niki.wp_postmeta
DROP TABLE IF EXISTS `wp_postmeta`;
CREATE TABLE IF NOT EXISTS `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=286 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_postmeta: ~159 rows (approximately)
DELETE FROM `wp_postmeta`;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(23, 13, '_edit_last', '1'),
(24, 13, '_edit_lock', '1505568894:1'),
(25, 13, '_oembed_641764ec5b1f68f94df04837c058308b', '{{unknown}}'),
(26, 14, '_wp_attached_file', '2017/09/man-in-suit2.jpg'),
(27, 14, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:597;s:4:"file";s:24:"2017/09/man-in-suit2.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"man-in-suit2-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:24:"man-in-suit2-300x224.jpg";s:5:"width";i:300;s:6:"height";i:224;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"man-in-suit2-768x573.jpg";s:5:"width";i:768;s:6:"height";i:573;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:24:"man-in-suit2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;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:37:"(c) George Doyle & Ciaran Griffin";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:{}}}'),
(30, 16, '_edit_last', '1'),
(31, 16, '_edit_lock', '1506077546:1'),
(32, 17, '_wp_attached_file', '2017/09/4356204-beautiful-girl-picture.jpg'),
(33, 17, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1200;s:4:"file";s:42:"2017/09/4356204-beautiful-girl-picture.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:42:"4356204-beautiful-girl-picture-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:42:"4356204-beautiful-girl-picture-300x188.jpg";s:5:"width";i:300;s:6:"height";i:188;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:42:"4356204-beautiful-girl-picture-768x480.jpg";s:5:"width";i:768;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:43:"4356204-beautiful-girl-picture-1024x640.jpg";s:5:"width";i:1024;s:6:"height";i:640;s:9:"mime-type";s:10:"image/jpeg";}s:30:"twentyseventeen-featured-image";a:4:{s:4:"file";s:44:"4356204-beautiful-girl-picture-1920x1200.jpg";s:5:"width";i:1920;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:42:"4356204-beautiful-girl-picture-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;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:{}}}'),
(34, 18, '_wp_attached_file', '2017/09/man-12.jpg'),
(35, 18, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:18:"2017/09/man-12.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"man-12-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:18:"man-12-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"man-12-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"man-12-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:18:"man-12-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;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:{}}}'),
(36, 19, '_wp_attached_file', '2017/09/prac-girl-2.jpg'),
(37, 19, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:23:"2017/09/prac-girl-2.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"prac-girl-2-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:23:"prac-girl-2-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"prac-girl-2-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"prac-girl-2-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:23:"prac-girl-2-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;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:{}}}'),
(40, 21, '_edit_last', '1'),
(41, 21, '_edit_lock', '1505569152:1'),
(44, 23, '_edit_last', '1'),
(45, 23, '_edit_lock', '1506078791:1'),
(48, 25, '_edit_last', '1'),
(49, 25, '_edit_lock', '1505570391:1'),
(52, 27, '_edit_last', '1'),
(53, 27, '_edit_lock', '1505570607:1'),
(56, 29, '_edit_last', '1'),
(57, 29, '_edit_lock', '1505571826:1'),
(60, 31, '_edit_last', '1'),
(61, 31, '_edit_lock', '1505571642:1'),
(68, 33, '_edit_last', '1'),
(69, 33, '_edit_lock', '1505571970:1'),
(70, 35, '_edit_last', '1'),
(71, 35, '_edit_lock', '1505939329:1'),
(72, 39, '_edit_last', '1'),
(73, 39, '_edit_lock', '1505572972:1'),
(74, 42, '_menu_item_type', 'post_type'),
(75, 42, '_menu_item_menu_item_parent', '0'),
(76, 42, '_menu_item_object_id', '39'),
(77, 42, '_menu_item_object', 'page'),
(78, 42, '_menu_item_target', ''),
(79, 42, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(80, 42, '_menu_item_xfn', ''),
(81, 42, '_menu_item_url', ''),
(82, 43, '_menu_item_type', 'post_type'),
(83, 43, '_menu_item_menu_item_parent', '0'),
(84, 43, '_menu_item_object_id', '35'),
(85, 43, '_menu_item_object', 'page'),
(86, 43, '_menu_item_target', ''),
(87, 43, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(88, 43, '_menu_item_xfn', ''),
(89, 43, '_menu_item_url', ''),
(90, 44, '_menu_item_type', 'post_type'),
(91, 44, '_menu_item_menu_item_parent', '0'),
(92, 44, '_menu_item_object_id', '33'),
(93, 44, '_menu_item_object', 'page'),
(94, 44, '_menu_item_target', ''),
(95, 44, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(96, 44, '_menu_item_xfn', ''),
(97, 44, '_menu_item_url', ''),
(98, 41, '_wp_trash_meta_status', 'publish'),
(99, 41, '_wp_trash_meta_time', '1505573300'),
(100, 45, '_menu_item_type', 'custom'),
(101, 45, '_menu_item_menu_item_parent', '43'),
(102, 45, '_menu_item_object_id', '45'),
(103, 45, '_menu_item_object', 'custom'),
(104, 45, '_menu_item_target', ''),
(105, 45, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(106, 45, '_menu_item_xfn', ''),
(107, 45, '_menu_item_url', 'https://www.facebook.com/SAEInstituteBelgrade/?fref=ts'),
(135, 49, '_menu_item_type', 'taxonomy'),
(136, 49, '_menu_item_menu_item_parent', '0'),
(137, 49, '_menu_item_object_id', '3'),
(138, 49, '_menu_item_object', 'category'),
(139, 49, '_menu_item_target', ''),
(140, 49, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(141, 49, '_menu_item_xfn', ''),
(142, 49, '_menu_item_url', ''),
(143, 49, '_menu_item_orphaned', '1505761869'),
(144, 50, '_menu_item_type', 'taxonomy'),
(145, 50, '_menu_item_menu_item_parent', '0'),
(146, 50, '_menu_item_object_id', '2'),
(147, 50, '_menu_item_object', 'category'),
(148, 50, '_menu_item_target', ''),
(149, 50, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(150, 50, '_menu_item_xfn', ''),
(151, 50, '_menu_item_url', ''),
(152, 50, '_menu_item_orphaned', '1505761870'),
(153, 51, '_menu_item_type', 'taxonomy'),
(154, 51, '_menu_item_menu_item_parent', '0'),
(155, 51, '_menu_item_object_id', '6'),
(156, 51, '_menu_item_object', 'category'),
(157, 51, '_menu_item_target', ''),
(158, 51, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(159, 51, '_menu_item_xfn', ''),
(160, 51, '_menu_item_url', ''),
(161, 51, '_menu_item_orphaned', '1505761870'),
(162, 52, '_menu_item_type', 'taxonomy'),
(163, 52, '_menu_item_menu_item_parent', '0'),
(164, 52, '_menu_item_object_id', '7'),
(165, 52, '_menu_item_object', 'category'),
(166, 52, '_menu_item_target', ''),
(167, 52, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(168, 52, '_menu_item_xfn', ''),
(169, 52, '_menu_item_url', ''),
(170, 52, '_menu_item_orphaned', '1505761871'),
(171, 53, '_menu_item_type', 'taxonomy'),
(172, 53, '_menu_item_menu_item_parent', '0'),
(173, 53, '_menu_item_object_id', '4'),
(174, 53, '_menu_item_object', 'category'),
(175, 53, '_menu_item_target', ''),
(176, 53, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(177, 53, '_menu_item_xfn', ''),
(178, 53, '_menu_item_url', ''),
(179, 53, '_menu_item_orphaned', '1505761871'),
(180, 54, '_menu_item_type', 'taxonomy'),
(181, 54, '_menu_item_menu_item_parent', '0'),
(182, 54, '_menu_item_object_id', '1'),
(183, 54, '_menu_item_object', 'category'),
(184, 54, '_menu_item_target', ''),
(185, 54, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(186, 54, '_menu_item_xfn', ''),
(187, 54, '_menu_item_url', ''),
(188, 54, '_menu_item_orphaned', '1505761871'),
(242, 19, '_edit_lock', '1506077576:1'),
(243, 17, '_edit_lock', '1506078316:1'),
(244, 61, '_wp_attached_file', '2017/09/4356204-beautiful-girl-picture.jpg'),
(245, 61, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1200;s:4:"file";s:42:"2017/09/4356204-beautiful-girl-picture.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:42:"4356204-beautiful-girl-picture-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:42:"4356204-beautiful-girl-picture-300x188.jpg";s:5:"width";i:300;s:6:"height";i:188;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:42:"4356204-beautiful-girl-picture-768x480.jpg";s:5:"width";i:768;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:43:"4356204-beautiful-girl-picture-1024x640.jpg";s:5:"width";i:1024;s:6:"height";i:640;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:{}}}'),
(246, 62, '_wp_attached_file', '2017/09/man-12.jpg'),
(247, 62, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:18:"2017/09/man-12.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"man-12-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:18:"man-12-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"man-12-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"man-12-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;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:{}}}'),
(248, 63, '_wp_attached_file', '2017/09/man-in-suit2.jpg'),
(249, 63, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:597;s:4:"file";s:24:"2017/09/man-in-suit2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"man-in-suit2-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:24:"man-in-suit2-300x224.jpg";s:5:"width";i:300;s:6:"height";i:224;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"man-in-suit2-768x573.jpg";s:5:"width";i:768;s:6:"height";i:573;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:37:"(c) George Doyle & Ciaran Griffin";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:{}}}'),
(250, 64, '_wp_attached_file', '2017/09/prac-girl-2.jpg'),
(251, 64, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:23:"2017/09/prac-girl-2.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"prac-girl-2-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:23:"prac-girl-2-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"prac-girl-2-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"prac-girl-2-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;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:{}}}'),
(254, 65, '_menu_item_type', 'post_type'),
(255, 65, '_menu_item_menu_item_parent', '0'),
(256, 65, '_menu_item_object_id', '33'),
(257, 65, '_menu_item_object', 'page'),
(258, 65, '_menu_item_target', ''),
(259, 65, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(260, 65, '_menu_item_xfn', ''),
(261, 65, '_menu_item_url', ''),
(263, 66, '_menu_item_type', 'custom'),
(264, 66, '_menu_item_menu_item_parent', '0'),
(265, 66, '_menu_item_object_id', '66'),
(266, 66, '_menu_item_object', 'custom'),
(267, 66, '_menu_item_target', ''),
(268, 66, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(269, 66, '_menu_item_xfn', ''),
(270, 66, '_menu_item_url', 'https://twitter.com/saebelgrade'),
(272, 67, '_menu_item_type', 'custom'),
(273, 67, '_menu_item_menu_item_parent', '0'),
(274, 67, '_menu_item_object_id', '67'),
(275, 67, '_menu_item_object', 'custom'),
(276, 67, '_menu_item_target', ''),
(277, 67, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(278, 67, '_menu_item_xfn', ''),
(279, 67, '_menu_item_url', 'https://www.facebook.com/SAEInstituteBelgrade/'),
(281, 68, '_wp_trash_meta_status', 'publish'),
(282, 68, '_wp_trash_meta_time', '1506080833'),
(283, 69, '_edit_last', '1'),
(284, 69, '_edit_lock', '1506081957:1'),
(285, 2, '_edit_lock', '1506081973:1');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
-- Dumping structure for table wordpress-niki.wp_posts
DROP TABLE IF EXISTS `wp_posts`;
CREATE TABLE IF NOT EXISTS `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_posts: ~52 rows (approximately)
DELETE FROM `wp_posts`;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2017-09-16 12:52:13', '2017-09-16 12:52:13', 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2017-09-16 12:52:13', '2017-09-16 12:52:13', '', 0, 'http://wordpress-niki.dev/?p=1', 0, 'post', '', 1),
(2, 1, '2017-09-16 12:52:13', '2017-09-16 12:52:13', 'This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my 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>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href="http://wordpress-niki.dev/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2017-09-16 12:52:13', '2017-09-16 12:52:13', '', 0, 'http://wordpress-niki.dev/?page_id=2', 0, 'page', '', 0),
(13, 1, '2017-09-16 13:37:00', '2017-09-16 13:37:00', '[gallery ids="14"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam ut tincidunt\r\n\r\neros. Mauris pellentesque lorem sapien. Praesent convallis lorem nulla, a aliquet ex venenatis eget. Phasellus finibus risus a eleifend molestie. Aliquam lacinia cursus lobortis. Proin ligula turpis, pretium id libero eget, interdum convallis enim. In cursus lobortis mauris, ac porttitor sem tristique vitae. Aenean pharetra velit ac arcu pulvinar, id lacinia ligula luctus. Curabitur sodales sapien metus, eu vehicula ligula auctor a. Nam pulvinar risus a libero suscipit egestas non a ante.\r\n\r\nEtiam maximus magna non malesuada tempor. Mauris sit amet vulputate enim, at accumsan tortor. Vestibulum nunc turpis, rutrum et augue nec, posuere tem', 'Marko Markovic', '', 'publish', 'open', 'open', '', 'marko-markovic', '', '', '2017-09-16 13:37:00', '2017-09-16 13:37:00', '', 0, 'http://wordpress-niki.dev/?p=13', 0, 'post', '', 0),
(14, 1, '2017-09-16 13:33:57', '2017-09-16 13:33:57', '', 'man-in-suit2', '', 'inherit', 'open', 'closed', '', 'man-in-suit2', '', '', '2017-09-16 13:33:57', '2017-09-16 13:33:57', '', 13, 'http://wordpress-niki.dev/wp-content/uploads/2017/09/man-in-suit2.jpg', 0, 'attachment', 'image/jpeg', 0),
(15, 1, '2017-09-16 13:37:00', '2017-09-16 13:37:00', '[gallery ids="14"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam ut tincidunt\r\n\r\neros. Mauris pellentesque lorem sapien. Praesent convallis lorem nulla, a aliquet ex venenatis eget. Phasellus finibus risus a eleifend molestie. Aliquam lacinia cursus lobortis. Proin ligula turpis, pretium id libero eget, interdum convallis enim. In cursus lobortis mauris, ac porttitor sem tristique vitae. Aenean pharetra velit ac arcu pulvinar, id lacinia ligula luctus. Curabitur sodales sapien metus, eu vehicula ligula auctor a. Nam pulvinar risus a libero suscipit egestas non a ante.\r\n\r\nEtiam maximus magna non malesuada tempor. Mauris sit amet vulputate enim, at accumsan tortor. Vestibulum nunc turpis, rutrum et augue nec, posuere tem', 'Marko Markovic', '', 'inherit', 'closed', 'closed', '', '13-revision-v1', '', '', '2017-09-16 13:37:00', '2017-09-16 13:37:00', '', 13, 'http://wordpress-niki.dev/2017/09/16/13-revision-v1/', 0, 'revision', '', 0),
(16, 1, '2017-09-16 13:38:37', '2017-09-16 13:38:37', '<img class="alignnone size-medium wp-image-18" src="http://wordpress-niki.dev/wp-content/uploads/2017/09/man-12-300x169.jpg" alt="" width="300" height="169" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam ut tincidunt eros. Mauris pellentesque lorem sapien. Praesent convallis lorem nulla, a aliquet ex venenatis eget. Phasellus finibus risus a eleifend molestie. Aliquam lacinia cursus lobortis. Proin ligula turpis, pretium id libero eget, interdum convallis enim. In cursus lobortis mauris, ac porttitor sem tristique vitae. Aenean pharetra velit ac arcu pulvinar, id lacinia ligula luctus. Curabitur sodales sapien metus, eu vehicula ligula auctor a. Nam pulvinar risus a libero suscipit egestas non a ante.\r\n\r\nEtiam maximus magna non malesuada tempor. Mauris sit amet vulputate enim, at accumsan tortor. Vestibulum nunc turpis, rutrum et augue nec, posuere tempor sem. Duis nec ex metus. Vestibulum vehicula consequat finibus. Ut mollis neque ac felis maximus, sed tincidunt lacus rutrum. Nulla sit amet pellentesque lacus. Vivamus at nunc ullamcorper, congue mi sed, efficitur est.\r\n\r\nPellentesque nibh eros, sodales a ornare ut, vestibulum et diam. Maecenas ullamcorper efficitur gravida. Vestibulum lobortis congue rutrum. Nullam sollicitudin in odio et porta. Donec molestie turpis vel faucibus dictum. Vestibulum mollis semper odio in feugiat. Pellentesque at risus ut orci consequat ultrices nec vitae est. Etiam eget placerat velit, et congue velit. Vestibulum consequat consectetur velit, eget hendrerit dolor vestibulum sit amet. Donec porttitor neque at sem placerat viverra. Curabitur id enim dolor. Proin eu lobortis tellus, nec maximus massa. Integer laoreet lectus nec risus rhoncus porttitor. In accumsan sagittis facilisis. Integer erat velit, facilisis ac elementum sed, tempor ultrices lorem. Etiam vel condimentum erat.', 'Janko Jankovic', '', 'publish', 'open', 'open', '', 'janko-jankovic', '', '', '2017-09-16 13:38:37', '2017-09-16 13:38:37', '', 0, 'http://wordpress-niki.dev/?p=16', 0, 'post', '', 0),
(17, 1, '2017-09-16 13:37:43', '2017-09-16 13:37:43', '', '4356204-beautiful-girl-picture', '', 'inherit', 'open', 'closed', '', '4356204-beautiful-girl-picture', '', '', '2017-09-16 13:37:43', '2017-09-16 13:37:43', '', 16, 'http://wordpress-niki.dev/wp-content/uploads/2017/09/4356204-beautiful-girl-picture.jpg', 0, 'attachment', 'image/jpeg', 0),
(18, 1, '2017-09-16 13:37:46', '2017-09-16 13:37:46', '', 'man-12', '', 'inherit', 'open', 'closed', '', 'man-12', '', '', '2017-09-16 13:37:46', '2017-09-16 13:37:46', '', 16, 'http://wordpress-niki.dev/wp-content/uploads/2017/09/man-12.jpg', 0, 'attachment', 'image/jpeg', 0),
(19, 1, '2017-09-16 13:37:49', '2017-09-16 13:37:49', '', 'prac-girl-2', '', 'inherit', 'open', 'closed', '', 'prac-girl-2', '', '', '2017-09-16 13:37:49', '2017-09-16 13:37:49', '', 16, 'http://wordpress-niki.dev/wp-content/uploads/2017/09/prac-girl-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(20, 1, '2017-09-16 13:38:37', '2017-09-16 13:38:37', '<img class="alignnone size-medium wp-image-18" src="http://wordpress-niki.dev/wp-content/uploads/2017/09/man-12-300x169.jpg" alt="" width="300" height="169" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam ut tincidunt eros. Mauris pellentesque lorem sapien. Praesent convallis lorem nulla, a aliquet ex venenatis eget. Phasellus finibus risus a eleifend molestie. Aliquam lacinia cursus lobortis. Proin ligula turpis, pretium id libero eget, interdum convallis enim. In cursus lobortis mauris, ac porttitor sem tristique vitae. Aenean pharetra velit ac arcu pulvinar, id lacinia ligula luctus. Curabitur sodales sapien metus, eu vehicula ligula auctor a. Nam pulvinar risus a libero suscipit egestas non a ante.\r\n\r\nEtiam maximus magna non malesuada tempor. Mauris sit amet vulputate enim, at accumsan tortor. Vestibulum nunc turpis, rutrum et augue nec, posuere tempor sem. Duis nec ex metus. Vestibulum vehicula consequat finibus. Ut mollis neque ac felis maximus, sed tincidunt lacus rutrum. Nulla sit amet pellentesque lacus. Vivamus at nunc ullamcorper, congue mi sed, efficitur est.\r\n\r\nPellentesque nibh eros, sodales a ornare ut, vestibulum et diam. Maecenas ullamcorper efficitur gravida. Vestibulum lobortis congue rutrum. Nullam sollicitudin in odio et porta. Donec molestie turpis vel faucibus dictum. Vestibulum mollis semper odio in feugiat. Pellentesque at risus ut orci consequat ultrices nec vitae est. Etiam eget placerat velit, et congue velit. Vestibulum consequat consectetur velit, eget hendrerit dolor vestibulum sit amet. Donec porttitor neque at sem placerat viverra. Curabitur id enim dolor. Proin eu lobortis tellus, nec maximus massa. Integer laoreet lectus nec risus rhoncus porttitor. In accumsan sagittis facilisis. Integer erat velit, facilisis ac elementum sed, tempor ultrices lorem. Etiam vel condimentum erat.', 'Janko Jankovic', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2017-09-16 13:38:37', '2017-09-16 13:38:37', '', 16, 'http://wordpress-niki.dev/2017/09/16/16-revision-v1/', 0, 'revision', '', 0),
(21, 1, '2017-09-16 13:41:26', '2017-09-16 13:41:26', '<img class="alignnone size-medium wp-image-19" src="http://wordpress-niki.dev/wp-content/uploads/2017/09/prac-girl-2-300x169.jpg" alt="" width="300" height="169" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam ut tincidunt eros. Mauris pellentesque lorem sapien. Praesent convallis lorem nulla, a aliquet ex venenatis eget. Phasellus finibus risus a eleifend molestie. Aliquam lacinia cursus lobortis. Proin ligula turpis, pretium id libero eget, interdum convallis enim. In cursus lobortis mauris, ac porttitor sem tristique vitae. Aenean pharetra velit ac arcu pulvinar, id lacinia ligula luctus. Curabitur sodales sapien metus, eu vehicula ligula auctor a. Nam pulvinar risus a libero suscipit egestas non a ante.\r\n\r\nEtiam maximus magna non malesuada tempor. Mauris sit amet vulputate enim, at accumsan tortor. Vestibulum nunc turpis, rutrum et augue nec, posuere tempor sem. Duis nec ex metus. Vestibulum vehicula consequat finibus. Ut mollis neque ac felis maximus, sed tincidunt lacus rutrum. Nulla sit amet pellentesque lacus. Vivamus at nunc ullamcorper, congue mi sed, efficitur est.\r\n\r\nPellentesque nibh eros, sodales a ornare ut, vestibulum et diam. Maecenas ullamcorper efficitur gravida. Vestibulum lobortis congue rutrum. Nullam sollicitudin in odio et porta. Donec molestie turpis vel faucibus dictum. Vestibulum mollis semper odio in feugiat. Pellentesque at risus ut orci consequat ultrices nec vitae est. Etiam eget placerat velit, et congue velit. Vestibulum consequat consectetur velit, eget hendrerit dolor vestibulum sit amet. Donec porttitor neque at sem placerat viverra. Curabitur id enim dolor. Proin eu lobortis tellus, nec maximus massa. Integer laoreet lectus nec risus rhoncus porttitor. In accumsan sagittis facilisis. Integer erat velit, facilisis ac elementum sed, tempor ultrices lorem. Etiam vel condimentum erat.', 'Mara Maric', '', 'publish', 'open', 'open', '', 'mara-maric', '', '', '2017-09-16 13:41:26', '2017-09-16 13:41:26', '', 0, 'http://wordpress-niki.dev/?p=21', 0, 'post', '', 0),
(22, 1, '2017-09-16 13:41:26', '2017-09-16 13:41:26', '<img class="alignnone size-medium wp-image-19" src="http://wordpress-niki.dev/wp-content/uploads/2017/09/prac-girl-2-300x169.jpg" alt="" width="300" height="169" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam ut tincidunt eros. Mauris pellentesque lorem sapien. Praesent convallis lorem nulla, a aliquet ex venenatis eget. Phasellus finibus risus a eleifend molestie. Aliquam lacinia cursus lobortis. Proin ligula turpis, pretium id libero eget, interdum convallis enim. In cursus lobortis mauris, ac porttitor sem tristique vitae. Aenean pharetra velit ac arcu pulvinar, id lacinia ligula luctus. Curabitur sodales sapien metus, eu vehicula ligula auctor a. Nam pulvinar risus a libero suscipit egestas non a ante.\r\n\r\nEtiam maximus magna non malesuada tempor. Mauris sit amet vulputate enim, at accumsan tortor. Vestibulum nunc turpis, rutrum et augue nec, posuere tempor sem. Duis nec ex metus. Vestibulum vehicula consequat finibus. Ut mollis neque ac felis maximus, sed tincidunt lacus rutrum. Nulla sit amet pellentesque lacus. Vivamus at nunc ullamcorper, congue mi sed, efficitur est.\r\n\r\nPellentesque nibh eros, sodales a ornare ut, vestibulum et diam. Maecenas ullamcorper efficitur gravida. Vestibulum lobortis congue rutrum. Nullam sollicitudin in odio et porta. Donec molestie turpis vel faucibus dictum. Vestibulum mollis semper odio in feugiat. Pellentesque at risus ut orci consequat ultrices nec vitae est. Etiam eget placerat velit, et congue velit. Vestibulum consequat consectetur velit, eget hendrerit dolor vestibulum sit amet. Donec porttitor neque at sem placerat viverra. Curabitur id enim dolor. Proin eu lobortis tellus, nec maximus massa. Integer laoreet lectus nec risus rhoncus porttitor. In accumsan sagittis facilisis. Integer erat velit, facilisis ac elementum sed, tempor ultrices lorem. Etiam vel condimentum erat.', 'Mara Maric', '', 'inherit', 'closed', 'closed', '', '21-revision-v1', '', '', '2017-09-16 13:41:26', '2017-09-16 13:41:26', '', 21, 'http://wordpress-niki.dev/2017/09/16/21-revision-v1/', 0, 'revision', '', 0),
(23, 1, '2017-09-16 13:43:35', '2017-09-16 13:43:35', '<img class="alignnone size-medium wp-image-17" src="http://wordpress-niki.dev/wp-content/uploads/2017/09/4356204-beautiful-girl-picture-300x188.jpg" alt="" width="300" height="188" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam ut tincidunt eros. Mauris pellentesque lorem sapien. Praesent convallis lorem nulla, a aliquet ex venenatis eget. Phasellus finibus risus a eleifend molestie. Aliquam lacinia cursus lobortis. Proin ligula turpis, pretium id libero eget, interdum convallis enim. In cursus lobortis mauris, ac porttitor sem tristique vitae. Aenean pharetra velit ac arcu pulvinar, id lacinia ligula luctus. Curabitur sodales sapien metus, eu vehicula ligula auctor a. Nam pulvinar risus a libero suscipit egestas non a ante.\r\n\r\nEtiam maximus magna non malesuada tempor. Mauris sit amet vulputate enim, at accumsan tortor. Vestibulum nunc turpis, rutrum et augue nec, posuere tempor sem. Duis nec ex metus. Vestibulum vehicula consequat finibus. Ut mollis neque ac felis maximus, sed tincidunt lacus rutrum. Nulla sit amet pellentesque lacus. Vivamus at nunc ullamcorper, congue mi sed, efficitur est.\r\n\r\nPellentesque nibh eros, sodales a ornare ut, vestibulum et diam. Maecenas ullamcorper efficitur gravida. Vestibulum lobortis congue rutrum. Nullam sollicitudin in odio et porta. Donec molestie turpis vel faucibus dictum. Vestibulum mollis semper odio in feugiat. Pellentesque at risus ut orci consequat ultrices nec vitae est. Etiam eget placerat velit, et congue velit. Vestibulum consequat consectetur velit, eget hendrerit dolor vestibulum sit amet. Donec porttitor neque at sem placerat viverra. Curabitur id enim dolor. Proin eu lobortis tellus, nec maximus massa. Integer laoreet lectus nec risus rhoncus porttitor. In accumsan sagittis facilisis. Integer erat velit, facilisis ac elementum sed, tempor ultrices lorem. Etiam vel condimentum erat.', 'Janja Janjic', '', 'publish', 'open', 'open', '', 'janja-janjic', '', '', '2017-09-22 11:13:38', '2017-09-22 11:13:38', '', 0, 'http://wordpress-niki.dev/?p=23', 0, 'post', '', 0),
(24, 1, '2017-09-16 13:43:35', '2017-09-16 13:43:35', '<img class="alignnone size-medium wp-image-17" src="http://wordpress-niki.dev/wp-content/uploads/2017/09/4356204-beautiful-girl-picture-300x188.jpg" alt="" width="300" height="188" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam ut tincidunt eros. Mauris pellentesque lorem sapien. Praesent convallis lorem nulla, a aliquet ex venenatis eget. Phasellus finibus risus a eleifend molestie. Aliquam lacinia cursus lobortis. Proin ligula turpis, pretium id libero eget, interdum convallis enim. In cursus lobortis mauris, ac porttitor sem tristique vitae. Aenean pharetra velit ac arcu pulvinar, id lacinia ligula luctus. Curabitur sodales sapien metus, eu vehicula ligula auctor a. Nam pulvinar risus a libero suscipit egestas non a ante.\r\n\r\nEtiam maximus magna non malesuada tempor. Mauris sit amet vulputate enim, at accumsan tortor. Vestibulum nunc turpis, rutrum et augue nec, posuere tempor sem. Duis nec ex metus. Vestibulum vehicula consequat finibus. Ut mollis neque ac felis maximus, sed tincidunt lacus rutrum. Nulla sit amet pellentesque lacus. Vivamus at nunc ullamcorper, congue mi sed, efficitur est.\r\n\r\nPellentesque nibh eros, sodales a ornare ut, vestibulum et diam. Maecenas ullamcorper efficitur gravida. Vestibulum lobortis congue rutrum. Nullam sollicitudin in odio et porta. Donec molestie turpis vel faucibus dictum. Vestibulum mollis semper odio in feugiat. Pellentesque at risus ut orci consequat ultrices nec vitae est. Etiam eget placerat velit, et congue velit. Vestibulum consequat consectetur velit, eget hendrerit dolor vestibulum sit amet. Donec porttitor neque at sem placerat viverra. Curabitur id enim dolor. Proin eu lobortis tellus, nec maximus massa. Integer laoreet lectus nec risus rhoncus porttitor. In accumsan sagittis facilisis. Integer erat velit, facilisis ac elementum sed, tempor ultrices lorem. Etiam vel condimentum erat.', 'Janja Janjic', '', 'inherit', 'closed', 'closed', '', '23-revision-v1', '', '', '2017-09-16 13:43:35', '2017-09-16 13:43:35', '', 23, 'http://wordpress-niki.dev/2017/09/16/23-revision-v1/', 0, 'revision', '', 0),
(25, 1, '2017-09-16 14:02:06', '2017-09-16 14:02:06', 'Pellentesque nibh eros, sodales a ornare ut, vestibulum et diam. Maecenas ullamcorper efficitur gravida. Vestibulum lobortis congue rutrum. Nullam sollicitudin in odio et porta. Donec molestie turpis vel faucibus dictum. Vestibulum mollis semper odio in feugiat. Pellentesque at risus ut orci consequat ultrices nec vitae est. Etiam eget placerat velit, et congue velit. Vestibulum consequat consectetur velit, eget hendrerit dolor vestibulum sit amet. Donec porttitor neque at sem placerat viverra. Curabitur id enim dolor. Proin eu lobortis tellus, nec maximus massa. Integer laoreet lectus nec risus rhoncus porttitor. In accumsan sagittis facilisis. Integer erat velit, facilisis ac elementum sed, tempor ultrices lorem. Etiam vel condimentum erat.', 'Milica got her first job one month after graduation', '', 'publish', 'open', 'open', '', 'milica-got-her-first-job-one-month-after-graduation', '', '', '2017-09-16 14:02:06', '2017-09-16 14:02:06', '', 0, 'http://wordpress-niki.dev/?p=25', 0, 'post', '', 0),
(26, 1, '2017-09-16 14:02:06', '2017-09-16 14:02:06', 'Pellentesque nibh eros, sodales a ornare ut, vestibulum et diam. Maecenas ullamcorper efficitur gravida. Vestibulum lobortis congue rutrum. Nullam sollicitudin in odio et porta. Donec molestie turpis vel faucibus dictum. Vestibulum mollis semper odio in feugiat. Pellentesque at risus ut orci consequat ultrices nec vitae est. Etiam eget placerat velit, et congue velit. Vestibulum consequat consectetur velit, eget hendrerit dolor vestibulum sit amet. Donec porttitor neque at sem placerat viverra. Curabitur id enim dolor. Proin eu lobortis tellus, nec maximus massa. Integer laoreet lectus nec risus rhoncus porttitor. In accumsan sagittis facilisis. Integer erat velit, facilisis ac elementum sed, tempor ultrices lorem. Etiam vel condimentum erat.', 'Milica got her first job one month after graduation', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2017-09-16 14:02:06', '2017-09-16 14:02:06', '', 25, 'http://wordpress-niki.dev/2017/09/16/25-revision-v1/', 0, 'revision', '', 0),
(27, 1, '2017-09-16 14:05:20', '2017-09-16 14:05:20', 'Curabitur faucibus quam a bibendum congue. Mauris efficitur, mi nec lobortis pharetra, enim quam viverra nunc, sit amet luctus lorem velit quis arcu. Nunc blandit sit amet risus eu consectetur. Fusce convallis massa ut tortor rhoncus, id iaculis velit tempor. Nunc pretium sit amet metus sed volutpat. Morbi tempus enim eu tristique varius. Sed euismod ullamcorper malesuada. Donec non nunc sodales, consequat libero ac, tristique odio.\r\n\r\nProin maximus mauris accumsan tellus pretium, nec euismod odio aliquet. Sed semper imperdiet diam, a facilisis mauris. Fusce fermentum ante congue neque malesuada posuere. Ut sed ultricies urna. Fusce vehicula lectus tortor, eget dictum ipsum semper vel. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis efficitur odio in accumsan bibendum. Morbi fermentum, enim sed vestibulum condimentum, augue ex consectetur est, eget iaculis mi mauris eu urna. Sed at pretium augue, a fermentum nibh. Nunc id metus sollicitudin augue mattis lacinia et vitae libero. Integer id purus vitae sapien hendrerit eleifend. Morbi placerat turpis arcu, a molestie massa consectetur ut. Proin et tellus et ligula varius viverra. Maecenas orci turpis, tempor eu aliquet pulvinar, imperdiet id ante. Praesent tristique turpis et placerat feugiat.', 'Petar won Student Academy Award for best Animation', '', 'publish', 'open', 'open', '', 'petar-won-student-academy-award-for-best-animation', '', '', '2017-09-16 14:05:20', '2017-09-16 14:05:20', '', 0, 'http://wordpress-niki.dev/?p=27', 0, 'post', '', 0),
(28, 1, '2017-09-16 14:05:20', '2017-09-16 14:05:20', 'Curabitur faucibus quam a bibendum congue. Mauris efficitur, mi nec lobortis pharetra, enim quam viverra nunc, sit amet luctus lorem velit quis arcu. Nunc blandit sit amet risus eu consectetur. Fusce convallis massa ut tortor rhoncus, id iaculis velit tempor. Nunc pretium sit amet metus sed volutpat. Morbi tempus enim eu tristique varius. Sed euismod ullamcorper malesuada. Donec non nunc sodales, consequat libero ac, tristique odio.\r\n\r\nProin maximus mauris accumsan tellus pretium, nec euismod odio aliquet. Sed semper imperdiet diam, a facilisis mauris. Fusce fermentum ante congue neque malesuada posuere. Ut sed ultricies urna. Fusce vehicula lectus tortor, eget dictum ipsum semper vel. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis efficitur odio in accumsan bibendum. Morbi fermentum, enim sed vestibulum condimentum, augue ex consectetur est, eget iaculis mi mauris eu urna. Sed at pretium augue, a fermentum nibh. Nunc id metus sollicitudin augue mattis lacinia et vitae libero. Integer id purus vitae sapien hendrerit eleifend. Morbi placerat turpis arcu, a molestie massa consectetur ut. Proin et tellus et ligula varius viverra. Maecenas orci turpis, tempor eu aliquet pulvinar, imperdiet id ante. Praesent tristique turpis et placerat feugiat.', 'Petar won Student Academy Award for best Animation', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2017-09-16 14:05:20', '2017-09-16 14:05:20', '', 27, 'http://wordpress-niki.dev/2017/09/16/27-revision-v1/', 0, 'revision', '', 0),
(29, 1, '2017-09-16 14:19:35', '2017-09-16 14:19:35', 'Curabitur faucibus quam a bibendum congue. Mauris efficitur, mi nec lobortis pharetra, enim quam viverra nunc, sit amet luctus lorem velit quis arcu. Nunc blandit sit amet risus eu consectetur. Fusce convallis massa ut tortor rhoncus, id iaculis velit tempor. Nunc pretium sit amet metus sed volutpat. Morbi tempus enim eu tristique varius. Sed euismod ullamcorper malesuada. Donec non nunc sodales, consequat libero ac, tristique odio.', 'Next Enrolment Date', '', 'publish', 'open', 'open', '', 'next-enrolment-date', '', '', '2017-09-16 14:24:02', '2017-09-16 14:24:02', '', 0, 'http://wordpress-niki.dev/?p=29', 0, 'post', '', 0),
(30, 1, '2017-09-16 14:19:35', '2017-09-16 14:19:35', 'Curabitur faucibus quam a bibendum congue. Mauris efficitur, mi nec lobortis pharetra, enim quam viverra nunc, sit amet luctus lorem velit quis arcu. Nunc blandit sit amet risus eu consectetur. Fusce convallis massa ut tortor rhoncus, id iaculis velit tempor. Nunc pretium sit amet metus sed volutpat. Morbi tempus enim eu tristique varius. Sed euismod ullamcorper malesuada. Donec non nunc sodales, consequat libero ac, tristique odio.', 'Next Enrolment Date', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2017-09-16 14:19:35', '2017-09-16 14:19:35', '', 29, 'http://wordpress-niki.dev/2017/09/16/29-revision-v1/', 0, 'revision', '', 0),
(31, 1, '2017-09-16 14:22:02', '2017-09-16 14:22:02', 'Pellentesque nibh eros, sodales a ornare ut, vestibulum et diam. Maecenas ullamcorper efficitur gravida. Vestibulum lobortis congue rutrum. Nullam sollicitudin in odio et porta. Donec molestie turpis vel faucibus dictum. Vestibulum mollis semper odio in feugiat. Pellentesque at risus ut orci consequat ultrices nec vitae est. Etiam eget placerat velit, et congue velit. Vestibulum consequat consectetur velit, eget hendrerit dolor vestibulum sit amet. Donec porttitor neque at sem placerat viverra. Curabitur id enim dolor. Proin eu lobortis tellus, nec maximus massa. Integer laoreet lectus nec risus rhoncus porttitor. In accumsan sagittis facilisis. Integer erat velit, facilisis ac elementum sed, tempor ultrices lorem. Etiam vel condimentum erat.\r\n\r\nCurabitur faucibus quam a bibendum congue. Mauris efficitur, mi nec lobortis pharetra, enim quam viverra nunc, sit amet luctus lorem velit quis arcu. Nunc blandit sit amet risus eu consectetur. Fusce convallis massa ut tortor rhoncus, id iaculis velit tempor. Nunc pretium sit amet metus sed volutpat. Morbi tempus enim eu tristique varius. Sed euismod ullamcorper malesuada. Donec non nunc sodales, consequat libero ac, tristique odio.\r\n\r\nProin maximus mauris accumsan tellus pretium, nec euismod odio aliquet. Sed semper imperdiet diam, a facilisis mauris. Fusce fermentum ante congue neque malesuada posuere. Ut sed ultricies urna. Fusce vehicula lectus tortor, eget dictum ipsum semper vel. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis efficitur odio in accumsan bibendum. Morbi fermentum, enim sed vestibulum condimentum, augue ex consectetur est, eget iaculis mi mauris eu urna. Sed at pretium augue, a fermentum nibh. Nunc id metus sollicitudin augue mattis lacinia et vitae libero. Integer id purus vitae sapien hendrerit eleifend. Morbi placerat turpis arcu, a molestie massa consectetur ut. Proin et tellus et ligula varius viverra. Maecenas orci turpis, tempor eu aliquet pulvinar, imperdiet id ante. Praesent tristique turpis et placerat feugiat.', 'Audio trends at CES 2017: how consumer lifestyles shape new music tech products', '', 'publish', 'open', 'open', '', 'audio-trends-at-ces-2017-how-consumer-lifestyles-shape-new-music-tech-products', '', '', '2017-09-16 14:22:56', '2017-09-16 14:22:56', '', 0, 'http://wordpress-niki.dev/?p=31', 0, 'post', '', 0),
(32, 1, '2017-09-16 14:22:02', '2017-09-16 14:22:02', 'Pellentesque nibh eros, sodales a ornare ut, vestibulum et diam. Maecenas ullamcorper efficitur gravida. Vestibulum lobortis congue rutrum. Nullam sollicitudin in odio et porta. Donec molestie turpis vel faucibus dictum. Vestibulum mollis semper odio in feugiat. Pellentesque at risus ut orci consequat ultrices nec vitae est. Etiam eget placerat velit, et congue velit. Vestibulum consequat consectetur velit, eget hendrerit dolor vestibulum sit amet. Donec porttitor neque at sem placerat viverra. Curabitur id enim dolor. Proin eu lobortis tellus, nec maximus massa. Integer laoreet lectus nec risus rhoncus porttitor. In accumsan sagittis facilisis. Integer erat velit, facilisis ac elementum sed, tempor ultrices lorem. Etiam vel condimentum erat.\r\n\r\nCurabitur faucibus quam a bibendum congue. Mauris efficitur, mi nec lobortis pharetra, enim quam viverra nunc, sit amet luctus lorem velit quis arcu. Nunc blandit sit amet risus eu consectetur. Fusce convallis massa ut tortor rhoncus, id iaculis velit tempor. Nunc pretium sit amet metus sed volutpat. Morbi tempus enim eu tristique varius. Sed euismod ullamcorper malesuada. Donec non nunc sodales, consequat libero ac, tristique odio.\r\n\r\nProin maximus mauris accumsan tellus pretium, nec euismod odio aliquet. Sed semper imperdiet diam, a facilisis mauris. Fusce fermentum ante congue neque malesuada posuere. Ut sed ultricies urna. Fusce vehicula lectus tortor, eget dictum ipsum semper vel. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis efficitur odio in accumsan bibendum. Morbi fermentum, enim sed vestibulum condimentum, augue ex consectetur est, eget iaculis mi mauris eu urna. Sed at pretium augue, a fermentum nibh. Nunc id metus sollicitudin augue mattis lacinia et vitae libero. Integer id purus vitae sapien hendrerit eleifend. Morbi placerat turpis arcu, a molestie massa consectetur ut. Proin et tellus et ligula varius viverra. Maecenas orci turpis, tempor eu aliquet pulvinar, imperdiet id ante. Praesent tristique turpis et placerat feugiat.', 'Audio trends at CES 2017: how consumer lifestyles shape new music tech products', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2017-09-16 14:22:02', '2017-09-16 14:22:02', '', 31, 'http://wordpress-niki.dev/2017/09/16/31-revision-v1/', 0, 'revision', '', 0),
(33, 1, '2017-09-16 14:28:25', '2017-09-16 14:28:25', '<h1>Contact</h1>\r\n<div class="col2">\r\n<h2><strong>SAE Institute Belgrade</strong></h2>\r\nCika Ljubina 8, Floor 3 11000 Belgrade\r\n\r\nTel. +381 11 2626 632\r\neMail: <a href="mailto:[email protected]">[email protected]</a>\r\n\r\n</div>\r\n<div class="col2 last"></div>\r\n<h2><strong>Come in for a Tour!</strong></h2>\r\nThe best way to understand how we work is to see our facilities for yourself. Feel free to call or mail us to make an appointment for a personal tour.\r\n\r\n<iframe src="https://maps.google.com/maps?f=q&source=s_q&hl=sr&geocode=&q=sae+institute+belgrade&aq=&sll=37.0625,-95.677068&sspn=56.243791,134.912109&t=m&ie=UTF8&hq=sae+institute&hnear=%D0%91%D0%B5%D0%BE%D0%B3%D1%80%D0%B0%D0%B4,+%D0%93%D1%80%D0%B0%D0%B4+%D0%91%D0%B5%D0%BE%D0%B3%D1%80%D0%B0%D0%B4,+%D0%A6%D0%B5%D0%BD%D1%82%D1%80%D0%B0%D0%BB%D0%BD%D0%B0+%D0%A1%D1%80%D0%B1%D0%B8%D1%98%D0%B0,+%D0%A1%D1%80%D0%B1%D0%B8%D1%98%D0%B0&ll=44.817692,20.459483&spn=0.003653,0.006866&z=17&output=embed" width="640" height="408" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" data-mce-fragment="1"></iframe>', 'Contact', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2017-09-16 14:28:25', '2017-09-16 14:28:25', '', 0, 'http://wordpress-niki.dev/?page_id=33', 0, 'page', '', 0),
(34, 1, '2017-09-16 14:28:25', '2017-09-16 14:28:25', '<h1>Contact</h1>\r\n<div class="col2">\r\n<h2><strong>SAE Institute Belgrade</strong></h2>\r\nCika Ljubina 8, Floor 3 11000 Belgrade\r\n\r\nTel. +381 11 2626 632\r\neMail: <a href="mailto:[email protected]">[email protected]</a>\r\n\r\n</div>\r\n<div class="col2 last"></div>\r\n<h2><strong>Come in for a Tour!</strong></h2>\r\nThe best way to understand how we work is to see our facilities for yourself. Feel free to call or mail us to make an appointment for a personal tour.\r\n\r\n<iframe src="https://maps.google.com/maps?f=q&source=s_q&hl=sr&geocode=&q=sae+institute+belgrade&aq=&sll=37.0625,-95.677068&sspn=56.243791,134.912109&t=m&ie=UTF8&hq=sae+institute&hnear=%D0%91%D0%B5%D0%BE%D0%B3%D1%80%D0%B0%D0%B4,+%D0%93%D1%80%D0%B0%D0%B4+%D0%91%D0%B5%D0%BE%D0%B3%D1%80%D0%B0%D0%B4,+%D0%A6%D0%B5%D0%BD%D1%82%D1%80%D0%B0%D0%BB%D0%BD%D0%B0+%D0%A1%D1%80%D0%B1%D0%B8%D1%98%D0%B0,+%D0%A1%D1%80%D0%B1%D0%B8%D1%98%D0%B0&ll=44.817692,20.459483&spn=0.003653,0.006866&z=17&output=embed" width="640" height="408" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" data-mce-fragment="1"></iframe>', 'Contact', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2017-09-16 14:28:25', '2017-09-16 14:28:25', '', 33, 'http://wordpress-niki.dev/2017/09/16/33-revision-v1/', 0, 'revision', '', 0),
(35, 1, '2017-09-16 14:36:17', '2017-09-16 14:36:17', '<iframe src="https://www.youtube.com/embed/gVu-GHApLWA" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe>', 'About SAE', '', 'publish', 'closed', 'closed', '', 'about-sae', '', '', '2017-09-16 14:42:54', '2017-09-16 14:42:54', '', 0, 'http://wordpress-niki.dev/?page_id=35', 0, 'page', '', 0),
(36, 1, '2017-09-16 14:36:17', '2017-09-16 14:36:17', '<iframe width="560" height="315" src="https://www.youtube.com/embed/gVu-GHApLWA" frameborder="0" allowfullscreen></iframe>', 'About SAE', '', 'inherit', 'closed', 'closed', '', '35-revision-v1', '', '', '2017-09-16 14:36:17', '2017-09-16 14:36:17', '', 35, 'http://wordpress-niki.dev/2017/09/16/35-revision-v1/', 0, 'revision', '', 0),
(37, 1, '2017-09-16 14:41:22', '2017-09-16 14:41:22', '<iframe src="https://www.youtube.com/embed/gVu-GHApLWA" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe>', 'About SAE', '', 'inherit', 'closed', 'closed', '', '35-autosave-v1', '', '', '2017-09-16 14:41:22', '2017-09-16 14:41:22', '', 35, 'http://wordpress-niki.dev/2017/09/16/35-autosave-v1/', 0, 'revision', '', 0),
(38, 1, '2017-09-16 14:42:54', '2017-09-16 14:42:54', '<iframe src="https://www.youtube.com/embed/gVu-GHApLWA" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe>', 'About SAE', '', 'inherit', 'closed', 'closed', '', '35-revision-v1', '', '', '2017-09-16 14:42:54', '2017-09-16 14:42:54', '', 35, 'http://wordpress-niki.dev/2017/09/16/35-revision-v1/', 0, 'revision', '', 0),
(39, 1, '2017-09-16 14:44:59', '2017-09-16 14:44:59', 'Web Department\r\n\r\nAnimation Department\r\n\r\nFilm Department\r\n\r\nAudio Deprtment', 'Departments', '', 'publish', 'closed', 'closed', '', 'departments', '', '', '2017-09-16 14:44:59', '2017-09-16 14:44:59', '', 0, 'http://wordpress-niki.dev/?page_id=39', 0, 'page', '', 0),
(40, 1, '2017-09-16 14:44:59', '2017-09-16 14:44:59', 'Web Department\r\n\r\nAnimation Department\r\n\r\nFilm Department\r\n\r\nAudio Deprtment', 'Departments', '', 'inherit', 'closed', 'closed', '', '39-revision-v1', '', '', '2017-09-16 14:44:59', '2017-09-16 14:44:59', '', 39, 'http://wordpress-niki.dev/2017/09/16/39-revision-v1/', 0, 'revision', '', 0),
(41, 1, '2017-09-16 14:48:18', '2017-09-16 14:48:18', '{\n "twentyseventeen::nav_menu_locations[top]": {\n "value": -1131822937,\n "type": "theme_mod",\n "user_id": 1\n },\n "nav_menu[-1131822937]": {\n "value": {\n "name": "Header Menu",\n "description": "",\n "parent": 0,\n "auto_add": false\n },\n "type": "nav_menu",\n "user_id": 1\n },\n "nav_menu_item[-1886935894]": {\n "value": {\n "object_id": 39,\n "object": "page",\n "menu_item_parent": 0,\n "position": 1,\n "type": "post_type",\n "title": "Departments",\n "url": "http://wordpress-niki.dev/departments/",\n "target": "",\n "attr_title": "",\n "description": "",\n "classes": "",\n "xfn": "",\n "status": "publish",\n "original_title": "Departments",\n "nav_menu_term_id": -1131822937,\n "_invalid": false,\n "type_label": "Page"\n },\n "type": "nav_menu_item",\n "user_id": 1\n },\n "nav_menu_item[-1503618373]": {\n "value": {\n "object_id": 35,\n "object": "page",\n "menu_item_parent": 0,\n "position": 2,\n "type": "post_type",\n "title": "About SAE",\n "url": "http://wordpress-niki.dev/about-sae/",\n "target": "",\n "attr_title": "",\n "description": "",\n "classes": "",\n "xfn": "",\n "status": "publish",\n "original_title": "About SAE",\n "nav_menu_term_id": -1131822937,\n "_invalid": false,\n "type_label": "Page"\n },\n "type": "nav_menu_item",\n "user_id": 1\n },\n "nav_menu_item[-210718407]": {\n "value": {\n "object_id": 33,\n "object": "page",\n "menu_item_parent": 0,\n "position": 3,\n "type": "post_type",\n "title": "Contact",\n "url": "http://wordpress-niki.dev/contact/",\n "target": "",\n "attr_title": "",\n "description": "",\n "classes": "",\n "xfn": "",\n "status": "publish",\n "original_title": "Contact",\n "nav_menu_term_id": -1131822937,\n "_invalid": false,\n "type_label": "Page"\n },\n "type": "nav_menu_item",\n "user_id": 1\n }\n}', '', '', 'trash', 'closed', 'closed', '', '9a427916-4657-4411-ab68-ba4e0b31e75d', '', '', '2017-09-16 14:48:18', '2017-09-16 14:48:18', '', 0, 'http://wordpress-niki.dev/?p=41', 0, 'customize_changeset', '', 0),
(42, 1, '2017-09-16 14:48:18', '2017-09-16 14:48:18', ' ', '', '', 'publish', 'closed', 'closed', '', '42', '', '', '2017-09-28 08:25:29', '2017-09-28 08:25:29', '', 0, 'http://wordpress-niki.dev/2017/09/16/42/', 1, 'nav_menu_item', '', 0),
(43, 1, '2017-09-16 14:48:19', '2017-09-16 14:48:19', ' ', '', '', 'publish', 'closed', 'closed', '', '43', '', '', '2017-09-28 08:25:29', '2017-09-28 08:25:29', '', 0, 'http://wordpress-niki.dev/2017/09/16/43/', 2, 'nav_menu_item', '', 0),
(44, 1, '2017-09-16 14:48:20', '2017-09-16 14:48:20', ' ', '', '', 'publish', 'closed', 'closed', '', '44', '', '', '2017-09-28 08:25:29', '2017-09-28 08:25:29', '', 0, 'http://wordpress-niki.dev/2017/09/16/44/', 4, 'nav_menu_item', '', 0),
(45, 1, '2017-09-16 14:51:47', '2017-09-16 14:51:47', '', 'SAE Facebook Page', '', 'publish', 'closed', 'closed', '', 'sae-facebook-page', '', '', '2017-09-28 08:25:29', '2017-09-28 08:25:29', '', 0, 'http://wordpress-niki.dev/?p=45', 3, 'nav_menu_item', '', 0),
(49, 1, '2017-09-18 19:11:09', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2017-09-18 19:11:09', '0000-00-00 00:00:00', '', 0, 'http://wordpress-niki.dev/?p=49', 1, 'nav_menu_item', '', 0),
(50, 1, '2017-09-18 19:11:09', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2017-09-18 19:11:09', '0000-00-00 00:00:00', '', 0, 'http://wordpress-niki.dev/?p=50', 1, 'nav_menu_item', '', 0),
(51, 1, '2017-09-18 19:11:10', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2017-09-18 19:11:10', '0000-00-00 00:00:00', '', 2, 'http://wordpress-niki.dev/?p=51', 1, 'nav_menu_item', '', 0),
(52, 1, '2017-09-18 19:11:10', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2017-09-18 19:11:10', '0000-00-00 00:00:00', '', 2, 'http://wordpress-niki.dev/?p=52', 1, 'nav_menu_item', '', 0),
(53, 1, '2017-09-18 19:11:11', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2017-09-18 19:11:11', '0000-00-00 00:00:00', '', 0, 'http://wordpress-niki.dev/?p=53', 1, 'nav_menu_item', '', 0),
(54, 1, '2017-09-18 19:11:11', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2017-09-18 19:11:11', '0000-00-00 00:00:00', '', 0, 'http://wordpress-niki.dev/?p=54', 1, 'nav_menu_item', '', 0),
(61, 1, '2017-09-22 11:12:44', '2017-09-22 11:12:44', '', '4356204-beautiful-girl-picture', '', 'inherit', 'open', 'closed', '', '4356204-beautiful-girl-picture-2', '', '', '2017-09-22 11:12:44', '2017-09-22 11:12:44', '', 0, 'http://wordpress-niki.dev/wp-content/uploads/2017/09/4356204-beautiful-girl-picture.jpg', 0, 'attachment', 'image/jpeg', 0),
(62, 1, '2017-09-22 11:12:47', '2017-09-22 11:12:47', '', 'man-12', '', 'inherit', 'open', 'closed', '', 'man-12-2', '', '', '2017-09-22 11:12:47', '2017-09-22 11:12:47', '', 0, 'http://wordpress-niki.dev/wp-content/uploads/2017/09/man-12.jpg', 0, 'attachment', 'image/jpeg', 0),
(63, 1, '2017-09-22 11:12:50', '2017-09-22 11:12:50', '', 'man-in-suit2', '', 'inherit', 'open', 'closed', '', 'man-in-suit2-2', '', '', '2017-09-22 11:12:50', '2017-09-22 11:12:50', '', 0, 'http://wordpress-niki.dev/wp-content/uploads/2017/09/man-in-suit2.jpg', 0, 'attachment', 'image/jpeg', 0),
(64, 1, '2017-09-22 11:12:52', '2017-09-22 11:12:52', '', 'prac-girl-2', '', 'inherit', 'open', 'closed', '', 'prac-girl-2-2', '', '', '2017-09-22 11:12:52', '2017-09-22 11:12:52', '', 0, 'http://wordpress-niki.dev/wp-content/uploads/2017/09/prac-girl-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(65, 1, '2017-09-22 11:29:05', '2017-09-22 11:29:05', ' ', '', '', 'publish', 'closed', 'closed', '', '65', '', '', '2017-09-28 08:23:56', '2017-09-28 08:23:56', '', 0, 'http://wordpress-niki.dev/?p=65', 1, 'nav_menu_item', '', 0),
(66, 1, '2017-09-22 11:29:05', '2017-09-22 11:29:05', '', 'SAE on Twitter', '', 'publish', 'closed', 'closed', '', 'sae-on-twitter', '', '', '2017-09-28 08:23:56', '2017-09-28 08:23:56', '', 0, 'http://wordpress-niki.dev/?p=66', 2, 'nav_menu_item', '', 0),
(67, 1, '2017-09-22 11:29:05', '2017-09-22 11:29:05', '', 'SAE Facebook Page', '', 'publish', 'closed', 'closed', '', 'sae-facebook-page-2', '', '', '2017-09-28 08:23:56', '2017-09-28 08:23:56', '', 0, 'http://wordpress-niki.dev/?p=67', 3, 'nav_menu_item', '', 0),
(68, 1, '2017-09-22 11:47:12', '2017-09-22 11:47:12', '{\n "old_sidebars_widgets_data": {\n "value": {\n "wp_inactive_widgets": [\n "text-2",\n "text-3",\n "text-4",\n "text-5"\n ],\n "sidebar-1": [\n "search-2",\n "categories-2",\n "media_video-2"\n ],\n "sidebar-2": [],\n "sidebar-3": []\n },\n "type": "global_variable",\n "user_id": 1\n }\n}', '', '', 'trash', 'closed', 'closed', '', '1a71ba8c-476b-44ee-ad60-298f3fe8c84c', '', '', '2017-09-22 11:47:12', '2017-09-22 11:47:12', '', 0, 'http://wordpress-niki.dev/2017/09/22/1a71ba8c-476b-44ee-ad60-298f3fe8c84c/', 0, 'customize_changeset', '', 0),
(69, 1, '2017-09-22 11:54:39', '2017-09-22 11:54:39', 'Welcome to the jungle.\r\nWe\'ve got fun \'n\' games.\r\nWe got everything you want.', 'Home Page', '', 'publish', 'closed', 'closed', '', 'home-page', '', '', '2017-09-22 11:54:39', '2017-09-22 11:54:39', '', 0, 'http://wordpress-niki.dev/?page_id=69', 0, 'page', '', 0),
(70, 1, '2017-09-22 11:54:39', '2017-09-22 11:54:39', 'Welcome to the jungle.\r\nWe\'ve got fun \'n\' games.\r\nWe got everything you want.', 'Home Page', '', 'inherit', 'closed', 'closed', '', '69-revision-v1', '', '', '2017-09-22 11:54:39', '2017-09-22 11:54:39', '', 69, 'http://wordpress-niki.dev/2017/09/22/69-revision-v1/', 0, 'revision', '', 0),
(71, 1, '2017-09-28 06:16:07', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2017-09-28 06:16:07', '0000-00-00 00:00:00', '', 0, 'http://wordpress-niki.dev/?p=71', 0, 'post', '', 0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
-- Dumping structure for table wordpress-niki.wp_termmeta
DROP TABLE IF EXISTS `wp_termmeta`;
CREATE TABLE IF NOT EXISTS `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_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_termmeta: ~0 rows (approximately)
DELETE FROM `wp_termmeta`;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
-- Dumping structure for table wordpress-niki.wp_terms
DROP TABLE IF EXISTS `wp_terms`;
CREATE TABLE IF NOT EXISTS `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_terms: ~16 rows (approximately)
DELETE FROM `wp_terms`;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'News', 'news', 0),
(3, 'Alumni', 'alumni', 0),
(4, 'Success Stories', 'success-stories', 0),
(6, 'SAE', 'sae', 0),
(7, 'Industry', 'industry', 0),
(8, 'Web Departmant', 'web-departmant', 0),
(9, 'Audio Departmant', 'audio-departmant', 0),
(10, 'Film Departmant', 'film-departmant', 0),
(11, 'Animation Departmant', 'animation-departmant', 0),
(12, 'First Job', 'first-job', 0),
(13, 'Student Academy Award', 'student-academy-award', 0),
(14, 'Bachelor\'s Degree Courses', 'bachelors-degree-courses', 0),
(15, 'CES 2017', 'ces-2017', 0),
(16, 'Header Menu', 'header-menu', 0),
(18, 'Social media', 'social-media', 0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
-- Dumping structure for table wordpress-niki.wp_term_relationships
DROP TABLE IF EXISTS `wp_term_relationships`;
CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_term_relationships: ~33 rows (approximately)
DELETE FROM `wp_term_relationships`;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(13, 3, 0),
(13, 10, 0),
(16, 3, 0),
(16, 8, 0),
(21, 3, 0),
(21, 9, 0),
(23, 3, 0),
(23, 11, 0),
(25, 4, 0),
(25, 8, 0),
(25, 12, 0),
(27, 4, 0),
(27, 11, 0),
(27, 13, 0),
(29, 2, 0),
(29, 6, 0),
(29, 8, 0),
(29, 9, 0),
(29, 10, 0),
(29, 11, 0),
(29, 14, 0),
(31, 2, 0),
(31, 7, 0),
(31, 9, 0),
(31, 15, 0),
(42, 16, 0),
(43, 16, 0),
(44, 16, 0),
(45, 16, 0),
(65, 18, 0),
(66, 18, 0),
(67, 18, 0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
-- Dumping structure for table wordpress-niki.wp_term_taxonomy
DROP TABLE IF EXISTS `wp_term_taxonomy`;
CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_term_taxonomy: ~16 rows (approximately)
DELETE FROM `wp_term_taxonomy`;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'category', '', 0, 2),
(3, 3, 'category', '', 0, 4),
(4, 4, 'category', '', 0, 2),
(6, 6, 'category', '', 2, 1),
(7, 7, 'category', '', 2, 1),
(8, 8, 'post_tag', '', 0, 3),
(9, 9, 'post_tag', '', 0, 3),
(10, 10, 'post_tag', '', 0, 2),
(11, 11, 'post_tag', '', 0, 3),
(12, 12, 'post_tag', '', 0, 1),
(13, 13, 'post_tag', '', 0, 1),
(14, 14, 'post_tag', '', 0, 1),
(15, 15, 'post_tag', '', 0, 1),
(16, 16, 'nav_menu', '', 0, 4),
(18, 18, 'nav_menu', '', 0, 3);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
-- Dumping structure for table wordpress-niki.wp_usermeta
DROP TABLE IF EXISTS `wp_usermeta`;
CREATE TABLE IF NOT EXISTS `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_usermeta: ~23 rows (approximately)
DELETE FROM `wp_usermeta`;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'Nikoleta'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'locale', ''),
(11, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(12, 1, 'wp_user_level', '10'),
(13, 1, 'dismissed_wp_pointers', ''),
(14, 1, 'show_welcome_panel', '1'),
(15, 1, 'session_tokens', 'a:2:{s:64:"3d0972b1dde0573d75174f432124e0f6dc106edfcd44f46feca998b46f1a219d";a:4:{s:10:"expiration";i:1506776131;s:2:"ip";s:9:"127.0.0.1";s:2:"ua";s:114:"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36";s:5:"login";i:1505566531;}s:64:"54d2755c47539c542c05692feca852b403cfd1d1b79bdf55d61e437c91b4ca1d";a:4:{s:10:"expiration";i:1506752166;s:2:"ip";s:9:"127.0.0.1";s:2:"ua";s:115:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36";s:5:"login";i:1506579366;}}'),
(16, 1, 'wp_dashboard_quick_press_last_post_id', '71'),
(17, 1, 'community-events-location', 'a:1:{s:2:"ip";s:9:"127.0.0.0";}'),
(18, 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";}'),
(19, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:"add-post_tag";i:1;s:15:"add-post_format";}'),
(20, 1, 'wp_user-settings', 'libraryContent=browse&editor=tinymce'),
(21, 1, 'wp_user-settings-time', '1506077685'),
(22, 1, 'nav_menu_recently_edited', '16'),
(23, 1, 'wp_media_library_mode', 'list');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
-- Dumping structure for table wordpress-niki.wp_users
DROP TABLE IF EXISTS `wp_users`;
CREATE TABLE IF NOT EXISTS `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table wordpress-niki.wp_users: ~1 rows (approximately)
DELETE FROM `wp_users`;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'Nikoleta', '$P$BUYMWNO/Uz/JoyVv1rBPhG0pvIwISt0', 'nikoleta', '[email protected]', '', '2017-09-16 12:52:13', '', 0, 'Nikoleta');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;