-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwp-test-plugins.sql
597 lines (524 loc) · 433 KB
/
wp-test-plugins.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
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jul 22, 2017 at 03:20 PM
-- Server version: 5.7.14
-- PHP Version: 5.6.25
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `wp-test-plugins`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL,
`comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_comments`
--
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-03-31 23:15:06', '2017-03-31 23:15:06', '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);
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE `wp_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE `wp_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost/wp-fumbling/wp-plugins-testing', 'yes'),
(2, 'home', 'http://localhost/wp-fumbling/wp-plugins-testing', 'yes'),
(3, 'blogname', 'WP Plugin Testing', '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:74:{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: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: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:0:{}', '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', 'twentyseventeen', 'yes'),
(41, 'stylesheet', 'twentyseventeen', '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', 'posts', '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:0:{}', 'yes'),
(80, 'widget_rss', 'a:0:{}', 'yes'),
(81, 'uninstall_plugins', 'a:0:{}', 'no'),
(82, 'timezone_string', '', 'yes'),
(83, 'page_for_posts', '0', 'yes'),
(84, 'page_on_front', '0', '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', '1', '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:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(96, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(97, 'widget_archives', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(98, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(99, 'sidebars_widgets', 'a:5:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(100, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(101, 'widget_calendar', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(102, 'widget_tag_cloud', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(103, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(104, 'cron', 'a:3:{i:1491045306;a:3:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1491088515;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;}}}s:7:"version";i:2;}', 'yes'),
(105, 'theme_mods_twentyseventeen', 'a:1:{s:18:"custom_css_post_id";i:-1;}', 'yes'),
(118, 'can_compress_scripts', '1', 'no'),
(119, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1491045318', 'no'),
(109, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-4.7.3.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.7.3.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-4.7.3-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-4.7.3-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"4.7.3";s:7:"version";s:5:"4.7.3";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:0:"";}}s:12:"last_checked";i:1491002109;s:15:"version_checked";s:5:"4.7.3";s:12:"translations";a:0:{}}', 'no'),
(111, '_site_transient_update_plugins', 'O:8:"stdClass":4:{s:12:"last_checked";i:1491002110;s:8:"response";a:0:{}s:12:"translations";a:0:{}s:9:"no_update";a:2:{s:19:"akismet/akismet.php";O:8:"stdClass":6:{s:2:"id";s:2:"15";s:4:"slug";s:7:"akismet";s:6:"plugin";s:19:"akismet/akismet.php";s:11:"new_version";s:3:"3.3";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:54:"https://downloads.wordpress.org/plugin/akismet.3.3.zip";}s:9:"hello.php";O:8:"stdClass":6:{s:2:"id";s:4:"3564";s:4:"slug";s:11:"hello-dolly";s:6:"plugin";s:9:"hello.php";s:11:"new_version";s:3:"1.6";s:3:"url";s:42:"https://wordpress.org/plugins/hello-dolly/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip";}}}', 'no'),
(112, '_site_transient_timeout_theme_roots', '1491003909', 'no'),
(113, '_site_transient_theme_roots', 'a:3:{s:13:"twentyfifteen";s:7:"/themes";s:15:"twentyseventeen";s:7:"/themes";s:13:"twentysixteen";s:7:"/themes";}', 'no'),
(114, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1491002111;s:7:"checked";a:3:{s:13:"twentyfifteen";s:3:"1.7";s:15:"twentyseventeen";s:3:"1.1";s:13:"twentysixteen";s:3:"1.3";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'no'),
(115, '_site_transient_timeout_browser_88337cd9fed317d029aaa03191c0be0b', '1491606915', 'no'),
(116, '_site_transient_browser_88337cd9fed317d029aaa03191c0be0b', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"56.0.2924.87";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');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(120, '_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:"Fri, 10 Mar 2017 18:14:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:40:"https://wordpress.org/?v=4.8-alpha-40359";s:7:"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:48:"WordPress 4.7.3 Security and Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 06 Mar 2017 17:53: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:3:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4696";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:396:"WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata. Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"James Nylen";s: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:6191:"<p>WordPress 4.7.3 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.2 and earlier are affected by six security issues:</p>\n<ol>\n<li>Cross-site scripting (XSS) via media file metadata. Reported by <a href="https://www.securesolutions.no/">Chris Andrè Dale</a>, <a href="https://twitter.com/yorickkoster">Yorick Koster</a>, and Simon P. Briggs.</li>\n<li>Control characters can trick redirect URL validation. Reported by <a href="http://www.danielchatfield.com/">Daniel Chatfield</a>.</li>\n<li>Unintended files can be deleted by administrators using the plugin deletion functionality. Reported by <a href="https://hackerone.com/triginc">TrigInc</a> and <a href="http://b.360.cn/">xuliang</a>.</li>\n<li>Cross-site scripting (XSS) via video URL in YouTube embeds. Reported by <a href="https://twitter.com/marcs0h">Marc Montpas</a>.</li>\n<li>Cross-site scripting (XSS) via taxonomy term names. Reported by <a href="https://profiles.wordpress.org/deltamgm2">Delta</a>.</li>\n<li>Cross-site request forgery (CSRF) in Press This leading to excessive use of server resources. Reported by Sipke Mellema.</li>\n</ol>\n<p>Thank you to the reporters 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.7.3 contains 39 maintenance fixes to the 4.7 release series. For more information, see the <a href="https://codex.wordpress.org/Version_4.7.3">release notes</a> or consult the <a href="https://core.trac.wordpress.org/query?status=closed&milestone=4.7.3&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.7.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.3.</p>\n<p>Thanks to everyone who contributed to 4.7.3: <a href="https://profiles.wordpress.org/aaroncampbell/">Aaron D. Campbell</a>, <a href="https://profiles.wordpress.org/adamsilverstein/">Adam Silverstein</a>, <a href="https://profiles.wordpress.org/xknown/">Alex Concha</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/asalce/">asalce</a>, <a href="https://profiles.wordpress.org/blobfolio/">blobfolio</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/bradyvercher/">Brady Vercher</a>, <a href="https://profiles.wordpress.org/drrobotnik/">Brandon Lavigne</a>, <a href="https://profiles.wordpress.org/bhargavbhandari90/">Bunty</a>, <a href="https://profiles.wordpress.org/ccprog/">ccprog</a>, <a href="https://profiles.wordpress.org/ketuchetan/">chetansatasiya</a>, <a href="https://profiles.wordpress.org/davidakennedy/">David A. Kennedy</a>, <a href="https://profiles.wordpress.org/dlh/">David Herrera</a>, <a href="https://profiles.wordpress.org/dhanendran/">Dhanendran</a>, <a href="https://profiles.wordpress.org/dd32/">Dion Hulse</a>, <a href="https://profiles.wordpress.org/ocean90/">Dominik Schilling (ocean90)</a>, <a href="https://profiles.wordpress.org/drivingralle/">Drivingralle</a>, <a href="https://profiles.wordpress.org/iseulde/">Ella Van Dorpe</a>, <a href="https://profiles.wordpress.org/pento/">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/iandunn/">Ian Dunn</a>, <a href="https://profiles.wordpress.org/ipstenu/">Ipstenu (Mika Epstein)</a>, <a href="https://profiles.wordpress.org/jnylen0/">James Nylen</a>, <a href="https://profiles.wordpress.org/jazbek/">jazbek</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/joehoyle/">Joe Hoyle</a>, <a href="https://profiles.wordpress.org/joemcgill/">Joe McGill</a>, <a href="https://profiles.wordpress.org/johnbillion/">John Blackbourn</a>, <a href="https://profiles.wordpress.org/johnjamesjacoby/">John James Jacoby</a>, <a href="https://profiles.wordpress.org/desrosj/">Jonathan Desrosiers</a>, <a href="https://profiles.wordpress.org/ryelle/">Kelly Dwan</a>, <a href="https://profiles.wordpress.org/markoheijnen/">Marko Heijnen</a>, <a href="https://profiles.wordpress.org/matheusgimenez/">MatheusGimenez</a>, <a href="https://profiles.wordpress.org/mnelson4/">Mike Nelson</a>, <a href="https://profiles.wordpress.org/mikeschroder/">Mike Schroder</a>, <a href="https://profiles.wordpress.org/codegeass/">Muhammet Arslan</a>, <a href="https://profiles.wordpress.org/celloexpressions/">Nick Halsey</a>, <a href="https://profiles.wordpress.org/swissspidy/">Pascal Birchler</a>, <a href="https://profiles.wordpress.org/pbearne/">Paul Bearne</a>, <a href="https://profiles.wordpress.org/pavelevap/">pavelevap</a>, <a href="https://profiles.wordpress.org/peterwilsoncc/">Peter Wilson</a>, <a href="https://profiles.wordpress.org/rachelbaker/">Rachel Baker</a>, <a href="https://profiles.wordpress.org/reldev/">reldev</a>, <a href="https://profiles.wordpress.org/sanchothefat/">Robert O’Rourke</a>, <a href="https://profiles.wordpress.org/welcher/">Ryan Welcher</a>, <a href="https://profiles.wordpress.org/sanketparmar/">Sanket Parmar</a>, <a href="https://profiles.wordpress.org/seanchayes/">Sean Hayes</a>, <a href="https://profiles.wordpress.org/sergeybiryukov/">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/netweb/">Stephen Edgar</a>, <a href="https://profiles.wordpress.org/triplejumper12/">triplejumper12</a>, <a href="https://profiles.wordpress.org/westonruter/">Weston Ruter</a>, and <a href="https://profiles.wordpress.org/wpfo/">wpfo</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:"4696";s: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: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:32:"WordPress 4.7.2 Security Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 26 Jan 2017 19:34: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:8:"category";a:3:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4676";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:357:"WordPress 4.7.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.7.1 and earlier are affected by three security issues: The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:2142:"<p>WordPress 4.7.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.7.1 and earlier are affected by three security issues:</p>\n<ol>\n<li>The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. Reported by David Herrera of <a href="https://www.alleyinteractive.com/">Alley Interactive</a>.</li>\n<li><code>WP_Query</code> is vulnerable to a SQL injection (SQLi) when passing unsafe data. 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://github.com/mjangda">Mo Jangda</a> (batmoo).</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the posts list table. Reported by <a href="https://iandunn.name/">Ian Dunn</a> of the WordPress Security Team.</li>\n<li>An unauthenticated privilege escalation vulnerability was discovered in a REST API endpoint. Reported by <a href="https://twitter.com/MarcS0h">Marc-Alexandre Montpas</a> of Sucuri Security. *</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><a href="https://wordpress.org/download/">Download WordPress 4.7.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.7.2.</p>\n<p>Thanks to everyone who contributed to 4.7.2.</p>\n<p>* Update: An additional serious vulnerability was fixed in this release and public disclosure was delayed. For more information on this vulnerability, additional mitigation steps taken, and an explanation for why disclosure was delayed, please read <a href="https://make.wordpress.org/core/2017/02/01/disclosure-of-additional-security-fix-in-wordpress-4-7-2/">Disclosure of Additional Security Fix in WordPress 4.7.2</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:"4676";s: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:39:"\n \n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"WordPress 4.7.1 Security and Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"https://wordpress.org/news/2017/01/wordpress-4-7-1-security-and-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 11 Jan 2017 03:53:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4650";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:375:"WordPress 4.7 has been downloaded over 10 million times since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7 and earlier are affected by eight security issues: […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:6520:"<p>WordPress 4.7 has been <a href="https://wordpress.org/download/counter/">downloaded over 10 million times</a> since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. 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.7 and earlier are affected by eight security issues:</p>\n<ol>\n<li>Remote code execution (RCE) in PHPMailer – <em>No specific issue appears to affect WordPress</em> or any of the major plugins we investigated but, out of an abundance of caution, we updated PHPMailer in this release. This issue was fixed in PHPMailer thanks to <a href="https://legalhackers.com/">Dawid Golunski</a> and <a href="https://twitter.com/Zenexer">Paul Buonopane</a>.</li>\n<li>The REST API exposed user data for all users who had authored a post of a public post type. WordPress 4.7.1 limits this to only post types which have specified that they should be shown within the REST API. Reported by <a href="https://poststatus.com/">Krogsgard</a> and <a href="https://ithemes.com/">Chris Jean</a>.</li>\n<li>Cross-site scripting (XSS) via the plugin name or version header on <code>update-core.php</code>. Reported by <a href="https://dominikschilling.de/">Dominik Schilling</a> of the WordPress Security Team.</li>\n<li>Cross-site request forgery (CSRF) bypass via uploading a Flash file. Reported by <a href="https://twitter.com/Abdulahhusam">Abdullah Hussam</a>.</li>\n<li>Cross-site scripting (XSS) via theme name fallback. Reported by <a href="https://pentest.blog/">Mehmet Ince</a>.</li>\n<li>Post via email checks <code>mail.example.com</code> if default settings aren’t changed. Reported by John Blackbourn of the WordPress Security Team.</li>\n<li>A cross-site request forgery (CSRF) was discovered in the accessibility mode of widget editing. Reported by <a href="https://dk.linkedin.com/in/ronni-skansing-36143b65">Ronnie Skansing</a>.</li>\n<li>Weak cryptographic security for multisite activation key. Reported by <a href="https://itsjack.cc/">Jack</a>.</li>\n</ol>\n<p>Thank you to the reporters 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.7.1 fixes 62 bugs from 4.7. For more information, see the <a href="https://codex.wordpress.org/Version_4.7.1">release notes</a> or consult the <a href="https://core.trac.wordpress.org/query?milestone=4.7.1">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.7.1</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.1.</p>\n<p>Thanks to everyone who contributed to 4.7.1: <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/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/gitlost/">bonger</a>, <a href="https://profiles.wordpress.org/boonebgorges/">Boone Gorges</a>, <a href="https://profiles.wordpress.org/chandrapatel/">Chandra Patel</a>, <a href="https://profiles.wordpress.org/christian1012/">Christian Chung</a>, <a href="https://profiles.wordpress.org/dlh/">David Herrera</a>, <a href="https://profiles.wordpress.org/dshanske/">David Shanske</a>, <a href="https://profiles.wordpress.org/dd32/">Dion Hulse</a>, <a href="https://profiles.wordpress.org/ocean90/">Dominik Schilling (ocean90)</a>, <a href="https://profiles.wordpress.org/dreamon11/">DreamOn11</a>, <a href="https://profiles.wordpress.org/chopinbach/">Edwin Cromley</a>, <a href="https://profiles.wordpress.org/iseulde/">Ella van Dorpe</a>, <a href="https://profiles.wordpress.org/pento/">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/hristo-sg/">Hristo Pandjarov</a>, <a href="https://profiles.wordpress.org/jnylen0/">James Nylen</a>, <a href="https://profiles.wordpress.org/jblz/">Jeff Bowen</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/joehoyle/">Joe Hoyle</a>, <a href="https://profiles.wordpress.org/joemcgill/">Joe McGill</a>, <a href="https://profiles.wordpress.org/johnbillion/">John Blackbourn</a>, <a href="https://profiles.wordpress.org/kkoppenhaver/">Keanan Koppenhaver</a>, <a href="https://profiles.wordpress.org/obenland/">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/laurelfulford/">laurelfulford</a>, <a href="https://profiles.wordpress.org/tyxla/">Marin Atanasov</a>, <a href="https://profiles.wordpress.org/mattyrob/">mattyrob</a>, <a href="https://profiles.wordpress.org/monikarao/">monikarao</a>, <a href="https://profiles.wordpress.org/natereist/">Nate Reist</a>, <a href="https://profiles.wordpress.org/celloexpressions/">Nick Halsey</a>, <a href="https://profiles.wordpress.org/nikschavan/">Nikhil Chavan</a>, <a href="https://profiles.wordpress.org/nullvariable/">nullvariable</a>, <a href="https://profiles.wordpress.org/sirbrillig/">Payton Swick</a>, <a href="https://profiles.wordpress.org/peterwilsoncc/">Peter Wilson</a>, <a href="https://profiles.wordpress.org/presskopp/">Presskopp</a>, <a href="https://profiles.wordpress.org/rachelbaker/">Rachel Baker</a>, <a href="https://profiles.wordpress.org/rmccue/">Ryan McCue</a>, <a href="https://profiles.wordpress.org/sanketparmar/">Sanket Parmar</a>, <a href="https://profiles.wordpress.org/sebastianpisula/">Sebastian Pisula</a>, <a href="https://profiles.wordpress.org/sfpt/">sfpt</a>, <a href="https://profiles.wordpress.org/shazahm1hotmailcom/">shazahm1</a>, <a href="https://profiles.wordpress.org/sstoqnov/">Stanimir Stoyanov</a>, <a href="https://profiles.wordpress.org/stevenkword/">Steven Word</a>, <a href="https://profiles.wordpress.org/szaqal21/">szaqal21</a>, <a href="https://profiles.wordpress.org/timph/">timph</a>, <a href="https://profiles.wordpress.org/voldemortensen/">voldemortensen</a>, <a href="https://profiles.wordpress.org/vortfu/">vortfu</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:"4650";s: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:36:"\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:27:"WordPress 4.7 “Vaughan”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"https://wordpress.org/news/2016/12/vaughan/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 06 Dec 2016 19:27:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"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=4596";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:240:"Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah "Sassy" Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"enclosure";a:3:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"url";s:60:"https://wordpress.org/news/files/2016/12/starter-content.mp4";s:6:"length";s:7:"3736020";s:4:"type";s:9:"video/mp4";}}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:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"url";s:59:"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4";s:6:"length";s:7:"1127483";s:4:"type";s:9:"video/mp4";}}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:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"url";s:58:"https://wordpress.org/news/files/2016/12/video-headers.mp4";s:6:"length";s:7:"1549803";s:4:"type";s:9:"video/mp4";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:45506:"<p>Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah “Sassy” Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.</p>\n<div id="v-AHz0Ca46-1" class="video-player"><video id="v-AHz0Ca46-1-video" width="632" height="354" poster="https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg" controls="true" preload="metadata" dir="ltr" lang="en"><source src="https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_dvd.mp4" type="video/mp4; codecs="avc1.64001E, mp4a.40.2"" /><source src="https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_fmt1.ogv" type="video/ogg; codecs="theora, vorbis"" /><div><img alt="Introducing WordPress 4.7" src="https://i1.wp.com/videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg?resize=632%2C354&ssl=1" data-recalc-dims="1" /></div><p>Introducing WordPress 4.7</p></video></div>\n<hr />\n<h2 style="text-align:center">Presenting Twenty Seventeen</h2>\n<p>A brand new default theme brings your site to life with immersive featured images and video headers.</p>\n<p><img class="alignnone wp-image-4618 size-large" src="https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=632%2C356&ssl=1" srcset="https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=1024%2C576&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=300%2C169&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=768%2C432&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1600&ssl=1 1600w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1264&ssl=1 1264w" sizes="(max-width: 632px) 100vw, 632px" data-recalc-dims="1" /></p>\n<p>Twenty Seventeen focuses on business sites and features a customizable front page with multiple sections. Personalize it with widgets, navigation, social menus, a logo, custom colors, and more. Our default theme for 2017 works great in many languages, on any device, and for a wide range of users.</p>\n<hr />\n<h2 style="text-align:center">Your Site, Your Way</h2>\n<p>WordPress 4.7 adds new features to the customizer to help take you through the initial setup of a theme, with non-destructive live previews of all your changes in one uninterrupted workflow.</p>\n<h3>Theme Starter Content</h3>\n<div style="width: 632px;" class="wp-video"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class="wp-video-shortcode" id="video-4596-1" width="632" height="346" loop="1" autoplay="1" preload="metadata" controls="controls"><source type="video/mp4" src="https://wordpress.org/news/files/2016/12/starter-content.mp4?_=1" /><a href="https://wordpress.org/news/files/2016/12/starter-content.mp4">https://wordpress.org/news/files/2016/12/starter-content.mp4</a></video></div>\n<p>To help give you a solid base to build from, individual themes can provide starter content that appears when you go to customize your brand new site. This can range from placing a business information widget in the best location to providing a sample menu with social icon links to a static front page complete with beautiful images. Don’t worry – nothing new will appear on the live site until you’re ready to save and publish your initial theme setup.</p>\n<div style="float: left;width: 48%;margin: 0">\n<h3>Edit Shortcuts</h3>\n<div style="width: 300px;" class="wp-video"><video class="wp-video-shortcode" id="video-4596-2" width="300" height="173" poster="https://wordpress.org/news/files/2016/12/4.7-—-Edit-Shortcuts.jpg" loop="1" autoplay="1" preload="metadata" controls="controls"><source type="video/mp4" src="https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4?_=2" /><a href="https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4">https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4</a></video></div>\n<p>Visible icons appear to show you which parts of your site can be customized while live previewing. Click on a shortcut and get straight to editing. Paired with starter content, getting started with customizing your site is faster than ever.</p>\n</div>\n<div style="float: right;width: 48%;margin: 0">\n<h3>Video Headers</h3>\n<div style="width: 300px;" class="wp-video"><video class="wp-video-shortcode" id="video-4596-3" width="300" height="173" poster="https://wordpress.org/news/files/2016/12/4.7-—-Header-Video.jpg" loop="1" autoplay="1" preload="metadata" controls="controls"><source type="video/mp4" src="https://wordpress.org/news/files/2016/12/video-headers.mp4?_=3" /><a href="https://wordpress.org/news/files/2016/12/video-headers.mp4">https://wordpress.org/news/files/2016/12/video-headers.mp4</a></video></div>\n<p>Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use.</p>\n</div>\n<div style="clear: both"></div>\n<div style="float: left;width: 48%;margin: 0">\n<h3>Smoother Menu Building</h3>\n<p><img class="wp-image-4606 size-medium alignright" src="https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&ssl=1" srcset="https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?w=760&ssl=1 760w" sizes="(max-width: 300px) 100vw, 300px" data-recalc-dims="1" /></p>\n<p>Many menus for sites contain links to the pages of your site, but what happens when you don’t have any pages yet? Now you can add new pages while building menus instead of leaving the customizer and abandoning your changes. Once you’ve published your customizations, you’ll have new pages ready for you to fill with content.</p>\n</div>\n<div style="float: right;width: 48%;margin: 0">\n<h3>Custom CSS</h3>\n<p><img class="wp-image-4607 size-medium alignright" src="https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&ssl=1" srcset="https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?w=760&ssl=1 760w" sizes="(max-width: 300px) 100vw, 300px" data-recalc-dims="1" /></p>\n<p>Sometimes you just need a few visual tweaks to make your site perfect. WordPress 4.7 allows you to add custom CSS and instantly see how your changes affect your site. The live preview allows you to work quickly without page refreshes slowing you down.</p>\n</div>\n<div style="clear: both"></div>\n<hr />\n<div style="float: left;width: 48%;margin: 0">\n<h3>PDF Thumbnail Previews</h3>\n<p><img class="wp-image-4609 size-medium alignright" src="https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&ssl=1" srcset="https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?w=760&ssl=1 760w" sizes="(max-width: 300px) 100vw, 300px" data-recalc-dims="1" /></p>\n<p>Managing your document collection is easier with WordPress 4.7. Uploading PDFs will generate thumbnail images so you can more easily distinguish between all your documents.</p>\n</div>\n<div style="float: right;width: 48%;margin: 0">\n<h3>Dashboard in your language</h3>\n<p><img class="wp-image-4608 size-medium alignright" src="https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&ssl=1" srcset="https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?w=760&ssl=1 760w" sizes="(max-width: 300px) 100vw, 300px" data-recalc-dims="1" /></p>\n<p>Just because your site is in one language doesn’t mean that everybody helping manage it prefers that language for their admin. Add more languages to your site and a user language option will show up in your user’s profiles.</p>\n</div>\n<div style="clear: both"></div>\n<hr />\n<h2 style="text-align:center">Introducing REST API Content Endpoints</h2>\n<p>WordPress 4.7 comes with REST API endpoints for posts, comments, terms, users, meta, and settings.</p>\n<p><img class="size-large wp-image-4600 alignnone" src="https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=632%2C205&ssl=1" alt="" srcset="https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=1024%2C332&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=300%2C97&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=768%2C249&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1264&ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1896&ssl=1 1896w" sizes="(max-width: 632px) 100vw, 632px" data-recalc-dims="1" /></p>\n<p>Content endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with sites through plugins, themes, apps, and beyond. Ready to get started with development? <a href="https://developer.wordpress.org/rest-api/reference/">Check out the REST API reference.</a></p>\n<hr />\n<h2 style="text-align:center">Even More Developer Happiness <img src="https://s.w.org/images/core/emoji/2.2.1/72x72/1f60a.png" alt="😊" class="wp-smiley" style="height: 1em; max-height: 1em;" /></h2>\n<h3><a href="https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/">Post Type Templates</a></h3>\n<p>By opening up the page template functionality to all post types, theme developers have even more flexibility with the WordPress template hierarchy.</p>\n<h3>More Theme API Goodies</h3>\n<p>WordPress 4.7 includes <a href="https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/">new functions, hooks, and behavior</a> for theme developers.</p>\n<h3><a href="https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/">Custom Bulk Actions</a></h3>\n<p>List tables, now with more than bulk edit and delete.</p>\n<h3><a href="https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/"><code>WP_Hook</code></a></h3>\n<p>The code that lies beneath actions and filters has been overhauled and modernized, fixing bugs along the way.</p>\n<h3>Settings Registration API</h3>\n<p>register_setting() <a href="https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/">has been enhanced</a> to include type, description, and REST API visibility.</p>\n<h3><a href="https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/">Customize Changesets</a></h3>\n<p>Customize changesets make changes in the customizer persistent, like autosave drafts. They also make exciting new features like starter content possible.</p>\n<hr />\n<h2 style="text-align:center">The Squad</h2>\n<p>This release was led by <a href="https://helen.blog">Helen Hou-Sandí</a>, backed up by <a href="https://profiles.wordpress.org/jbpaul17">Jeff Paul</a> and <a href="http://aaron.jorb.in/">Aaron Jorbin</a> as Release Deputies, and with the help of these fine individuals. There are 482 contributors with props in this release—the most ever—with 205 of them contributing for the first time. Pull up some sassy Sarah Vaughan on your music service of choice, and check out some of their profiles:</p>\n<a href="https://profiles.wordpress.org/wraithkenny">[Inactive]</a>, <a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</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/zuige">Antti Kuosmanen</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">backermann</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/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/bradyvercher">Brady Vercher</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/danielbachhuber">Daniel Bachhuber </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/frank-klein">Frank Klein</a>, <a href="https://profiles.wordpress.org/fjarrett">Frankie Jarrett</a>, <a href="https://profiles.wordpress.org/frankiet">frankiet</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/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/imnok">Imnok</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/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/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/johnregan3">John Regan</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/laurelfulford">Laurel Fulford</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">lukepettway</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/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/matrixik">matrixik</a>, <a href="https://profiles.wordpress.org/mjbanks">Matt Banks</a>, <a href="https://profiles.wordpress.org/jaworskimatt">Matt Jaworski</a>, <a href="https://profiles.wordpress.org/mattking5000">Matt King</a>, <a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="https://profiles.wordpress.org/veraxus">Matt van Andel</a>, <a href="https://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>, <a href="https://profiles.wordpress.org/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/mbelchev">mbelchev</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/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/celloexpressions">Nick Halsey </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/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/sirbrillig">Payton Swick</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/quasel">quasel</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/ramiy">Rami Yushuvaev</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/soean">Soeren Wrede</a>, <a href="https://profiles.wordpress.org/solal">solal</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/stubgo">stubgo</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">Truong Giang</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/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/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> <br />\nSpecial thanks go to <a href="https://ramiabraham.com/">Rami Abraham</a> for producing the release video and the many fine haiku we saw in the <a href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/">beta</a> and <a href="https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/">RC</a> announcement posts.</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.7. Their efforts bring WordPress 4.7 fully translated to 52 languages at release time with more on the way. Additionally, the WordPress 4.7 release video has been captioned into 44 languages.</p>\n<p>If you want to follow along or help out, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress – 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:"4596";s: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:17:"Moving Toward SSL";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"https://wordpress.org/news/2016/12/moving-toward-ssl/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Dec 2016 17:20:29 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4588";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:327:"We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:1627:"<p>We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle our users are going to face.</p>\n<p>SSL basically means the link between your browser and the server is encrypted. SSL used to be difficult to implement, and often expensive or slow. Modern browsers, and the incredible success of projects like <a href="https://letsencrypt.org/">Let’s Encrypt</a> have made getting a certificate to secure your site fast, free, and something we think every host should support by default, especially in a post-Snowden era. Google also weighs <a href="https://security.googleblog.com/2014/08/https-as-ranking-signal_6.html">SSL as a search engine ranking factor</a> and will begin <a href="http://motherboard.vice.com/read/google-will-soon-shame-all-websites-that-are-unencrypted-chrome-https">flagging unencrypted sites in Chrome</a>.</p>\n<p>First, early in 2017, we will only promote hosting partners that provide a SSL certificate by default in their accounts. Later we will begin to assess which features, such as API authentication, would benefit the most from SSL and make them only enabled when SSL is there.</p>\n<p>Separately, I also think the performance improvements in PHP7 are particularly impressive, and major kudos to everyone who worked on that. We will consider whether hosts use PHP7 by default for new accounts next year as well.</p>\n<p> </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:"4588";s: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:31:"WordPress 4.7 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/2016/11/wordpress-4-7-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, 24 Nov 2016 04:26:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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=4579";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:328:"The release candidate for WordPress 4.7 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.7 on Tuesday, December 6, but we need your help to get there. If you haven’t tested 4.7 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:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:4331:"<p>The release candidate for WordPress 4.7 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.7 on <strong>Tuesday, December 6</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.7 yet, now is the time! To test WordPress 4.7, 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.7-RC1.zip">download the release candidate here</a> (zip).</p>\n<p>WordPress 4.7 is a jam-packed release, with a number of features focused on getting a theme set up for the first time. Highlights include a <a href="http://2017.wordpress.net/">new default theme</a>, video headers, custom CSS, customizer edit shortcuts, PDF thumbnail previews, user admin languages, REST API content endpoints, post type templates, and more.</p>\n<p>We’ve made <a href="https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39353&stop_rev=39263&limit=200&verbose=on&sfp_email=&sfph_mail=">quite a few refinements</a> since releasing Beta 4 a week ago, including usability and accessibility enhancements for video headers, media and page template support in starter content, and polishing of how custom CSS can be migrated to and extended by plugins and themes. The REST API endpoints saw a number of bugfixes and notably now have anonymous comment off by default.</p>\n<p>Not sure where to start with testing? Try setting up a fresh site on a new installation with Twenty Seventeen (hint: head into customizing your site before touching any pages or widgets) and taking notes on what you enjoyed and what got you stuck. For more details about what’s new in version 4.7, check out the <a href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/">Beta 1</a>, <a href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/">Beta 2</a>, <a href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/">Beta 3</a>, and <a href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/">Beta 4</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.7 and update your plugin’s <em>Tested up to</em> version in the readme to 4.7. 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> And if you haven’t yet done so, now is a great time to <a href="https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey">take the Annual WordPress Survey</a> and send it on to your friends.</p>\n<p>Happy testing! And now for another <a href="https://profiles.wordpress.org/ramiabraham">Rami Abraham</a> haiku break.</p>\n<p><em>Select your language</em><br />\n<em>Then let your users choose theirs</em><br />\n<em><code>get_user_locale()</code></em></p>\n<p><em>Theme authors rejoice</em><br />\n<em>Any option may employ</em><br />\n<em>Selective refresh</em></p>\n<p><em>Custom header video</em><br />\n<em>Make sure to <code>add_theme_support</code></em><br />\n<em>Bling above the fold</em></p>\n<p><em>A new template dawns</em><br />\n<em>A hierarchy member</em><br />\n<em>Post-type templates live</em></p>\n<p><em>PDF updates</em><br />\n<em>Pack a parade of polish</em><br />\n<em>Prettier previews</em></p>\n<p><em>Template Post Type: New</em><br />\n<em>Template Post Type: And Useful</em><br />\n<em>Template Post Type: Thing</em></p>\n<p><em>Let lists live lively</em><br />\n<em>Laud <code>wp_list_sort()</code></em><br />\n<em>Less laconic lists</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:"4579";s: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:20:"WordPress 4.7 Beta 4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 16 Nov 2016 01:51:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a: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=4576";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.7 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2019:"<p>WordPress 4.7 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, 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.7-beta4.zip">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/">Beta 1,</a> <a href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/">Beta 2</a>, and <a href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/">Beta 3</a> blog posts, along with <a href="https://make.wordpress.org/core/tag/4-7+dev-notes/">in-depth developer guides on make/core</a>. We’ve made <a href="https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39262&stop_rev=39201&limit=200&verbose=on&sfp_email=&sfph_mail=">about 60 changes</a> in the last few days for beta 4, including tweaks to Twenty Seventeen, custom CSS, and the REST API content endpoints.</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>We are almost there<br />\nPlease test your plugins and themes<br />\nRC coming soon<br />\n</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:"4576";s: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:34:"WordCamp US 2017-2018 in Nashville";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2016/11/wordcamp-us-2017-2018-in-nashville/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 15 Nov 2016 23:24:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4571";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:330:"The title says it all. We had some great applications for cities to host WordCamp US after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is Nashville, Tennessee. Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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:1022:"<p><img class="aligncenter" src="https://i0.wp.com/wpdotorg.files.wordpress.com/2008/07/27492741871_c6fcebcad3_k-e1479248587522.jpg?resize=632%2C253&ssl=1" data-recalc-dims="1" /></p>\n<p>The title says it all. We had some great applications for cities to host <a href="http://us.wordcamp.org/">WordCamp US</a> after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is <strong>Nashville, Tennessee</strong>.</p>\n<p>Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia.</p>\n<p>By the way, if you haven’t yet, now is a great time to <a href="https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey">take the Annual WordPress Survey</a> and ask your friends to as well.</p>\n<p><a href="https://www.flickr.com/photos/143951935@N07/27492741871">Photo Credit</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:"4571";s: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: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:20:"WordPress 4.7 Beta 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 11 Nov 2016 03:30:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4566";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.7 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3120:"<p>WordPress 4.7 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, 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.7-beta3.zip">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/">Beta 1</a> and <a href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/">Beta 2</a> blog posts, along with <a href="https://make.wordpress.org/core/tag/4-7+dev-notes/">in-depth field guides on make/core</a>. Some of the changes in Beta 3 include:</p>\n<ul>\n<li><strong>REST API:</strong> The <code>unfiltered_html</code> capability is now respected and <code>rest_base</code> has been added to response objects of <code>wp/v2/taxonomies</code> and <code>wp/v2/types</code>, while <code>get_allowed_query_vars()</code> and the <code>rest_get_post</code> filter have been removed.</li>\n<li><strong>Roles/Capabilities:</strong> Added meta-caps for comment, term, and user meta, which are currently only used in the REST API.</li>\n<li><strong>I18N:</strong> Added the ability to change user’s locale back to site’s locale. (<a href="https://core.trac.wordpress.org/ticket/38632">#38632</a>)</li>\n<li><strong>Custom CSS:</strong> Renamed the <code>unfiltered_css</code> meta capability to <code>edit_css</code> and added revisions support to the <code>custom_css</code> post type.</li>\n<li><strong>Edit shortcuts:</strong> Theme authors should take a look at <a href="https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/">the developer guide to the customizer preview’s visible edit shortcuts</a> and update their themes to take advantage of them if not already implementing selective refresh.</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href="https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39200&stop_rev=39143&limit=200&verbose=on&sfp_email=&sfph_mail=">over 50 changes</a> in the last week.</li>\n</ul>\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>Building the future</em><br />\n<em>A global community</em><br />\n<em>Stronger together</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:"4566";s: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: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:20:"WordPress 4.7 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/2016/11/wordpress-4-7-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:"Fri, 04 Nov 2016 17:39:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4552";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.7 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.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Helen Hou-Sandi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:4240:"<p>WordPress 4.7 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.7, 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.7-beta2.zip">download the beta here</a> (zip).</p>\n<p>Notable changes since WordPress 4.7 Beta 1:</p>\n<ul>\n<li><strong>Twenty Seventeen:</strong> The theme wasn’t being installed on upgrades – sorry about that! Now you should see it if you’re upgrading an existing site. There are also plenty of fixes, especially for the header and small screen views.</li>\n<li><strong>Edit shortcuts:</strong> These are always visible while editing (hide them on bigger screens by collapsing the controls) and should now work properly in Firefox. (<a href="https://core.trac.wordpress.org/ticket/27403">#27403</a> and <a href="https://core.trac.wordpress.org/ticket/38532">#38532</a>)</li>\n<li><strong>REST API endpoints:</strong> There have been a number of changes over the past week; your attention is requested on the following:\n<ul>\n<li>The <code>DELETE</code> response format has changed and may need to be accounted for. (<a href="https://core.trac.wordpress.org/ticket/38494">#38494</a>)</li>\n<li>Enabled querying by multiple post statuses. (<a href="https://core.trac.wordpress.org/ticket/38420">#38420</a>)</li>\n<li>Return an error when JSON decoding fails. (<a href="https://core.trac.wordpress.org/ticket/38547">#38547</a>)</li>\n</ul>\n</li>\n<li><strong>More developer notes</strong>\n<ul>\n<li><a href="https://make.wordpress.org/core/2016/10/28/fine-grained-capabilities-for-taxonomy-terms-in-4-7/">Fine grained capabilities for taxonomy terms</a></li>\n<li><a href="https://make.wordpress.org/core/2016/10/29/wp_taxonomy-in-4-7/"><code>WP_Taxonomy</code></a></li>\n<li><a href="https://make.wordpress.org/core/2016/11/02/wp_list_sort-and-wp_list_util-in-4-7/"><code>wp_list_sort()</code> and <code>WP_List_Util</code></a></li>\n<li><a href="https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/">Post type templates</a></li>\n<li><a href="https://make.wordpress.org/core/2016/11/03/new-post-type-labels-in-4-7/">New post type labels</a></li>\n<li><a href="https://make.wordpress.org/core/2016/11/03/attributes-for-resource-hints-in-4-7/">Attributes for resource hints</a></li>\n</ul>\n</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href="https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39142&stop_rev=38995&limit=200&verbose=on&sfp_email=&sfph_mail=">almost 150 changes</a> in the last week.</li>\n</ul>\n<p>For more of what’s new in version 4.7, <a href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/">check out the Beta 1 blog post</a>.</p>\n<p>If you want a more in-depth view of what major changes have made it into 4.7, <a href="https://make.wordpress.org/core/tag/4-7/">check out posts tagged with 4.7 on the main development blog</a>, or look at a <a href="https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=4.7&group=component&order=priority">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</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>Happy testing!</p>\n<p><em>Ya es la hora</em><br />\n<em> Time for another beta</em><br />\n请您帮下忙!</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:"4552";s: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:"Fri, 31 Mar 2017 23:15:20 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:"Fri, 10 Mar 2017 18:14:55 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 249";}}s:5:"build";s:14:"20170331230759";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(121, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1491045318', 'no'),
(122, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1491002118', 'no'),
(123, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1491045318', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(124, '_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:81:"WPTavern: WordPress App for Android Adds Better Support 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=68068";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordpress-app-for-android-adds-better-support-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:1764:"<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/wordpress-for-android.jpg?ssl=1"><img /></a></p>\n<p>Automattic’s mobile engineers <a href="https://jetpack.com/2017/03/29/full-android-support-for-jetpack/" target="_blank">released a major update to WordPress for Android</a> this week. Last year the app’s users saw a <a href="https://wptavern.com/wordpress-for-android-5-7-adds-path-to-upgrade-wordpress-com-plan" target="_blank">growing disparity</a> between the features available to self-hosted sites and those available to WordPress.com users. Not having the WP REST API in core was holding the app back from providing the same site management features that WordPress.com site owners already enjoy. The upcoming release narrows that gap with better support for Jetpack-enabled sites.</p>\n<p>Self-hosted WordPress sites owners will now have access to People Management, Site Settings, and Site Icons in the app. A complete re-write of the app’s network layer brings more performance improvements to Stats and other features.</p>\n<p>The Jetpack blog <a href="https://jetpack.com/2017/03/29/full-android-support-for-jetpack/" target="_blank">announced</a> the release but doesn’t mention that these features are not yet available to all users. If you manage a self-hosted site on your mobile device, you’ll need to wait until version 7.0 hits the <a href="https://play.google.com/store/apps/details?id=org.wordpress.android" target="_blank">Google Play Store</a>. According to Automattic mobile engineer Maxime Bias, version 7.0 is currently in staged rollout and not all users can update to get it yet. He said 7.0 should be fully rolled out soon but could not give an ETA.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 30 Mar 2017 19:53:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:78:"WPTavern: Community Team Releases Plugin That Displays WordPress Events Nearby";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67925";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/community-team-releases-plugin-that-displays-wordpress-events-nearby";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3309:"<p>Two weeks ago, I <a href="https://wptavern.com/how-to-view-upcoming-wordcamps-in-the-wordpress-dashboard">highlighted a WordPress plugin</a> that displays upcoming WordCamps in the Dashboard. I’ve <a href="https://make.wordpress.org/community/2017/03/23/showing-upcoming-local-events-in-wp-admin/">recently discovered</a> that the WordPress Community team is working on an official plugin that does something similar called <a href="https://wordpress.org/plugins/nearby-wp-events/">Nearby WordPress Events</a>.</p>\n<p>The plugin attempts to detect a user’s location and displays upcoming events within the WordPress News dashboard widget. Events include WordCamps and <a href="https://www.meetup.com/topics/wordpress/">Meetups</a> from Meetup.com. If the location detected is incorrect, users can click the pencil icon and change it to their city and state.</p>\n<img />Nearby WordPress Events Dashboard Widget\n<p>The bottom of the widget includes links to the <a href="https://www.meetup.com/pro/wordpress/">WordPress Meetups landing page</a>, WordCamp schedule, and the official WordPress news blog. If your site has multiple users, each one can configure the widget to display events near their locations.</p>\n<p>According to Ian Dunn, the API includes any meetups that are within a 100 kilometer radius. For WordCamps, the radius is 350 kilometers.</p>\n<p>Here is what the radius looks like for WordPress Meetups.</p>\n<img />US WordPress Meetup Radius\n<p>Here is what the radius looks like for WordCamps.</p>\n<img />US WordCamp Radius\n<p>The distances can not be modified but, depending on feedback, they can be increased to be more accommodating.</p>\n<p>WordCamp data is gathered using an <a href="https://api.wordpress.org/events/1.0/">API endpoint on</a> WordPress.org. The initial HTTP request is performed asynchronously so it doesn’t affect page loading times. The response is cached for 12 hours to avoid making unnecessary requests.</p>\n<p>The WordPress Community team created the plugin to generate more awareness of WordPress events.</p>\n<p>“The community that has been created around WordPress is one of its best features, and one of the primary reasons for its success, but many users are still unaware that it exists, and aren’t taking advantage of all of the resources that it makes available to them,” Dunn said.</p>\n<p>“Inviting more people to join the community will help to increase its overall health, diversity, and effectiveness, which in turn helps to ensure that WordPress will continue to thrive in the years to come.</p>\n<p>“We think that wp-admin is the perfect place to display these events, because that’s the place where almost all WordPress users are visiting already. Instead of expecting them to come to us, we can bring the relevant information directly to them.”</p>\n<p>I tested the plugin on WordPress 4.8 Alpha and didn’t encounter any issues. Users can report bugs on the <a href="https://wordpress.org/support/plugin/nearby-wp-events">plugin’s support forums</a> or create an issue on the <a href="https://github.com/Automattic/nearby-wordpress-events/issues">project’s GitHub page</a>. If you test the plugin, let us know what you think in the comments.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 30 Mar 2017 19:50:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:74:"WPTavern: New WPstats.me Site Displays WordPress.org Plugin Download Stats";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=68109";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/new-wpstats-me-site-displays-wordpress-org-plugin-download-stats";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3202:"<p>WordPress.org <a href="https://wptavern.com/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm" target="_blank">relaunched the plugin directory</a> this week with a new design and improvements to the search algorithm. The redesign spent more than six months in beta for feedback and testing, but many contributors on the project said they felt their feedback was not taken into account. The result is that the new design shipped but has not been well received by the community. Most users and developers welcome the changes to the search algorithm, but the new UI for the plugin pages has received quite a bit of negative feedback.</p>\n<p>One of the unpopular changes made during this refresh was the removal of individual plugin stats, which can now only be viewed by plugin admins. The decision may be temporary but depends on feedback from users.</p>\n<p>In the meantime, if you’re missing plugin stats after the redesign, check out the new <a href="http://wpstats.me/" target="_blank">wpstats.me</a> site. WordPress plugin developer <a href="https://wpartisan.me/" target="_blank">Edward Dakin</a> created it in just a few hours using the WordPress.org API’s. Visitors can enter a plugin’s slug and see recent and all-time download stats.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/wpstats.me_.png?ssl=1"><img /></a></p>\n<p>“I like checking out plugin stats, seeing which are popular, how others are doing, etc, so I put together a quick something to do that and thought others might find it useful,” Dakin said. WPstats.me is essentially a one-page app so Dakin opted to host it on GitHub pages.</p>\n<p>“The CSS is done with <a href="http://tachyons.io/" target="_blank">Tachyons</a> (I’m super into function CSS at the moment), the JS is Backbone for the routing, jQuery for the ajax stuff, and Underscore for the templating,” Dakin said. He said the hardest part of putting the site together was finding the WordPress.org APIs, as the <a href="https://codex.wordpress.org/WordPress.org_API" target="_blank">documentation</a> is sparse and out of date.</p>\n<p>If the Meta team decides to bring stats back into the plugin page design, Dakin said he will consider leaving WPstats.me up anyway if people are finding it useful. Some users like to see how stats have changed over time and developers appreciate being able to check up on their competition.</p>\n<p>As a WordPress.org plugin developer, Dakin is directly affected by the changes to the directory. He is considering changing how he markets his plugins and is hoping for improvements to the UI that was shipped this week.</p>\n<p>“I like the improvements to the search a lot,” Dakin said. “In terms of the page redesign I like that they’re trying, but I don’t think it’s quite there yet. Like many others, I feel that the collapsing sections is a bit of a poor use of space. And yes, I haven’t done anything yet but I will be experimenting with restructuring plugin readme’s so the important points are immediately visible and not hidden on page load.”</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 30 Mar 2017 19:12:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:96:"WPTavern: WordPress Polyglots Team Calls for Volunteers to Organize Global Translation Day Three";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=68066";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:107:"https://wptavern.com/wordpress-polyglots-team-calls-for-volunteers-to-organize-global-translation-day-three";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2111:"<p>The WordPress Polyglots team is <a href="https://make.wordpress.org/polyglots/2017/03/29/global-wordpress-translation-day-3-call-for-organisers/">asking for volunteers</a> to help organize <a href="https://wptranslationday.org/">WordPress Global Translation Day Three</a>. The event may take place on September 30th, the same day as <a href="https://en.wikipedia.org/wiki/International_Translation_Day">International Translation Day,</a> but the date is dependent on when organizing teams form.</p>\n<p>Global Translation Day is a 24-hour event that includes live streaming, local, and remote activities. The first Global Translation Day was held <a href="https://wptavern.com/global-wordpress-translation-day-draws-448-participants-from-105-countries">in April, 2016</a> where 448 translators from 105 countries translated 40,350 new strings across 597 projects. These numbers increased to 780 translators with a total of 60,426 strings translated across 590 projects at the conclusion of Global Translation Day Two.</p>\n<p>Activities during Translation Day include, on boarding new contributors, sharing knowledge, and discussing topics related to translating. There are a variety of roles available for organizers to fill, including:</p>\n<ul>\n<li>Communication</li>\n<li>Design</li>\n<li>Outreach</li>\n<li>Website/admin volunteers</li>\n<li>Live Streaming</li>\n<li>Local events mentors</li>\n</ul>\n<p>These roles are open to anyone who is able to dedicate the time and effort needed to run a smooth event. “If you have a couple of hours a week to spare, the Polyglots team would really appreciate your help,” organizer Petya Raykovska said. “WordPress Translation Day has been essential for many local communities around the globe and each edition helps more people to understand us better.”</p>\n<p>For more information on what each role entails and to volunteer, check out the <a href="https://make.wordpress.org/polyglots/2017/03/29/global-wordpress-translation-day-3-call-for-organisers/">official call for organizers</a> and leave a comment.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Mar 2017 23:38: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: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:89:"WPTavern: WPWeekly Episode 269 – Interview With Daniel Ha, CEO and Co-founder of Disqus";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=68064&preview=true&preview_id=68064";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:95:"https://wptavern.com/wpweekly-episode-269-interview-with-daniel-ha-ceo-and-co-founder-of-disqus";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2039:"<p>In this episode, <a href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by <a href="https://twitter.com/danielha?lang=en">Daniel Ha</a>, CEO and co-founder of <a href="https://disqus.com/">Disqus</a>. Ha explains why he created the service, what his thoughts are on large sites disabling comments, and the state of comments on the web.</p>\n<p>We also discuss the company’s monetization strategies and what opportunities exist to generate revenue around comments. Ha shares what the company learned from its Sponsored Comments experiment and what it’s doing to improve communication with customers.</p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href="https://wordpress.org/plugins/woo-cashback/">Woo Cashback</a> provides each user with their own personal wallet with a way to purchase items from your store while using their wallet money or credit.</p>\n<p><a href="https://wordpress.org/plugins/export-comment-emails/">Export Comment Emails</a> allows you to export the emails from comments to a CSV or XML file allowing you to import to MailChimp or ConvertKit.</p>\n<p><a href="https://wordpress.org/plugins/wp-monitor/">WP Monitor</a> adds a dashboard to the WordPress backend that displays updates, site, and server information in one convenient place. You can monitor one or multiple websites on the go.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, April 5th 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">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="https://wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #269:</strong><br />\n</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Mar 2017 23:24:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:76:"WPTavern: Poopy.life Lets You Create Free, Unlimited WordPress Test Installs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=68070";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:86:"https://wptavern.com/poopy-life-lets-you-create-free-unlimited-wordpress-test-installs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5773:"<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/poopy.life_.png?ssl=1"><img /></a></p>\n<p>Just when you think all the best domain names have been gobbled up by bots and squatters, <a href="http://poopy.life/" target="_blank">Poopy.life</a> emerges as the fastest new way to spin up a WordPress test install. Joe Guilmette, team lead at <a href="http://www.wpallimport.com/" target="_blank">WP All Import</a>, opened up Poopy.life to the public today, offering free unlimited WordPress installs for anyone who needs a temporary site.</p>\n<p>After verifying that you’re not a robot, Poopy.life creates a test install and sends you to the admin where you can see credentials for logging in and sharing the site. The install expires after a week, unless manually extended with the button in the admin. It also allows you to create a sandbox template that can be shared via a URL so that others can quickly create a duplicate install.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/poopy-test-install.png?ssl=1"><img /></a></p>\n<p>The platform also has a secret menu, like <a href="https://www.thrillist.com/eat/los-angeles/the-in-n-out-secret-menu-ranked" target="_blank">In-N-Out Burger</a>, that allows you to add URL parameters to spin up sites even faster with certain actions already taken:</p>\n<p><strong>No URL Parameters</strong><br />\n<code>http://poopy.life/create/</code></p>\n<p><strong>Copy an existing install</strong><br />\n?src=[Sandbox ID]&key=[auth key]<br />\n<code>http://poopy.life/create?src=panicky-pheasant&key;=EuT9WPIm8122WCcq</code></p>\n<p><strong>Redirect URL</strong><br />\n?url=[redirect URL]<br />\n<code>http://poopy.life/create?url=/wp-admin/admin.php?page=sandbox</code></p>\n<p><strong>Send a welcome email</strong><br />\n?email=[email address]<br />\n<code>http://poopy.life/[email protected]</code></p>\n<p><strong>Activate Plugins</strong><br />\n?activate_plugins=[plugin_slug_1],[plugin_slug_2],[etc]<br />\n<code>http://poopy.life/create?activate_plugins=akismet,wordpress-importer</code></p>\n<h3>Poopy.life Platform Will Add a Commercial Tier at WPSandbox.io in the Near Future</h3>\n<p>Although Poopy.life is both memorable and amusing, the team chose the domain to prevent people from using it in their own product demos and support channels.</p>\n<p>“We chose poopy.life specifically because it is ridiculous and no one will be able to use it in a professional context,” Guilmette said. “Also it was shorter than the previous domain we were going to use – oxygen-is-really-amazing-and-everyone-loves-it.com.”</p>\n<p>Poopy.life runs on CloudLinux and Guilmette said it is hosted on “a handful of very powerful dedicated servers and ~10 smaller helper instances/load balancers, and duct tape.”</p>\n<p>WP All Import plans to introduce a commercial tier on wpsandbox.io to allow users to have installs on a custom domain, as well as control of the welcome notice and email. The poopy.life domain and landing page will live on, but Guilmette expects that it will soon be blacklisted by Google.</p>\n<p>“The WordPress installs are real WordPress installs and you can install any plugin on them,” Guilmette said. “You can install a PHP shell and dig around the server and run whatever weird spammy malware you want. There really isn’t any way to prevent it.”</p>\n<p>Guilmette estimates that Poopy.life is powering approximately 2,000 test installs right now. He doesn’t know how many their infrastructure can handle, but said they can easily scale it up.</p>\n<p>“We don’t really monitor or throttle usage so much as try to make sure that one user isn’t able to negatively impact another,” Guilmette said. “If the service grows in popularity, there will probably be some pain points that we’ll need to address. But we’ve been doing this for a long time and have worked out many of the kinks.”</p>\n<p>The team has been using a version of the Poopy.life platform on <a href="http://www.wpallimport.com/try/" target="_blank">wpallimport.com/try/</a> and <a href="http://www.oxygenapp.com/try/" target="_blank">oxygenapp.com/try/</a> for several years. In addition to being a fun, free tool they could offer to the public, the platform has also been critical to the success of the company. It allows users to test WP All Import and Oxygen products before purchasing.</p>\n<p>“Poopy.life is basically magical golden dogfood we’ve been eating for years,” Guilmette said. “This platform is huge for us. Back before we got serious about this we were hosting it on a VPS at MediaTemple, just kind of hacking it together. It would go down all the time, and whenever it did it would throw our support channel into disarray and sales would drop by 50%.”</p>\n<p>Guilmette said the most important thing WP All Import customers want to know is if the product will be able to import their files. The testing platform drives sales for the company and reduces refunds and buyer’s remorse, because customers know exactly what they are getting. It also has proven to reduce support requests.</p>\n<p>“We get way fewer simple questions about the UI, because people can just try it,” Guilmette said. “So that clears support up for people who have real problems. It also makes those support requests easier, because the user can reproduce the problem on a debug install, and we can poke at it without worrying about breaking their site.”</p>\n<p>Guilmette said the team is working on launching the commercial tier and may have something ready within a couple of weeks or sooner with the help of testers.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Mar 2017 19:36:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:40:"HeroPress: WordPress: A Tool for Success";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=1672";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"https://heropress.com/essays/wordpress-tool-success/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:12357:"<img width="960" height="480" src="https://heropress.com/wp-content/uploads/2017/03/032917-min-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: I was not an obvious choice for a successful web person, but WordPress helped me reach my goals." /><p>I was a college teacher for most of my life. When my fourth baby arrived, I gave up a travel-heavy university job and took a “mommy job” as a bookstore manager. I chose books, held teacher workshops, and read stories to children for 15 years. As the internet became important, we put up a website and I became the manager of that site. 18 months later, the bookstore’s owners went bankrupt and closed the store.</p>\n<p>My initial reaction was, “They can’t do that – we’re #2 on Google!” We’d also gone from zero ecommerce sales to $5,000 a month. We had visitors to our blog from 192 different countries. Online, we were a success. But it was 2008, and lots of small businesses were going under. Lots of people were unemployed. I was unemployed for the first time in my life.</p>\n<p>Being #2 or even #1 on Google had a different meaning in those days, before customized search results. For me, it meant that I had become skilled with SEO and content marketing, but I figured I’d have to return to the classroom when my job ended.</p>\n<blockquote><p>“We couldn’t have done this without you,” the owner of the bookstore said. “There are other businesses that would benefit from your skills. Why don’t you go into business helping them?”</p></blockquote>\n<p>I scoffed bitterly. I had kids in college and two more getting ready to finish high school. I clearly needed a higher level of security than self-employment could offer.</p>\n<p>What’s more, I had already discovered that people who found out what I did with computers invariably looked at me oddly and said, “You don’t look like a computer guy.” They were right, although we now have a much more open minded idea of what computer guys can look like. Back then, though, I looked like someone’s mom. I was someone’s mom. This caused a high level of cognitive dissonance for some people, I knew.</p>\n<p>But I was bold enough to do a little bit of helping other businesses while I looked for work. I wrote an essay at the site that was then SEOMoz and got a job offer in the comments. I picked up a couple of local clients, and then through an online marketplace found some international clients. I went to job interviews, of course, and was offered jobs managing various things. But nothing I was offered was as fun as the work I was doing online. I turned down all the offers I received.</p>\n<h3>The Web People</h3>\n<p>I clearly remember my last job interview. It was Halloween 2008. I was talking with the vice chancellor at a medical school about his online needs. This was my first IRL tech job interview and the vice chancellor had told me I was his favorite candidate. The secretary came to the door and said, “We need to take Rebecca down to the basement to meet the Web People.”</p>\n<p>She was dressed as a witch. The hallways were full of cotton spider webs and spooky decorations. She was taking me down to the basement to meet the Web People. I was the only one who laughed.</p>\n<p>You see the humor, right? They did not. I realized that I didn’t really want to go back to academia, I didn’t want to manage things, and I didn’t want to sit in a cubicle proofreading. I wanted to have fun with websites.</p>\n<p>I talked with my family about the possibility of going into business for myself, and the possibility that I could fail and limit their college choices. My youngest son said, “You’ve always done what’s best for us. You should do what’s best for you.”<br />\nI have great kids.</p>\n<blockquote><p>At that point, I reviewed my income figures, saw that I was earning twice as much as I had earned as a bookstore manager, and decided that I would carry on as an independent Web Person.</p></blockquote>\n<p>As a freelance web writer and SEO, I never met a CMS I couldn’t make friends with. If there wasn’t a CMS at a website, I used Dreamweaver. Drupal, Joomla, Mango, sticks and clay tablets, I didn’t care. I used WordPress along with all the other options my clients wanted. In 2009, after being featured in the Wall Street Journal, my freelance business boomed. I teamed up with designers and built websites in addition to writing for web designers and agencies and businesses on four continents.</p>\n<p>My eldest daughter, Rosie, saw that I needed some help and came to work with me. “Saw that I needed some help” may be too kind a way to put it. I have some useful skills, but my main goal for my business was not to starve in the gutter and my main goal for accounting was to keep out of jail. We met with the local Small Business Association rep a couple of months after Rosie joined me and he said to me, kindly but firmly, “You’d be in trouble without her.”</p>\n<p>But with Rosie as my partner, I was able to build a thriving business. In 2010 we built a WordPress site for K-12 teachers just in time for our first WordCamp. We needed a lab site, and I had just finished writing a bunch of lesson plans with the Kennedy Center for the Performing Arts. In the course of that project I had discovered how limited online STEM (science, tech, engineering, and math) options for K-12 teachers were. We built a website called FreshPlans to help fill that need and had a functioning WordPress site for WordCamp.</p>\n<h3>0 to 8,000 in six months</h3>\n<p>Six months later, Rosie and I were looking at the stats for FreshPlans – 8,000 visits a month – and she said, “Why aren’t we doing this for our own website? Why aren’t we doing this for all our clients?”</p>\n<p>I didn’t have a good answer for why we weren’t doing it, but we went ahead and switched our business site to WordPress. We convinced our designer to give WordPress a chance and built WordPress websites for clients who needed new sites. We saw how much more sense the websites made to our clients. We saw how much more quickly we could build the sites and how much more value we could provide for our clients without the cost of bringing in a developer. We found that we were able to streamline our process for the clients whose blogging and social media we look after. We saw impressive results for our clients, too; not every website can go from 0 to 8,000 visits in six months, but we definitely see better results with WordPress than without it.</p>\n<p>Within a year, we went from platform agnostic to a dedicated WordPress shop. It worked better for us. It worked better for the people whose sites we built and managed. We were also beginning to see the value of open source and to appreciate the WordPress community.</p>\n<p>After that first WordCamp, I spoke at a couple of camps every year and our company sponsors and helps organize a couple of WordCamps nearly every year. Last year I spoke at three and I hope to continue expanding that service. WordPress has been good to us and we want to give back to the awesome WordPress community.</p>\n<h3>WordPress Success</h3>\n<p>Our business has grown. My eldest son graduated from college and joined the family business. My second daughter left us to work for Automattic. We’ve had some rough times, as every business does, but we can be proud of the work we do.</p>\n<p>We have the privilege of working with awesome clients, both locally and around the world. They can share their brands and their bigger messages in ways that would have been difficult and costly just a decade ago. We’re able to get great results for them – with hard work and WordPress.</p>\n<blockquote><p>WordPress is not a magic pixie dust you can sprinkle on your website for instant success.</p></blockquote>\n<p>But there are some things about WordPress that set you up for success:</p>\n<ul>\n<li>It may not be true (okay, it isn’t true) that you can master WordPress with no tech skills, training, or effort. But you don’t have to be a programmer to get the results you want and need in WordPress. If you have something to say, you can get it published more easily in WordPress than with other platforms.</li>\n<li>There’s no quality tradeoff. We usually build custom websites with talented and trained designers, but I’ve built dozens myself with pre-made themes and my own HTML and CSS skills (and great photos – the secret weapon for non-artists who want to create beautiful WordPress websites). Either way, you’re not limited by WordPress as you are by drag-and-drop sitebuilding tools.</li>\n<li>Because updating and adding content is so easy with WordPress, you can accomplish the essentials of content marketing more easily. You can focus on your message with less worry about the medium. You and your Web People can shape the web experience you want for your visitors efficiently.</li>\n<li>WordPress has the most supportive community you can find. We’re friends with local companies that we could also call competitors, because we spend time together in Meetups and WordCamp organizing meetings. We also have a large network of WordPress folks we respect and admire. It’s great to see them in person at WordCamps, but we also have the opportunity to get to know them better virtually. We help them and they help us.</li>\n</ul>\n<p>I can say from experience that WordPress has made a big difference in my life. I’m still a mom – in fact, I’m now a grandmother. But I’m also the owner of a successful web firm and a successful educational website. I write for and care for a number of websites I can be proud of.</p>\n<p>Last year at WordCamp Kansas City a man came up to show me his new website. I had spoken the year before about how to get started with a WordPress website, and he had been able to build a site for his fantasy hockey league. He was excited to show it to me, and I was excited to see it. That capacity to help other people achieve their goals with WordPress means a lot to me.</p>\n<p>If you’re just starting with WordPress, let my story encourage you. I was not an obvious choice for a successful Web Person, but WordPress helped me reach my goals. If you’re already a success with WordPress, find opportunities to help others reach their success, too.</p>\n<p>It’s the WordPress way.</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: WordPress: A Tool for Success" class="rtsocial-twitter-button" href="https://twitter.com/share?text=WordPress%3A%20A%20Tool%20for%20Success&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-tool-success%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: WordPress: A Tool for Success" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-tool-success%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%2Fwordpress-tool-success%2F&title=WordPress%3A+A+Tool+for+Success" rel="nofollow" target="_blank" title="Share: WordPress: A Tool for Success"></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/wordpress-tool-success/&media=https://heropress.com/wp-content/uploads/2017/03/032917-min-150x150.jpg&description=WordPress: A Tool for Success" rel="nofollow" target="_blank" title="Pin: WordPress: A Tool for Success"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/wordpress-tool-success/" title="WordPress: A Tool for Success"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/wordpress-tool-success/">WordPress: A Tool for Success</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, 29 Mar 2017 11:30: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:"Rebecca Haden";s: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:93:"WPTavern: Poedit 2 Introduces Direct Connection to WordPress, Adds Support for Twig Templates";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=68041";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/poedit-2-introduces-direct-connection-to-wordpress-adds-support-for-twig-templates";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2392:"<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/poedit.png?ssl=1"><img /></a></p>\n<p><a href="https://poedit.net/news/introducing-poedit2" target="_blank">Poedit 2</a> was released today after two years in development. The app has a refreshed interface for translating .PO files, which Poedit creator Václav Slavík said was created by a professional designer. It is also the first paid upgrade for Pro users since the app <a href="https://wptavern.com/poedit-adds-pro-support-for-wordpress-theme-and-plugin-translation" target="_blank">added support for WordPress theme and plugin translations</a> in 2013.</p>\n<p>Poedit 2 introduces direct connectivity support for WordPress, allowing developers to connect directly to the server instead of working with unpackaged plugins/themes locally.</p>\n<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/[email protected]?ssl=1"><img /></a><br />\n“Putting translation files on the server was the most common source of problems in Poedit (too many things can go wrong if you’re not yet very familiar with WP) and this feature should help a lot with that,” Slavík said.</p>\n<p>This release adds support for <a href="http://twig.sensiolabs.org/" target="_blank">Twig templates</a> and <a href="https://upstatement.com/timber/" target="_blank">Timber</a>. In the past, users had difficulty extracting strings from Twig templates, requiring some fragile workarounds. Slavík said some users resorted to setting up Poedit to treat them as Python files. Poedit 2 has a new built-in extractor for Twig.</p>\n<p>Poedit 2 also introduces a new pre-translation feature that allows for batch pre-translation of the entire PO file at once using Poedit’s online database and machine translation. After this has processed, users can then read through and correct any errors. Slavík said this feature saves a lot of time for many WordPress-related translations, such as themes, where a lot of strings are often repeated.</p>\n<p>Poedit used to be available from the Mac App Store but is now distributed exclusively from the <a href="https://poedit.net/" target="_blank">Poedit.net</a> website. The latest release drops support for older operating systems and requires users to be on Windows 7 or newer, macOS 10.10 Yosemite, or a modern Linux distribution.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Mar 2017 01:02:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:105:"WPTavern: Data From Theme Reviews Shows Authors Need More Education on Developing Secure WordPress Themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=67987";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:116:"https://wptavern.com/data-from-theme-reviews-shows-authors-need-more-education-on-developing-secure-wordpress-themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4489:"<p>Last week, we <a href="https://wptavern.com/wordpress-theme-review-team-making-progress-on-clearing-out-1000-review-backlog">highlighted the progress</a> being made by the Theme Review Team in clearing out a 1K+ review backlog. In an effort to determine common problems with themes discovered by reviewers, Carolina Nymark, a member of the Theme Review Team, <a href="https://make.wordpress.org/themes/2017/03/25/review-statistics/">reviewed 100 tickets</a> from 531 themes that were closed and marked not approved between December and February. Nymark cautions that the data does not assure statistical accuracy and is not representative of the entire directory.</p>\n<p>Her assessment shows that the most common problems discovered by reviewers were:</p>\n<ul>\n<li>Missing escaping or using the wrong functions: 23 themes</li>\n<li>Text that is not translation ready: 21 themes</li>\n<li>Missing prefix: 20 themes</li>\n<li>Scripts or styles are not enqueued: 18 themes</li>\n<li>PHP notices, errors or warnings: 12 themes</li>\n<li>Style tags does not correspond with theme functionality, or are deprecated: 10 themes</li>\n</ul>\n<p>Nymark also reviewed 100 out of 177 new themes that went live between December and February. Out of these themes, the most common problems were:</p>\n<ul>\n<li>Missing escaping or using the wrong functions: 51 Themes</li>\n<li>Text that is not translation ready: 44 Themes</li>\n<li>Missing prefix: 39 Themes</li>\n<li>Missing license or copyright information for included assets: 34 Themes</li>\n<li>Unused code or files: 25 Themes</li>\n<li>PHP notices, errors or warnings: 20 Themes</li>\n<li>Missing sanitization, or using the wrong functions: 18 Themes</li>\n<li>Options in the customizer that are not working: 18 Themes</li>\n</ul>\n<p>Last Friday, Jose Castaneda, Ulrich Pogson, and Nymark participated in a <a href="https://make.wordpress.org/themes/2017/03/27/chat-with-matt-about-the-future-of-theme-repo/">voice chat</a> with Matt Mullenweg, co-creator of the WordPress project, to discuss the future of the theme directory. The team discussed ideas around automation, improving the theme preview experience, and content portability. One of the experiments Mullenweg proposed is to remove the manual review process and rely more on user feedback. Feedback could include, tags, reviews, and other meta data.</p>\n<p>“As we are not sure if the process will function without manual reviews, we will start working on getting better user feedback on themes,” Pogson said. “Once we have a good infrastructure in place we can experiment with how the repository reacts with no manual reviews.</p>\n<p>“We discussed the process we would go about making decisions on changes to the theme repository and came to the consensus that a direct democracy is too fragile and representative democracy would be a better solution.”</p>\n<p>Security, code errors, and prefixing, were also mentioned in the conversation as the most common issues encountered with themes. The team was given a series of tasks to complete and will report the results to Mullenweg at a later date.</p>\n<h2>New Theme Check Plugin Will Detect Common Security Issues</h2>\n<p>The <a href="https://make.wordpress.org/themes/handbook/about/">Theme Handbook</a> doesn’t have a chapter on security but it does link to a series of articles on writing secure themes in the <a href="https://make.wordpress.org/themes/handbook/review/resources/">resources section</a>. Justin Tadlock, Key Reviewer, says work is underway on a new <a href="https://github.com/WPTRT/WordPress-Coding-Standards">Theme Check</a> plugin that will automatically detect security issues commonly seen during the manual review process. These include escaping and data sanitization.</p>\n<p>“If we could get the greater theme developer community to pitch in and help get this finished, it would be awesome,” Tadlock said. “Even outside of WordPress.org, ThemeForest and commercial theme shops could really use this.”</p>\n<p>Members of the TRT are testing the plugin behind the scenes and are working to eliminate false-positives. The best way to get involved in the project is to view the<a href="https://github.com/WPTRT/WordPress-Coding-Standards/issues"> Issue tracker</a> and submit pull requests. Once the new theme check plugin is live, it will give authors another tool at their disposal for developing more secure WordPress themes.</p>\n<div id="epoch-width-sniffer"></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, 28 Mar 2017 22:52: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: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:93:"WPTavern: WordPress Relaunches Plugin Directory with New Design and Improved Search Algorithm";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=68018";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5396:"<p>The new <a href="https://wordpress.org/plugins/" target="_blank">WordPress Plugin Directory</a> went live today. Contributors have been working for the past year on rebuilding the directory with a new design and better capabilities for searching through the 45K+ available plugins.</p>\n<p>The new landing page displays a search bar prominently at the top, followed by sections for featured plugins, popular plugins, and beta plugins.</p>\n<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/wordpress-plugin-directory.png?ssl=1"><img /></a></p>\n<p>The design changes to the individual plugin pages have received <a href="https://www.facebook.com/groups/advancedwp/permalink/1446257985436411/?match=YWR2YW5jZWQgd29yZHByZXNzLHdvcmRwcmVzcy5vcmcsd29yZHByZXNzLGFkdmFuY2Vk" target="_blank">mixed feedback from members of Advanced WordPress Facebook.</a> The screenshots slider and FAQ accordion UI are welcome improvements, but many are not fond of how the new single plugin display ditches the previous tabbed interface in favor of truncated sections with numerous “read more” links. This requires the visitor to click and scroll repeatedly through a massive wall of text. The experience of doing this to find information is much less efficient than the previous tabbed UI.</p>\n<p>Many of the plugin header images appear to be stretched now with the new wider content area, but this may encourage developers to update their listings. Several users have commented that they are disappointed with the removal of stats, which are now viewable for admins only. Plugin team member Mika Epstein said they are waiting for more feedback from end users (not plugin developers) on whether to make them publicly viewable again.</p>\n<p>The new design matches <a href="https://wptavern.com/wordpress-org-launches-homepage-redesign" target="_blank">WordPress.org’s homepage redesign</a>, which went from sketches to prototype to live during the last few weeks of December 2016. The most exciting improvements, however, are found under the hood.</p>\n<p>The plugin directory is now powered by WordPress, instead of bbPress, making it easier for plugin developers and reviewers to manage plugins, tags/categories, and committers. The submission and review process has also been streamlined so the plugin team will no longer reject plugins after 7 days. They also have to ability to rename plugin slugs prior to approval for easier handling of typos.</p>\n<h3>New Plugin Search Algorithm Delivers More Relevant Results</h3>\n<p>The most significant user-facing improvement in the redesign is better search relevance. <a href="https://make.wordpress.org/meta/2016/08/30/initial-analysis-of-plugin-search-logs/" target="_blank">Analysis of plugin search logs</a> in August 2016 showed the directory handles 100,000 searches per day and receives more than 500k unique search queries per month.</p>\n<p>Greg Ichneumon Brown, a Data Wrangler at Automattic, published an in-depth <a href="https://data.blog/2017/03/15/improving-relevance-and-elasticsearch-query-patterns/" target="_blank">article</a> on how he and contributors improved search fidelity for the new plugin directory. The eye-opening account explains just how opinionated search algorithms need to be in order to give users the best experience at this scale.</p>\n<p>“In improving the fidelity of search results, it’s not just a question of how we satisfy a single user’s search query, but how we satisfy thousands of users for each unique search term: which plugins will support that volume of users and their requests for support?” Brown said. “Which are most likely to give all of these users a great WordPress experience?”</p>\n<p>The new search algorithm delivers results based on this premise. Brown added a calculation for the lowest/highest ratio of active_installs to the number of times the search was performed. However, this isn’t the only factor that influences whether or not a users will have a good experience with the top results. The algorithm also includes signals that Brown said plugin authors have a lot more control over:</p>\n<ul>\n<li>Resolving support threads</li>\n<li>Keeping the plugin update to date</li>\n<li>Testing the plugin on the latest versions of WordPress</li>\n</ul>\n<p>Brown’s <a href="https://data.blog/2017/03/15/improving-relevance-and-elasticsearch-query-patterns/" target="_blank">post</a> breaks down the Elasticsearch query he developed for the directory and explains how text matching works to find relevant results for author searches, queries that include operators, and partial-word boosting.</p>\n<p>The plugin directory relaunch has several known issues that the plugin team noted in the <a href="https://make.wordpress.org/plugins/2017/03/28/the-new-directory-is-mostly-live/" target="_blank">announcement</a> today. Users are noticing many broken links, problems with SVN, and other bugs when navigating around the new directory. The team has a list of tickets on <a href="https://meta.trac.wordpress.org/query?status=reopened&status=assigned&status=reviewing&status=new&status=accepted&group=status&milestone=Plugin+Directory+v3.0" target="_blank">Meta Trac</a> that they are working through and feedback is welcome. Plugin submissions are temporarily disabled while the transition is completed.</p>\n<div id="epoch-width-sniffer"></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, 28 Mar 2017 21:59: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: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:85:"WPTavern: UK Home Secretary Amber Rudd Links WordPress.com to the Spread of Terrorism";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67968";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/uk-home-secretary-amber-rudd-links-wordpress-com-to-the-spread-of-terrorism";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7298:"<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/wordpresscom-logo.jpg?ssl=1"><img /></a></p>\n<p>UK government officials are targeting online service providers after terrorist Khalid Masood killed four people and injured more than two dozen in an attack in Westminster last week. In an <a href="http://www.telegraph.co.uk/news/2017/03/26/amber-rudd-social-media-firms-must-do-stop-terror/" target="_blank">article</a> published on the Telegraph Sunday morning, British Home Secretary Amber Rudd called on Google, Twitter, and Facebook to take action on extremist content. She also identified Telegram, Justpaste.it, and WordPress.com as smaller platforms through which terrorist activity is spreading.</p>\n<p>“There should be no place for terrorists to hide,” Rudd told Andrew Marr in an <a href="http://www.bbc.co.uk/programmes/p04y2cnh" target="_blank">interview</a> over the weekend. “We need to make sure organizations like WhatsApp, and there are plenty of others like that, don’t provide a secret place for terrorists to communicate with each other.”</p>\n<p>Last week’s attack in London also seems to have reignited the UK government’s war on encryption, as Rudd said that the security agencies’ inability to crack encrypted messages during an investigation is “completely unacceptable.” Masood allegedly used WhatsApp to communicate shortly before the attack.</p>\n<p>The Home Secretary has summoned representatives from a list of online service providers, including Google, Twitter, Facebook, and smaller companies, to a meeting this week to discuss combatting terrorist abuse of these platforms. Automattic would not confirm whether the company has been summoned but it seems likely given that WordPress.com was one of the platforms Rudd highlighted over the weekend.</p>\n<p>The Telegraph article strongly linked WordPress.com to terrorism, citing several claims from the Counter Extremism Project that the Washington Post <a href="https://www.washingtonpost.com/news/the-switch/wp/2017/03/01/how-alleged-isis-videos-are-creating-a-headache-for-wordpress/?utm_term=.bb8acba3d6ff" target="_blank">published</a> earlier this month:</p>\n<blockquote><p>But most such sites are publicly available and used to spread content. According to US think tank the Counter Extremism Project, WordPress.com sites have played host to beheading videos, firing squads, and a video of a man being shot in the head, emblazoned with the words ‘This In the Enemy Of Allah.’</p></blockquote>\n<p>Historically, WordPress.com has been a strong supporter of free speech but posting terrorist propaganda is a violation of its terms of service. The site has a dedicated page outlining the platform’s stance on <a href="https://en.support.wordpress.com/terrorist-activity/" target="_blank">terrorist activity</a>:</p>\n<blockquote><p>While our service is designed to enable users to freely express their ideas and opinions, however controversial, safety is important to us. As such, we don’t allow websites of known terrorist groups or genuine calls for violence against individuals or groups on WordPress.com.</p></blockquote>\n<p>WordPress.com users can <a href="https://en.support.wordpress.com/report-blogs/" target="_blank">report sites</a> they find to be suspicious but the page also emphasizes the platform’s commitment to free speech:</p>\n<blockquote><p>Please note that the team behind WordPress.com strongly believes in freedom of speech. WordPress.com has a vast audience spread across many cultures, countries and backgrounds with varying values and our service is designed to let internet users freely express any ideas and opinions without us censoring or endorsing them.</p>\n<p>We take all reports seriously, but we won’t remove sites just because they are offensive.</p></blockquote>\n<p>WordPress.com also denies use to individuals, groups, or entities on the <a href="https://www.treasury.gov/ofac/downloads/sdnlist.pdf" target="_blank">Specially Designated Nationals</a> list, maintained by the U.S. Department of the Treasury’s Office of Foreign Assets Control.</p>\n<p>It’s not yet clear what Home Secretary Rudd is calling for in summoning global tech company representatives to a meeting, but her comments on the Andrew Marr show indicate the government may request closer monitoring.</p>\n<p>“What I’m saying is the best people – who understand the technology, who understand the necessary hashtags to stop this stuff even being put up, not just taking it down, but stopping it being put up in the first place – are going to be them,” Rudd said. She also said she is in conversations with the U.S. government to help get all of these companies around the table to agree to stop this kind of content from being published in the first place.</p>\n<p>Automattic would not provide a comment at this time regarding its position on the UK government attempting to curb online extremism by targeting online services. However, the company has a long history of actively pushing back against requests that violate users’ freedom of speech. In 2010, Automattic <a href="http://en.blog.wordpress.com/2010/07/01/support-the-first-amendment-with-1-for-all/" target="_blank">demonstrated its support for freedom of speech by raising awareness about the First Amendment</a>. Automattic’s General Counsel Paul Sieminski wrote about the company’s commitment to <a href="https://en.blog.wordpress.com/2013/11/21/striking-back-against-censorship/" target="_blank">strike back against censorship</a> in 2013 after taking to the courts to stand with users against DMCA abuse. In 2014, when tech companies all over the world joined forces to <a href="https://thedaywefightback.org/" target="_blank">protest NSA surveillance</a>, Automattic was among them.</p>\n<p>If Rudd’s call for tech companies to take “a more proactive role” in tackling terrorist abuse ultimately means introducing monitoring that violates users’ privacy and gives government more access, she will be hard-pressed to get cooperation. American companies like Automattic and Apple have already demonstrated they are willing to go to court to protect users’ freedoms and privacy.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">To help keep our streets safe, we need to rise up against companies like <a href="https://twitter.com/hashtag/Apple?src=hash">#Apple</a> and <a href="https://twitter.com/hashtag/Whattsapp?src=hash">#Whattsapp</a> who provide space and comfort to terrorists</p>\n<p>— Nadine Dorries (@NadineDorriesMP) <a href="https://twitter.com/NadineDorriesMP/status/846267877435035648">March 27, 2017</a></p></blockquote>\n<p></p>\n<p>The anti-encryption rhetoric surrounding this issue seems manufactured to allow UK government officials to capitalize on a public tragedy in order to push a political agenda. Rudd is unlikely to find many companies in the tech industry that are eager to hand over users’ freedoms and private communications, but hopefully the summit will serve to educate government officials on why it’s dangerous to legislate backdoors into consumer products.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 27 Mar 2017 22:30: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: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:71:"WPTavern: WordCamp Miami 2017 Will Livestream All Sessions this Weekend";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67929";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"https://wptavern.com/wordcamp-miami-2017-will-livestream-all-sessions-this-weekend";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1577:"<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/wordcamp-miami-2017.png?ssl=1"><img /></a></p>\n<p><a href="https://2017.miami.wordcamp.org/" target="_blank">WordCamp Miami</a> kicked off today with its ancillary workshops for beginners, freelancers, and BuddyPress enthusiasts. The WordCamp is entering its 9th year and organizers are expecting more than 800 attendees. Tickets are once again sold out, but latecomers hoping to attend can sign up for the <a href="http://davidbisset.us6.list-manage.com/subscribe?u=8f9242549d66d09eceb714b54&id=6685084fbd" target="_blank">wait list</a>.</p>\n<p>WordCamp Miami is one of the most well-established WordPress events and is known for having high quality sessions. This year’s <a href="https://2017.miami.wordcamp.org/schedule/" target="_blank">schedule</a> includes 60+ local and international speakers, a JavaScript learning track, and new AMA spots, featuring prominent people in the community. If you are unable to attend but want to join in remotely, the camp will be <a href="https://2017.miami.wordcamp.org/live/" target="_blank">live streaming</a> all sessions on Saturday and Sunday for free. There is no registration for the <a href="https://2017.miami.wordcamp.org/live/" target="_blank">live stream</a> and organizer David Bisset said it doesn’t have a limit on the number of people who can watch simultaneously. Participants can join in on Twitter with the <a href="https://twitter.com/hashtag/wcmia?src=hash" target="_blank">#wcmia</a> hashtag.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Mar 2017 21:52:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"WPTavern: Medium Aims to Fix ‘Broken’ Media with New $5 Subscription Program";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67900";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"https://wptavern.com/medium-aims-to-fix-broken-media-with-new-5-subscription-program";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6399:"<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/medium.jpg?ssl=1"><img /></a></p>\n<p>Nearly three months after <a href="https://blog.medium.com/renewing-mediums-focus-98f374a960be#.xij39212w" target="_blank">laying off a third of its staff</a> and publicly admitting that its previous ad-based revenue model was broken, Medium has introduced a new <a href="https://blog.medium.com/upgrade-your-medium-924b74c36552#.8qjmspkzj" target="_blank">$5 per month subscription program</a>. The internet speculated freely about Medium’s next move after CEO Ev Williams said the company would be taking “a different, bolder approach” to the problem of driving payment for quality content.</p>\n<p>It turns out the “bolder approach” he referenced is a subscription-based model, one that <a href="https://thenextweb.com/opinion/2017/03/23/ev-williams-lost-goddamn-mind/#.tnw_zZrtqFcj" target="_blank">skeptics</a> are already eager to <a href="https://www.theregister.co.uk/2017/03/24/medium_five_bucks_a_month_for_nothing/" target="_blank">tear apart</a> as many media organizations have struggled to find success with paywalls. Early subscribers will receive access to curated content, a new reading experience, ad-free browsing, and an offline reading list. Medium will be using the subscription revenue to pay writers for content, some of which will be restricted to members only.</p>\n<p>“We will be routing 100% of the revenue from founding members (those who sign up in the first few months) to writers and independent publishers who have important work to do,” Williams said. “Those who have hard-won expertise, do exhaustive research, and think deeply. Those who make us all smarter. Those who maximize our understanding of the world but don’t necessarily maximize clicks — and, therefore, are at a disadvantage amongst the highly optimized algorithm chum being slung by the truckload by low-cost content purveyors.”</p>\n<p>Medium’s new curated content stream will surface the most worthwhile articles from its network, which grew from 1.9 million posts in 2015 to 7.5 million in 2016 posts. Williams identified the types of content members can expect with their subscriptions in a <a href="https://blog.medium.com/our-approach-to-member-only-content-cfce188261d1#.ciyj1nlir" target="_blank">followup post</a> viewable only to subscribers:</p>\n<ul>\n<li>Politics. What’s happening behind the headlines. How to think about it. What to do about it.</li>\n<li>Work. Lessons in business, startups, leadership, management, and money.</li>\n<li>Self. Smart takes on how to be your best you — happier, healthier, more productive.</li>\n<li>Future. Where the world is going — technology, trends, what it all means.</li>\n</ul>\n<p>For those who have long regarded Medium as the home of hot takes, open letters, and scintillating rants, the new curated content will feature pieces from those who Williams describes as “doing important work.” The list above indicates the platform will be promoting a hefty does of spoon-fed thought and self-improvement topics. In order to make money from the people who have it to spend, the blogging silo must focus on helping those with too much information and not enough time to figure out “how to think about” important issues.</p>\n<p>Medium is currently <a href="https://medium.com/@adamhodgkin/medium-needs-a-business-model-550d3e2ff2ab#.f0ld2suga" target="_blank">soliciting writers via email</a>, according to one recipient, Adam Hodgkin. This move marks a change in the company where it is essentially becoming a publisher in addition to an aggregator, commissioning content that will deliver that trademark Medium flavor.</p>\n<p>Authors should be aware that articles published behind Medium’s paywall will lose their potential to go viral. In addition to trading site and content ownership for convenience, those who agree to write for Medium’s members will be limiting the potential reach their content may have had if it was published in the open.</p>\n<p>“Media is broken,” Williams said. “And we need to fix it. I’m super passionate about this. Though we’ve changed our approach recently, this has been Medium’s mission from day one. We saw the feedback loops for publishing content to be a major problem, and we set out to build a new model. We’ve come a long way since — establishing ourselves as the platform for thoughtfulness, depth, and insight from independent thinkers. But the greater challenge — changing the incentives that drive our consumption of media online — has become even more pressing. It’s time to double-down.”</p>\n<p>If there’s something new about this economic model, we have yet to see it. Spotify, Netflix, the Financial Times, the Wall Street Journal, and many other businesses have successfully implemented the subscription model. Using it to fund the type of content that Medium aims to highlight may not be feasible, however, as consumers tend to gravitate towards free content and news that is read and shared in the open.</p>\n<p>If Medium’s only option for exiting the <a href="http://readwrite.com/2007/03/01/attention_economy_overview/" target="_blank">attention economy</a> is to further lock down users’ content inside its proprietary silo, the remedy is worse than the disease. Instead of seeing ads on articles available to everyone, subscribers now pay to read content that is selected by and owned by Medium, a company that still needs to find a way to keep the lights on once all the VC money is gone.</p>\n<p>Medium tried the ad-driven publishing model without success and then declared that it was a broken system. Was the model broken because it didn’t bring Medium enough money to keep paddling on? Or is it fundamentally broken because it “incentivizes the wrong behaviors,” as Williams put it? His newfound idealism behind the push to leave the domain of “ad buyers and social media echo chambers” appears to be a mask for the lack of a concrete monetization strategy.</p>\n<p>Williams’ closing appeal says everything: “Join us early, and help us figure it out.” Medium is still experimenting on publishers to find a way to stay afloat.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Mar 2017 21:24:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:82:"WPTavern: How to Find the Age of a Plugin Hosted in the WordPress Plugin Directory";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=67923";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/how-to-find-the-age-of-a-plugin-hosted-in-the-wordpress-plugin-directory";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1554:"<p>The <a href="https://wordpress.org/plugins/">WordPress plugin directory</a> provides information such as version requirements, compatibility, last updated, and active installs for plugins. What it doesn’t tell you is how old a plugin is. A new site called<a href="http://pluginage.ahmadawais.com/"> Age WP Plugin</a> created by <a href="https://AhmadAwais.com">Ahmad Awais</a> and <a href="https://maedahbatool.com/">Maedah Batool</a> makes finding this information easy. Simply type in a plugin’s slug into the search box and hit enter.</p>\n<img />Hello Dolly is 8 Years Old\n<p>Awais created the site after Batool inquired about the age of a plugin for an article she was writing. Using the WordPress.org API, Awais discovered that one of the data points was a plugin’s submission date. In addition to displaying a plugin’s age, the site also shows the number of downloads it has. In early 2015, the <a href="https://wptavern.com/wordpress-plugin-directory-launches-new-design">plugin directory was redesigned</a> and replaced the download count with the number of active installs.</p>\n<p>The site has <a href="https://www.facebook.com/groups/advancedwp/permalink/1441868299208713/">received positive feedback</a> from plugin authors in the Advanced WordPress Facebook group. Something I’d like to see added is a list of 10 or 25 of the oldest plugins in the directory. Awais plans to redesign the site using a different color scheme and fix styling issues reported by testers.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Mar 2017 19:12: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:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"WPTavern: PHP 5.6 Is Now the Most Widely Used PHP Version";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67851";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"https://wptavern.com/php-5-6-is-now-the-most-widely-used-php-version";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2510:"<p>PHP 5.6 usage has steadily increased over the past year and has now overtaken versions 5.3 and 5.4 to be the most widely used version, according to <a href="https://w3techs.com/technologies/history_details/pl-php/5" target="_blank">W3Techs’ stats</a>. PHP is used by 82.6% of all the websites for which W3Techs can detect a server-side programming language. PHP 7 accounts for 3.1% of these websites and PHP 5.x makes up 95.3%, with version 5.6 usage at the top end.</p>\n<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/php-version-usage.png?ssl=1"><img /></a></p>\n<p><a href="http://php.net/usage.php" target="_blank">PHP.net’s usage stats</a> page hasn’t been updated sine 2013 but the project recommends W3Techs’ stats for viewing PHP market share by version. W3Techs’ methodology takes the top 10 million websites, according to Alexa rankings, to offer a representative sample of established sites without including domain spammers.</p>\n<p>PHP 5.6 overtaking older versions is a significant milestone for the PHP community, since it still receives <a href="http://php.net/supported-versions.php" target="_blank">support for critical security issues</a> until December 31, 2018. The older versions that previously dominated usage reached End of Life in 2015 and 2016 and are no longer receiving security updates.</p>\n<p>Adoption of supported PHP versions is somewhat slower in the WordPress community. According to the project’s <a href="https://wordpress.org/about/stats/" target="_blank">stats</a>, more than half of all WordPress sites (55.6%) are using unsupported versions of PHP (versions 5.2 – 5.5).</p>\n<p>In early December 2016, WordPress updated its <a href="https://wordpress.org/about/requirements/" target="_blank">hosting recommendation</a> to PHP 7+, which should help new users who are approaching hosts to request their sites be put on newer versions of PHP. In addition to these recommendations, WordPress’ strategy in the past has been to cultivate relationships with hosts to help improve host configurations for users. The project recently launched the <a href="https://make.wordpress.org/hosting/" target="_blank">Make WordPress Hosting</a> community to facilitate collaboration among those with hosting experience. Participants are currently working on documenting best practices, including recommendations for PHP versions offered, and providing tools for the community.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 23 Mar 2017 19:15: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: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:32:"Matt: On the James Altucher Show";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=47188";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"https://ma.tt/2017/03/on-the-james-altucher-show/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:450:"<p>I <a href="http://www.jamesaltucher.com/2017/03/matt-mullenweg/">joined in for the James Altucher podcast in an episode that covered a lot of ground</a>. One clarification was the point of the story about my Dad not making much at his old job was that companies should be thoughtful about compensation especially for the people who stay with them the longest, not that loyalty is a myth or something to be avoided. It just needs to be two-way.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 23 Mar 2017 16:29:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:16;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:115:"WPTavern: WPWeekly Episode 268 – Behind the Scenes of WordPress Development Course, Up and Running Second Edition";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67846&preview=true&preview_id=67846";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:121:"https://wptavern.com/wpweekly-episode-268-behind-the-scenes-of-wordpress-development-course-up-and-running-second-edition";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2416:"<p>On this episode, <a href="http://www.marcuscouch.com/">Marcus Couch</a> and I are joined by <a href="https://alexdenning.com/">Alex Denning</a>, <a href="https://pressupinc.com/">Fred Meyer, and David Hayes</a> of <a href="https://wpshout.com/">WPShout</a> to discuss their WordPress Development course, <a href="https://wpshout.com/up-and-running/">Up and Running Second Edition</a>. We learn why the trio created the course and who it’s geared towards.</p>\n<p>Later in the show, we have a great conversation surrounding the REST API and its potential impacts on WordPress. Near the end of the interview, we get their thoughts on the state of WordPress education.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="https://wptavern.com/godaddy-acquires-sucuri">GoDaddy Acquires Sucuri</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href="https://wordpress.org/plugins/wp-multisite-user-sync/">WP Multisite User Sync</a> lets you Sync/unsync users from one site (blog) to other sites (blogs) in a WordPress Multisite network.</p>\n<p><a href="https://wordpress.org/plugins/woo-save-abandoned-carts/">WooCommerce Live Checkout Field Capture</a> plugin saves all activity in the WooCommerce checkout form before it is submitted. This enables you to see who has abandoned their shopping carts with the ability to contact them and remind about the abandoned cart.</p>\n<p><a href="https://wordpress.org/plugins/after-comment-redirector/">After Comment Redirector</a> lets you redirect to a custom page after commenting for all or new commentators. This is a handy way to say thank you to your most engaging readers. You can also give out a coupon, special e-book, or secret content when someone leaves a comment.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 29th 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">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="https://wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #268:</strong><br />\n</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 23 Mar 2017 01:39: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: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:33:"WPTavern: GoDaddy Acquires Sucuri";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67826";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"https://wptavern.com/godaddy-acquires-sucuri";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5541:"<p>GoDaddy <a href="https://www.godaddy.com/garage/godaddy/sucuri-godaddy-team-protect-websites/">has announced</a> that it has entered into an agreement to acquire <a href="https://sucuri.net/">Sucuri Security</a>. Sucuri, founded by Daniel Cid and co-founded by Tony Perez in 2010, is a website security platform that helps clean and protect websites. Details of the deal were not disclosed.</p>\n<p>Like <a href="https://wptavern.com/godaddy-acquires-wordpress-site-management-service-managewp">ManageWP</a>, Sucuri will operate as a separate entity under the GoDaddy umbrella. Sucuri employees will transfer to GoDaddy while remaining under the leadership of Perez and Cid.</p>\n<p>Out of all the companies that Sucuri could have chosen to be acquired by, why GoDaddy?</p>\n<p>“Over the years we’ve seen them live up to their words to be a customer and product centric company,” Perez said. “As a product company it give us an opportunity to scale our product from a few hundred thousand domains, to millions. It’s something that we only ever dreamed of.”</p>\n<p>The acquisition comes a few weeks after <a href="https://www.siteground.com/blog/sg-site-scanner-powered-sucuri/">SiteGround announced</a> its partnership with Sucuri and renamed its site scanner SG Site Scanner. It’s too soon to determine how this acquisition will affect Sucuri’s partnerships with hosting companies.</p>\n<p>“I can’t speak for our partners, but I truly hope they will trust in us, Sucuri, and in me personally,” Perez said. “If we can work to deploy our technology for GoDaddy, at their scale, then I have nothing but confidence we can do this for every other partner out there.</p>\n<p>“GoDaddy made this investment because they believe in what we have built as a team at Sucuri, the product solves problems, that doesn’t go away and I hope all our customers and partners will give us time to prove this in our actions.”</p>\n<p>Both companies acknowledged that nothing changes for existing Sucuri customers and that they can expect to see numerous improvements in the near future. Perez and Cid see the acquisition as version 2.0 of the company.</p>\n<p>Aaron Campbell, WordPress Security Team Lead who is sponsored by GoDaddy to work on WordPress full-time, says the move should help make more sites secure.</p>\n<p>“GoDaddy is committed to offering great services to its clients,” Campbell said. “You know as well as I do that Sucuri is exactly that; we’ve seen them be quite an asset to the WordPress community over the years.</p>\n<p>“They’re going to remain a standalone product, but I’m excited to see them become part of the GoDaddy team to make some great stuff together. Keeping as many WordPress users secure as possible is obviously my goal and I really think this will help accomplish that.”</p>\n<p>Reactions to the news on Twitter have mostly been positive with many congratulating Sucuri and its founders.</p>\n<p>On the <a href="https://www.facebook.com/groups/advancedwp/?ref=group_cover">Advanced WordPress Facebook group</a>, reactions to <a href="https://www.facebook.com/groups/advancedwp/permalink/1440220396040170/">the news</a> are a mix between congratulatory and fears of Sucuri’s service declining. These are among the same grievances and fears expressed by ManageWP customers when <a href="https://managewp.com/managewp-joins-godaddy">GoDaddy acquired it</a>.</p>\n<h2>ManageWP Customers Report No Noticeable Decline in Service</h2>\n<p>Since being acquired, ManageWP has maintained and improved service levels while continuing to add features. Its most recent feature gives customers the opportunity to create backups, restore, and clone <a href="https://managewp.com/multisite-websites-in-managewp">multisite websites</a>.</p>\n<p>Bob Dunn, of <a href="https://bobwp.com/">BobWP</a>, says the service has been stellar before and after the transition.</p>\n<p>“To be honest, their services were great before and still are,” Dunn said. “I don’t manage a ton of sites, but for my needs, it has been rock solid since I first became a customer.”</p>\n<p>Scott Buscemi, co-founder of <a href="https://lumenfoundry.com/">Lumen Foundry</a>, has had a similar experience.</p>\n<p>“In all honesty, I haven’t noticed much of anything since they were acquired – and that’s a ‘win’ in my opinion,” Buscemi said.</p>\n<p>“I’ve seen them push out a pleasant list of bug fixes and features that don’t affect me, so it’s great to still see active development on the primary system. GoDaddy has been working hard to get on the good side of developers and agency owners like me, so I can’t imagine they would go through the effort of the acquisition only to spoil the experience and turn things negative.”</p>\n<p>Even those skeptical with the acquisition have reported no noticeable decline in the quality of service.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr"><a href="https://twitter.com/jeffr0">@jeffr0</a> Me, I haven’t really noticed any change in the quality of the service (and I was skeptical)</p>\n<p>— "so called" Jim Cook (@jm_cook) <a href="https://twitter.com/jm_cook/status/844657355035938816">March 22, 2017</a></p></blockquote>\n<p></p>\n<p>GoDaddy has not announced how it plans to integrate Sucuri into its products and services.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 23 Mar 2017 00:53:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:62:"BuddyPress: BuddyPress at WordCamp London 2017 Contributor 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:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:32:"https://buddypress.org/?p=264902";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"https://buddypress.org/2017/03/buddypress-at-wordcamp-london-2017-contributor-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:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1688:"<p>Contributor Day is a big part of WordCamp London. This year it was held on Friday 17th March at London Metropolitan University. 100 contributors descended on the venue each aiming to make WordPress better in some wonderful way.</p>\n<img src="https://buddypress.org/wp-content/uploads/1/2017/03/room-back.jpg" alt="A room full of people" />Contributors at WordCamp London 2017. Photo by <a href="https://wpism.com" rel="nofollow" target="_blank">Pradeep Singh</a>.\n<p>Attendees were asked to choose an area of interest. The options were Accessibility, BuddyPress, Community, Core, Design & Flow, Documentation, Polyglots, Support and Themes. 5 of the 100 contributors chose BuddyPress. 2 of the 5 were new to contributing in general but all had used, or had at least heard of, BuddyPress at some point.</p>\n<p>After a quick refill of coffee the team convened and began discussing how to get the most from the next 8 hours. Due to a diverse range of skills available within the group, we were able to focus on documentation, coding and localisation.</p>\n<img src="https://buddypress.org/wp-content/uploads/1/2017/03/buddypress-table.jpg" alt="People using laptops" />BuddyPress contributors. Photo by <a href="https://wpism.com" rel="nofollow" target="_blank">Pradeep Singh</a>.\n<p>As a team we managed to identify an issue related to colour contrast in the Twenty Seventeen theme. <a href="https://buddypress.trac.wordpress.org/ticket/7471" target="_blank">#7471</a> was opened and a patch was submitted. We were also able to translate all remaining strings into Italian.</p>\n<p>The day was a huge success and all team members indicated they will contribute again going forward.</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, 22 Mar 2017 21:26: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:12:"Henry Wright";s: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:71:"WPTavern: Foxhound Is the First REST API Powered Theme on 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=65646";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"https://wptavern.com/foxhound-is-the-first-rest-api-powered-theme-on-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3281:"<p><a href="https://wordpress.org/themes/foxhound/" target="_blank">Foxhound</a> made its debut on WordPress.org yesterday. The React-based theme is the first in the directory to use the REST API endpoints included in WordPress 4.7. Foxhound sports a tasteful blog design with single-page app functionality that loads posts instantly. Check out the <a href="https://themes.redradar.net/foxhound/" target="_blank">live demo</a> to see how fast the content loads.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/foxhound.png?ssl=1"><img /></a></p>\n<p>The theme was designed and developed by <a href="https://themes.redradar.net/" target="_blank">Kelly Dwan and Mel Choyce</a>, who have collaborated on several free themes hosted on WordPress.org. They recommend installing the <a href="https://wordpress.org/plugins/wp-api-menus/" target="_blank">WP-API Menus</a> plugin, as the REST API does not yet support menus. After installing Foxhound, there are only two things required to make it look like the demo: Set the front page to display the latest posts and set up a menu. There are no additional customization settings.</p>\n<p>Kelly Dwan notes on <a href="https://github.com/ryelle/Foxhound" target="_blank">Foxhound’s GitHub repository</a> that the theme should be considered “experimental” and users can expect a few restrictions:</p>\n<ul>\n<li>The theme does not display anything if javascript is disabled. (Should not affect SEO or accessibility)</li>\n<li>The API cannot be blocked by a security plugin. Some plugins recommend blocking the users endpoint, but that is required to show the author archive. If you need to block the user endpoint, the rest of the theme should work but might be unstable if anyone tries to visit an author archive.</li>\n<li>Permalinks for pages and archives are changed by this theme. They will be reset if/when you deactivate the theme. You might want to set up redirects using something like <a href="https://wordpress.org/plugins/safe-redirect-manager/" target="_blank">Safe Redirect Manager</a>.</li>\n<li>This theme does not support hierarchical category archives – only parent category archive pages can be displayed. This <a href="https://github.com/ryelle/Foxhound/issues/30" target="_blank">may be fixed in a later version</a> of the theme.\n<li>Plugins may not work as expected, especially if they add content to the front end of the site. Most Jetpack features do still work.</li>\n</ul>\n<p>Because Foxhound is so different from traditional WordPress themes, it could not go through the usual theme review process. Themes that require the WP REST API are currently reviewed outside of WordPress.org when a theme author pings the Theme Review team. They apply a “Special Case” tag that allows the theme to bypass Theme Check. (The tag is also used for other themes that break the rules in innovative ways.)</p>\n<p>“We don’t have a lot to go on yet with those types of themes,” Key Reviewer Justin Tadlock said. “Foxhound was the first. We’re supposed to be looking over another soon. As more of these types of themes come in, we’ll be able to figure out ways of making it easier to submit them.”</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 22 Mar 2017 19:21:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:35:"HeroPress: A Blissful Driving Force";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=1658";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"https://heropress.com/essays/blissful-driving-force/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9063:"<img width="960" height="480" src="https://heropress.com/wp-content/uploads/2017/03/032217-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: WordPress successfully justified my choice of not joining the job placement drive at college." /><p>As a college guy, I believed in being different and outperforming the best of my lot. Coming from a modest family background, the realization of achievement dawned over me. I never favored being a 9 to 5 corporate professional and a having a ‘boss’ was simply not my cup of coffee. I was never interested in the classes held in the college because I was being more productive at the ‘reality’ front of the life. I envisioned getting involved in tasks that were strongest at the core.</p>\n<h3>Where It All Started</h3>\n<p>Computer technology was in its nascent state in India the time I started my tryst with web pages. I began with designing my own college’s alumni website while pursuing MCA at Banaras Hindu University, Varanasi. Eventually, I was assigned the task of the event websites too. I was happy because all this brought about a sense of power to me. Though not initially refine, my work still appealed to many and it also made me realize the power technology had.</p>\n<h3>The Seed of Seriousness</h3>\n<p>The very first seed of the idea of taking this up as a serious profession was sown by a friend who told me about how creating web pages and blogging could be a source of monetization. Google pages was my first shot as a techie, wherein I started with contributing content through blogs to several clients.</p>\n<h3>Saw and Attempted</h3>\n<p>I can still recollect the time I received my first pay cheque. Initially, I had tested all Content management systems and had started with Joomla and Drupal. With absolutely no knowledge about coding, I went forward to scale the web designing mountain. WordPress came and was well recognized as a blogging platform; suitable to what I worked on. I bumped into WordPress in 2009 and like many other users, utilized it for my blogging endeavors. Little did I know that someday it would be the answer to my ‘coding gap’. I remember working on a 6-month project for my MCA final where I took up WordPress as the core subject and in there I talked about custom plugins and themes. The teacher was happy to receive the unique project and awarded me good grades for my sense of initiation with new approach.</p>\n<h3>That Leap of Faith</h3>\n<p>Now, I knew how I had to take this WordPress awesomeness forward. With a little exposure to learning new technology, I was baffled for a while but had the will to scale this one too. 6 months, and I thoroughly decoded the WordPress codex for me. This was a giant step forward where my future lay in my own hands.</p>\n<p>Personally, I feel that WordPress does not constrict you to a certain limit or a line of functionalities. If you have a core foundation, you can toy with it and make awesome end results. WordPress was now my pillar of strength. WordPress successfully justified my choice of not joining the job placement drive at the college.</p>\n<h3>The Break-Out</h3>\n<p>Now was the time to materialize my skills and have a material turnaround for the work I was capable of doing. After a 4-month hunt for some serious web designing projects with not a single task at hand, disappointment gripped me. The lack of proper work infrastructure due to poor Internet connectivity and local electricity supply were some of the other reasons I had to plan withdrawing my resources from Varanasi. I could have fallen or would have made a leap; it was about to be my choice for the rest of my life.</p>\n<h3>Hello to New Beginnings</h3>\n<p>It was frustrating because Varanasi had been my abode for 7 good years and leaving the place was a huge decision to make. I mustered up my wits to start afresh by withdrawing my base from Varanasi and shifted to Lucknow, India in order to try out seeking new opportunities yet again.</p>\n<p>The work stars favored me and with the help of elance-oDesk (now, Upwork) and other freelancing platforms, I received many life-changing projects of my life. Things moved forward and with many clients in a row, another year went by. I collaborated with more people who were willing to join me on the platform – people who wanted to leave a mark; never to look back. What remained constant throughout these years was my capability to work hard each day.</p>\n<h3>A Better Picture/ Wbcom Designs</h3>\n<p>I upfront admire WordPress because it has been a driving force for my existence. Time has moved slowly and with 6+ years of experience and self-discovery, I now run a fully-fledged WordPress based company <a href="https://wbcomdesigns.com/" target="_blank">Wbcom Designs</a> that has many developers and freelancers onboard with me.</p>\n<p>While additionally serving <a href="https://www.buddyboss.com/" target="_blank">BuddyBoss</a> as a Product and Support Manager, now I plan to infuse new changes in the pattern we operate at base as well as the firm through strategic planning. It’s time to give back to the WordPress community through the development of free plugins, theme customization and spreading the WordPress fandom at local level.</p>\n<p>I recently took the <a href="https://2016.nashik.wordcamp.org/wbcomdesigns-is-our-bronze-sponsor/">opportunity to sponsor</a> <a href="https://2016.nashik.wordcamp.org/">‘Nashik WordCamp’ 2016</a>, <a href="https://2017.pune.wordcamp.org/sponsors/">WordCamp Pune 2017</a>, <a href="https://2017.udaipur.wordcamp.org/sponsors/">WordCamp Udaipur 2017</a>, and <a href="https://2017.kochi.wordcamp.org/sponsors/">WordCamp Kochi 2017</a>. I am glad I was able to take a step forward in my plans to pay back to the WordPress community. To set the ball rolling at local level, I have recently come up with a local <a href="https://www.meetup.com/Lucknow-WordPress-Meetup/">MeetUp</a> group at Lucknow, India so that locally organized, face to face events can be organized that will accelerate the understanding of the WordPress CMS among the masses. I also plan to bring about WordPress awareness at the school and college level in my zone so that more and more young people know why this CMS is so amazing.</p>\n<p>To this day, my first love is my work desk. Whenever in an emotional or professional fix, I seek recluse through this amazing platform. Unlike others, working destresses me. There is a long way to go with this ideal because I want people to know how powerfully stable the WordPress is.</p>\n<p>Like they say,</p>\n<blockquote><p>“Coming together is a beginning; keeping together is progress; working together is success.”</p></blockquote>\n<p>I want to see the developer community going for heights that have never been achieved before and I want to be a part of this huge step-up.</p>\n<p>I am all open up for this WordPress community for contribution and assistance. For WordPress enthusiasts, I want to tell them that sky is not the limit. WordPress has accepted me as its own and it’s time for me and others to give back in the best possible manner.</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: A Blissful Driving Force" class="rtsocial-twitter-button" href="https://twitter.com/share?text=A%20Blissful%20Driving%20Force&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fblissful-driving-force%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: A Blissful Driving Force" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fblissful-driving-force%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%2Fblissful-driving-force%2F&title=A+Blissful+Driving+Force" rel="nofollow" target="_blank" title="Share: A Blissful Driving Force"></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/blissful-driving-force/&media=https://heropress.com/wp-content/uploads/2017/03/032217-150x150.jpg&description=A Blissful Driving Force" rel="nofollow" target="_blank" title="Pin: A Blissful Driving Force"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/blissful-driving-force/" title="A Blissful Driving Force"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/blissful-driving-force/">A Blissful Driving Force</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, 22 Mar 2017 12:00: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:11:"Varun Dubey";s: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:82:"WPTavern: Help Jesse Petersen and His Family by Donating to His Medical Leave Fund";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67746";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/help-jesse-petersen-and-his-family-by-donating-to-his-medical-leave-fund";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2774:"<p><a href="https://www.petersenmediagroup.com/">Jesse Petersen</a>, a longtime member of the WordPress community and founder of <a href="https://www.genesisthe.me/">Genesis The.me</a>, needs <a href="https://www.newlungsfor.me/medical-leave-fund-for-jesses-double-lung-transplant/">our help</a>. Petersen is battling <a href="http://www.cffatboy.com/what-is-cystic-fibrosis/">Cystic Fibrosis</a> and earlier this year after visiting a clinic, discovered that his lung function was at 22%.</p>\n<p>Due to decrease lung function, Petersen missed five weeks of work, required home IVs, and visited many doctors. He is currently on a double-lung transplant list with a <a href="https://en.wikipedia.org/wiki/Lung_allocation_score">lung allocation score</a> of 38.859.</p>\n<p>According to the <a href="https://www.unos.org/wp-content/uploads/unos/lung_allocation_score.pdf">United Network for Organ Sharing</a>, the LAS is a score used to prioritize waiting list candidates based on a combination of wait list urgency and post-transplant survival.</p>\n<p>In order to maintain his health for a transplant, doctors have recommended that he work a maximum of two hours per day with quality rest.</p>\n<p>His family has a small emergency fund available that they thought would allow Petersen to work up until his transplant surgery. However, there’s no estimated time frame for when a transplant will be available.</p>\n<p>Outside of his product based business, Petersen is a work-from-home freelancer with contract work that needs to be completed. He and his wife have two adopted children. His wife volunteered to get another job to supplement their income but relatives rejected the idea as she is his primary support person.</p>\n<p>Petersen has <a href="https://my.genesisthe.me/downloads/genesistheme-developer-starter/">two products</a> for sale on GenesisThe.me with two more ready for launch by the end of March.</p>\n<p>His family is <a href="https://www.newlungsfor.me/medical-leave-fund-for-jesses-double-lung-transplant/">asking for $20K </a>to help pay for expenses and allow Petersen to take an extended medical leave to focus on his health. So far, the campaign has raised $5,075 or about a quarter of the amount needed.</p>\n<p>You can donate as much as you’re able to or choose from one of five predetermined amounts ranging from $25 to $1K. You can also choose to donate monthly in six month increments.</p>\n<p>Petersen is no stranger to the WordPress community’s generosity. In 2016, it helped him raise nearly $20K to help pay for costs associated with <a href="https://surpriseadoption.com/">adopting his second son</a>. If you are able, please consider donating to Petersen’s medical leave fund.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 22 Mar 2017 10:35:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:22;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:74:"WPTavern: Adding Images to WordPress Sidebars Is About to Get a Lot Easier";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=67667";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/adding-images-to-wordpress-sidebars-is-about-to-get-a-lot-easier";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4041:"<p>Adding images to sidebars in WordPress is a cumbersome task that requires users to upload an image to the Media Library, find the URL, copy it, and paste it into a Text widget along with additional HTML. Nearly two years ago, Mel Choyce <a href="https://core.trac.wordpress.org/ticket/32417">opened a ticket</a> on WordPress Trac proposing that a media widget be added to core. This widget would allow users to easily add images to sidebars.</p>\n<p>Throughout the discussion, the idea of creating a catch-all media widget was brought up that would allow users to add images, audio, or video to a sidebar. After developers spoke to Matt Mullenweg about the direction of the project, the team decided to create three separate widgets to handle each media type. Choyce outlined the benefits this approach provides:</p>\n<ul>\n<li>We can focus on creating more tailored experiences for each widget.</li>\n<li>We’ll be able to launch new widgets without having to worry about constantly updating one central widget, or potentially breaking anything.</li>\n<li>It’ll be easier for people to discover new media types since they won’t be buried within one widget.</li>\n<li>This will more closely mimic the approach we’re taking to content blocks in the future, which should provide an easier transition.</li>\n</ul>\n<p>Out of the three core widgets in development, the Image one is nearly complete ready for user testing. To test, first download and activate the <a href="https://wordpress.org/plugins/wp-core-media-widgets/">Core Media Widgets</a> plugin. Once activated, navigate to Appearance > Widgets in the WordPress backend and in the available widgets section, locate the Image widget.</p>\n<img />Core Image Widget UI\n<p>Clicking the Select Image button displays the media library modal where you can either select or upload an image. Once an image is selected, click the Add to Widget button in the bottom-right corner. This is what the widget looks like after an image is added.</p>\n<img />Core Image Widget With an Image\n<p>Here is what the widget looks like on a page using the <a href="https://wordpress.org/themes/twentyseventeen/">Twenty Seventeen</a> default theme.</p>\n<img />Core Image Widget in Action\n<p>The core image widget is incredibly easy to set up and is a significant improvement over the Text widget approach. The user interface is much simpler compared to the <a href="https://jetpack.com/support/extra-sidebar-widgets/image-widget/">image widget</a> supplied by Jetpack. Jetpack’s image widget UI doesn’t take advantage of the media library modal and instead, requires the user to know the image’s URL.</p>\n<img />Jetpack Image Widget UI\n<p>Many of the fields are the same as what’s provided by the media library modal. Not surprisingly, WordPress.com <a href="https://en.support.wordpress.com/widgets/image-widget/">uses the same interface</a> and requires the user to know the image URL.</p>\n<h2>Core Image Widget May Be Ready in Time for WordPress 4.7.4</h2>\n<p>The team is specifically seeking feedback from those who use image widgets provided by plugins on WordPress.org. Once the image widget is merged into core, the video and audio widgets will be added to the <a href="https://wordpress.org/plugins/wp-core-media-widgets/">Core Media Widgets</a> plugin. Users can leave the plugin enabled until all three widgets are added to core.</p>\n<p>“Once a widget has been thoroughly tested by users, we can then copy it into core for a release while then also disabling the widget in the plugin,” Ruter said.</p>\n<p>If you encounter a bug or discover an incompatibility with a plugin or theme, please <a href="https://github.com/xwp/wp-core-media-widgets/issues">create an issue</a> on the project’s GitHub page. According to Ruter, the team is working hard to get the widget to a point where it can be merged into core. Depending on how testing goes, it could be merged into core as early as WordPress 4.7.4.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 22 Mar 2017 01:18: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:23;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:91:"WPTavern: WordPress Theme Review Team Making Progress on Clearing Out 1,000+ Review Backlog";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67582";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:100:"https://wptavern.com/wordpress-theme-review-team-making-progress-on-clearing-out-1000-review-backlog";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6259:"<a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/planning.jpg?ssl=1"><img /></a>photo credit: <a href="https://stocksnap.io/photo/5ZMT04MIW6">Oli Dale</a>\n<p>The WordPress Theme Review team (TRT) has turned a corner and is approaching a major milestone of getting the <a href="https://themes.trac.wordpress.org/report/2" target="_blank">review queue</a> under 100 themes. As of today, 189 themes are lined up in what was previously a 1,000+ backlog. Key reviewers are confident that number will be closer to zero in the near future.</p>\n<p>Emil Uzelac, one of the key reviewers, shared the <a href="https://themes.trac.wordpress.org/ticketgraph" target="_blank">ticketgraph</a> for the backlog on Twitter today, demonstrating that the team is in a better place where new theme submission isn’t causing overload issues as it did before. Themes continue to flow in but are not significantly affecting the queue.</p>\n<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/theme-review-ticketgraph.png?ssl=1"><img /></a></p>\n<p>In 2015 the TRT hit a wall with an influx of themes flooding into a legacy review system that wasn’t working. The team couldn’t keep up and was forced to spend much of 2016 changing the review process to better handle the large number of themes coming in. The TRT is working hard to make 2017 the year they get back on track.</p>\n<p>Uzelac identified a few of the measures that have helped in taming the queue:</p>\n<ul>\n<li>One theme submission per author</li>\n<li>More reviewers</li>\n<li>A new guideline where reviewers close the ticket if the review surfaces more than <a href="https://make.wordpress.org/themes/2016/08/23/meeting-summary-2016-23-08/" target="_blank">5 distinct issues</a></li>\n</ul>\n<p>“Around Christmas was when many on the team started seeing a tiny sliver of light at the end of a long tunnel,” Key Reviewer Justin Tadlock said. “In the past few days, seeing the queue get below 200 themes has been a high point. Folks on the team are excited because our ideas are paying off.”</p>\n<p>Tadlock can’t say when exactly the team turned a corner but describes it as more of an iterative process that started with small ideas they could implement themselves. This has significantly reduced the wait time from 7 or 8 months a year ago to two months today. Themes also go through an admin queue that adds a bit to the review time but Tadlock said they hope to tackle that in the next Review Shindig, which happens on the first weekend of every month.</p>\n<p>“That number is shrinking,” Tadlock said. “By the end of April, we could be looking at 3-4 weeks. I’m a bit optimistic, so don’t hold me to that. It could be May or June in reality.”</p>\n<p>Tadlock said once the team gets to the 50-100 range they will be at the place where they’re really only handling new themes that are coming in, instead of working the backlog. Once they reach that milestone, they will be able to more accurately track how long it takes for a theme to make it through the review process.</p>\n<p>“That’s where we’ll need to really start refining the process so that it works even better in the future,” Tadlock said. “A well-coded theme could potentially make it through the process in 2 months right now. Another theme might be 4-5 months. There are a lot of factors to consider. It’s my hope that we eliminate many of those factors that are holding up the process.”</p>\n<p>The new rule that limited authors to submitting one theme at a time has had a significant impact on cutting down the queue. The rule was meant to be temporary and will be up for reevaluation when the queue is under 100 themes. Tadlock said the team will likely pull the rule, but it has been instrumental in rooting out copies that contained only minor changes to the original.</p>\n<p>“For most authors, this [rule] is not a huge problem,” Tadlock said. “It definitely hurts a few of the more prolific authors in the short term. However, it helps stop the flow of theme companies who are just copying/pasting the same theme with minor changes. We’ve had theme companies with as many as 17 themes in the queue that were just copies. This new rule has helped us find those and put a stop to the practice.” The team was able to track down an entire ring of theme authors with multiple accounts with dozens and dozens of themes.</p>\n<p>Tadlock said most of the issues the team deals with in reviews are related to security. The content portability issues that were highlighted in the recent <a href="https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue" target="_blank">Zerif Lite suspension</a> are more uncommon.</p>\n<p>“The ‘draconian stuff’ people talk about probably represents 1% of the issue,” Tadlock said, referencing Matt Mullenweg’s recent <a href="https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue#comment-210935" target="_blank">comments</a> on the current requirements. “99% of the issues are the things people don’t talk about.” Tadlock has been speaking with theme authors about how they can “create” content within the guidelines, as there are ways to do it that are both future-proof and portable.</p>\n<p>The team is currently spending a lot of time reviewing code that shouldn’t need to be manually reviewed. The next item on the TRT roadmap is incorporating better automation into the review process.</p>\n<p>“The big thing we’re working on now is the new Theme Check plugin,” Tadlock said. “It’s going to solve lots of problems. It’s based off the code sniffer (PHPCS, I believe). It’ll help theme authors start submitting better coded and more secure themes right off the bat. Humans easily miss those things looking through it with their eyes. This will definitely make theme authors better coders and users will have even more secure themes. Then, we can focus on those 1% issues.”</p>\n<div id="epoch-width-sniffer"></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, 21 Mar 2017 21:53: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:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:24;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:55:"WPTavern: Yoast SEO 4.5 Urges Users to Upgrade to PHP 7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=67676";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"https://wptavern.com/yoast-seo-4-5-urges-users-to-upgrade-to-php-7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4770:"<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/yoast-logo.jpg?ssl=1"><img /></a></p>\n<p><a href="https://yoast.com/yoast-seo-4-5/" target="_blank">Yoast SEO 4.5</a> was released today with a handful of improvements and, most notably, a big push for users to upgrade to PHP 7.</p>\n<p>“In Yoast SEO 4.5, we are urging site owners whose sites run on servers with an outdated version of PHP to update to a more recent version,” Joost de Valk said. “To move the web forward, we need to take a stand against old, slow, and unsafe software.”</p>\n<p>WordPress’ minimum PHP requirement is still at <a href="https://wordpress.org/about/requirements/" target="_blank">5.2.4</a>, six years after PHP 5.2 <a href="http://php.net/eol.php" target="_blank">reached end of life in 2011</a>. This version is now <a href="https://www.cvedetails.com/vulnerability-list.php?vendor_id=74&product_id=128&version_id=106044&page=1&hasexp=0&opdos=0&opec=0&opov=0&opcsrf=0&opgpriv=0&opsqli=0&opxss=0&opdirt=0&opmemc=0&ophttprs=0&opbyp=0&opfileinc=0&opginf=0&cvssscoremin=0&cvssscoremax=0&year=0&month=0&cweid=0&order=4&trc=39" target="_blank">vulnerable to many security issues</a>. Current usage stats show 5.4% of WordPress sites are running on PHP 5.2. As this likely represents millions of users, WordPress’ core leadership is reluctant to bump the minimum requirements. Only 8% of sites are on PHP 7+, as hosting companies are slowly adding support.</p>\n<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/wordpress-php-versions-march-2017-1.png?ssl=1"><img /></a></p>\n<p>“Because web hosts are not upgrading PHP, we have decided to start pushing this from within plugins,” de Valk said. He contends that the WordPress ecosystem is losing good developers because the project is moving too slowly. He also makes the case for security and speed.</p>\n<p>“WordPress is sometimes said to be slow, but it actually doesn’t have to be slow at all,” de Valk said. “If it’s running on old versions of PHP, however, it is, most certainly, slow. PHP 5.2 is more than 100% slower than PHP 5.6, and a whopping <a href="https://www.phpclasses.org/blog/post/493-php-performance-evolution.html" target="_blank">400% slower than PHP 7</a>.”</p>\n<p>De Valk decided to throw the weight of Yoast SEO, which he estimates to be 6.5 million active installs, behind the movement to push hosts to upgrade their customers to PHP 7. The latest release of the plugin displays a notice to WordPress administrators running sites on PHP 5.2, urging them to upgrade to PHP 7. The notice is “big, ugly, and non-dismissible,” de Valk said. It is generated by an error that auto-resolves when the user fixes their outdated PHP version.</p>\n<p>“The notice will also encourage people to contact their host if they don’t know how to upgrade their PHP,” de Valk said. “Yes, this could be painful for some hosts. This notice is deliberately intended to make them work.”</p>\n<p>De Valk said the plugin will start displaying the notices for PHP 5.2 and will add 5.6 as soon as it is no longer supported. Through experience with his customers, de Valk has found that outdated, slower versions of PHP are damaging Yoast SEO and WordPress’ reputations, as neither are optimized for PHP 5.2. Although older versions are not holding the plugin back from new features, it makes it difficult for the team to clean up the code.</p>\n<p>“There aren’t many features I cannot build right now, but code quality is suffering because we can’t use namespaces, short array notation, etc,” de Valk said.</p>\n<p>The Yoast SEO team has created <a href="https://github.com/Yoast/whip" target="_blank">WHIP</a>, a WordPress package to nudge users to upgrade their software versions and made it open source for plugin and theme developers to implement in their own extensions. The project includes a filter for linking to the WordPress.org hosting page, which includes a selection of hosts that offer PHP 7.</p>\n<p>Most of the large hosting companies already have documentation for upgrading PHP versions. Ultimately, it’s the end users who will have the power to get more hosting companies on board. De Valk said he doesn’t know how big the impact will be but encourages users to vote with their pocketbooks by leaving hosts that are unwilling to assist in upgrading PHP.</p>\n<p>“It might be entirely possible that your host is not willing to work with you,” de Valk said. “If so, think about moving web hosts. A web host provides the engine your site runs on and that better be a damn good engine.”</p>\n<div id="epoch-width-sniffer"></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, 21 Mar 2017 19:56: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:119:"WPTavern: PressShack Forks Edit Flow to Create PublishPress, Aims to Improve Multi-User Editorial Workflow 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:29:"https://wptavern.com/?p=67574";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:129:"https://wptavern.com/pressshack-forks-edit-flow-to-create-publishpress-aims-to-improve-multi-user-editorial-workflow-in-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6808:"<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/publish-press.png?ssl=1"><img /></a></p>\n<p>Last week Steve Burge and the team at <a href="https://pressshack.com/" target="_blank">PressShack</a> released <a href="https://wordpress.org/plugins/publishpress/" target="_blank">PublishPress</a>, a fork of Automattic’s <a href="https://wordpress.org/plugins/edit-flow/" target="_blank">Edit Flow</a> plugin. PressShack is operated by the same team behind <a href="http://ostraining.com/" target="_blank">OSTraining</a> with a focus on creating publishing plugins for larger organizations.</p>\n<p><a href="https://wordpress.org/plugins/edit-flow/" target="_blank">Edit Flow</a> has more than 10,000 active installs but is updated sporadically and is not very well supported. The PressShack creators saw an opportunity to fork the plugin and sell commercial support and add-ons. <a href="https://wordpress.org/plugins/publishpress/" target="_blank">PublishPress</a> is now available on WordPress.org with a seamless <a href="https://pressshack.com/publishpress/docs/migrate/" target="_blank">migration for Edit Flow users</a>.</p>\n<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/edit-flow-publishpress-migration.png?ssl=1"><img /></a></p>\n<p>The first release offers the same features as Edit Flow along with a complete face lift, making interaction with the plugin’s settings more user-friendly. The new tabbed interface puts all the settings on one screen. PressShack has also tweaked the language of the plugin, changing Story Budget” to “Overview”, and simplifying other terms.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/publishpress-ui.png?ssl=1"><img /></a></p>\n<p>PublishPress introduces a few changes to the calendar, allowing users to click anywhere on a date to add content. It exposes the iCal or Google Calendar feed and uses icons to show post statuses, saving space for other information.</p>\n<p>Burge said that PublishPress will be making a fresh start and will not be following and incorporating updates from Edit Flow. The team plans to add a host of new features that improve the publishing workflow to handle multiple users:</p>\n<ul>\n<li><strong>Multisite and multiple site support</strong>: Content creators log into one site but can publish to multiple sites</li>\n<li><strong>Pre-publishing checklists</strong>: For example, featured image, word count, Yoast SEO green light</li>\n<li><strong>More use cases beyond media sites</strong>: In addition to magazine-style user groups for reporting, PublishPress plans to add more use cases, such as WooCommerce products, EDD downloads, bbPress topics, and The Events Calendar listings</li>\n<li><strong>Multiple authors</strong>: Assign multiple author bylines to a story</li>\n</ul>\n<p>Most of these feature are slated for release in mid-2017 and will be <a href="https://pressshack.com/publishpress/" target="_blank">offered as commercial add-ons</a>. The team is currently still focused on writing unit tests for the core plugin and adding improvements to it on WordPress.org.</p>\n<h3>PressShack Takes Inspiration from Drupal for Expanding Content Workflows</h3>\n<p>PressShack’s creators also work closely with other open source publishing platforms. Burge said the team took some inspiration from the Drupal ecosystem, which offers more advanced features for modifying editorial workflows.</p>\n<p>“In Drupal, the workflow features are being demanded and developed by large organizations that use the platform,” Burge said. “As a result, Drupal does have a very big head start in this area. “In Drupal 7, the main workflow module was called <a href="https://www.drupal.org/project/workbench" target="_blank">Workbench</a>. It was built to meet the needs of large customers such as universities, media outlets, and government agencies who have many different content managers.”</p>\n<p>Prior to having editorial workflow tools available, Burge said that Drupal agencies kept losing projects to rivals such as Adobe and OpenText, because they had publishing workflows built for multiple users. Building better publishing tools became a necessity for Drupal agencies that wanted to win projects from large organizations.</p>\n<p>Drupal 8 moves many of these editorial workflow improvements into core. Drupal 8.3, which is slated for April 2017, will <a href="http://buytaert.net/moving-the-drupal-8-workflow-initiative-along" target="_blank">introduce the ability to create multiple types of content workflows</a>.</p>\n<p>“What’s really interesting about the Drupal 8 implementation is that they are thinking beyond just content publishing,” Burge said. “It will soon be possible to put whole sections of your site into a workflow. The demand for these features is still coming from enterprise customers: much of the work is being done by a team of Drupal developers inside Pfizer.”</p>\n<p>Burge cited a few examples of typical users requiring more elaborate publishing workflows:</p>\n<ul>\n<li>A university with 50+ academic departments and several hundred content creators</li>\n<li>A pharmaceutical company with hundreds of products and a micro-site for each one</li>\n<li>A newspaper that employs writers and at least one layer of editors</li>\n<li>A publicly-listed company that needs approval from several staff members to ensure that the content it publishes is 110% accurate</li>\n</ul>\n<p>WordPress core is tailored to a single-author blog workflow, and there are relatively few plugins that modify the default editorial workflow for large teams. <a href="https://wptavern.com/coschedule-a-viable-alternative-to-the-edit-flow-wordpress-plugin" target="_blank">CoSchedule is one alternative to Edit Flow</a> and PublishPress that has 10,000 active installs. It takes a SaaS approach and has more of a content marketing slant. Burge said he thinks the WordPress ecosystem’s scarcity of options for extending publishing workflows may be due to current limitations in core.</p>\n<p>“It’s possible there are some technical hurdles: for example, WordPress core has fairly limited user permissions,” he said. “It’s also possible that now is the right time for WordPress to start adding these features.”</p>\n<p>“WordPress agencies are building more enterprise sites and these demands are popping-up,” Burge said. “Matt just announced the <a href="https://ma.tt/2017/03/wordpress-collaborative-editing/" target="_blank">Google Docs integration</a> as a quick way to bring some collaborative features into WordPress. I think we’ll see more and more tools available for teams, rather than single authors.”</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 20 Mar 2017 21:21: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:"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:45:"Donncha: How to Auto Schedule WordPress Posts";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"https://odd.blog/?p=89500175";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"https://odd.blog/2017/03/18/how-to-auto-schedule-wordpress-posts/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3613:"<p>If you post to a WordPress blog on a regular basis like I do on <a href="https://inphotos.org/">In Photos dot Org</a> you’ll no doubt recognise the fatigue that comes from adjusting the publish date every single time on a new post so it appears a day later. If you have multiple posts like on a daily photoblog you have to remember what day the last post was made and adjust the date accordingly. </p>\n<p>A few years ago I wrote a small plugin that I never released to help schedule posts. In the media uploader you could select multiple photos and click a few buttons to be brought to a new page where you could enter title, content and tags for each image. Based on this experience, I suggested it as an idea to one of the teams at Automattic who built <a href="https://postbot.co/">Post Bot</a>. I used that for a long time and it has its strengths. If you’re posting content that has the same or similar tags you can copy and paste the tags from one post to another. I posted lots of black and white street images from my home town this way and it was super useful! </p>\n<p>I got tired of manually typing out tags, and unfortunately the site broke a few times, with posts not scheduling or one time they scheduled all in one go. Luckily the problems were quickly fixed. However, I started using the WordPress post editor again and scheduling a bunch of photos that way.</p>\n<p>Manually editing the publish date quickly became a chore. Lazarus, the form saver Chrome extension, would sometimes popup if I didn’t click exactly on the date, or as I said before I had to remember when the last post was made. They say there’s a plugin for everything, and there is for this too. Check out <a href="https://wordpress.org/plugins/publish-to-schedule/">Publish to Schedule</a>.</p>\n<p>You tell “Publish to Schedule” which days and how many posts should be published and when you go into the post editor the next available date is picked for you! The date doesn’t change until you hit Publish but I already used it to schedule a number of posts and it works really well.</p>\n<p><a href="https://odd.blog/files/2017/03/Screen-Shot-2017-03-14-at-17.21.11.png"><img /></a></p>\n<p><strong>Edit:</strong> I forgot to mention <a href="https://wordpress.org/plugins/daily-image/">Daily Image</a> a new plugin by Sam Hotchkiss that does the same sort of job as Postbot but it runs on your own server. The first time you load the plugin it will show you every single unattached image in your media library which can be quite a number of images but it allows you to enter tags and quickly schedule images for posting in a simple manner.</p>\n<p>Since my focus here is on image posts I should really mention the <a href="https://apps.wordpress.com/lightroom/">WordPress Export Plugin for Lightroom</a>. When installed you can create a new export target that will resize and sharpen your image and upload it to your blog, even if it’s not a WordPress.com site.</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href="https://odd.blog/2010/09/07/odd-games-of-bad-company-2/" rel="bookmark" title="Permanent Link: Odd games of bad company 2!">Odd games of bad company 2!</a></li><li> <a href="https://odd.blog/2010/12/28/im-on-top-of-the-world/" rel="bookmark" title="Permanent Link: I’m on top of the world">I’m on top of the world</a></li><li> <a href="https://odd.blog/2010/09/03/rage-quit-in-cod-4/" rel="bookmark" title="Permanent Link: Rage quit in COD 4!">Rage quit in COD 4!</a></li></ul></p>\n<p><a href="https://odd.blog/" rel="external nofollow">Source</a></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 18 Mar 2017 16:50:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Donncha";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:90:"WPTavern: GitHub Adds Plain English Explanations to License Pages for Open Source Projects";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67550";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:101:"https://wptavern.com/github-adds-plain-english-explanations-to-license-pages-for-open-source-projects";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2475:"<p>GitHub took another step towards beefing up its support for open source projects this week with <a href="https://github.com/blog/2335-open-source-license-descriptions-and-metadata" target="_blank">a new feature that makes it easier to understand a project’s license</a>. If the project is using a popular open source license, GitHub will automatically add a short, plain-English description of the license and its permissions, conditions, and limitations. This allows GitHub users to see the implications of a project’s license at a glance.</p>\n<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/github-license-display.png?ssl=1"><img /></a></p>\n<p>GitHub pulls this data from <a href="http://ChooseALicense.com" target="_blank">ChooseALicense.com</a>, the site it created in 2013 to help developers understand and select an open source license. The license descriptions and metadata are also open source and developers can incorporate them into their own projects using GitHub’s <a href="https://developer.github.com/v3/licenses/#get-an-individual-license" target="_blank">License API</a>.</p>\n<p>This new feature follows GitHub’s release of <a href="https://opensource.guide/" target="_blank">Open Source Guides</a> in February. The guides are a collection of 10 resources to help people get involved in open source, start their own open source projects, and manage large communities. The documents include helpful stories and tips from maintainers of successful open source projects.</p>\n<p>It was around this time last year that GitHub was <a href="https://wptavern.com/open-source-project-maintainers-confront-github-with-open-letter-on-issue-management" target="_blank">confronted by open source project maintainers with an open letter</a> of complaints regarding issue management. Nearly 2,000 maintainers signed the letter, requesting that GitHub prioritize features that open source project maintainers need. The company dragged its feet before eventually responding, while competing code hosting service GitLab capitalized on the situation with a new initiative focused on “<a href="https://gitlab.com/gitlab-org/gitlab-ce/issues/8938" target="_blank">making GitLab the best place for big open source projects</a>.” Over the past year, GitHub has consistently released new features and improved existing ones in affirmation of its continued support for open source projects.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 18 Mar 2017 03:03:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:44:"WPTavern: In Case You Missed It – Issue 19";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67590&preview=true&preview_id=67590";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wptavern.com/in-case-you-missed-it-issue-19";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5660:"<a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?ssl=1" rel="attachment wp-att-50955"><img /></a>photo credit: <a href="http://www.flickr.com/photos/112901923@N07/16153818039">Night Moves</a> – <a href="https://creativecommons.org/licenses/by-nc/2.0/">(license)</a>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2>Apple Pay for WooCommerce</h2>\n<p>WooCommerce <a href="https://woocommerce.com/2017/03/apple-pay-woocommerce/">announced</a> that Apple Pay is now available for stores accepting payments using Stripe. According to Marina Pape, WooCommerce is the first open source platform to integrate with Apple Pay.</p>\n<blockquote><p>We’re also proud to be the first open source platform to integrate with Apple Pay. Open source is the default for us, but it’s exciting to continue that level of openness with such an important payment solution.</p></blockquote>\n<h2>Human Made Makes Two Big Hires</h2>\n<p><a href="https://hmn.md/">Human Made</a>, a web development agency based in the UK recently announced two big hires. The first is <a href="https://hmn.md/2017/03/16/mike-little-joins-human-made/">Mike Little</a>, co-creator of the WordPress open source project, as a WordPress Specialist. The second is <a href="https://hmn.md/2017/03/17/jenny-beaumont-joins-human-made/">Jenny Beaumont</a>, who will take on the role of Senior Project Manager.</p>\n<h2>Editor User Experience Survey</h2>\n<p>The WordPress core development team has <a href="https://make.wordpress.org/core/2017/03/15/editor-experience-survey/">published a survey</a> seeking feedback and data on how people use the editor. The editor is likely the most commonly used feature in WordPress. This is an opportunity for those who use it to provide feedback.</p>\n<blockquote class="wp-embedded-content"><p><a href="https://make.wordpress.org/core/2017/03/15/editor-experience-survey/">Editor Experience Survey</a></p></blockquote>\n<p></p>\n<h2>Behind the Scenes of how Search works on the New WordPress Plugin Directory</h2>\n<p>Greg Brown <a href="https://data.blog/2017/03/15/improving-relevance-and-elasticsearch-query-patterns/">published details</a> on Data.blog on how he improved the search relevancy for the new WordPress plugin directory using Elasticsearch. The post is technical in nature but provides great background information into how it works.</p>\n<blockquote><p>In improving the fidelity of search results, it’s not just a question of how we satisfy a single user’s search query, but how we satisfy thousands of users for each unique search term: which plugins will support that volume of users and their requests for support? Which are most likely to give all of these users a great WordPress experience?</p></blockquote>\n<h1 class="entry-title">NextGEN Gallery Surpasses 17 Million Downloads</h1>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">NextGEN Gallery just reached over 17 million downloads. <a href="https://twitter.com/hashtag/WordPress?src=hash">#WordPress</a></p>\n<p>— Imagely (@imagely) <a href="https://twitter.com/imagely/status/842532503265185792">March 17, 2017</a></p></blockquote>\n<p></p>\n<h2>MainWP Reaches 1K Five-star Reviews</h2>\n<p>After three years of being on the <a href="https://wordpress.org/support/plugin/mainwp/reviews/?filter=5">WordPress plugin directory</a>, the MainWP plugin has received <a href="https://mainwp.com/mainwp-reaches-1000-5-star-reviews/">1,000 five-star reviews</a>.</p>\n<h2>Heather Burns HeroPress Essay</h2>\n<p>Heather Burns, founder of <a href="https://webdevlaw.uk/">WebDevLaw</a>, published an <a href="https://heropress.com/essays/going-back-roots/?utm_source=twitter&utm_medium=hand-made&utm_term=going-back-roots&utm_content=first-tweet">incredible essay</a> on HeroPress this week. Burns describes the hardships encountered with her first job and how it and other circumstances led her down the path of discovering WordPress.</p>\n<blockquote><p>By this point I’d started playing around with WordPress, and I learned about a local meetup group. I tiptoed in one night and awkwardly introduced myself and was welcomed right in.</p>\n<p>I realized over time that this was a very different sort of group. Everyone was grassroots volunteers, putting in the effort because they wanted to learn, not because they wanted social status. There was no tiresome hierarchy, no obsession with ‘prestige’, no kowtowing to the person with the sexiest car (in fact, we all took the bus.) If you had a question, you could ask it without being laughed out the room. No one was obliged to give anything more than they were able to give.</p></blockquote>\n<h2>HeroPress Wapuu!</h2>\n<p>In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don’t know, Wapuu is the <a href="http://wapuu.jp/2015/12/12/wapuu-origins/">unofficial mascot</a> of the WordPress project.</p>\n<img />HeroPress Wapuu\n<p> </p>\n<p>I present HeroPress Wapuu in celebration of HeroPress recently publishing <a href="https://heropress.com/heropress-at-100/">its 100th essay. </a>If you’re a fan of HeroPress and want to see it flourish, please consider <a href="https://heropress.com/sponsorship/">being a sponsor</a>.</p>\n<p>That’s it for issue nineteen. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 17 Mar 2017 21:52: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: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:53:"WPTavern: Take the WordPress Editor Experience Survey";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=67499";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/take-the-wordpress-editor-experience-survey";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2410:"<a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/two-pencils.jpg?ssl=1"><img /></a>photo credit: <a href="https://stocksnap.io/photo/TBLSDTI1UL">Joanna Kosinska</a>\n<p>WordPress core contributors have published a <a href="http://wordpressdotorg.polldaddy.com/s/editor-survey" target="_blank">survey</a> to collect feedback on how people are using the editor. The results of the short 15-question survey will assist the team in redesigning the editing experience in the WordPress admin.</p>\n<p>Participants are asked to identify how they use WordPress and if they use certain features like formatting buttons and distraction-free writing. The survey also asks how easy-to-use they consider the current editor to be and how organized it is. Users are also asked if they have ever installed a plugin that adds features to the editor, presumably to determine if there are features missing that should be considered for core.</p>\n<p>One question asks participants if they use any assistive technologies along with a screen reader. WordPress Accessibility team member Amanda Rush <a href="https://www.customerservant.com/wordpress-editor-experience-survey/" target="_blank">published some tips for screen reader users who want to take the survey</a>. It includes several questions with radio buttons and screenshots that are not so friendly to screen readers. Rush provides a general walk-through with more explanation for those who are using screen readers to participate.</p>\n<p>So far, this survey has been more widely shared than the design team’s recent customizer survey, which was <a href="https://wptavern.com/initial-customizer-survey-results-reveal-majority-of-respondents-dont-use-it" target="_blank">published after receiving just 50 results</a>. WordPress contributors rely heavily on these surveys to make decisions about projects they are working on, as they do not have any telemetry data about what features people are using or not using. This is one example where data could quickly demonstrate how widely the distraction-free writing mode has been adopted and show what editor formatting buttons people are using.</p>\n<p>If you have a few minutes over the weekend and want to contribute to the future of WordPress, take the <a href="http://wordpressdotorg.polldaddy.com/s/editor-survey" target="_blank">Editor Experience Survey</a>.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 17 Mar 2017 21:01: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: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:67:"WPTavern: How to View Upcoming WordCamps in the WordPress Dashboard";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67572";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/how-to-view-upcoming-wordcamps-in-the-wordpress-dashboard";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2067:"<p>Over the course of a year, WordCamps take place nearly every weekend. Although you can view <a href="https://central.wordcamp.org/schedule/">upcoming events</a> on WordCamp Central, a relatively new plugin exist that enables you to see upcoming WordCamps on the WordPress Dashboard.</p>\n<p>It’s called <a href="https://wordpress.org/plugins/wc-dashboard-widget/">WordCamp Dashboard Widget</a> developed by <a href="https://profiles.wordpress.org/ajitbohra/">Ajit Bohra</a>. Once activated, a new widget appears on the dashboard that lists upcoming WordCamps. Data is retrieved by using the public <a href="https://central.wordcamp.org/wp-json/posts?type=wordcamp%29">JSON API</a> available on WordCamp Central, is stored in a transient, and refreshed every day to reflect new data.</p>\n<img />Upcoming WordCamps Widget\n<p>Users can adjust the number of camps shown per page, sort events by location, date, or Twitter information. You can also display this information on any post or page using the [wordcamps] shortcode. The locations are linked to the event’s official WordCamp page. The @ symbol links to the official Twitter account associated with the event and the # symbol links to the official hashtag.</p>\n<p>During testing I noticed that the Twitter account for some events was either missing or incorrect. For example, WordCamp London links to <a href="https://twitter.com/wcldn">@wcldn</a> when it should link to <a href="https://twitter.com/WordCampLondon">@WordCampLondon</a>. I’m not a fan of the way dates are presented in a Day/Month/Year format as I prefer Month/Day/Year.</p>\n<p>Bohra is continuing to improve the plugin with an option to refresh data, improve data fetching, and more filtering options for 1.0. I tested the plugin on a site running WordPress 4.8 alpha and didn’t encounter any issues. If you encounter a bug or have feedback, you can submit a new issue on the <a href="https://github.com/lubusIN/wordcamp-dashboard-widget/issues">project’s GitHub page. </a></p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 17 Mar 2017 20:09:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:131:"WPTavern: Jetpack Introduces Theme Installation from WordPress.com, Sparks Controversy with Alternative Marketplace for Free 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=67531";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:141:"https://wptavern.com/jetpack-introduces-theme-installation-from-wordpress-com-sparks-controversy-with-alternative-marketplace-for-free-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:12403:"<p>Today Jetpack <a href="https://jetpack.com/2017/03/16/165-beautiful-free-themes/" target="_blank">announced</a> that its users now have access to a collection of 165 free themes from WordPress.com. Jetpack users can browse, preview, and activate themes by visiting the <a href="https://wordpress.com/design" target="_blank">WordPress.com Theme Showcase</a>. WordPress.com has also added the ability for Jetpack users to upload a theme from its interface as well, a feature that targets those who are heavily using Jetpack Manage instead of the WordPress admin.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/jetpack-theme-install.png?ssl=1"><img /></a></p>\n<p>Many of the free themes are already available from <a href="https://wordpress.org/themes/author/automattic/" target="_blank">Automattic’s account</a> on the WordPress.org Themes Directory, but the limitations of the preview functionality doesn’t present themes in their best light. The Theme Review Team added a new rule last year that theme authors can only upload one theme at a time and will have to wait for it to pass through the queue before submitting another. This severely restricts individuals and companies that are prolific theme authors, requiring them to wait months in the queue. Authors can realistically expect to only publish one or two themes per year on WordPress.org.</p>\n<p>After Zerif Lite, one of the most popular themes on WordPress.org, was <a href="https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue" target="_blank">suspended for five months</a> for violations of content portability requirements, Matt Mullenweg was one of the most vocal opponents of what he <a href="https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue#comment-210935" target="_blank">called</a> “draconian requirements.” In 2015, Mullenweg went so far to <a href="https://wordpress.slack.com/archives/themereview/p1432861605003292" target="_blank">say</a> that he is “completely okay with having something in the directory that breaks every guideline, as long as it’s interesting.”</p>\n<p>The Theme Review Team has not made significant changes that would give authors more freedom. Instead, much of the Team’s time seems to be spent looking for ways to reduce the queue. It’s no wonder that a company like Automattic, with the infrastructure of Jetpack Manage and WordPress.com, would choose to distribute themes via a more efficient route. However, this move has left some WordPress.org theme authors wondering if WordPress.org improvements will be less of a priority in the future.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">Can you blame him? No. They (he?) needs to wrangle in the experience, avoid fragmentation, compete with other consumer hosted platforms.</p>\n<p>— Matt Medeiros (@mattmedeiros) <a href="https://twitter.com/mattmedeiros/status/842406199551221760">March 16, 2017</a></p></blockquote>\n<p></p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">But what does it all mean for us surviving off of the .org distribution? Tough cookies, that\'s what.</p>\n<p>— Matt Medeiros (@mattmedeiros) <a href="https://twitter.com/mattmedeiros/status/842406347324948481">March 16, 2017</a></p></blockquote>\n<p></p>\n<p>“Today’s announcement is the glue that holds together Matt’s vision for the future .org experience, delivered via Jetpack,” WordPress.org theme author <a href="http://mattreport.com" target="_blank">Matt Medeiros</a> said. “Solving the dark cloud above the repo seems a lot less critical when we can throw Jetpack in front of users as an alternative. It’s a calculated measure to control the on-boarding experience of new users, which WP desperately needs for continued growth amidst a field of competitors like Wix and Squarespace.”</p>\n<p>According to Jetpack team member Richard Muscat, WordPress.com has “no immediate plans to sell themes at this time.” Jetpack users have access to free themes but will not, in the foreseeable future, be invited to purchase WordPress.com’s commercial themes. The team also plans to continue its presence on WordPress.org.</p>\n<p>“We have no plans to stop releasing themes into the .org directory,” Muscat said. “We just believe this makes an even nicer, more integrated experience for accessing the themes we offer on the WordPress.com side of things.”</p>\n<p>Jetpack’s announcement has also reignited fears of what the plugin’s commercialization might do to the WordPress ecosystem. In the past, Mullenweg has <a href="https://wptavern.com/woocommerce-powers-42-of-all-online-stores" target="_blank">identified both Jetpack and WooCommerce as “multi-billion dollar opportunities”</a> that could each individually be larger than WordPress.com. If WordPress.org is failing to attract new users with its theme previews, then Jetpack/WordPress.com is likely to pull even more eyes away with its separate marketplace.</p>\n<p>“As a small business (a label that’s critical) product creator, I see this as a motion in the direction to increase the visibility of Jetpack’s free/paid feature set, above the rest of us trying to desperately make a living out here,” Medeiros said. “Jetpack will be marketed as the one-stop-solution for all of your small business website needs, if that hasn’t already been woven into the fabric of it’s current messaging. It is ultimately positioning itself as the trusted source of functionality for new users, versus us ‘third-party’ plugins. After all, who wouldn’t trust the company ‘behind WordPress?\'”</p>\n<p>Ionut Neagu, CEO at <a href="https://themeisle.com/" target="_blank">Themeisle.com</a>, and the author of Zerif Lite, shares Medeiros’ concerns about Jetpack’s more recent commercialization efforts.</p>\n<p>“What worries me more is the speed at which Automattic is pushing Jetpack,” Neagu said. “The Personal plan was introduced, and yesterday I got a cold email from some company they work with promoting their affiliate program. Today themes were introduced. It makes me wonder how far they plan to go and how this will affect theme and plugin developers.”</p>\n<p>However, Neagu takes a more optimistic stance on self-hosted users installing themes from WordPress.com.</p>\n<p>“As a theme author, I am not that worried about this particular aspect. Right now those themes are quite hard to find (it took me 10 minutes), are more targeted towards people using Jetpack Manage, and as far as I can see lots of them are looking a bit outdated.”</p>\n<p>Neagu sees a disconnect between what WordPress.org thinks users want and what they are actually looking for. Based on his research and experience selling themes, Neagu has found that users still expect complete solutions from themes. WordPress has grown beyond being just a blogging platform. Neagu said he hopes WordPress.org’s research for the new editor will reveal how many people are actually using the software for business.</p>\n<p>“We run a themes directory as well and we did extensive heatmaps to understand what kind of themes/screenshots users click on/ like,” Neagu said. “Looking at the results of a ‘business’ query, I am quite sure that users won’t be excited.”</p>\n<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/business-themes.png?ssl=1"><img /></a></p>\n<p>This is likely the first iteration, and data from more Jetpack users should help WordPress.com refine the queries to present a mix of newer and popular themes. At the moment it looks to be simply a way to offer all of their available themes without the red tape of WordPress.org.</p>\n<h3>Automattic Addresses Confusion Over WordPress.org Plugin Directory Guideline Regarding Executable Code and Installs</h3>\n<p>The news of WordPress.com installing and updating themes for Jetpack users gave rise to speculation about whether or not this move is a violation of the <a href="https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/" target="_blank">plugin directory guidelines</a>. Discussions centered around guideline #8, which states that plugins may not send executable code via third-party systems:</p>\n<blockquote><p>Serving updates or otherwise installing plugins, themes, or add-ons from servers other than WordPress.org’s.</p></blockquote>\n<p>Jetpack representative Richard Muscat gave us the following statement on behalf of Automattic:</p>\n<blockquote><p>The guidelines prohibit _plugins_ from installing third party code directly but Jetpack doesn’t do that for this feature. The guidelines state that: “Executing outside code within a plugin *when not acting as a service* is not allowed.”</p>\n<p>The service Jetpack provides with respect to themes is via WordPress.com which _is_ acting as a service. This is identical to how Akismet operates with respect to spam-filtering and other Jetpack services such as data sync and backup, content delivery (Photon), and plugin installation/updates.</p>\n<p>We ask users to opt-in to WordPress.com services when connecting Jetpack and all our services follow established guidelines.</p></blockquote>\n<p>The public discussions also prompted WordPress.org Plugin Directory representatives to <a href="https://make.wordpress.org/plugins/2017/03/16/clarification-of-guideline-8-executable-code-and-installs/" target="_blank">post</a> an article clarifying that Jetpack is not in violation for installing themes.</p>\n<p>“The trick here, and this is what is about to sound like hair splitting, is that it’s not the plugin UI on your site that does the install,” Mika Epstein said. “In order for Manage WP and Jetpack to work, you have to go to your panel on their sites and install the items.”</p>\n<p>As SaaS products have not yet been used extensively in the WordPress ecosystem, developers are still figuring out how this type of implementation can interact with WordPress sites via plugins installed from the official directory. The plugin team clarified that if you are pushing plugin or theme installs or updates from a third-party service on its website, then it is no longer a third-party service but rather a first-party service where you are directly initiating those actions.</p>\n<p>However, not all developers agree that this distinction makes any difference.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr"><a href="https://twitter.com/daljo628">@daljo628</a> <a href="https://twitter.com/TheJeffMatson">@thejeffmatson</a> <a href="https://twitter.com/williamsba">@williamsba</a> <a href="https://twitter.com/chriswallace">@chriswallace</a> <a href="https://twitter.com/mattmedeiros">@mattmedeiros</a> Saying SaaS can install plugins but plugin cannot install plugins is silly.</p>\n<p>— Carl Hancock <img src="https://s.w.org/images/core/emoji/2.2.1/72x72/1f680.png" alt="🚀" class="wp-smiley" /> (@carlhancock) <a href="https://twitter.com/carlhancock/status/842485294863712256">March 16, 2017</a></p></blockquote>\n<p></p>\n<p>Gravity Forms founder Carl Hancock contends that ManageWP is different in that it doesn’t provide users with themes and plugins – it’s just a service for managing your sites.</p>\n<p>“You can install plugins from the WordPress.org plugin and theme repository, you can connect your Dropbox account and install plugins from your Dropbox account, or you can upload your own plugins,” Hancock said. “The key is it’s either plugins and themes from WordPress.org OR bring your own. Just like WordPress itself.</p>\n<p>“They [ManageWP] do not provide an alternative repository of themes and/or plugins that competes with the WordPress.org repos.”</p>\n<p>This is where much of the controversy lies for WordPress.org theme authors who depend on the official directory for distribution. Competing with equally free themes that are hosted on WordPress.com with a much better sorting UI and preview functionality is a new challenge they will have to embrace.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 17 Mar 2017 00:08:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:123:"WPTavern: U.S. Department of Defense Launches Code.mil Open Source Initiative, First Release Tests Impact of AGPL Licensing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67451";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:132:"https://wptavern.com/u-s-department-of-defense-launches-code-mil-open-source-initiative-first-release-tests-impact-of-agpl-licensing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7190:"<a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/department-of-defense.jpg?ssl=1"><img /></a>A U.S. Air Force F-15E Strike Eagle aircraft flies over northern Iraq Sept. 23, 2014, after conducting airstrikes in Syria. – photo credit: <a href="https://www.flickr.com/photos/39955793@N07/15172530147/">U.S. Department of Defense</a>\n<p>The U.S. Department of Defense (DoD) is <a href="https://www.defense.gov/News/News-Releases/News-Release-View/Article/1092364/dod-announces-the-launch-of-codemil-an-experiment-in-open-source" target="_blank">experimenting with open sourcing more of its code</a> on GitHub. <a href="http://Code.mil" target="_blank">Code.mil</a> invites developers from around the world to collaborate with federal employees on unclassified code. The Defense Digital Service (DDS), which brings in experts from top technology companies like Google, Amazon, and Netflix for short assignments, is organizing the initiative to open source more government code.</p>\n<p>“Open source and free software (which refers to software freedom, not free of cost) are industry best practices and integral parts of modern software development,” the department said in a <a href="https://www.defense.gov/News/News-Releases/News-Release-View/Article/1092364/dod-announces-the-launch-of-codemil-an-experiment-in-open-source" target="_blank">statement</a> announcing the initiative. “They, however, are concepts yet to be widely adopted within the department. With Code.mil, DoD can access a depth and breadth of technical skill previously underutilized while offering software tools created by the government for free public use.”</p>\n<p>The FAQ document for the initiative states that “modern software is open sourced software” and that the department is aiming to more actively participate in the open source and free software communities.</p>\n<p>Licensing is one of the unique challenges of making government code open source, as code written by federal employees is not protected by copyright under U.S. laws. After consulting the Open Source Initiative and Free Software Foundation, the DoD devised an open source licensing strategy where code written by federal employees will fall under the public domain with no restrictions. DDS developed a GitHub webhook to ensure commits from government employees follow the <a href="https://developercertificate.org/" target="_blank">Developer Certificate of Origin</a> process. Private sector contributions will be protected by standard OSS licenses. This is outlined in the <a href="https://github.com/deptofdefense/code.mil/blob/master/Proposal/INTENT.md" target="_blank">INTENT.md</a> document on the Code.mil repository.</p>\n<h3>Code.mil’s First Open Source Project Released Under AGPL to “Test GPL as an Approach”</h3>\n<p>In addressing one person’s <a href="https://github.com/deptofdefense/code.mil/issues/19#issuecomment-282333798" target="_blank">feedback</a> advocating for all Code.mil projects to be MIT-licensed, DDS engineer Tom Bereknyei confirmed that the team will leave this decision to each project’s leadership.</p>\n<p>“We’ve had these same discussions internally,” Bereknyei said. “We did not want to endorse a particular license and we intend each project to decide which license is appropriate for them. Some may choose MIT, BSD, Apache, or eventually GPL. We did not want to take that choice away from them.”</p>\n<p><a href="https://github.com/deptofdefense/eMCM" target="_blank">eMCM</a>, a web-based viewer for the Manual for Courts-Martial (MCM), is the first open source project to be released on Code.mil. It provides a canonical “live” edition of the manual that is easier to access and maintain than previous versions. eMCM was released this week under the AGPL license.</p>\n<p>“We chose to use the Affero General Public License (AGPL) for the eMCM because every military member has the right to know how the raw legal code (i.e., MCM) will be transformed or manipulated by the eMCM,” the Defense Digital Service stated in the <a href="https://medium.com/@DefenseDigitalService/code-mil-an-open-source-initiative-at-the-pentagon-5ae4986b79bc#.f9bw1s2ha" target="_blank">announcement</a>. “Applying the AGPL is a small but important way to help ensure the public has that freedom and transparency to the process.”</p>\n<p>In the pull-request for <a href="https://github.com/deptofdefense/eMCM/pull/5" target="_blank">updating the license on the project</a>, Bereknyei explained why he proposed the AGPL:</p>\n<blockquote><p>It’s a user-facing project, not a library. Ultimately it would be good to preserve the rights of the public to inspect how the raw MCM is transformed by the viewer.</p>\n<p>Among the projects we have, this seems to be the best candidate for a GPL test. It is fairly self contained, doesn’t integrate with any systems, front-end heavy, small enough that a corporate rewrite is easy, and uses only a few libraries. My goal is only to test GPL as an approach. If this project isn’t suited, I’m sure we can find another.</p></blockquote>\n<p>When Bereknyei was questioned by DDS colleague Nicholas Small about why he opted for AGPL over MIT, he said he wanted to protect the code from being redistributed as closed-source.</p>\n<p>“MIT would allow someone to fork, improve, and release closed-source,” Bereknyei said. “The rule of thumb I am trying to apply is that when the rights/convenience for developers are more important, go with MIT/BSD/ISC. When the rights/convenience for users are more important, go with GPL.”</p>\n<p>Historically, the DoD has <a href="http://dodcio.defense.gov/Open-Source-Software-FAQ/#Q:_When_a_DoD_contractor_is_developing_a_new_system.2Fsoftware_as_a_deliverable_in_a_typical_DoD_contract.2C_is_it_possible_to_use_existing_software_licensed_using_the_GNU_General_Public_License_.28GPL.29.3F_Can_the_DoD_used_GPL-licensed_software.3F" target="_blank">used GPL-licensed software extensively</a> and even <a href="http://dodcio.defense.gov/Open-Source-Software-FAQ/#Q:_What_license_should_the_government_or_contractor_choose.2Fselect_when_releasing_open_source_software.3F" target="_blank">recommends government contractors select a GPL-compatible license</a> when developing software as a deliverable in DoD contracts.</p>\n<p>One beneficial byproduct of the DoD’s initiative to open source more code is that the public can watch and participate as federal employees discuss license selection in the open. The department is finally recognizing that taxpayer-funded code is a public good and inviting private sector professionals to the table to build modern software together. Anyone can open an issue or pull request, regardless of their background, location, or formal qualifications. The DoD plans to expand <a href="https://github.com/deptofdefense/code.mil" target="_blank">Code.mil</a> to include projects from other DoD offices and may develop it into a full-fledged website instead of simply redirecting to GitHub.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 16 Mar 2017 04: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: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:97:"WPTavern: WPWeekly Episode 267 – Interview With Aaron D. Campbell, WordPress Security Team Lead";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67502&preview=true&preview_id=67502";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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-267-interview-with-aaron-d-campbell-wordpress-security-team-lead";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2380:"<p>In this episode, <a href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by <a href="https://aarondcampbell.com/">Aaron D. Campbell</a>, WordPress Security Team Lead. Campbell provides insight into who’s on the team and what they do behind the scenes to coordinate security releases. We discuss the complex nature of <a href="https://aarondcampbell.com/tag/disclosure/">disclosures</a>, when to publish them, and how much information they should have.</p>\n<p>In light of <a href="https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/">WordPress 4.7.2</a>, Campbell shares the lessons he learned and how they’ll be applied to future releases. If you’ve ever wondered about the security aspects of WordPress, this is the episode for you.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="https://wptavern.com/woocommerce-3-0-0-scheduled-for-release-april-4th">WooCommerce 3.0.0 Scheduled for Release April 4th</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href="https://wordpress.org/plugins/fb-live-chat/">Facebook Live Chat for WordPress</a> makes it easier for customers to connect with businesses via Facebook Messenger.</p>\n<p><a href="https://wordpress.org/plugins/cf7-database/">Contact Form 7 Database</a> saves submissions from Contact Form 7 to the database for future reference. You can also view them in the WordPress backend.</p>\n<p><a href="https://wordpress.org/plugins/total-spent-by-customer-for-woocommerce/">Total Spent by Customer for WooCommerce</a> adds a sortable column to the users list to show how much the user spent on your WooCommerce Store. This is useful to figure out who your top customers are.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 22nd 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">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="https://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #267:</strong><br />\n</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 15 Mar 2017 22:36:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:33:"HeroPress: Going Back To My Roots";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=1650";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:46:"https://heropress.com/essays/going-back-roots/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:16885:"<img width="960" height="480" src="https://heropress.com/wp-content/uploads/2017/03/031517-1024x512.jpg" class="attachment-large size-large wp-post-image" alt="Pull Quote: Thanks to the WordPress Community, I\'ve made friends for life, travelled to new places, and had adventures I never thought possible," /><p>“Get out there and look at that f****n car. <em>Look at that f****n car!</em>”</p>\n<p>And all of the good little office girls jumped up and ran outside to ogle and coo over the chairman’s latest “prestige motor.”</p>\n<p>Me being me – someone who couldn’t care less about cars, or massaging the needy egos of the men who feel a need to show them off – I stayed sat at my desk and carried on with my work.</p>\n<p>My absence outside would be noted, and would not do me any favours.</p>\n<p>I had taken a job at a local business support organisation because I needed the work. I’d been told that my experience and abilities could benefit the organisation and, by extension, the local business community. The joke was on me.</p>\n<p>In truth, the organisation was a back-slapping boys’ club which didn’t even have a business plan. Its main income source was, and remains to this day, the revenue from a vanity awards dinner, where members nominate themselves for meaningless awards and then pay thousands of pounds to find out if they won. Beyond that, its sole purpose was to provide the board and management with “prestige and status” (my manager’s words, not mine.) The office atmosphere was so toxic that the HR manager, faking every excuse in the book, hadn’t bothered to show up in months, which meant that I never saw a job description, had a performance review, or was signed up for the company pension; in fact, the only way I got a contract was by going in on a Saturday to type it up myself. It was all pretty ironic for an organisation which officially exists to support other businesses.</p>\n<p>But bills need to be paid, so I kept my head down and did my work and breathed deeply through the increasingly dysfunctional dramas of the board and management.</p>\n<blockquote><p>Believing that you can keep calm and avoid office politics in a dysfunctional workplace is a unique form of denial.</p></blockquote>\n<p>By showing up for work in the morning, observing the backstabbing behavior around you, and keeping your nose above the parapet, you make yourself easy pickings.</p>\n<p>It did not help that my job required me to read certain documents, pass on certain email exchanges, see certain expense receipts, and take minutes at certain meetings. I knew everything. I knew what everyone was up to. I knew too much.</p>\n<p>The things I knew too much about erupted violently in the space of a fortnight. Sackings, retaliatory sackings, accusations, slanders, backstabs, screaming, lies, people literally being escorted out the back door, people breaking into file cabinets and document storage, the whole ugly lot.</p>\n<p>I decided life was too short to put up with that nonsense and scurried off the sinking ship. Unemployment was preferable to working in a dysfunctional war zone.</p>\n<p>A few days later I was sitting in my living room in my pajamas (as unemployed people do), staring blankly at the Christmas tree, barely aware if it was day or night, my head still spinning about what had just happened and what I was going to do next. Then there was a knock at the door. The postman, I assumed.</p>\n<p>No, it was the police. They wanted to come in. So they did.</p>\n<p>Allegations had been made. Statements had been taken. Criminal charges would be filed.</p>\n<p>Against me.</p>\n<p>Merry Christmas.</p>\n<p>Merry Christmas to you too, I replied as I saw them out.</p>\n<p>Because that’s how office politics work, folks. You don’t walk away from egomaniacs on your own terms. That implies there is something wrong with them. They have to take you down on their own terms. That implies there is something wrong with you. You may think you have left the backstabbers to get on with their petty games without you taking the meeting minutes and processing the strip club expense receipts. You’re wrong. They have got to find a way to take you down and make you keep your mouth shut. And they will.</p>\n<h3>Moving On</h3>\n<p>I moved on with my life. I found a stable temp job which had the option to go permanent, and I was quite content with it. I even almost forgot about the police visit. The Scottish justice system, you see, is notoriously slow. So when a letter arrived four months later informing me that I would be standing in a criminal trial at the local sheriff court, I threw up.</p>\n<p>I was throwing up all the time at that point because I had just found out I was pregnant.</p>\n<p>Most women spend pregnancy in a dreamy haze surrounded by friends, family, and affection. I spent it taking unpaid breaks from my temp jobs to meet with a legal aid solicitor (being unemployed and on a temp wage, I couldn’t afford to pay a lawyer) to plan my defence. He was nice enough, but was clearly not sure what to make of the whole situation. He was used to dealing with actual crimes – stabbings, domestic assaults, and the like. And there was a five foot two pregnant lady in front of him explaining all the plot twists and characters in this pathetic real-life soap opera. He probably looked forward to getting back to the stabbings.</p>\n<p>In the meantime, for health and safety reasons, I had to inform my temp employer about the pregnancy. The permanent job offer evaporated instantly.</p>\n<blockquote><p>I spent the rest of my time taking whatever demeaning temp admin jobs a heavily pregnant woman could get in order to work the minimum number of days required to qualify for the basic state maternity allowance, which at the time was £106 a week for six months.</p></blockquote>\n<p>Suffice to say my dignity took a bit of a beating that year.</p>\n<p>By the time the date of preliminary hearing rolled around – again, the Scottish justice system being as slow as it is – I was on the edge of my third trimester. And so there I was, standing alone in the dock in a criminal courtroom, in sheriff court, next to drug dealers and knife thugs, wearing a hideous Marks and Spencer maternity dress, to plead not guilty to something that had never happened.</p>\n<p>All of that because of office politics.</p>\n<p>Now, the thing about legal aid is that you get what you pay for. My solicitor didn’t show up. He faxed an instruction to one of the solicitors at the sheriff court who acts on behalf of others in those matters. In hindsight, this was a strategy to suggest to the court that the case was so stupid it was not worth showing up for. On the day, though, I was completely, totally, alone, left to stand up and speak for myself.</p>\n<blockquote><p>The only person I had in the world to support me was kicking furiously in my stomach, as if to say: go, mum, go.</p></blockquote>\n<p>At that moment I had an insight. This, I realised, is it. This is the low point of my life. This is absolute rock bottom. It does not get any worse than this. From here, you can’t go any lower. It is only up from here. And that, standing there in that dock, was strangely liberating.</p>\n<p>Now here’s the thing about elderly male judges in curly 18th century wigs. They’re not stupid. He took one look at the charge sheet, one look at the folder of statements and evidence against me, and one look at me. He asked the befuddled prosecuting solicitor what on earth was going on here; the solicitor replied that they were looking to gather more evidence against me. “And how much longer are we to wait for that? This was ten months ago,” he replied to her, very, very cross. This is all very interesting, I thought.</p>\n<p>Two days later my solicitor phoned: the judge had ruled the case was “not in the public interest.” That is Scottish legal parlance for “an absolute load of crap.” All charges were dropped; I would have no criminal record; I was done. I was finished. I was free.</p>\n<p>Well, free, unemployed, heavily pregnant, destitute, my reputation had been destroyed, and now I had a large hole in my CV which would be awfully difficult to explain. Other than that, I was fine.</p>\n<h3>Moving On Again</h3>\n<p>I went on state maternity pay early and took some time to get my head back together. That gave me the breathing space to realise a few things.</p>\n<p>One was that I was done with office life. That meant I would have to find something to do on my own.</p>\n<p>Two was that I was pretty good with this web stuff – I’d been making web sites since 1997, had been running a very popular web site since 1998, and had always been the go-to girl for the web site in everywhere I’d ever worked – and so I might as well do that for a living.</p>\n<p>And three was that I had learned the law is bloody terrifying if you let other people blindside you with it. If you know what you are looking at, where you stand within it, and how others are seeking to use it to further their position, you are no longer a hapless bystander to it. You are an equal participant with a fair chance. That is your choice to make.</p>\n<h3>Setting Up Shop</h3>\n<p>So I set up shop as a self-employed web designer, working quite happily from home with my biggest fan babbling next to me in the playpen. The money wasn’t great, but my stress levels were non-existent, and I had no co-workers to stab me in the back.</p>\n<p>Lack of co-workers should never mean lack of colleagues, though, and after a few years I realised local business networking groups simply weren’t for me. I also needed people other than the members of an ancient listserv to bounce questions and ideas off of in real-time. By this point I’d started playing around with WordPress, and I learned about a local meetup group. I tiptoed in one night and awkwardly introduced myself and was welcomed right in.</p>\n<p>I realised over time that this was a very different sort of group. Everyone was grassroots volunteers, putting in the effort because they wanted to learn, not because they wanted social status. There was no tiresome hierarchy, no obsession with “prestige”, no kowtowing to the person with the sexiest car (in fact, we all took the bus.) If you had a question, you could ask it without being laughed out the room. No one was obliged to give anything more than they were able to give.</p>\n<blockquote><p>In short, it was my kind of group, and these were my kind of people.</p></blockquote>\n<p>After a few years we got ambitious enough to decide to put on a conference (which due to various reasons was a WordPress conference but not a WordCamp – ah, the good old days.) We were short of speakers. I suggested to Martin, the lead organiser, that someone should do a talk on that “cookie law” thing that at the time was coming into play very shortly.</p>\n<p>“Thank you for volunteering,” said Martin.</p>\n<p>“You’re a b*****d, you know that, Martin?” I replied.</p>\n<p>So Martin sent me off to do my homework and put together this conference talk. I thought it would just be a simple slide deck: what the law is, how it works, how to comply. Much to my surprise, putting that talk together changed my life.</p>\n<h3>The Old Becomes New</h3>\n<p>As I sat at my laptop, doing the research, I felt something strange stirring. It was old me.</p>\n<p>Old me, who had done an undergraduate degree in international politics. Old me, who’d been a policy intern at think tanks and research centers. Old me, who’d sat in Congressional committees and worked on the Hill and ate politics for breakfast. Old me who’d trained very hard to do one thing and had gotten sidetracked by real life and was now doing something else because something bad had happened. Old me was now new me reading the full text of a piece of EU legislation about how the internet is supposed to work while shouting at my laptop screen, “there is no bloody way that is ever going to work,” while my biggest fan looked at me baffled and then asked me for a cup of juice.</p>\n<blockquote><p>Whoever I was now, and whatever crap had happened to me in those intervening years, I was back.</p></blockquote>\n<p>That conference talk turned into an obsession. I began writing about law and policy issues that impact our work – be it regulations on accessibility, e-commerce, privacy and data protection, taxation, UX, contracts, copyright, geoblocking, or any of the smaller issues that touch our work every day. I even became a student again and earned a postgraduate certification in internet law and policy from the University of Strathclyde. I still did the client-facing web work but my enthusiasm for it waned by the month.</p>\n<p>At WordCamp London 2015 I gave a talk on various digital policy issues, then spent the rest of the time sitting in the track devoted to charity and not-for-profit web sites, as that was what my business did. As the speakers gave their superb talks I felt myself sinking lower in my chair. Another insight. Oh, woman, you’re in the wrong job. This isn’t what you are supposed to be doing. For the first time I asked myself why I was devoting such passion to the digital policy side while still carrying on with a web design business I started up to give myself a job with a newborn baby. A few months later I was flown out to Seville on a few days’ notice to speak at WordCamp Europe, where I replaced a speaker who had been hospitalised. I felt a tremendous sense of obligation because of that – it was deeply humbling to be given an opportunity because of someone else’s illness – and I resolved to do more to give back to the WordPress community.</p>\n<p>I hung up my web design mouse in the autumn of that year. I still do odd bits and bobs for a handful of existing clients but I now focus entirely on digital law and policy. My blog is read by the UK Parliament, the European Commission, and the US Department of State. I speak to non-WordPress groups ranging from Joomla developers to Ruby programmers, but WordPress remains my home and my community. I encourage members of the community to respect the law and to work within it, not to fear it. I think, all things considered, I’m more than qualified to understand why that’s true.</p>\n<p>Thanks to the WordPress community I’ve made friends for life, travelled to new places, and had adventures I never thought possible. I’ve built a new career while connecting with the important things I thought I had left behind. And last year when I was pickpocketed en route to a conference talk, the WordPress community in that city – none of whom I had ever met – leapt into action to provide me with food, beer, and hugs. In a strange city where I didn’t speak the language and had no money, being part of the community meant I didn’t have to be scared and alone.</p>\n<p>I’ve come a long way from that lonely courtroom dock.</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: Going Back To My Roots" class="rtsocial-twitter-button" href="https://twitter.com/share?text=Going%20Back%20To%20My%20Roots&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fgoing-back-roots%2F" rel="nofollow" target="_blank"></a></div></div><div class="rtsocial-fb-horizontal fb-light"><div class="rtsocial-fb-horizontal-button"><a title="Like: Going Back To My Roots" class="rtsocial-fb-button rtsocial-fb-like-light" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fgoing-back-roots%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%2Fgoing-back-roots%2F&title=Going+Back+To+My+Roots" rel="nofollow" target="_blank" title="Share: Going Back To My Roots"></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/going-back-roots/&media=https://heropress.com/wp-content/uploads/2017/03/031517-150x150.jpg&description=Going Back To My Roots" rel="nofollow" target="_blank" title="Pin: Going Back To My Roots"></a></div></div><a rel="nofollow" class="perma-link" href="https://heropress.com/essays/going-back-roots/" title="Going Back To My Roots"></a></div><p>The post <a rel="nofollow" href="https://heropress.com/essays/going-back-roots/">Going Back To My Roots</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, 15 Mar 2017 12:00:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Heather Burns";s: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:86:"WPTavern: Bocoup Launches Study to Measure Impact of Open Work on Developer Well-Being";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67447";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:97:"https://wptavern.com/bocoup-launches-study-to-measure-impact-of-open-work-on-developer-well-being";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1980:"<a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/survey.jpg?ssl=1"><img /></a>photo credit: <a href="https://stocksnap.io/photo/FI3UYVGNFD">Lukasz Kowalewski</a>\n<p><a href="https://bocoup.com/" target="_blank">Bocoup</a>, an open source technology and design consulting company, is recruiting for a new study that aims to “measure the impact of open work on developer well-being and productivity.” The company is partnering with MIT and UCLA to develop an open work email-bot that will interact with organizations that sign up to participate. The study is open to teams that use source control.</p>\n<p>“We’re defining ‘open work’ as a project where tasks/work product are/can be shared outside the group immediately responsible for those tasks,” Bocoup Director of Research Boaz Sender said.</p>\n<p>Participating organizations will get hooked up with Bocoup’s email-bot, which offers tools for recognizing team members or open source community members for their contributions to projects. Bocoup plans to publish the average results with the goal of educating businesses and policy makers about the value of open source work. Data from organizations participating in the study will be anonymized and untraceable.</p>\n<p>With all the new ways of working together on the web (GitHub, Slack, GitLab, etc.) it’s good to see a company prioritizing research on how this impacts developers. The study begins in March and will end in June. If you’re interested to have your organization be a part of it, you can find out more on the <a href="https://docs.google.com/forms/d/e/1FAIpQLSc9sYreLFTZDxn-LuUhGCl043QDcagls9g0t_TbZ3Pd3ZnYNA/viewform?c=0&w=1" target="_blank">signup form</a> and get a better understanding of the time commitment on the <a href="https://docs.google.com/document/d/1EWD9c4cmIfyNVe4pGFsvPiLO83i1ZOij4mpF-cLVfTc/edit" target="_blank">FAQ</a> page.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 15 Mar 2017 02:10:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: WooCommerce 3.0.0 Scheduled for Release April 4th";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67438";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/woocommerce-3-0-0-scheduled-for-release-april-4th";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4981:"<p>Big changes are on the way for <a href="https://wordpress.org/plugins/woocommerce/">WooCommerce</a>. Mike Jolley, lead developer of WooCommerce, <a href="https://woocommerce.wordpress.com/2017/03/13/important-update-regarding-the-upcoming-woocommerce-release-2-7-will-be-3-0-0/">announced</a> that WooCommerce 2.7 will be versioned 3.0.0 with a scheduled release date of April 4th. During the 2.7 beta testing phase, the team discovered a <a href="https://github.com/woocommerce/woocommerce/issues/13498">significant bug</a> in the way that timestamps are handled.</p>\n<p>“Essentially, some developers need a way to reliably get UTC timestamps as well as dates according to the site’s timezone,” Jolley said. “To resolve this we’re working on a solution which accepts <em>either</em> a UTC timestamp, or an ISO8601 datetime string, and returns a <a href="http://php.net/manual/en/class.datetime.php">DateTime object</a> so timezone information can be retrieved if needed. This approach is not compatible with the <code>get_date_x</code> getters found in 2.7 beta.”</p>\n<p>Beginning with WooCommerce 3.0.0, the project will use semantic versioning or <a href="http://semver.org/">SemVer</a>. WooCommerce has incrementally versioned its releases similar to WordPress. For example, WooCommerce 2.5, 2.6, 2.7. Semantic versioning allows for three digit version numbers and should make it easier to discern major versions from maintenance and bug fix releases. The three digits stand for major, minor, and patch.</p>\n<p>According to the <a href="http://semver.org/">SemVer site</a>, each number is incremented when:</p>\n<ul>\n<li>MAJOR version for incompatible API changes.</li>\n<li>MINOR version when you add functionality in a backwards-compatible manner.</li>\n<li>PATCH version when you make backwards-compatible bug fixes.</li>\n</ul>\n<p>Under this system, WooCommerce 3.0.0 is a major update with 3.1.0 being a minor update. The next major update will be 4.0.0. Developers should take note that in 3.0.0 RC1, the versioning and @since properties are relabeled to 3.0.0. “If you have used version_compare statements in your code, they will still work since 3.0.0 is greater than 2.7.0, however, you can change these for clarity,” Jolley said. Themes with template files versioned 2.7.0 may need to be updated to use 3.0.0 to prevent reports of outdated template files.</p>\n<p>In addition to version changes and fixing major bugs, the team is allowing up to three weeks for 3.0.0 RC1 to be tested. The amount of time to test has been extended from one week to three <a href="https://woocommerce.wordpress.com/2017/02/17/woocommerce-2-7-beta-3/#comment-2589">based on feedback </a>from extension developers.</p>\n<p>“An RC is really the first point in time when people can look at the code and feel confident it’s probably not going to change a lot before the official release,” Brent Shepherd, founder of <a href="http://prospress.com/">Prospress Inc</a>. said. “With that in mind, having 3 months of beta testing, but only 1 week for the RC, doesn’t make a lot of sense. It makes sense to give more time in that later stage after the RC.”</p>\n<p>Josh Kohlbach, a WooCommerce extension developer, <a href="https://woocommerce.wordpress.com/2017/02/17/woocommerce-2-7-beta-3/#comment-2604">also agreed</a> with extending the RC testing time. “Currently from our company’s perspective we’ve had to put other priorities on hold in order to put WC2.7 changes ahead,” Kohlbach said. “The 2.7 changes we were holding off on doing until RC, which is what we normally do.”</p>\n<p>“However, when it was announced that there would be only one week between, we figured that wouldn’t be enough time for proper testing and pushing updates on all of our products so we’re compatible on day one,” he said. “It just isn’t enough time so we, like many others by the sounds of it, started making our compatibility fixes around Beta 2 this time even though we knew there might be more changes coming down the pipe before RC gets here.”</p>\n<p>Extension developers are praising the team for changing to a semantic versioning system and extending the time to test Release Candidates. “I’m very happy to see these changes,” Shepherd said. “Big props for making the tough call late in the release cycle. Hopefully it will help ensure a smoother release for all WC users of this version.”</p>\n<p>“I think this is a really positive move forward for WooCommerce,” Kohlback said. “I for one want to thank you on behalf of all the third-party developers for being so open and taking on board all of our various points, really makes us happy to be part of the community!”</p>\n<p>If all goes well, you can expect to see an update for WooCommerce in your WordPress dashboard on April 4th.</p>\n<div id="epoch-width-sniffer"></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, 14 Mar 2017 22:23:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:93:"WPTavern: Varying Vagrant Vagrants 2.0.0 Introduces YAML Configuration, Revamps Documentation";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=67436";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/varying-vagrant-vagrants-2-0-0-introduces-yaml-configuration-revamps-documentation";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4545:"<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/vvv-github.png?ssl=1"><img /></a></p>\n<p><a href="https://varyingvagrantvagrants.org/blog/2017/03/13/varying-vagrant-vagrants-2-0-0.html" target="_blank">Varying Vagrant Vagrants 2.0.0</a> was released yesterday with support for a <a href="https://varyingvagrantvagrants.org/docs/en-US/vvv-config/" target="_blank">YAML configuration</a> file. This is a major improvement that gives VVV users more flexibility in customizing their configurations. The new <code>vvv-config.yml</code> file includes the defaults and users can create a <code>vvv-custom.yml</code> file to change the default provisioning. Utilities have been broken out into their own repository, allowing users to specify PHP 5.6, 7.0, or 7.1 for new projects.</p>\n<p>“In the past, it was often difficult as a maintainer to say no to feature requests because I knew that the customizations would either be really annoying for someone to implement on their own or would require a fork, possibly losing the benefit of future changes,” VVV Project Lead Jeremy Felt said. “At the same time, it was hard to say yes because not everyone needs the same features. Those two clash, and the easiest answer is to stall. The new changes provide a pretty straight forward way of providing these custom changes and make it easy to stay in sync upstream.”</p>\n<p>Version 2.0.0 was also released with <a href="https://varyingvagrantvagrants.org/docs/en-US/" target="_blank">new documentation on the VVV website</a>. Contributors are migrating docs from the wiki on GitHub to the new website and plan to make them translatable in the future.</p>\n<p>Felt also recently <a href="https://jeremyfelt.com/2017/03/05/documenting-vvvs-governance-model/" target="_blank">documented VVV’s governance model</a> and promoted Lorelei Aurora to the role of Lead Developer on the project. VVV has 108 contributors, by Felt’s count, and he estimates approximately 100 clones of the project per day based on GitHub’s analytics. For the past five years, Felt has cultivated VVV’s growing community of contributors by developing a friendly and welcoming culture within the project.</p>\n<p>“Very early on I read something about OSS project maintenance that inspired me to always greet new commenters, issue creators, and developers in an effort to make them feel welcome from the beginning,” Felt said. “Removing even the smallest hurdles of contributing to open source goes a long way. Being friendly encourages people to stick around. Even in small projects like VVV, it can be overwhelming to figure out if you’re doing things right.”</p>\n<p>Felt said he wished he would have written the governance document sooner, because it provides a roadmap for contributors. He found that having this information available to the community from the beginning may be just as important as having a license in place.</p>\n<p>“It starts to answer the ‘what kind of impact can I have’ question when someone is getting started,” Felt said. “The current list of committers is a little misleading in that they are all people who were very active early in the project, but not as much now. Their input continues to be trusted, but commit access probably won’t be used very much. This isn’t a bad thing, as a project goes through cycles, but something to keep track of as a maintainer. Having a process is a healthy thing. I’m hoping it attracts even more contributors!”</p>\n<h3>What’s Next on the VVV Roadmap?</h3>\n<p>The next focus on the VVV roadmap is building out the rest of the documentation on <a href="http://varyingvagrantvagrants.org" target="_blank">varyingvagrantvagrants.org</a>. Felt said he hopes it will become a great place for basic setup, detailed guides, and frequent troubleshooting tips. Translated docs is the next item that Felt said he hopes can be a huge benefit to the project and the community.</p>\n<p>“There are a couple things that would be fun for flexibility,” Felt said. “A long-running pull request that introduces PHP Brew would be nice to finally tackle. Introducing MySQL Sandbox would be cool. And who knows? Everyone should stop by and <a href="https://github.com/Varying-Vagrant-Vagrants/VVV" target="_blank">leave a note</a> with the feature they’d like to see most. I’m more comfortable saying ‘no’ now.”</p>\n<div id="epoch-width-sniffer"></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, 14 Mar 2017 19:28: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: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:81:"WPTavern: WordPress.com Updates Its Post Editor With a Distraction-Free Interface";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=67429";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordpress-com-updates-its-post-editor-with-a-distraction-free-interface";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3321:"<p>WordPress.com has <a href="https://en.blog.wordpress.com/2017/03/13/a-distraction-free-writing-space-at-wordpress-com/">unveiled a refreshed post editor</a> that makes content front and center.</p>\n<p>The most noticeable change is the user interface. The sidebar of meta boxes is now on the right-hand side instead of the left. Clicking the Post Settings link hides the sidebar, providing a cleaner interface. The preview and publish buttons are no longer in a metabox and are permanently displayed.</p>\n<img />New WordPress.com Post Editor\n<p>Drafts are quickly accessible by clicking the number next to the Write button. Hovering over a draft title displays a small excerpt of the post. Unlike the distraction-free writing mode in the self-hosted version of WordPress, sidebars and other items on the screen do not disappear and reappear. This animation has <a href="https://wptavern.com/whats-your-first-impression-of-distraction-free-writing-in-wordpress-4-1#comment-62784">been described</a> by some as a distraction.</p>\n<p>Joen Asmussen and Matías Ventura, two Automatticians based in Europe, helped create the new interface. In an interview conducted by John Maeda, <span class="st">Global Head of Computational Design and Inclusion at Automattic, Asmussen describes what he’s most excited about with the improvements. </span></p>\n<p>“Everything has a right place,” Asmussen said. “In this iteration, we’ve tried to find those places for the preview and publish buttons, as well as the post settings. By making the buttons permanently visible and the sidebar optionally toggled, my hope is that the combination will provide a seamless flow for both the person who just wants to <i>write</i>, as well as the person who needs to configure their post settings.”</p>\n<p>Ventura says he is happy to bring the focus back on the content by placing it in the center. “I’m also fond of the recent drafts menu next to the ‘Write’ button, as it provides a quick way to carry on with your unfinished posts,” he said. “These editor refinements have the potential to let your work on WordPress keep you deeply in the productive state of flow.”</p>\n<p>The core team continues to <a href="https://wptavern.com/wordpress-core-editor-team-publishes-ui-prototype-for-gutenberg-an-experimental-block-based-editor">work on a block based editor</a> for the open-source WordPress project and <span class="st">Asmussen</span> hints that this approach to writing could one day end up in the WordPress.com post editor.</p>\n<p>After testing the new editor on WordPress.com, I can say that it’s more enjoyable to use than the distraction-free writing mode in WordPress. There’s less distraction, meta boxes are either on the screen or they’re not, and I enjoyed writing without interface elements disappearing and reappearing on the screen.</p>\n<p>If you’d like to try the new editor on a self-hosted WordPress site, you can do so through Jetpack. Visit the Jetpack dashboard in the WordPress backend, click on the Apps link, then click the Try the New Editor button.</p>\n<p>After using the new editor, let us know what you think. How does it compare to the writing experience currently in WordPress?</p>\n<div id="epoch-width-sniffer"></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, 14 Mar 2017 02:03:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:90:"WPTavern: John Maeda’s 2017 Design in Tech Report Puts the Spotlight on Inclusive Design";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67406";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/john-maedas-2017-design-in-tech-report-puts-the-spotlight-on-inclusive-design";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6207:"<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/design-in-tech-2017.png?ssl=1"><img /></a></p>\n<p><a href="https://maedastudio.com/" target="_blank">John Maeda</a>, Automattic’s Global Head of Computational Design and Inclusion, presented his third annual “<a href="https://designintechreport.wordpress.com/" target="_blank">Design in Tech</a>” report at SXSW over the weekend. The previous reports have received more than two million views and this one is equally loaded with thought-provoking information about the future of the design industry.</p>\n<p>“Design isn’t just about beauty; it’s about market relevance and meaningful results,” Maeda said. He highlighted how design leaders are increasingly top hires at major corporations, due to market demand. Businesses are beginning to embrace design as a fundamental tool for success. Design used to be relegated to extra-curricular clubs in business schools, but many schools are shifting to include design in the curriculum.</p>\n<p>Constant connectivity in the digital era has brought the idea of “computational design” to the forefront, which Maeda describes as “designing for billions of individual people and in realtime.” Designing at this scale requires an approach that is inclusive of the widest number of consumers, essentially designing for everyone.</p>\n<p>Maeda believes that “design and inclusion are inseparable” and he is on a mission to prove that inclusive design is good business. </p>\n<p>“When we separate inclusion into essentially an HR compliance topic, it loses its energy,” Maeda said. “It’s important, of course, but it loses the creativity that’s intrinsic to inclusion.” His 2017 Design in Tech report focuses on how inclusion matters in business. Maeda admits there are not many examples of how inclusion drives better financial outcomes, but one of his professional aims is to demonstrate how inclusive design can make a financial difference.</p>\n<p>“That’s why I joined Automattic,” Maeda said. “My hope is that this approach can lead to better business outcomes for the WordPress ecosystem. I don’t know if it will be possible but that’s my goal. I want to show that it’s possible numerically.”</p>\n<p>Making inclusive design profitable hinges on the principle that if you want to reach a larger market, you have to reach people you’re not already reaching by being inclusive. This new frontier of design requires some technical understanding outside of purely classical design. The hybrid designer/developer, often referred to as a “unicorn” in the tech industry, is often relied upon to bridge that gap.</p>\n<p>Maeda predicts that the scarcity of hybrid designer/developers will soon decrease, due to how things are changing in the industry. After surveying design leaders in 2016, Maeda found that 1/3 had formal engineering/science training, suggesting that “hybrid” talent has considerably increased in recent years. He shared his observations from surveying Automattic designers and developers about JavaScript competency. He found a significant segment of designers approaching moderate fluency in JavaScript after WordPress’ 2015 initiative to encourage JavaScript mastery.</p>\n<p>“The world is moving, and moving with the world is what designers do,” Maeda said. He also made a bold recommendation for those who are maintaining a design-only skill set:</p>\n<p>“I encourage you, if you’re a pure pure designer, to ‘impurify yourself,’ because it’s a whole new world and there’s a lot to learn,” Maeda said. “Anyone who’s in this game, if you aren’t watching videos and learning, you get behind in two months.” </p>\n<p>Maeda also encouraged listeners to shed biases that prevent them from seeing important trends and changes on the web. He addressed misconceptions about how products “made in China” are often thought of as something cheap or copycat, but China is moving forward in the mobile revolution in a far more advanced way than many other countries. He highlighted some major design trends pioneered by Chinese designers and how they are impacting the tech industry. </p>\n<p>Maeda closely monitors design-related M&A activity and funds that are design and/or inclusion oriented. His data shows that tech companies are finding more value in design tool companies and design community platforms, with acquisitions steadily increasing every year. The value of design companies is especially evident in China where Maeda noted three designer co-founded Chinese companies have a combined market cap of over $300 billion. </p>\n<p>He also shared what he has learned about designers since taking his position at Automattic, which employs more than 500 people working remotely across 50 countries.</p>\n<p>“People want to have challenging work; they want to make change happen,” Maeda said. “With creative people this is their main driver. If that can’t be sated, they get unhappy and they leave. The problem is this kind of work is the kind that seems like bonus work, not the main work. So my question as a manager is, ‘How do I put the two together in some constructive way?’ How do you make time to learn and grow? That’s something I didn’t know was pervasive in a busy busy tech company.”</p>\n<p>Maeda concludes that it is a good time to be a designer, especially if you’re willing to make up for the design education gap and teach yourself new skills online. His 2017 Design in Tech report is a must-read, not just for designers but for anyone working in tech or hiring tech talent. Check out the <a href="https://designintechreport.wordpress.com/" target="_blank">full report</a> on WordPress.com. You can also <a href="https://designintechreport.wordpress.com/2017/03/12/design-in-tech-report-2017-video/" target="_blank">listen to the audio of Maeda’s presentation</a> while viewing the slides.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 13 Mar 2017 20:07: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: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:75:"Post Status: JavaScript frameworks in a WordPress context — Draft podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=35232";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://poststatus.com/javascript-frameworks-wordpress-context-draft-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2808:"<p>Welcome to the Post Status <a href="https://poststatus.com/category/draft">Draft podcast</a>, which you can find <a href="https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008">on iTunes</a>, <a href="https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast">Google Play</a>, <a href="http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast">Stitcher</a>, and <a href="http://simplecast.fm/podcasts/1061/rss">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.</p>\n<p><span>Live from the A Day of REST workshops, Brian, Joe, and Zac talk about the state of working with JavaScript — including several popular JavaScript frameworks — and WordPress. They go through the pros and cons of using each one, what to watch out for when working with them and WordPress, and ways they think the process can improve.</span></p>\n<p><!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href="https://audio.simplecast.com/62575.mp3">https://audio.simplecast.com/62575.mp3</a><br />\n<a href="https://audio.simplecast.com/62575.mp3">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href="https://javascriptforwp.com/">JavaScript for WP</a></li>\n<li><a href="https://facebook.github.io/react/">React</a></li>\n<li><a href="https://vuejs.org/">Vue</a></li>\n<li><a href="http://backbonejs.org/">Backbone</a></li>\n<li><a href="http://underscorejs.org/">Underscores</a></li>\n<li><a href="https://angularjs.org/">Angular</a></li>\n<li><a href="https://adayofrest.hm/boston-2017/">A Day of Rest</a></li>\n</ul>\n<h3>Sponsor: WP Migrate DB Pro</h3>\n<p><span>Today’s show is sponsored by</span><a href="https://deliciousbrains.com/"> <span>Delicious Brains</span></a><span>.</span><a href="https://deliciousbrains.com/wp-migrate-db-pro/"> <span>WP Migrate DB Pro</span></a> <span>makes moving and copying databases simple. They also have an exciting new project for merging databases, called Mergebot. Go to</span><a href="https://mergebot.com/"> <span>Mergebot.com</span></a><span> for updates on that, and</span><a href="https://deliciousbrains.com/"> <span>deliciousbrains.com</span></a><span> for more information on WPMigrate DB Pro. Thanks to the team at Delicious Brains for being a Post Status partner.</span></p>\n<h3>Special Thanks: Bocoup</h3>\n<p><span>Special thanks to <a href="https://bocoup.com/">Bocoup</a> for allowing us to record this podcast episode in their office. Bocoup was a partner and workshop host for A Day of REST, and were incredibly hospitable. Checkout <a href="https://bocoup.com/">Bocoup</a> to learn more about how they embrace open source as a consulting agency.</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:"Mon, 13 Mar 2017 00:56: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:14:"Katie Richards";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:74:"WPTavern: Hacker News Question: Developers with kids, how do you skill up?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67259";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"https://wptavern.com/hacker-news-question-developers-with-kids-how-do-you-skill-up";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9488:"<a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/child-theme.jpg?ssl=1"><img /></a>photo credit: <a href="https://stocksnap.io/photo/R0C7A5M4WB">Leeroy</a>\n<p>By now you’ve probably seen the viral <a href="https://twitter.com/JOE_co_uk/status/840165524038377472" target="_blank">clip</a> of a father getting interrupted by his children while giving a live interview on BBC. Working parents everywhere, especially remote workers, could identify with the humorous embarrassment of the situation. Even those who have had pets interrupt Skype calls know the feeling. You want to be thought of as a professional and taken seriously but little home office invaders have other plans.</p>\n<blockquote class="twitter-tweet">\n<p lang="en" dir="ltr">This BBC interview is amazing. Just wait until the mum rushes in… <img src="https://s.w.org/images/core/emoji/2.2.1/72x72/1f602.png" alt="😂" class="wp-smiley" /> <a href="https://t.co/LGw1ACR9rg">pic.twitter.com/LGw1ACR9rg</a></p>\n<p>— JOE.co.uk (@JOE_co_uk) <a href="https://twitter.com/JOE_co_uk/status/840165524038377472">March 10, 2017</a></p></blockquote>\n<p></p>\n<p>Many developers who work from home with children know the daily struggle of balancing family life with work, which generally leaves very little time for improving professional skills. A popular question on Hacker News this week asks, <strong>“<a href="https://news.ycombinator.com/item?id=13816627" target="_blank">Developers with kids, how do you skill up?</a>“</strong>: </p>\n<blockquote><p>I recently had one of my colleagues comment on my GitHub account graph – ‘There won’t be many green boxes in your account once you have a kid’. This was in response to my suggestions on how we should all keep learning. I argued many good programmers have family with kids and still manage to keep up. They brushed me off saying it’s just not possible or they don’t look after their kids.</p>\n<p>When I look on the internet I find people doing full time jobs delivering products while having a family and some still find plenty of time to blog or write books. How is this possible? Are these people super-human? How are you all doing or managing if you have kids/family?</p></blockquote>\n<p>The question received nearly 500 replies with tips and stories from those who are making it work. One of the first participants on the thread is <a href="https://news.ycombinator.com/item?id=13821164" target="_blank">Rachel Andrew</a>, who shares how she learned Perl as a single mother, launching a new career in web development. She said found success by “simply working every possible moment” she could and learning to be organized and focused with her time. </p>\n<p>One common theme among the replies is that having kids is like getting a crash course in time management. When your available time is significantly reduced, you are forced to become more purposeful about how you spend it.</p>\n<blockquote><p>What I learned: your time does get reduced drastically, but you spend the remaining time with more focus/direction. Also, you use your time smarter, e.g. I used to do sports (indoor climbing), but now I just cycle every day from/to work (~1 hour) to stay fit. It takes approximately the same time as going by train or car.</p></blockquote>\n<blockquote><p>If i have clear priorities in my head – what I want to achieve in the ‘extra time’ that I have got. The clearer the goal, the better the results.</p></blockquote>\n<blockquote><p>…due to lack of free time and the newfound need to use it efficiently, I’ve found that I’ve probably read more actual physics in the last four years than in the previous many years of dreaming about it.</p></blockquote>\n<blockquote><p>Time management, to me, is a more powerful “skill up” than anything that could keep your GitHub green. When you know you have limited hours in the day and you have hard time commitments, you have no choice but to learn and work efficiently.</p></blockquote>\n<blockquote><p>\nI’d add that kids have taught me to be a better planner, and to break my priorities down into small, well defined chunks that can be slotted into a busy life. This has been valuable in general, not just for programming.</p></blockquote>\n<p>One commenter said he misses the days when he could stay up all night working and exploring new technologies; now it seems the world is going on without him. Other commenters reject the idea of “skilling up” entirely and encourage the original poster not to get too hung up on shiny new frameworks.</p>\n<blockquote><p>I agree with you about the need to remain buzzword compliant for jobs, but are we “skilling up” or spinning our wheels? There is some worthwhile learning, but a lot of it is just BS status signaling. Learning another SPA framework that solves the problems of the last framework, while introducing new problems? Learning yet another way to bundle your web content? A new transpiled language to patch the holes in JavaScript?</p>\n<p>A lot of what we regard as “skilling up” is just a product of our immature dev culture-learning stuff for the sake of buzzword compliance that doesn’t improve anything in the long run. And the high failure rate of software projects shows that we aren’t gaining a lot from this culture anyway.</p></blockquote>\n<h3>Combatting the Myth that You Can’t Do Anything with Just 15 Minutes</h3>\n<p>Another theme among the comments is the “myths” parents create that keep them from using the short increments of time that pop up throughout the day. One commenter <a href="https://news.ycombinator.com/item?id=13822865" target="_blank">summarizes</a> the self-limiting mindset that many adopt after having children:</p>\n<blockquote><p>New parents create limitations for themselves in their belief that it is utterly impossible to do anything outside of parenting. The OP is saying that meaningful work can be done in the 15 minutes your baby might be asleep. A year of 15 minutes adds up to a lot.</p></blockquote>\n<p>The key to productivity is being able to take those 15 minute increments and string them into bite-sized accomplishments towards a larger goal. Developer Chris Dawson shared how he wrote an app late at night while caring for his first child. </p>\n<p>“I only have ten minutes here, fifteen minutes there. I need focused hours of time to build something. That is just a story,” Dawson said. He used these short bits of time to create <a href="http://blog.teddyhyde.com/2013/04/03/teddy-hyde-the-no-compromise-extensible-one-handed-jekyll-blog-editor-for-android" target="_blank">a one-handed blogging tool</a>, because he needed a way to blog with one hand while holding his sleeping son.</p>\n<p>“When my daughter was born two years later, my wife was so exhausted she would go to bed at 8,” Dawson said. “I’d get my son to sleep and then promised myself I would write for just fifteen minutes before bed. That usually turned into an hour or two and three years later I had written <a href="http://shop.oreilly.com/product/mobile/0636920043027.do" target="_blank">a book for O’Reilly</a>.” </p>\n<p>“There are so many times I’m exhausted after getting the kids to bed and I just browse the Internet,” Dawson said. “If I was really intentional about my time, even that fifteen minutes could be used to work towards my goals. But there is a powerful story telling me that it won’t make a difference if I just waste that time.”</p>\n<p>Dawson doesn’t consider himself an extraordinary high achiever. He found success by changing his perspective about the sleep he was losing.</p>\n<p>“I’m not the greatest developer – I struggled with the Google interview I got,” Dawson said. “But, success is 90% perspiration and 10% ingenuity. Who cares if you are sweating because you are exhausted and sleep deprived caring for infants as compared to pulling all-night coding sessions?”</p>\n<p>“Most of what we think of as being ‘too busy’ for any particular thing is a cognitive bias for forgetting just how much time we waste,” JavaScript engineer Sean McBeth said.</p>\n<p><a href="https://twitter.com/samlittlewood" target="_blank">Sam Littlewood</a>, senior architect at V-Nova, offered a few practical tips on the thread:</p>\n<ul>\n<li>Don’t use the computer to waste time – if I need decompression time, try and make it doing something w/ kids (LEGO!)</li>\n<li>A solid dev. environment where you can walk up, crank an iteration, and walk away. (Like in the time it takes a kettle to boil)</li>\n<li>Learning to code in my head – basically planning the path of changes/tests I will make next time I am back at my machine. It feels to me somewhat like the ‘method of loci’ – a definite journey. Often times, the plan goes awry, but the successes make it worth it. After 12 years of reading to the kids, I can do this whilst reading a story to them.</li>\n</ul>\n<p>The comments are full of inspiring stories and ideas for routines and tips that can help parents be more productive. There’s no magical path to success but, as many working parents have discovered, you may find more time than you thought you had.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 11 Mar 2017 23:32:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:44:"WPTavern: In Case You Missed It – Issue 18";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=67263";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wptavern.com/in-case-you-missed-it-issue-18";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7020:"<a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?ssl=1" rel="attachment wp-att-50955"><img /></a>photo credit: <a href="http://www.flickr.com/photos/112901923@N07/16153818039">Night Moves</a> – <a href="https://creativecommons.org/licenses/by-nc/2.0/">(license)</a>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2>The REST API Democratizes Reading</h2>\n<p>Mika Epstein <a href="https://halfelf.org/2017/rest-api-democratizing-reading/">explains</a> how the WordPress REST API democratizes reading by making content more discoverable and accessible.</p>\n<blockquote><p>When you look at a website you see the design and the layout and the wonderful beauty. When an app reads your data, however, it doesn’t want or need any of that. An app needs the raw data. And the REST API does that. It outputs the data in a super basic and simple way. Furthermore, it lets you add on to this and output specific data in special ways.</p></blockquote>\n<h2>TechSPARK Interviews WordCamp Bristol Organizer</h2>\n<p>Bristol, UK, is gearing up for its <a href="https://2017.bristol.wordcamp.org/">first WordCamp</a> and local media is taking notice. TechSPARK, a digital publication that covers tech in Bristol, Bath, and the West of England <a href="https://techspark.co/wordcamp-bristol/">published</a> an interview with Janice Tye, one of the lead organizers of the event.</p>\n<p>In the interview, Tye explains what a WordCamp is and how people can get involved. WordCamp Bristol takes place May 13-14th, 2017 and has a limited <a href="https://2017.bristol.wordcamp.org/tickets/">number of tickets</a> available.</p>\n<h2>Fishing Guide’s Site Used by Hackers for eCommerce Fraud</h2>\n<p>TechCrunch <a href="https://techcrunch.com/2017/03/03/woe-are-the-great-fish-of-cape-cod/">published</a> an interesting story of how a Cape Cod fishing guide’s website that runs on WordPress was hacked and used to host an eCommerce store. The moral of the story is to keep WordPress and its plugins and themes updated. An additional safety measure is to enable two-factor authentication.</p>\n<h2>Being a Full-time Contributor Through Sponsorships</h2>\n<p>Late last year, John James Jacoby <a href="https://jjj.blog/2016/12/%f0%9f%92%af%e2%88%9e/">outlined his goal</a> for his 100 initiative. “My goal is be a fully funded independent ambassador for WordPress and the surrounding initiatives, backed by many of the best companies who continue to push WordPress beyond its limits on a daily basis,” Jacoby said.</p>\n<p>Jacoby provided <a href="https://jjj.blog/2017/03/january-february/">an update</a> on what he’s been working on since obtaining sponsorship from Pagely and Pantheon. He plans to take a two-week break in March to attend WordCamp Miami and will be speaking at other events. If you’re interested in sponsoring Jacoby to work on WordPress full-time for a month, please get <a href="http://jjj.me/">in touch with him</a>.</p>\n<h1 class="entry-title">Mode Effect Builds Website for WordPress.com’s Affiliate Program</h1>\n<p><a href="https://modeeffect.com/">Mode Effect</a>, a web design agency, <a href="https://modeeffect.com/wordpress-com-creators-select-wordpress-agency-mode-effect-to-build-affiliate-program/">built the site</a> for <a href="https://refer.wordpress.com/">WordPress.com’s affiliate program</a>. According to Jon Burke, team lead for events, marketing, and advertising at Automattic, the agency was chosen based on recommendations and its previous work with the <a href="https://vip.wordpress.com/">WordPress VIP program</a>.</p>\n<h2>New Features for WordPress.com Stats</h2>\n<p>WordPress.com unveiled a <a href="https://en.blog.wordpress.com/2017/03/06/your-stats-page-updated/">number of new enhancements</a> to WordPress.com stats. More insights, summaries, and better use of wide screens are just a few of the improvements that were made.</p>\n<h2>Remembering HostReviews.io</h2>\n<p>Kevin Ohashi, founder of Review Signal, takes a <a href="http://reviewsignal.com/blog/2017/03/06/goodbye-hostingreviews-io-i-will-miss-you/">look back at </a><span class="skimlinks-unlinked"><a href="http://reviewsignal.com/blog/2017/03/06/goodbye-hostingreviews-io-i-will-miss-you/">HostingReviews.io</a> created by Steven Gliebe that was recently acquired by HostingFacts.com. </span></p>\n<p>“I’m truly saddened because it’s disappearing at some point ‘soon.’ The only real competitor whose data I trusted to compare myself against. So I thought I would take the opportunity to write about my favorite competitor,” Ohashi said.</p>\n<p>He compared the data that was manually curated by Gliebe to the data on Review Signal and discovered it was similar. Ohashi says he will miss having a trustworthy competitor to compare his data too.</p>\n<p>“It has been nice having <span class="skimlinks-unlinked">HostingReviews.io</span> around when it was actively being updated (the manual process is certainly overwhelming for any individual I think!). I will miss having a real competitor to compare what I’m seeing in my data.”</p>\n<h2>Challenges of Security Disclosure</h2>\n<p>Aaron Campbell, WordPress security lead, <a href="https://aarondcampbell.com/2017/03/the-difficulties-of-security-disclosure/">provides insight</a> into the challenges associated with security disclosure. Campbell describes disclosure as a constant balancing act.</p>\n<p>“But security isn’t a single balancing act,” Campbell said. “Many of the decisions we must make require finding the right balance. Each requires thought and consideration, as well as a clear set of priorities. Especially when it comes to disclosing vulnerabilities.”</p>\n<p>“Every situation is going to be unique, but knowing the right questions to ask will help. The time to think through these questions is now, hopefully long before you are faced with them.”</p>\n<p>On the topic of security disclosure, I recommend reading <a href="https://nacin.com/2014/05/30/security-is-nuanced/">Security is Nuanced</a> by Andrew Nacin.</p>\n<h2>WordCamp Auckland Wapuu!</h2>\n<p>In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don’t know, Wapuu is the <a href="http://wapuu.jp/2015/12/12/wapuu-origins/">unofficial mascot</a> of the WordPress project.</p>\n<p><img /></p>\n<p>WordCamp <a href="https://2017.auckland.wordcamp.org/">Auckland, New Zealand</a> is this weekend and the event’s Wapuu is appropriately enough, holding a Kiwi.</p>\n<p>That’s it for issue eighteen. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 11 Mar 2017 02:07:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:43;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:42:"Matt: Review: From Plato to Post-modernism";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=47161";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"https://ma.tt/2017/03/review-from-plato-to-post-modernism/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2379:"<p><img />One thing I’m going to try this year is to write a review of every book I get a chance to read. It’s March already so I’m a bit behind and the next few will be out of order, but this seems like as good a place to start as any.</p>\n<p>One new thing I’ve been doing this year is listening to audiobooks with an Audible account, so this first book review is actually an audiobook. <a href="http://www.thegreatcourses.com/">Great Courses</a> is actually an old school thing where you could order college lectures on tape. From the references throughout the lectures I listened to, my guess is that the recordings are from the 90s. This one is called <a href="https://www.amazon.com/dp/B00DTO6LZ2/">From Plato to Post-modernism: Understanding the Essence of Literature and the Role of the Author</a> ($25 on Audible, $9.99 on cassette tape <img src="https://s.w.org/images/core/emoji/2.2.1/72x72/1f643.png" alt="🙃" class="wp-smiley" />).</p>\n<p>I really enjoyed this series. Some of the early lectures covering Aristotle, Longinus, and Sidney’s “Apology for Poetry” were quite brilliant. Later ones from Foucault and Derrida on were weaker and harder to follow, which I think is a function of both the material, which can be dense when it starts getting into Modernism, the length, fixed at 30 minutes, and the lecturer, <a href="https://en.wikipedia.org/wiki/Louis_Markos">Louis Markos</a>. Markos teaches <a href="https://www.hbu.edu/contact/louis-markos/">at Houston Baptist University</a> and his asides can sometimes be a little traditional, but in an adorable grandpa way. He has an infectious enthusiasm that makes even the slower chapters on Kant and Schiller bearable, but his love of and fluency in the earlier classics is really a pleasure.</p>\n<p>It made me curious to look into more online lectures and sometime this year I’m going to check out <a href="https://www.khanacademy.org/partner-content/wi-phi/wiphi-value-theory">this one on Value Theory at Khan academy</a>. I also picked up a used copy of <a href="https://www.amazon.com/gp/product/0155055046/">Critical Theory Since Plato</a> which had the original text for many things discussed in the lecture, so was a great reference point when I was at home in Houston, where I end up listening to most audio content since it’s a driving town.</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, 10 Mar 2017 20:48:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:66:"WPTavern: “Open Source in Brazil” eBook Now Available for Free";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=66404";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/open-source-in-brazil-ebook-now-available-for-free";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3365:"<a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/brazil.jpg?ssl=1"><img /></a>photo credit: <a href="https://commons.wikimedia.org/w/index.php?title=User:Ccarelo&action=edit&redlink=1" class="new" title="User:Ccarelo (page does not exist)">Ccarelo</a> – <span class="int-own-work" lang="en">Own work</span>, <a href="http://creativecommons.org/licenses/by-sa/3.0" title="Creative Commons Attribution-Share Alike 3.0">CC BY-SA 3.0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=40606618">Link</a>\n<p><a href="http://www.oreilly.com/programming/free/files/open-source-in-brazil.pdf" target="_blank">Open Source in Brazil</a> is a new free eBook from O’Reilly Media that offers an inside look into the growth of Brazil’s free software community despite the country’s unique barriers. Brazil has a vibrant IT and startup culture and hosts the largest open source conference in Latin America, <a href="http://softwarelivre.org/fisl16" target="_blank">Fórum Internacional Software Livre (FISL)</a>. The conference has been running for 17 years and had 5,200 participants in 2016.</p>\n<p>According to Andy Oram, the book’s author, open source software is ubiquitous in the country but challenges in business, education, and government have slowed its wider adoption. The book offers a fascinating account of how the free software movement won political favor in the early 2000’s, launching many governmental initiatives to use open source solutions instead of proprietary software.</p>\n<p>Unfortunately, the government was unable to deliver on these initiatives due to lack of expertise in evaluating software and working with open source communities. These factors, combined with a scarcity of local companies to help bridge the gap, and eventually corruption, caused more delays to converting government operations to open source software. These setbacks resulted in what Oram described as “inertia and corruption that leave companies and government agencies feeding huge amounts of money into proprietary software that was designed for the North American market.”</p>\n<p>Brazil has also struggled to keep highly skilled developers who can mentor the next generation due to a “brain drain” to international cities with higher wages:</p>\n<blockquote><p>The education of developers that takes place in many developed countries is hampered in Brazil, as in many countries, by a brain drain. Basically, if you become an expert in your technological area, you can get a foreign job that pays more than Brazillian jobs and offers the enticements of living in a major tech center such as London or San Francisco. Thus, the people who could be attending meetups and mentoring the next generation of experts are drawn away.</p></blockquote>\n<p>Despite the free software community’s temporary loss of momentum, its unique challenges have prompted Brazilian developers to rely less on government support and find new ways of promoting open source software. “Open Source in Brazil” is available for free in both <a href="http://www.oreilly.com/programming/free/files/open-source-in-brazil.pdf" target="_blank">English</a> and <a href="http://www.oreilly.com/programming/free/open-source-no-brasil.csp" target="_blank">Portuguese</a>.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 10 Mar 2017 18:19: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: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:45:"BuddyPress: BuddyPress 2.8.2 Security Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:32:"https://buddypress.org/?p=264593";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"https://buddypress.org/2017/03/buddypress-2-8-2-security-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:843:"<p>BuddyPress 2.8.2 is now available. This is a security release. We strongly encourage all BuddyPress sites to upgrade as soon as possible.</p>\n<p>BuddyPress 2.8.1 and earlier versions were affected by the following three security issues:</p>\n<ol>\n<li>Cross-site request forgery (CSRF) in the XProfile administration Dashboard panel.</li>\n<li>Cross-site request forgery (CSRF) in a number of user-facing AJAX endpoints.</li>\n<li>Cross-site request forgery (CSRF) when dismissing a pending email change.</li>\n</ol>\n<p>These vulnerabilities were reported privately by <a href="https://dk.linkedin.com/in/skansing">Ronnie Skansing</a>. Our thanks to Ronnie for reporting security issues in accordance with <a href="https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/">WordPress’s security policies</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, 10 Mar 2017 16:04: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:12:"Boone Gorges";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:74:"WPTavern: WeFoster Launches Hosting Platform Catered to Online Communities";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67151";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wefoster-launches-hosting-platform-catered-to-online-communities";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5536:"<p><a href="https://wefoster.co/">WeFoster</a>, co-founded by <a href="https://wefoster.co/profiles/marion/profile/">Marion Gooding</a> and <a href="https://wefoster.co/profiles/bowromir/profile/">Bowe Frankema</a>, is a new managed hosting platform fine-tuned specifically for online communities.</p>\n<p>The duo came up with the idea for WeFoster <a href="https://wefoster.co/about/">two years ago</a> at WordCamp London 2015. “Bowe and I sat down and thought of ideas on how we could contribute to the open source community,” Gooding said. “We eventually decided on BuddyPress and to build a business around it. We brainstormed on the basic premise of growing awareness, interest, and the user base of BuddyPress.”</p>\n<p>While BuddyPress is at the core of what WeFoster does, it isn’t limited to it. The hosting provider caters to all kinds of community building tools whether its <a href="https://www.peepso.com/">Peepso</a>, <a href="https://s2member.com/">s2Member</a>, or <a href="https://www.memberpress.com/">Memberpress</a>.</p>\n<p>One of the things that sets WeFoster apart is its community creation wizard. Customers are asked a series of questions related to their community. For example, one of the questions asks if you’d like to have discussion forums. If you answer yes, bbPress will automatically be installed in the background. This process replaces the need to manually search and install a variety of plugins after installing WordPress.</p>\n<img />WeFoster Community Creation Wizard\n<p>When creating a community, customers can select from a set of partner templates. Partner templates are pre-configured WordPress installations setup specifically around a product. Partner templates include a white labeled dashboard allowing partners to brand it to match their product. Partners also receive a variety of other perks.</p>\n<p>The partner program is not an affiliate program and partners are hand selected. The team is looking for partners that are in line with the company’s vision of building better communities. For more information and to apply to be a partner, check out the <a href="https://wefoster.co/platform/partners/">partner application</a> page.</p>\n<h2>WeFoster Uses Google’s Cloud Platform</h2>\n<p>WeFoster is built on <a href="https://cloud.google.com/">Google’s Cloud Platform</a> enabling each site to be hosted in a container separate from others. The technology stack consists of PHP7, Nginx, Redis/Memcached, and MariaDB. If for whatever reason you need to downgrade to PHP 5.6, you can do so at the click of a button.</p>\n<img />Switching PHP Versions\n<p>WeFoster uses a custom caching solution dubbed CommunityCaching that it claims loads sites up to six times faster than traditional shared hosts and almost twice as fast as Managed WordPress hosts.</p>\n<p>The host is also a certified CloudFlare partner taking advantage of CloudFlare’s data centers located across the world. The partnership provides access to free SSL certificates. All sites created on WeFoster have SSL enabled by default and are served over the <a href="https://www.cloudflare.com/http2/what-is-http2/">HTTP/2 protocol</a>.</p>\n<p>Sites are actively monitored for malware and are backed up to Amazon Secure Storage. Site owners can restore to any point in time since backups are stored indefinitely.</p>\n<h2>Tools for Developers</h2>\n<p>Although WeFoster has focused on eliminating technical hurdles experienced by those who manage online communities, the company didn’t forget about developers. Each site has a developer section that includes a code editor, database manager, an area for debugging, and other related tools. The code editor is a full-featured IDE that works in the browser. This eliminates the need use an FTP client to upload files to the web server.</p>\n<img />Developer Tools\n<p>Those who manage sites using a command line interface will be happy to know that WeFoster supports <a href="http://wp-cli.org/">WP-CLI</a>.</p>\n<img />WP-CLI Support\n<h2>The WeFoster Community Hub</h2>\n<p>In addition to hosting communities, WeFoster itself <a href="https://wefoster.co/platform/community-features/">is a community</a>. The WeFoster community hub is a place where community builders share advice, network with other builders, and gain access to exclusive resources. Prospecting developers can join the <a href="https://wefoster.co/profiles/type/developers/">developer directory</a> and be part of <a href="https://wefoster.co/platform/community-care/">Community Care</a>. Community Care enables community managers to submit tasks that are then completed by one or more experts from the developer directory for a fee.</p>\n<h2>Co-Founders Give a Guided Tour</h2>\n<p>WeFoster offers a <a href="https://wefoster.co/platform/launch">seven-day free trial</a> for all <a href="https://wefoster.co/platform/pricing/">its plans</a> and will migrate existing communities for free. Prices start at $29 per month for the Village plan and go as high as $249 for the Metropolis plan. If at the end of the trial period you decide not to use the service, remove your payment information so you don’t get charged.</p>\n<p>What I’ve highlighted above is only scratching the surface as to what WeFoster offers. To learn and see how it works, watch this 47 minute video where Gooding and Frankema give a guided tour and explain the thought process behind many of its features.</p>\n<div class="embed-wrap"></div>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 10 Mar 2017 06:23:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:118:"WPTavern: Stack Overflow Jobs Data Shows ReactJS Skills in High Demand, WordPress Market Oversaturated with Developers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"https://wptavern.com/?p=67202";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:128:"https://wptavern.com/stack-overflow-jobs-data-shows-reactjs-skills-in-high-demand-wordpress-market-oversaturated-with-developers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4805:"<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2016/07/stack-overflow.png?ssl=1"><img /></a></p>\n<p>Stack Overflow published its analysis of <a href="https://stackoverflow.blog/2017/03/09/developer-hiring-trends-2017/" target="_blank">2017 hiring trends</a> based on the targeting options employers selected when posting to <a href="http://stackoverflow.com/jobs" target="_blank">Stack Overflow Jobs</a>. The report, which compares data from 200 companies since 2015, ranks ReactJS, Docker, and Ansible at the top of the fastest growing skills in demand. When comparing the percentage change from 2015 to 2016, technologies like AJAX, Backbone.js, jQuery, and WordPress are less in demand.</p>\n<p><a href="https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/ChangesinDemand.png?ssl=1"><img /></a></p>\n<p>Stack Overflow also measured the demand relative to the available developers in different tech skills. The demand for backend, mobile, and database engineers is higher than the number of qualified candidates available. WordPress is last among the oversaturated fields with a surplus of developers relative to available positions.</p>\n<p><a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/HighDemand.png?ssl=1"><img /></a></p>\n<p>In looking at these results, it’s important to consider the inherent biases within the Stack Overflow ecosystem. In 2016, the site surveyed more than 56,000 developers but noted that the survey was “biased against devs who don’t speak English.” The average age of respondents was 29.6 years old and 92.8% of them were male. </p>\n<p>For two years running, Stack Overflow survey respondents have <a href="https://wptavern.com/stack-overflow-survey-results-show-wordpress-is-trending-up-despite-being-ranked-among-most-dreaded-technologies" target="_blank">ranked WordPress among the most dreaded technologies</a> that they would prefer not to use. This may be one reason why employers wouldn’t be looking to advertise positions on the site’s job board, which is the primary source of the data for this report.</p>\n<p>Many IT career forecasts focus more generally on job descriptions and highest paying positions. Stack Overflow is somewhat unique in that it identifies trends in specific tech skills, pulling this data out of how employers are tagging their listings for positions. It presents demand in terms of number of skilled developers relative to available positions, a slightly more complicated approach than measuring demand based on advertised salary. However, Stack Overflow’s data presentation could use some refining. </p>\n<p>One commenter, Bruce Van Horn, <a href="https://stackoverflow.blog/2017/03/09/developer-hiring-trends-2017/#comment-3194770754" target="_blank">noted</a> that jobs tagged as “Full Stack Developer” already assume many of the skills that are listed separately: </p>\n<blockquote><p>I wonder how many of these skills are no longer listed because they are “table stakes”. You used to have to put CSS, jQuery, and JSON on the job description. I wouldn’t expect to have to put that on a Full Stack Developer description today – if you don’t know those then you aren’t a Full Stack Web Developer, and I’m more interested in whether you know the shiny things like React, Redux, and Angular2.</p></blockquote>\n<p>It would be interesting to know what is meant by tagging “WordPress” as a skill – whether it is the general ability to work within the WordPress ecosystem of tools or if it refers to specific skills like PHP. Browsing a few jobs on Stack Overflow, <a href="http://stackoverflow.com/jobs?sort=i&q=wordpress" target="_blank">WordPress positions</a> vary in the skills they require, such as React.js, Angular, PHP, HTML, CSS, and other technologies. This is a reflection of the diversity of technology that can be leveraged in creating WordPress-powered sites and applications, and several of these skills are listed independently of WordPress in the data. </p>\n<p>Regardless of how much credibility you give Stack Overflow’s analysis of hiring trends, the report’s recommendation for those working in technologies oversaturated with developers is a good one: “Consider brushing up on some technologies that offer higher employer demand and less competition.” WordPress’ code base is currently <a href="https://www.openhub.net/p/wordpress/analyses/latest/languages_summary" target="_blank">59% PHP and 27% JavaScript</a>. The percentage of PHP has grown over time, but newer features and improvements to core are also being built in JavaScript. These are both highly portable skills that are in demand on the web.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 09 Mar 2017 23:16: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: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:45:"WPTavern: Google Launches Invisible reCAPTCHA";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=67177";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/google-launches-invisible-recaptcha";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4216:"<p>Three years ago Google introduced its new <a href="https://wptavern.com/googles-new-recaptcha-api-replaces-distorted-text-with-a-checkbox" target="_blank">reCAPTCHA v2 API</a>, replacing distorted text challenges with a simple “I’m not a robot” checkbox for validating users. This was a welcome improvement over the fuzzy text in a box that frustrated and infuriated real humans.</p>\n<a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/recaptcha.png?ssl=1"><img /></a>reCAPTCHA v1\n<a href="https://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/nocaptcha.gif?ssl=1"><img /></a>reCAPTCHA v2 photo credit: <a href="http://googleonlinesecurity.blogspot.com/2014/12/are-you-robot-introducing-no-captcha.html">Google Online Security Blog</a>\n<p>reCAPTCHA v1 is no longer supported as of May 2016 and most sites have moved on to use v2. WordPress.org was one of the early adopters of reCAPTCHA v2 and still uses it to validate users on its <a href="https://login.wordpress.org/register" target="_blank">registration form</a>. </p>\n<p>The evolution of reCAPTCHA technology continues, as Google <a href="https://www.google.com/recaptcha/admin" target="_blank">opened up registration</a> for its new Invisible reCAPTCHA today. With the exception of the “Protected by reCAPTCHA” badge on forms, the newest implementation is invisible. It doesn’t require the user to click anything. Invisible reCAPTCHA validates users in the background and is invoked when the user clicks on an existing button on the site. It can also be invoked by a JavaScript API call. If it deems the traffic to be suspicious, it will require the user to solve a captcha. </p>\n<h3>Invisible reCaptcha for WordPress</h3>\n<p><a href="https://wordpress.org/plugins/invisible-recaptcha/" target="_blank">Invisible reCaptcha for WordPress</a> is the first plugin to implement the new API. It was launched in December 2016, shortly after Invisible reCAPTCHA went into beta. The settings page lets users paste in the site key and secret key Google issues after <a href="https://www.google.com/recaptcha/admin" target="_blank">registering on the reCAPTCHA site</a>. </p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/invisible-recaptcha-settings.png?ssl=1"><img /></a></p>\n<p>Invisible reCaptcha for WordPress has options to enable protection on the WordPress login, registration, comments, and forgot password forms. It is compatible with WooCommerce for protecting the login, registration, product review, lost password, and reset password forms. The plugin also works with Contact Form 7 to protect form submission.</p>\n<p>On the frontend users will see the “Protected by reCAPTCHA” badge. I’m not fond of the sticky badge on the right side of the viewport that slides out on hover, as it seems too obtrusive. It looks better in the context of the form, and the plugin offers an option to display it inline and add custom CSS.</p>\n<p><a href="https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/invisible-recaptcha-plugin-frontend.png?ssl=1"><img /></a></p>\n<p>After testing the plugin and seeing Invisible reCAPTCHA in action, I was impressed with how easy it was to set up. It took less than a minute to get my site added at Google and the plugin configured. However, I was disappointed that the captcha is not truly invisible. Google’s overt branding on what is meant to be an invisible product makes it only a slight improvement over the v2 checkbox implementation in terms of what the user sees when interacting with the form. It is possible to hide the badge using CSS but this may violate reCAPTCHA’s policies, as the badge links to Google’s terms and privacy documents.</p>\n<p><a href="https://wordpress.org/plugins/invisible-recaptcha/" target="_blank">Invisible reCaptcha for WordPress</a> is free on WordPress.org and should greatly reduce the spam coming through WordPress forms. The plugin is compatible with Multisite and can be activated network-wide or on a single site. Detailed instructions for extending it to protect any plugin or custom form are available on WordPress.org.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 09 Mar 2017 05:13: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: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:101:"WPTavern: WPWeekly Episode 266 – Clef Is Shutting Down, Configuring User Avatars, and WPCampus 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:58:"https://wptavern.com?p=67181&preview=true&preview_id=67181";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:106:"https://wptavern.com/wpweekly-episode-266-clef-is-shutting-down-configuring-user-avatars-and-wpcampus-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:4263:"<p>In this episode, <a href="http://marcuscouch.com/">Marcus Couch</a> and I discuss the stories that are making headlines including, Clef shutting down, WordPress 4.7.3, and WordPress.com’s new add-on for Chrome. I shared two lessons I recently learned from managing a site that has open registration and uses BuddyPress. We also share details of WPCampus 2017.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="https://wptavern.com/wordpress-4-7-3-patches-six-security-vulnerabilities-immediate-update-advised">WordPress 4.7.3 Patches Six Security Vulnerabilities, Immediate Update Advised</a><br />\n<a href="https://wptavern.com/clef-is-shutting-down-june-6th">Clef is Shutting Down June 6th</a><br />\n<a href="https://wptavern.com/wordpress-com-releases-chrome-add-on-for-google-docs">WordPress.com Releases Chrome Add-On for Google Docs</a><br />\n<a href="https://wptavern.com/freemius-launches-insights-for-wordpress-themes">Freemius Launches Insights for WordPress Themes</a><br />\n<a href="https://wptavern.com/configuring-a-user-avatar-in-wordpress-is-not-as-easy-as-it-should-be">Configuring a User Avatar in WordPress Is Not as Easy as It Should Be</a><br />\n<a href="https://wptavern.com/buddypress-core-contributors-working-on-a-way-to-safely-edit-a-groups-permalink">BuddyPress Core Contributors Working on a Way to Safely Edit a Group’s Permalink</a><br />\n<a href="https://wptavern.com/wpcampus-2017-to-take-place-july-14-15-in-buffalo-ny">WPCampus 2017 to Take Place July 14-15 in Buffalo, NY</a></p>\n<h2>What’s on WordPress.tv:</h2>\n<p><a href="http://wordpress.tv/2017/03/06/wordpress-community-interview-with-jenny-beaumont/">WordPress Community Interview With Jenny Beaumont </a></p>\n<p>Jenny Beaumont is a multicultural, multidisciplinary maker and writer of things. She is a leader of people and of projects, who values communication above all else as a means to successful collaboration. Jenny and Paolo Belcastro, are the co-organizers of WordCamp Europe. She is the team lead of the local WordPress Community.</p>\n<p><a href="http://wordpress.tv/2017/03/05/rob-ruiz-admin-experience-the-new-ux/">Rob Ruiz: Admin Experience – The New UX</a></p>\n<p>This presentation is part of WordCamp Omaha 2016. Too often, User Experience is only considered on the front-end of a WordPress site design. Although that is very important, too many WP Designers/Developers stop there. This video goes over tricks and methods to make updating and administrating WordPress sites much more user-friendly for the admin/site-owner/client.</p>\n<p><a href="http://wordpress.tv/2016/10/27/chris-klosowski-democratizing-inspiration/">Chris Klosowski: Democratizing Inspiration</a></p>\n<p>This presentation is part of WordCamp Phoenix 2016. All businesses and stories start as an idea. WordPress is a democratized platform for that inspiration, where ideas are empowered to evolve into meaningful products and stories that shape and create the world we want.</p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href="https://wordpress.org/plugins/clone-menu/">WP Clone Menu</a> enables you to clone menus using existing menus.</p>\n<p><a href="https://wordpress.org/plugins/list-images-to-optimize/">WordPress List Images to Optimize</a> gives users an idea of which ones need to be optimized or re-uploaded.</p>\n<p><a href="https://wordpress.org/plugins/wp-raffle/">WP Raffle</a> fully automates an online raffle. Simply install, start the appropriate raffle and prizes, and this plugin does the rest; picking the winners at the designated raffle draw date.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 15th 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">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="https://wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #266:</strong><br />\n</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 09 Mar 2017 02:49: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:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";O:42:"Requests_Utility_CaseInsensitiveDictionary":1:{s:7:"\0*\0data";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Fri, 31 Mar 2017 23:15:21 GMT";s:12:"content-type";s:8:"text/xml";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Fri, 31 Mar 2017 23:00:12 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";s:16:"content-encoding";s:4:"gzip";}}s:5:"build";s:14:"20170331230759";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(125, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1491045318', 'no'),
(126, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1491002118', 'no'),
(127, '_transient_timeout_plugin_slugs', '1491088520', 'no'),
(128, '_transient_plugin_slugs', 'a:2:{i:0;s:19:"akismet/akismet.php";i:1;s:9:"hello.php";}', 'no'),
(129, '_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b', '1491045320', 'no'),
(130, '_transient_dash_88ae138922fe95674369b1cb3d215a2b', '<div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-release/\'>WordPress 4.7.3 Security and Maintenance Release</a> <span class="rss-date">March 6, 2017</span><div class="rssSummary">WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata. Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-app-for-android-adds-better-support-for-jetpack-enabled-sites\'>WPTavern: WordPress App for Android Adds Better Support for Jetpack-Enabled Sites</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/community-team-releases-plugin-that-displays-wordpress-events-nearby\'>WPTavern: Community Team Releases Plugin That Displays WordPress Events Nearby</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/new-wpstats-me-site-displays-wordpress-org-plugin-download-stats\'>WPTavern: New WPstats.me Site Displays WordPress.org Plugin Download Stats</a></li></ul></div><div class="rss-widget"><ul></ul></div>', 'no');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default');
-- --------------------------------------------------------
--
-- Table structure for table `wp_posts`
--
CREATE TABLE `wp_posts` (
`ID` bigint(20) UNSIGNED NOT NULL,
`post_author` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_posts`
--
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-03-31 23:15:06', '2017-03-31 23:15:06', 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2017-03-31 23:15:06', '2017-03-31 23:15:06', '', 0, 'http://localhost/wp-fumbling/wp-plugins-testing/?p=1', 0, 'post', '', 1),
(2, 1, '2017-03-31 23:15:06', '2017-03-31 23:15:06', '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://localhost/wp-fumbling/wp-plugins-testing/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-03-31 23:15:06', '2017-03-31 23:15:06', '', 0, 'http://localhost/wp-fumbling/wp-plugins-testing/?page_id=2', 0, 'page', '', 0),
(3, 1, '2017-03-31 23:15:16', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2017-03-31 23:15:16', '0000-00-00 00:00:00', '', 0, 'http://localhost/wp-fumbling/wp-plugins-testing/?p=3', 0, 'post', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_termmeta`
--
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
CREATE TABLE `wp_terms` (
`term_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_relationships`
--
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_taxonomy`
--
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `wp_usermeta`
--
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, '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:"0da1fe25a853d8bd69e00dc74998c1503a9064767129da153c79baf138e6a806";a:4:{s:10:"expiration";i:1492211708;s:2:"ip";s:3:"::1";s:2:"ua";s:114:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36";s:5:"login";i:1491002108;}s:64:"c62e2932bd70076ae4e19dd014d766f5d0be72e578d40fd51ec4e010377a1f0f";a:4:{s:10:"expiration";i:1492211714;s:2:"ip";s:3:"::1";s:2:"ua";s:114:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36";s:5:"login";i:1491002114;}}'),
(16, 1, 'wp_dashboard_quick_press_last_post_id', '3');
-- --------------------------------------------------------
--
-- Table structure for table `wp_users`
--
CREATE TABLE `wp_users` (
`ID` bigint(20) UNSIGNED NOT NULL,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_users`
--
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, 'admin', '$P$BHR1Ea92svBC4q.J.szAaCRl3p/T9J.', 'admin', '[email protected]', '', '2017-03-31 23:15:06', '', 0, 'admin');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `comment_id` (`comment_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_comments`
--
ALTER TABLE `wp_comments`
ADD PRIMARY KEY (`comment_ID`),
ADD KEY `comment_post_ID` (`comment_post_ID`),
ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
ADD KEY `comment_date_gmt` (`comment_date_gmt`),
ADD KEY `comment_parent` (`comment_parent`),
ADD KEY `comment_author_email` (`comment_author_email`(10));
--
-- Indexes for table `wp_links`
--
ALTER TABLE `wp_links`
ADD PRIMARY KEY (`link_id`),
ADD KEY `link_visible` (`link_visible`);
--
-- Indexes for table `wp_options`
--
ALTER TABLE `wp_options`
ADD PRIMARY KEY (`option_id`),
ADD UNIQUE KEY `option_name` (`option_name`);
--
-- Indexes for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `post_id` (`post_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_posts`
--
ALTER TABLE `wp_posts`
ADD PRIMARY KEY (`ID`),
ADD KEY `post_name` (`post_name`(191)),
ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
ADD KEY `post_parent` (`post_parent`),
ADD KEY `post_author` (`post_author`);
--
-- Indexes for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `term_id` (`term_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_terms`
--
ALTER TABLE `wp_terms`
ADD PRIMARY KEY (`term_id`),
ADD KEY `slug` (`slug`(191)),
ADD KEY `name` (`name`(191));
--
-- Indexes for table `wp_term_relationships`
--
ALTER TABLE `wp_term_relationships`
ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);
--
-- Indexes for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
ADD PRIMARY KEY (`term_taxonomy_id`),
ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
ADD KEY `taxonomy` (`taxonomy`);
--
-- Indexes for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
ADD PRIMARY KEY (`umeta_id`),
ADD KEY `user_id` (`user_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_users`
--
ALTER TABLE `wp_users`
ADD PRIMARY KEY (`ID`),
ADD KEY `user_login_key` (`user_login`),
ADD KEY `user_nicename` (`user_nicename`),
ADD KEY `user_email` (`user_email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_comments`
--
ALTER TABLE `wp_comments`
MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_links`
--
ALTER TABLE `wp_links`
MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_options`
--
ALTER TABLE `wp_options`
MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=131;
--
-- AUTO_INCREMENT for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_posts`
--
ALTER TABLE `wp_posts`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_terms`
--
ALTER TABLE `wp_terms`
MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT for table `wp_users`
--
ALTER TABLE `wp_users`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;