-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordpress.sql
699 lines (622 loc) · 409 KB
/
wordpress.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 20, 2015 at 06:29 PM
-- Server version: 5.5.41-0ubuntu0.14.04.1
-- PHP Version: 5.5.9-1ubuntu4.5
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 utf8 */;
--
-- Database: `wordpress`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE IF NOT EXISTS `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 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, 'Mr WordPress', '', 'https://wordpress.org/', '', '2015-02-20 08:47:24', '2015-02-20 08:47:24', 'Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE IF NOT EXISTS `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE IF NOT EXISTS `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=240 ;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost/wordpress', 'yes'),
(2, 'home', 'http://localhost/wordpress', 'yes'),
(3, 'blogname', 'tahsin's garage', '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', '', 'yes'),
(29, 'gzipcompression', '0', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:1:{i:0;s:27:"woocommerce/woocommerce.php";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'advanced_edit', '0', 'yes'),
(37, 'comment_max_links', '2', 'yes'),
(38, 'gmt_offset', '0', 'yes'),
(39, 'default_email_category', '1', 'yes'),
(40, 'recently_edited', '', 'no'),
(41, 'template', 'twentyfifteen', 'yes'),
(42, 'stylesheet', 'twentyfifteen', 'yes'),
(43, 'comment_whitelist', '1', 'yes'),
(44, 'blacklist_keys', '', 'no'),
(45, 'comment_registration', '0', 'yes'),
(46, 'html_type', 'text/html', 'yes'),
(47, 'use_trackback', '0', 'yes'),
(48, 'default_role', 'subscriber', 'yes'),
(49, 'db_version', '30133', 'yes'),
(50, 'uploads_use_yearmonth_folders', '1', 'yes'),
(51, 'upload_path', '', 'yes'),
(52, 'blog_public', '1', 'yes'),
(53, 'default_link_category', '2', 'yes'),
(54, 'show_on_front', 'posts', 'yes'),
(55, 'tag_base', '', 'yes'),
(56, 'show_avatars', '1', 'yes'),
(57, 'avatar_rating', 'G', 'yes'),
(58, 'upload_url_path', '', 'yes'),
(59, 'thumbnail_size_w', '150', 'yes'),
(60, 'thumbnail_size_h', '150', 'yes'),
(61, 'thumbnail_crop', '1', 'yes'),
(62, 'medium_size_w', '300', 'yes'),
(63, 'medium_size_h', '300', 'yes'),
(64, 'avatar_default', 'mystery', 'yes'),
(65, 'large_size_w', '1024', 'yes'),
(66, 'large_size_h', '1024', 'yes'),
(67, 'image_default_link_type', 'file', 'yes'),
(68, 'image_default_size', '', 'yes'),
(69, 'image_default_align', '', 'yes'),
(70, 'close_comments_for_old_posts', '0', 'yes'),
(71, 'close_comments_days_old', '14', 'yes'),
(72, 'thread_comments', '1', 'yes'),
(73, 'thread_comments_depth', '5', 'yes'),
(74, 'page_comments', '0', 'yes'),
(75, 'comments_per_page', '50', 'yes'),
(76, 'default_comments_page', 'newest', 'yes'),
(77, 'comment_order', 'asc', 'yes'),
(78, 'sticky_posts', 'a:0:{}', 'yes'),
(79, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(80, 'widget_text', 'a:0:{}', 'yes'),
(81, 'widget_rss', 'a:0:{}', 'yes'),
(82, 'uninstall_plugins', 'a:0:{}', 'no'),
(83, 'timezone_string', '', 'yes'),
(84, 'page_for_posts', '0', 'yes'),
(85, 'page_on_front', '0', 'yes'),
(86, 'default_post_format', '0', 'yes'),
(87, 'link_manager_enabled', '0', 'yes'),
(88, 'initial_db_version', '30133', 'yes'),
(89, 'wp_user_roles', 'a:7:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:132:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:9:"add_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;s:18:"manage_woocommerce";b:1;s:24:"view_woocommerce_reports";b:1;s:12:"edit_product";b:1;s:12:"read_product";b:1;s:14:"delete_product";b:1;s:13:"edit_products";b:1;s:20:"edit_others_products";b:1;s:16:"publish_products";b:1;s:21:"read_private_products";b:1;s:15:"delete_products";b:1;s:23:"delete_private_products";b:1;s:25:"delete_published_products";b:1;s:22:"delete_others_products";b:1;s:21:"edit_private_products";b:1;s:23:"edit_published_products";b:1;s:20:"manage_product_terms";b:1;s:18:"edit_product_terms";b:1;s:20:"delete_product_terms";b:1;s:20:"assign_product_terms";b:1;s:15:"edit_shop_order";b:1;s:15:"read_shop_order";b:1;s:17:"delete_shop_order";b:1;s:16:"edit_shop_orders";b:1;s:23:"edit_others_shop_orders";b:1;s:19:"publish_shop_orders";b:1;s:24:"read_private_shop_orders";b:1;s:18:"delete_shop_orders";b:1;s:26:"delete_private_shop_orders";b:1;s:28:"delete_published_shop_orders";b:1;s:25:"delete_others_shop_orders";b:1;s:24:"edit_private_shop_orders";b:1;s:26:"edit_published_shop_orders";b:1;s:23:"manage_shop_order_terms";b:1;s:21:"edit_shop_order_terms";b:1;s:23:"delete_shop_order_terms";b:1;s:23:"assign_shop_order_terms";b:1;s:16:"edit_shop_coupon";b:1;s:16:"read_shop_coupon";b:1;s:18:"delete_shop_coupon";b:1;s:17:"edit_shop_coupons";b:1;s:24:"edit_others_shop_coupons";b:1;s:20:"publish_shop_coupons";b:1;s:25:"read_private_shop_coupons";b:1;s:19:"delete_shop_coupons";b:1;s:27:"delete_private_shop_coupons";b:1;s:29:"delete_published_shop_coupons";b:1;s:26:"delete_others_shop_coupons";b:1;s:25:"edit_private_shop_coupons";b:1;s:27:"edit_published_shop_coupons";b:1;s:24:"manage_shop_coupon_terms";b:1;s:22:"edit_shop_coupon_terms";b:1;s:24:"delete_shop_coupon_terms";b:1;s:24:"assign_shop_coupon_terms";b:1;s:17:"edit_shop_webhook";b:1;s:17:"read_shop_webhook";b:1;s:19:"delete_shop_webhook";b:1;s:18:"edit_shop_webhooks";b:1;s:25:"edit_others_shop_webhooks";b:1;s:21:"publish_shop_webhooks";b:1;s:26:"read_private_shop_webhooks";b:1;s:20:"delete_shop_webhooks";b:1;s:28:"delete_private_shop_webhooks";b:1;s:30:"delete_published_shop_webhooks";b:1;s:27:"delete_others_shop_webhooks";b:1;s:26:"edit_private_shop_webhooks";b:1;s:28:"edit_published_shop_webhooks";b:1;s:25:"manage_shop_webhook_terms";b:1;s:23:"edit_shop_webhook_terms";b:1;s:25:"delete_shop_webhook_terms";b:1;s:25:"assign_shop_webhook_terms";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;}}s:8:"customer";a:2:{s:4:"name";s:8:"Customer";s:12:"capabilities";a:3:{s:4:"read";b:1;s:10:"edit_posts";b:0;s:12:"delete_posts";b:0;}}s:12:"shop_manager";a:2:{s:4:"name";s:12:"Shop Manager";s:12:"capabilities";a:110:{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:4:"read";b:1;s:18:"read_private_pages";b:1;s:18:"read_private_posts";b:1;s:10:"edit_users";b:1;s:10:"edit_posts";b:1;s:10:"edit_pages";b:1;s:20:"edit_published_posts";b:1;s:20:"edit_published_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"edit_private_posts";b:1;s:17:"edit_others_posts";b:1;s:17:"edit_others_pages";b:1;s:13:"publish_posts";b:1;s:13:"publish_pages";b:1;s:12:"delete_posts";b:1;s:12:"delete_pages";b:1;s:20:"delete_private_pages";b:1;s:20:"delete_private_posts";b:1;s:22:"delete_published_pages";b:1;s:22:"delete_published_posts";b:1;s:19:"delete_others_posts";b:1;s:19:"delete_others_pages";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:17:"moderate_comments";b:1;s:15:"unfiltered_html";b:1;s:12:"upload_files";b:1;s:6:"export";b:1;s:6:"import";b:1;s:10:"list_users";b:1;s:18:"manage_woocommerce";b:1;s:24:"view_woocommerce_reports";b:1;s:12:"edit_product";b:1;s:12:"read_product";b:1;s:14:"delete_product";b:1;s:13:"edit_products";b:1;s:20:"edit_others_products";b:1;s:16:"publish_products";b:1;s:21:"read_private_products";b:1;s:15:"delete_products";b:1;s:23:"delete_private_products";b:1;s:25:"delete_published_products";b:1;s:22:"delete_others_products";b:1;s:21:"edit_private_products";b:1;s:23:"edit_published_products";b:1;s:20:"manage_product_terms";b:1;s:18:"edit_product_terms";b:1;s:20:"delete_product_terms";b:1;s:20:"assign_product_terms";b:1;s:15:"edit_shop_order";b:1;s:15:"read_shop_order";b:1;s:17:"delete_shop_order";b:1;s:16:"edit_shop_orders";b:1;s:23:"edit_others_shop_orders";b:1;s:19:"publish_shop_orders";b:1;s:24:"read_private_shop_orders";b:1;s:18:"delete_shop_orders";b:1;s:26:"delete_private_shop_orders";b:1;s:28:"delete_published_shop_orders";b:1;s:25:"delete_others_shop_orders";b:1;s:24:"edit_private_shop_orders";b:1;s:26:"edit_published_shop_orders";b:1;s:23:"manage_shop_order_terms";b:1;s:21:"edit_shop_order_terms";b:1;s:23:"delete_shop_order_terms";b:1;s:23:"assign_shop_order_terms";b:1;s:16:"edit_shop_coupon";b:1;s:16:"read_shop_coupon";b:1;s:18:"delete_shop_coupon";b:1;s:17:"edit_shop_coupons";b:1;s:24:"edit_others_shop_coupons";b:1;s:20:"publish_shop_coupons";b:1;s:25:"read_private_shop_coupons";b:1;s:19:"delete_shop_coupons";b:1;s:27:"delete_private_shop_coupons";b:1;s:29:"delete_published_shop_coupons";b:1;s:26:"delete_others_shop_coupons";b:1;s:25:"edit_private_shop_coupons";b:1;s:27:"edit_published_shop_coupons";b:1;s:24:"manage_shop_coupon_terms";b:1;s:22:"edit_shop_coupon_terms";b:1;s:24:"delete_shop_coupon_terms";b:1;s:24:"assign_shop_coupon_terms";b:1;s:17:"edit_shop_webhook";b:1;s:17:"read_shop_webhook";b:1;s:19:"delete_shop_webhook";b:1;s:18:"edit_shop_webhooks";b:1;s:25:"edit_others_shop_webhooks";b:1;s:21:"publish_shop_webhooks";b:1;s:26:"read_private_shop_webhooks";b:1;s:20:"delete_shop_webhooks";b:1;s:28:"delete_private_shop_webhooks";b:1;s:30:"delete_published_shop_webhooks";b:1;s:27:"delete_others_shop_webhooks";b:1;s:26:"edit_private_shop_webhooks";b:1;s:28:"edit_published_shop_webhooks";b:1;s:25:"manage_shop_webhook_terms";b:1;s:23:"edit_shop_webhook_terms";b:1;s:25:"delete_shop_webhook_terms";b:1;s:25:"assign_shop_webhook_terms";b:1;}}}', 'yes'),
(90, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(91, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(92, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(93, 'widget_archives', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(94, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'sidebars_widgets', 'a:3:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:13:"array_version";i:3;}', 'yes'),
(96, 'cron', 'a:9:{i:1424428251;a:1:{s:32:"woocommerce_cancel_unpaid_orders";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1424460180;a:1:{s:20:"wp_maybe_auto_update";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1424465249;a:1:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1424465250;a:2:{s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1424467851;a:1:{s:28:"woocommerce_cleanup_sessions";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1424476800;a:1:{s:27:"woocommerce_scheduled_sales";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1424510795;a:1:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1424511051;a:1:{s:30:"woocommerce_tracker_send_event";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'),
(98, '_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.1.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-4.1.1.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-4.1.1-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-4.1.1-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"4.1.1";s:7:"version";s:5:"4.1.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.1";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1424422058;s:15:"version_checked";s:5:"4.1.1";s:12:"translations";a:0:{}}', 'yes'),
(99, '_transient_random_seed', 'a4a6315ec9f01d7ee4a3e0270a2db611', 'yes'),
(101, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1424424633;s:7:"checked";a:3:{s:19:"akismet/akismet.php";s:5:"3.0.4";s:9:"hello.php";s:3:"1.6";s:27:"woocommerce/woocommerce.php";s:5:"2.3.4";}s:8:"response";a:0:{}s:12:"translations";a:0:{}s:9:"no_update";a:3:{s:19:"akismet/akismet.php";O:8:"stdClass":6:{s:2:"id";s:2:"15";s:4:"slug";s:7:"akismet";s:6:"plugin";s:19:"akismet/akismet.php";s:11:"new_version";s:5:"3.0.4";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.3.0.4.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";}s:27:"woocommerce/woocommerce.php";O:8:"stdClass":7:{s:2:"id";s:5:"25331";s:4:"slug";s:11:"woocommerce";s:6:"plugin";s:27:"woocommerce/woocommerce.php";s:11:"new_version";s:5:"2.3.4";s:14:"upgrade_notice";s:251:"2.3.0 is a major update so it is important that you make backups, test extensions and your theme prior to updating, and ensure extensions are 2.3 compatible. Developers should catch up with develop.woothemes.com to see what has been happening in core.";s:3:"url";s:42:"https://wordpress.org/plugins/woocommerce/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/woocommerce.2.3.4.zip";}}}', 'yes'),
(104, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1424422065;s:7:"checked";a:3:{s:13:"twentyfifteen";s:3:"1.0";s:14:"twentyfourteen";s:3:"1.3";s:14:"twentythirteen";s:3:"1.4";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'),
(105, '_site_transient_timeout_browser_bea150940125c472cba307b7df1e6e11', '1425026860', 'yes'),
(106, '_site_transient_browser_bea150940125c472cba307b7df1e6e11', 'a:9:{s:8:"platform";s:5:"Linux";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"40.0.2214.111";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(107, 'can_compress_scripts', '0', 'yes'),
(108, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1424465266', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(109, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:49:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:26:"https://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Feb 2015 23:40: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:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:39:"http://wordpress.org/?v=4.2-alpha-31481";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"WordPress 4.1.1 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2015/02/wordpress-4-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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2015/02/wordpress-4-1-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Feb 2015 23:40: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:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3436";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:345:"WordPress 4.1.1 is now available. This maintenance release fixes 21 bugs in version 4.1. Some of you may have been waiting to update to the latest version until now, but there just wasn’t much to address. WordPress 4.1 was a smooth-sailing release and has seen more than 14 million downloads in the last two months. For a full […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3086:"<p>WordPress 4.1.1 is now available. This maintenance release fixes 21 bugs in version 4.1.</p>\n<p>Some of you may have been waiting to update to the latest version until now, but there just wasn’t much to address. WordPress 4.1 was a smooth-sailing release and has seen more than 14 million downloads in the last two months.</p>\n<p class="p1"><span class="s1">For a full list of changes, consult the <a href="https://core.trac.wordpress.org/query?milestone=4.1.1&group=severity&order=component">list of tickets</a> and the <a href="https://core.trac.wordpress.org/log/branches/4.1?stop_rev=30974&rev=31474">changelog</a>. We fixed one annoying issue where a tag and a category with the same name could get muddled and prevent each other from being updated.</span></p>\n<p>If you are one of the millions already running WordPress 4.1 and your site, we’ve started rolling out automatic background updates for 4.1.1 for sites <a href="https://wordpress.org/plugins/background-update-tester/">that support them</a>. Otherwise, <a href="https://wordpress.org/download/">download WordPress 4.1.1</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Thanks to everyone who contributed to 4.1.1: <a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="https://profiles.wordpress.org/chrico">ChriCo</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/dlh">David Herrera</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/hissy">Takuro Hishikawa</a>, <a href="https://profiles.wordpress.org/ipm-frommen">Thorsten Frommen</a>, <a href="https://profiles.wordpress.org/iseulde">Iseulde</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/sippis">sippis</a>, <a href="https://profiles.wordpress.org/tmatsuur">tmatsuur</a>, <a href="https://profiles.wordpress.org/tyxla">Marin Atanasov</a>, <a href="https://profiles.wordpress.org/valendesigns">Derek Herman</a>, and <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>.</p>\n<p>It is with both great honor and sadness we also recognize Kim Parsell as a contributor to this release and a <a href="https://make.wordpress.org/docs/2015/01/05/rip-kim-parsell/">truly beloved member of the community</a> until her untimely passing in December. The project is working to establish a conference travel <a href="https://make.wordpress.org/community/2015/01/15/remembering-kim-parsell/">scholarship</a> in her memory. We miss you, Kim.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2015/02/wordpress-4-1-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"WordPress 4.1 “Dinah”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"https://wordpress.org/news/2014/12/dinah/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:50:"https://wordpress.org/news/2014/12/dinah/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 18 Dec 2014 18:35:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3386";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:360:"Version 4.1 of WordPress, named “Dinah” in honor of jazz singer Dinah Washington, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style. Introducing Twenty Fifteen Our newest default theme, Twenty Fifteen, is […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:22698:"<p>Version 4.1 of WordPress, named “Dinah” in honor of jazz singer <a href="http://wikipedia.org/wiki/Dinah_Washington">Dinah Washington</a>, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style.</p>\n<hr />\n<h2 style="text-align: center">Introducing Twenty Fifteen</h2>\n<p><img class="aligncenter size-large wp-image-3389" src="https://wordpress.org/news/files/2014/12/2015-laptop-1024x533.png" alt="2015-laptop" width="692" height="360" /></p>\n<h3>Our newest default theme, Twenty Fifteen, is a blog-focused theme designed for clarity.</h3>\n<p><img class="alignright wp-image-3426 size-medium" src="https://wordpress.org/news/files/2014/12/2015-phones-languages-small-300x250.png" alt="" width="300" height="250" />Twenty Fifteen has flawless language support, with help from <a href="https://www.google.com/get/noto/">Google’s Noto font family</a>.</p>\n<p>The straightforward typography is readable on any screen size.</p>\n<p>Your content always takes center stage, whether viewed on a phone, tablet, laptop, or desktop computer.</p>\n<hr />\n<h2 style="text-align: center">Distraction-free writing</h2>\n<p><img class="aligncenter size-large wp-image-3392" src="https://wordpress.org/news/files/2014/12/dfw-screen-1024x614.png" alt="dfw-screen" width="692" height="415" /></p>\n<h3 style="text-align: center"><em>Just write.</em></h3>\n<p>Sometimes, you just need to concentrate on putting your thoughts into words. Try turning on <strong>distraction-free writing mode</strong>. When you start typing, all the distractions will fade away, letting you focus solely on your writing. All your editing tools instantly return when you need them.</p>\n<hr />\n<h2 style="text-align: center">The Finer Points</h2>\n<h5><strong><img class="alignleft wp-image-3405" src="https://wordpress.org/news/files/2014/12/icon-language2.png" alt="" width="80" height="80" /></strong>Choose a language</h5>\n<p>Right now, WordPress 4.1 is already translated into over forty languages, with more always in progress. You can switch to any translation on the General Settings screen.</p>\n<h5><strong><img class="alignleft wp-image-3406" src="https://wordpress.org/news/files/2014/12/icon-logout1.png" alt="" width="80" height="80" /></strong>Log out everywhere</h5>\n<p>If you’ve ever worried you forgot to sign out from a shared computer, you can now go to your profile and log out everywhere.</p>\n<h5><strong><img class="alignleft wp-image-3407" src="https://wordpress.org/news/files/2014/12/icon-vine1.png" alt="" width="80" height="80" /></strong>Vine embeds</h5>\n<p>Embedding videos from Vine is as simple as pasting a URL onto its own line in a post. See the <a href="https://codex.wordpress.org/Embeds">full list</a> of supported embeds.</p>\n<h5><strong><img class="alignleft wp-image-3408" src="https://wordpress.org/news/files/2014/12/icon-recommended1.png" alt="" width="80" height="80" /></strong>Plugin recommendations</h5>\n<p>The plugin installer suggests plugins for you to try. Recommendations are based on the plugins you and other users have installed.</p>\n<hr />\n<h2 style="text-align: center">Under the Hood</h2>\n<h5>Complex Queries</h5>\n<p>Metadata, date, and term queries now support advanced conditional logic, like nested clauses and multiple operators — <code>A AND ( B OR C )</code>.</p>\n<h5>Customizer API</h5>\n<p>The customizer now supports conditionally showing panels and sections based on the page being previewed.</p>\n<h5><code><title></code> tags in themes</h5>\n<p><code>add_theme_support( ''title-tag'' )</code> tells WordPress to handle the complexities of document titles.</p>\n<h5>Developer Reference</h5>\n<p>Continued improvements to inline code documentation have made the <a href="https://developer.wordpress.org/reference/">developer reference</a> more complete than ever.</p>\n<hr />\n<h2 style="text-align: center">The Choir</h2>\n<p>This release was led by <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, with the help of these awesome folks. Check out some of their profiles while listening to Dinah Washington on the music service of your choice:</p>\n<a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/kawauso">Adam Harley (Kawauso)</a>, <a href="https://profiles.wordpress.org/adelval">adelval</a>, <a href="https://profiles.wordpress.org/ajay">Ajay</a>, <a href="https://profiles.wordpress.org/akeda">Akeda Bagus</a>, <a href="https://profiles.wordpress.org/xknown">Alex Concha</a>, <a href="https://profiles.wordpress.org/tellyworth">Alex Shiels</a>, <a href="https://profiles.wordpress.org/aliso">Alison Barrett</a>, <a href="https://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="https://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="https://profiles.wordpress.org/norcross">Andrew Norcross</a>, <a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/rarst">Andrey "Rarst" Savchenko</a>, <a href="https://profiles.wordpress.org/andykeith">Andy Keith</a>, <a href="https://profiles.wordpress.org/andy">Andy Skelton</a>, <a href="https://profiles.wordpress.org/atimmer">Anton Timmermans</a>, <a href="https://profiles.wordpress.org/aubreypwd">aubreypwd</a>, <a href="https://profiles.wordpress.org/barry">Barry</a>, <a href="https://profiles.wordpress.org/toszcze">Bartosz Romanowski</a>, <a href="https://profiles.wordpress.org/bassgang">bassgang</a>, <a href="https://profiles.wordpress.org/bcworkz">bcworkz</a>, <a href="https://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="https://profiles.wordpress.org/neoxx">Bernhard Riedl</a>, <a href="https://profiles.wordpress.org/bigdawggi">bigdawggi</a>, <a href="https://profiles.wordpress.org/bobbravo2">Bob Gregor</a>, <a href="https://profiles.wordpress.org/bobbingwide">bobbingwide</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone B. Gorges</a>, <a href="https://profiles.wordpress.org/bradt">Brad Touesnard</a>, <a href="https://profiles.wordpress.org/bradparbs">bradparbs</a>, <a href="https://profiles.wordpress.org/bramd">Bram Duvigneau</a>, <a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="https://profiles.wordpress.org/brasofilo">brasofilo</a>, <a href="https://profiles.wordpress.org/bravokeyl">bravokeyl</a>, <a href="https://profiles.wordpress.org/bpetty">Bryan Petty</a>, <a href="https://profiles.wordpress.org/cgaffga">cgaffga</a>, <a href="https://profiles.wordpress.org/chiragswadia">Chirag Swadia</a>, <a href="https://profiles.wordpress.org/chouby">Chouby</a>, <a href="https://profiles.wordpress.org/cmmarslender">Chris Marslender</a>, <a href="https://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="https://profiles.wordpress.org/chrisscott">Chris Scott</a>, <a href="https://profiles.wordpress.org/chriseverson">chriseverson</a>, <a href="https://profiles.wordpress.org/chrisguitarguy">chrisguitarguy</a>, <a href="https://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="https://profiles.wordpress.org/ciantic">ciantic</a>, <a href="https://profiles.wordpress.org/antorome">Comparativa de Bancos</a>, <a href="https://profiles.wordpress.org/cojennin">Connor Jennings</a>, <a href="https://profiles.wordpress.org/corvannoorloos">Cor van Noorloos</a>, <a href="https://profiles.wordpress.org/corphi">Corphi</a>, <a href="https://profiles.wordpress.org/cramdesign">cramdesign</a>, <a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="https://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>, <a href="https://profiles.wordpress.org/dannydehaan">Danny de Haan</a>, <a href="https://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="https://profiles.wordpress.org/eightface">Dave Kellam</a>, <a href="https://profiles.wordpress.org/dpe415">DaveE</a>, <a href="https://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>, <a href="https://profiles.wordpress.org/davidanderson">David Anderson</a>, <a href="https://profiles.wordpress.org/davidmarichal">David Marichal</a>, <a href="https://profiles.wordpress.org/denis-de-bernardy">Denis de Bernardy</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/dougwollison">Doug Wollison</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/drprotocols">DrProtocols</a>, <a href="https://profiles.wordpress.org/dustyf">Dustin Filippini</a>, <a href="https://profiles.wordpress.org/eatingrules">eatingrules</a>, <a href="https://profiles.wordpress.org/plocha">edik</a>, <a href="https://profiles.wordpress.org/oso96_2000">Eduardo Reveles</a>, <a href="https://profiles.wordpress.org/eliorivero">Elio Rivero</a>, <a href="https://profiles.wordpress.org/enej">enej</a>, <a href="https://profiles.wordpress.org/ericlewis">Eric Lewis</a>, <a href="https://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="https://profiles.wordpress.org/evarlese">Erica Varlese</a>, <a href="https://profiles.wordpress.org/ejdanderson">Evan Anderson</a>, <a href="https://profiles.wordpress.org/fahmiadib">Fahmi Adib</a>, <a href="https://profiles.wordpress.org/fboender">fboender</a>, <a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="https://profiles.wordpress.org/ounziw">Fumito MIZUNO</a>, <a href="https://profiles.wordpress.org/garyc40">Gary Cao</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/genkisan">genkisan</a>, <a href="https://profiles.wordpress.org/soulseekah">Gennady Kovshenin</a>, <a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="https://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>, <a href="https://profiles.wordpress.org/vancoder">Grant Mangham</a>, <a href="https://profiles.wordpress.org/tivnet">Gregory Karpinsky (@tivnet)</a>, <a href="https://profiles.wordpress.org/hakre">hakre</a>, <a href="https://profiles.wordpress.org/hanni">hanni</a>, <a href="https://profiles.wordpress.org/helen">Helen Hou-Sandí</a>, <a href="https://profiles.wordpress.org/iandstewart">Ian Stewart</a>, <a href="https://profiles.wordpress.org/ippetkov">ippetkov</a>, <a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="https://profiles.wordpress.org/jackreichert">Jack Reichert</a>, <a href="https://profiles.wordpress.org/_jameslee">jameslee</a>, <a href="https://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="https://profiles.wordpress.org/janrenn">janrenn</a>, <a href="https://profiles.wordpress.org/jaycc">JayCC</a>, <a href="https://profiles.wordpress.org/jeffsebring">Jeff Sebring</a>, <a href="https://profiles.wordpress.org/jenmylo">Jen</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/jesin">Jesin A</a>, <a href="https://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="https://profiles.wordpress.org/jnielsendotnet">jnielsendotnet</a>, <a href="https://profiles.wordpress.org/jartes">Joan Artes</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/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/duck_">Jon Cave</a>, <a href="https://profiles.wordpress.org/jond3r">Jonas Bolinder (jond3r)</a>, <a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="https://profiles.wordpress.org/shelob9">Josh Pollock</a>, <a href="https://profiles.wordpress.org/joshuaabenazer">Joshua Abenazer</a>, <a href="https://profiles.wordpress.org/jstraitiff">jstraitiff</a>, <a href="https://profiles.wordpress.org/juliobox">Julio Potier</a>, <a href="https://profiles.wordpress.org/kopepasah">Justin Kopepasah</a>, <a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="https://profiles.wordpress.org/kadamwhite">K.Adam White</a>, <a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="https://profiles.wordpress.org/kasparsd">Kaspars</a>, <a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="https://profiles.wordpress.org/kerikae">kerikae</a>, <a href="https://profiles.wordpress.org/kworthington">Kevin Worthington</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/klihelp">klihelp</a>, <a href="https://profiles.wordpress.org/knutsp">Knut Sparhell</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/drozdz">Krzysiek Drozdz</a>, <a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="https://profiles.wordpress.org/ldebrouwer">ldebrouwer</a>, <a href="https://profiles.wordpress.org/leewillis77">Lee Willis</a>, <a href="https://profiles.wordpress.org/lpointet">lpointet</a>, <a href="https://profiles.wordpress.org/spmlucas">Lucas Karpiuk</a>, <a href="https://profiles.wordpress.org/lkwdwrd">Luke Woodward</a>, <a href="https://profiles.wordpress.org/nofearinc">Mario Peshev</a>, <a href="https://profiles.wordpress.org/mark8barnes">Mark Barnes</a>, <a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="https://profiles.wordpress.org/marventus">Marventus</a>, <a href="https://profiles.wordpress.org/iammattthomas">Matt (Thomas) Miklic</a>, <a href="https://profiles.wordpress.org/mjbanks">Matt Banks</a>, <a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="https://profiles.wordpress.org/mboynes">Matthew Boynes</a>, <a href="https://profiles.wordpress.org/mdbitz">Matthew Denton</a>, <a href="https://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="https://profiles.wordpress.org/mattonomics">mattonomics</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/mcadwell">mcadwell</a>, <a href="https://profiles.wordpress.org/meloniq">meloniq</a>, <a href="https://profiles.wordpress.org/michelwppi">Michel - xiligroup dev</a>, <a href="https://profiles.wordpress.org/gradyetc">Mike Burns</a>, <a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="https://profiles.wordpress.org/mikemanger">Mike Manger</a>, <a href="https://profiles.wordpress.org/mikeschinkel">Mike Schinkel</a>, <a href="https://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="https://profiles.wordpress.org/mikecorkum">mikecorkum</a>, <a href="https://profiles.wordpress.org/mitchoyoshitaka">mitcho (Michael Yoshitaka Erlewine)</a>, <a href="https://profiles.wordpress.org/batmoo">Mohammad Jangda</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/Nao">Naoko Takano</a>, <a href="https://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>, <a href="https://profiles.wordpress.org/nendeb55">nendeb55</a>, <a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="https://profiles.wordpress.org/nicolealleyinteractivecom">Nicole Arnold</a>, <a href="https://profiles.wordpress.org/nikv">Nikhil Vimal (NikV)</a>, <a href="https://profiles.wordpress.org/nivijah">Nivi Jah</a>, <a href="https://profiles.wordpress.org/nunomorgadinho">Nuno Morgadinho</a>, <a href="https://profiles.wordpress.org/olivm">olivM</a>, <a href="https://profiles.wordpress.org/jbkkd">Omer Korner</a>, <a href="https://profiles.wordpress.org/originalexe">OriginalEXE</a>, <a href="https://profiles.wordpress.org/patricknami">patricknami</a>, <a href="https://profiles.wordpress.org/pbearne">Paul Bearne</a>, <a href="https://profiles.wordpress.org/djpaul">Paul Gibbs</a>, <a href="https://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="https://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="https://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="https://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="https://profiles.wordpress.org/nprasath002">Prasath Nadarajah</a>, <a href="https://profiles.wordpress.org/prettyboymp">prettyboymp</a>, <a href="https://profiles.wordpress.org/raamdev">Raam Dev</a>, <a href="https://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="https://profiles.wordpress.org/mauryaratan">Ram Ratan Maurya</a>, <a href="https://profiles.wordpress.org/ramonchiara">ramonchiara</a>, <a href="https://profiles.wordpress.org/rhyswynne">Rhys Wynne</a>, <a href="https://profiles.wordpress.org/ricardocorreia">Ricardo Correia</a>, <a href="https://profiles.wordpress.org/richard2222">Richard</a>, <a href="https://profiles.wordpress.org/theorboman">Richard Sweeney</a>, <a href="https://profiles.wordpress.org/iamfriendly">Richard Tape</a>, <a href="https://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>, <a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, <a href="https://profiles.wordpress.org/robmiller">robmiller</a>, <a href="https://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="https://profiles.wordpress.org/romaimperator">romaimperator</a>, <a href="https://profiles.wordpress.org/roothorick">roothorick</a>, <a href="https://profiles.wordpress.org/ruudjoyo">Ruud Laan</a>, <a href="https://profiles.wordpress.org/ryan">Ryan Boren</a>, <a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="https://profiles.wordpress.org/salcode">Sal Ferrarello</a>, <a href="https://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>, <a href="https://profiles.wordpress.org/sandyr">Sandeep</a>, <a href="https://profiles.wordpress.org/scottlee">Scott Lee</a>, <a href="https://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="https://profiles.wordpress.org/greglone">ScreenfeedFr</a>, <a href="https://profiles.wordpress.org/scribu">scribu</a>, <a href="https://profiles.wordpress.org/sdasse">sdasse</a>, <a href="https://profiles.wordpress.org/bootsz">Sean Butze</a>, <a href="https://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="https://profiles.wordpress.org/nessworthy">Sean Nessworthy</a>, <a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/shahpranaf">shahpranaf</a>, <a href="https://profiles.wordpress.org/shinichin">ShinichiN</a>, <a href="https://profiles.wordpress.org/pross">Simon Prosser</a>, <a href="https://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="https://profiles.wordpress.org/siobhan">Siobhan</a>, <a href="https://profiles.wordpress.org/siobhyb">Siobhan Bamber (siobhyb)</a>, <a href="https://profiles.wordpress.org/sirzooro">sirzooro</a>, <a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="https://profiles.wordpress.org/sonjanyc">sonjanyc</a>, <a href="https://profiles.wordpress.org/spencerfinnell">Spencer Finnell</a>, <a href="https://profiles.wordpress.org/piontkowski">Spencer Piontkowski</a>, <a href="https://profiles.wordpress.org/stephdau">Stephane Daury</a>, <a href="https://profiles.wordpress.org/stephcook22">stephcook22</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/sbruner">Steve Bruner</a>, <a href="https://profiles.wordpress.org/stevenkword">Steven Word</a>, <a href="https://profiles.wordpress.org/iamtakashi">Takashi Irie</a>, <a href="https://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>, <a href="https://profiles.wordpress.org/tanner-m">Tanner Moushey</a>, <a href="https://profiles.wordpress.org/tlovett1">Taylor Lovett</a>, <a href="https://profiles.wordpress.org/tbrams">tbrams</a>, <a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="https://profiles.wordpress.org/tomauger">Tom Auger</a>, <a href="https://profiles.wordpress.org/willmot">Tom Willmot</a>, <a href="https://profiles.wordpress.org/topher1kenobe">Topher</a>, <a href="https://profiles.wordpress.org/topquarky">topquarky</a>, <a href="https://profiles.wordpress.org/zodiac1978">Torsten Landsiedel</a>, <a href="https://profiles.wordpress.org/toru">Toru Miki</a>, <a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="https://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>, <a href="https://profiles.wordpress.org/undergroundnetwork">undergroundnetwork</a>, <a href="https://profiles.wordpress.org/varunagw">VarunAgw</a>, <a href="https://profiles.wordpress.org/wawco">wawco</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/wokamoto">wokamoto</a>, <a href="https://profiles.wordpress.org/xsonic">xsonic</a>, <a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="https://profiles.wordpress.org/yurivictor">Yuri Victor</a>, <a href="https://profiles.wordpress.org/zbtirrell">Zach Tirrell</a>, and <a href="https://profiles.wordpress.org/vanillalounge">Ze Fontainhas</a>.\n<p>There were 283 contributors to this release, again a new high.</p>\n<p>If you want to help out or follow along, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>.</p>\n<p>Thanks for choosing WordPress. Happy holidays and see you next year for version 4.2!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:46:"https://wordpress.org/news/2014/12/dinah/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress 4.1 Release Candidate 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:78:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 18 Dec 2014 02:22:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3411";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:429:"The next release candidate for WordPress 4.1 is now available for testing. Seventy changes have gone in since the first release candidate. With no known issues left, we plan to release 4.1 tomorrow, December 18. To test, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the release candidate here (zip). If you’d like to learn more about […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"John Blackbourn";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1465:"<p>The next release candidate for WordPress 4.1 is now available for testing.</p>\n<p><a href="https://core.trac.wordpress.org/log/trunk?rev=30961&stop_rev=30827">Seventy changes</a> have gone in since the <a href="https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/">first release candidate</a>. With no known issues left, we plan to release 4.1 tomorrow, December 18.</p>\n<p>To test, 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.1-RC3.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.1, visit the updated About screen in your dashboard (<strong><img src="https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png" alt="" width="16" height="16" /> → About</strong> in the toolbar) and also check out <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">the Beta 1 post</a>.</p>\n<p><strong>Plugin authors:</strong> Remember to test your plugins against 4.1, and if they’re compatible, make sure they are marked as tested up to 4.1. Be sure to follow along the core development blog; we’ve been posting <a href="https://make.wordpress.org/core/tag/4-1-dev-notes/">notes for developers for 4.1</a> as always.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:74:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"WordPress 4.1 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/2014/12/wordpress-4-1-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:76:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 11 Dec 2014 11:52:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:3:"4.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3375";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:341:"The release candidate for WordPress 4.1 is now available. We’ve made a lot of refinements over the last few weeks. 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.1 on Tuesday, December 16, but we need your […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"John Blackbourn";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2301:"<p>The release candidate for WordPress 4.1 is now available.</p>\n<p>We’ve made a lot of refinements over the last few weeks. 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.1 on Tuesday, December 16, but we need your help to get there. If you haven’t tested 4.1 yet, now is the time! (Please though, not on your live site unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p>To test WordPress 4.1 RC1, you can use the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin or you can <a href="https://wordpress.org/wordpress-4.1-RC1.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.1, visit the About screen in your dashboard (<strong><img src="https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png" alt="" width="16" height="16" /> → About</strong> in the toolbar) or check out the <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">beta announcement</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.1 and update your plugin’s <em>Tested up to</em> version in the readme to 4.1 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href="https://make.wordpress.org/core/">follow along the core development blog</a>, where we’ll continue to post <a href="https://make.wordpress.org/core/tag/4-1-dev-notes/">notes for developers</a> for 4.1. (For example: if you’ve written a child theme for Twenty Fifteen, some of the new pagination functions have been renamed for clarity.)</p>\n<p><em>Testing four point one</em><br />\n<em>Why are we up at this hour?</em><br />\n<em>Code is poetry</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:72:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"WordPress 4.0.1 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:51:"https://wordpress.org/news/2014/11/wordpress-4-0-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2014/11/wordpress-4-0-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Nov 2014 18:55:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3363";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:345:"WordPress 4.0.1 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3395:"<p>WordPress 4.0.1 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be updated to 3.9.3, 3.8.5, or 3.7.5 to keep everything secure. (We don’t support older versions, so please update to 4.0.1 for the latest and greatest.)</p>\n<p>WordPress versions 3.9.2 and earlier are affected by a critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. This was reported by <a href="http://klikki.fi/">Jouko Pynnonen</a>. This issue does not affect version 4.0, but version 4.0.1 does address these eight security issues:</p>\n<ul>\n<li>Three cross-site scripting issues that a contributor or author could use to compromise a site. Discovered by <a href="http://joncave.co.uk/">Jon Cave</a>, <a href="http://www.miqrogroove.com/">Robert Chapin</a>, and <a href="https://johnblackbourn.com/">John Blackbourn</a> of the WordPress security team.</li>\n<li>A cross-site request forgery that could be used to trick a user into changing their password.</li>\n<li>An issue that could lead to a denial of service when passwords are checked. Reported by <a href="http://www.behindthefirewalls.com/">Javier Nieto Arevalo</a> and <a href="http://www.devconsole.info/">Andres Rojas Guerrero</a>.</li>\n<li>Additional protections for server-side request forgery attacks when WordPress makes HTTP requests. Reported by Ben Bidner (vortfu).</li>\n<li>An extremely unlikely hash collision could allow a user’s account to be compromised, that also required that they haven’t logged in since 2008 (I wish I were kidding). Reported by <a href="http://david.dw-perspective.org.uk">David Anderson</a>.</li>\n<li>WordPress now invalidates the links in a password reset email if the user remembers their password, logs in, and changes their email address. Reported separately by <a href="https://twitter.com/MomenBassel">Momen Bassel</a>, <a href="http://c0dehouse.blogspot.in/">Tanoy Bose</a>, and <a href="https://managewp.com/">Bojan Slavković of ManageWP</a>.</li>\n</ul>\n<p>Version 4.0.1 also fixes 23 bugs with 4.0, and we’ve made two hardening changes, including better validation of EXIF data we are extracting from uploaded photos. Reported by <a href="http://www.securesolutions.no/">Chris Andrè Dale</a>.</p>\n<p>We appreciated the <a href="https://codex.wordpress.org/FAQ_Security">responsible disclosure</a> of these issues directly to our security team. For more information, see the <a href="https://codex.wordpress.org/Version_4.0.1">release notes</a> or consult the <a href="https://core.trac.wordpress.org/log/branches/4.0?rev=30475&stop_rev=29710">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.0.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n<p><em>Already testing WordPress 4.1? The second beta is now available (<a href="https://wordpress.org/wordpress-4.1-beta2.zip">zip</a>) and it contains these security fixes. For more on 4.1, see <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">the beta 1 announcement post</a>.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/11/wordpress-4-0-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.1 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Nov 2014 22:35:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a: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:4:"beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3352";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:346:"Welcome, everyone, to WordPress 4.1 Beta 1! 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.1, 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:"John Blackbourn";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3409:"<p>Welcome, everyone, to WordPress 4.1 Beta 1!</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.1, 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="//wordpress.org/wordpress-4.1-beta1.zip">download the beta here</a> (zip).</p>\n<p>WordPress 4.1 is due for release next month, so we need your help with testing. Here are some highlights of what to test:</p>\n<ul>\n<li>Our beautiful new default theme, <a href="https://make.wordpress.org/core/2014/09/09/twenty-fifteen/">Twenty Fifteen</a>. It’s a clean, mobile-first, blog-focused theme designed through simplicity.</li>\n<li>A new <a href="https://make.wordpress.org/core/2014/11/11/focus-v2-demo-video/">distraction-free writing mode for the editor</a>. It’s enabled by default for beta, and we’d love feedback on it.</li>\n<li>The ability to automatically install new language packs right from the General Settings screen (available as long as your site’s filesystem is writable).</li>\n<li>A new inline formatting toolbar for images embedded into posts.</li>\n</ul>\n<p>There have been a lot of changes for developers to test as well:</p>\n<ul>\n<li><a href="https://make.wordpress.org/core/2014/10/20/update-on-query-improvements-in-4-1/">Improvements to meta, date, comment, and taxonomy queries</a>, including complex (nested, multiple relation) queries; and querying comment types (<a href="https://core.trac.wordpress.org/ticket/12668">#12668</a>).</li>\n<li>A single term shared across multiple taxonomies is now split into two when updated. For more, <a href="https://make.wordpress.org/core/2014/11/12/an-update-on-the-taxonomy-roadmap/">see this post</a>, <a href="https://core.trac.wordpress.org/ticket/5809">#5809</a>, and <a href="https://core.trac.wordpress.org/ticket/30335">#30335</a>.</li>\n<li>A new and better way for <a href="https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/">themes to handle title tags</a>.</li>\n<li>Several <a href="https://make.wordpress.org/core/2014/10/27/toward-a-complete-javascript-api-for-the-customizer/">improvements to the Customizer API</a>, including contextual panels and sections, and JavaScript templates for controls.</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.1, <a href="https://make.wordpress.org/core/tag/week-in-core/">check out the weekly review posts</a> on the main development blog.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on the WordPress Trac</a>. There, you can also find <a href="https://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.1">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Twenty Fifteen theme</em><br />\n<em> The beautiful face which hides</em><br />\n<em> Many improvements</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"Watch WordCamp San Francisco Livestream";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2014/10/wcsf-livestream/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2014/10/wcsf-livestream/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Oct 2014 20:18:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3341";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:381:"WordCamp San Francisco is the official annual WordPress conference, gathering the community every year since 2006. This is the time when Matt Mullenweg addresses the community in his annual State of the Word presentation – a recap of the year in WordPress and giving us a glimpse into its future. This year the speaker lineup is stellar. There will be talks by […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"Nikolay Bachiyski";s: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:1975:"<p><a title="2014 edition" href="http://2014.sf.wordcamp.org">WordCamp San Francisco</a> is the official annual WordPress conference, gathering the community every year <a title="An old website for a WordPress long time ago" href="http://2006.sf.wordcamp.org">since 2006</a>. This is the time when Matt Mullenweg addresses the community in his annual <a href="http://wordpress.tv/?s=state+of+the+word">State of the Word</a> presentation – a recap of the year in WordPress and giving us a glimpse into its future.</p>\n<p>This year the speaker lineup is stellar. There will be talks by three of the lead WordPress developers: <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-andrew-nacin">Andrew Nacin</a>, <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-helen-hou-sandi">Helen Hou-Sandí</a>, and <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-mark-jaquith">Mark Jaquith</a>. We’re also looking forward to speakers like <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jenny-lawson">Jenny Lawson</a>, also known as The Bloggess, and <a href="http://2014.sf.wordcamp.org/speaker/chris-lema/">Chris Lema</a>. If you’re at all interested in the web, you will appreciate the appearance of <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jeff-veen">Jeff Veen</a> – one of the creators of Google Analytics and co-founder of Typekit.</p>\n<p>Even though San Francisco is far far away for most of you, you can still be part of the fun and watch all presentations in real-time via livestream:</p>\n<p><a href="http://2014.sf.wordcamp.org/tickets/">Get a livestream ticket and watch all talks from WordCamp San Francisco live</a></p>\n<p>If you hurry, you can get one of the special livestream tickets, including a WordCamp San Francisco 2104 t-shirt. You can find all the technical details and start times <a href="http://2014.sf.wordcamp.org/live-stream/">at the WordCamp San Francisco website</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2014/10/wcsf-livestream/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"WordPress 4.0 “Benny”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"https://wordpress.org/news/2014/09/benny/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:50:"https://wordpress.org/news/2014/09/benny/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 04 Sep 2014 17:05:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3296";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:370:"Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader Benny Goodman, is available for download or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:23571:"<p>Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader <a href="http://en.wikipedia.org/wiki/Benny_Goodman">Benny Goodman</a>, is available <a href="https://wordpress.org/download/">for download</a> or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience we think you’ll enjoy.</p>\n<div id="v-bUdzKMro-1" class="video-player"><embed id="v-bUdzKMro-1-video" src="https://v0.wordpress.com/player.swf?v=1.04&guid=bUdzKMro&isDynamicSeeking=true" type="application/x-shockwave-flash" width="692" height="388" title="Introducing WordPress 4.0 "Benny"" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div>\n<hr />\n<h2 style="text-align: center">Manage your media with style</h2>\n<p><img class="alignnone size-full wp-image-3316" src="https://wordpress.org/news/files/2014/09/media.jpg" alt="Media Library" width="1000" height="586" />Explore your uploads in a beautiful, endless grid. A new details preview makes viewing and editing any amount of media in sequence a snap.</p>\n<hr />\n<h2 style="text-align: center">Working with embeds has never been easier</h2>\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-3296-1" width="632" height="445" autoplay="1" preload="metadata" controls="controls"><source type="video/mp4" src="//s.w.org/images/core/4.0/embed.mp4?_=1" /><source type="video/webm" src="//s.w.org/images/core/4.0/embed.webm?_=1" /><source type="video/ogg" src="//s.w.org/images/core/4.0/embed.ogv?_=1" /><a href="//s.w.org/images/core/4.0/embed.mp4">//s.w.org/images/core/4.0/embed.mp4</a></video></div>\n<p>Paste in a YouTube URL on a new line, and watch it magically become an embedded video. Now try it with a tweet. Oh yeah — embedding has become a visual experience. The editor shows a true preview of your embedded content, saving you time and giving you confidence.</p>\n<p>We’ve expanded the services supported by default, too — you can embed videos from CollegeHumor, playlists from YouTube, and talks from TED. <a href="https://codex.wordpress.org/Embeds">Check out all of the embeds</a> that WordPress supports.</p>\n<hr />\n<h2 style="text-align: center">Focus on your content</h2>\n<div style="width: 632px; " class="wp-video"><video class="wp-video-shortcode" id="video-3296-2" width="632" height="356" autoplay="1" preload="metadata" controls="controls"><source type="video/mp4" src="//s.w.org/images/core/4.0/focus.mp4?_=2" /><source type="video/webm" src="//s.w.org/images/core/4.0/focus.webm?_=2" /><source type="video/ogg" src="//s.w.org/images/core/4.0/focus.ogv?_=2" /><a href="//s.w.org/images/core/4.0/focus.mp4">//s.w.org/images/core/4.0/focus.mp4</a></video></div>\n<p>Writing and editing is smoother and more immersive with an editor that expands to fit your content as you write, and keeps the formatting tools available at all times.</p>\n<hr />\n<h2 style="text-align: center">Finding the right plugin</h2>\n<p><img class="aligncenter size-large wp-image-3309" src="https://wordpress.org/news/files/2014/09/add-plugin1-1024x600.png" alt="Add plugins" width="692" height="405" /></p>\n<p>There are more than 30,000 free and open source plugins in the WordPress plugin directory. WordPress 4.0 makes it easier to find the right one for your needs, with new metrics, improved search, and a more visual browsing experience.</p>\n<hr />\n<h2 style="text-align: center">The Ensemble</h2>\n<p>This release was led by <a href="http://helenhousandi.com">Helen Hou-Sandí</a>, with the help of these fine individuals. There are 275 contributors with props in this release, a new high. Pull up some Benny Goodman on your music service of choice, as a bandleader or in one of his turns as a classical clarinetist, and check out some of their profiles:</p>\n<p><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/viper007bond">Alex Mills (Viper007Bond)</a>, <a href="https://profiles.wordpress.org/tellyworth">Alex Shiels</a>, <a href="https://profiles.wordpress.org/alexanderrohmann">Alexander Rohmann</a>, <a href="https://profiles.wordpress.org/aliso">Alison Barrett</a>, <a href="https://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="https://profiles.wordpress.org/amit">Amit Gupta</a>, <a href="https://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/andrezrv">Andres Villarreal</a>, <a href="https://profiles.wordpress.org/zamfeer">Andrew Mowe</a>, <a href="https://profiles.wordpress.org/sumobi">Andrew Munro (sumobi)</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/andy">Andy Skelton</a>, <a href="https://profiles.wordpress.org/ankit-k-gupta">Ankit K Gupta</a>, <a href="https://profiles.wordpress.org/atimmer">Anton Timmermans</a>, <a href="https://profiles.wordpress.org/arnee">Arne Brachhold</a>, <a href="https://profiles.wordpress.org/aubreypwd">aubreypwd</a>, <a href="https://profiles.wordpress.org/filosofo">Austin Matzko</a>, <a href="https://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="https://profiles.wordpress.org/kau-boy">Bernhard Kau</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="https://profiles.wordpress.org/bradyvercher">Brady Vercher</a>, <a href="https://profiles.wordpress.org/bramd">Bram Duvigneau</a>, <a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="https://profiles.wordpress.org/krogsgard">Brian Krogsgard</a>, <a href="https://profiles.wordpress.org/brianlayman">Brian Layman</a>, <a href="https://profiles.wordpress.org/rzen">Brian Richards</a>, <a href="https://profiles.wordpress.org/camdensegal">Camden Segal</a>, <a href="https://profiles.wordpress.org/sixhours">Caroline Moore</a>, <a href="https://profiles.wordpress.org/mackensen">Charles Fulton</a>, <a href="https://profiles.wordpress.org/chouby">Chouby</a>, <a href="https://profiles.wordpress.org/chrico">ChriCo</a>, <a href="https://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="https://profiles.wordpress.org/chrisl27">chrisl27</a>, <a href="https://profiles.wordpress.org/caxelsson">Christian Axelsson</a>, <a href="https://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="https://profiles.wordpress.org/boda1982">Christopher Spires</a>, <a href="https://profiles.wordpress.org/clifgriffin">Clifton Griffin</a>, <a href="https://profiles.wordpress.org/jupiterwise">Corey McKrill</a>, <a href="https://profiles.wordpress.org/corphi">Corphi</a>, <a href="https://profiles.wordpress.org/extendwings">Daisuke Takahashi</a>, <a href="https://profiles.wordpress.org/ghost1227">Dan Griffiths</a>, <a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="https://profiles.wordpress.org/danielhuesken">Daniel Husken</a>, <a href="https://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>, <a href="https://profiles.wordpress.org/dannydehaan">Danny de Haan</a>, <a href="https://profiles.wordpress.org/dkotter">Darin Kotter</a>, <a href="https://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="https://profiles.wordpress.org/dllh">Daryl L. L. Houston (dllh)</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/dnaber-de">David Naber</a>, <a href="https://profiles.wordpress.org/davidthemachine">DavidTheMachine</a>, <a href="https://profiles.wordpress.org/debaat">DeBAAT</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/donncha">Donncha O Caoimh</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/dustyn">Dustyn Doyle</a>, <a href="https://profiles.wordpress.org/eddiemoya">Eddie Moya</a>, <a href="https://profiles.wordpress.org/oso96_2000">Eduardo Reveles</a>, <a href="https://profiles.wordpress.org/edwin-at-studiojoyocom">Edwin Siebel</a>, <a href="https://profiles.wordpress.org/ehg">ehg</a>, <a href="https://profiles.wordpress.org/erayalakese">erayalakese</a>, <a href="https://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="https://profiles.wordpress.org/ebinnion">Eric Binnion</a>, <a href="https://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="https://profiles.wordpress.org/ejdanderson">Evan Anderson</a>, <a href="https://profiles.wordpress.org/eherman24">Evan Herman</a>, <a href="https://profiles.wordpress.org/fab1en">Fabien Quatravaux</a>, <a href="https://profiles.wordpress.org/fahmiadib">Fahmi Adib</a>, <a href="https://profiles.wordpress.org/feedmeastraycat">feedmeastraycat</a>, <a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="https://profiles.wordpress.org/garhdez">garhdez</a>, <a href="https://profiles.wordpress.org/garyc40">Gary Cao</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/garza">garza</a>, <a href="https://profiles.wordpress.org/gauravmittal1995">gauravmittal1995</a>, <a href="https://profiles.wordpress.org/gavra">Gavrisimo</a>, <a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="https://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>, <a href="https://profiles.wordpress.org/vancoder">Grant Mangham</a>, <a href="https://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="https://profiles.wordpress.org/bordoni">Gustavo Bordoni</a>, <a href="https://profiles.wordpress.org/harrym">harrym</a>, <a href="https://profiles.wordpress.org/hebbet">hebbet</a>, <a href="https://profiles.wordpress.org/hinnerk">Hinnerk Altenburg</a>, <a href="https://profiles.wordpress.org/hlashbrooke">Hugh Lashbrooke</a>, <a href="https://profiles.wordpress.org/iljoja">iljoja</a>, <a href="https://profiles.wordpress.org/imath">imath</a>, <a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="https://profiles.wordpress.org/issuu">issuu</a>, <a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="https://profiles.wordpress.org/jacklenox">Jack Lenox</a>, <a href="https://profiles.wordpress.org/jackreichert">Jack Reichert</a>, <a href="https://profiles.wordpress.org/jacobdubail">Jacob Dubail</a>, <a href="https://profiles.wordpress.org/janhenkg">JanHenkG</a>, <a href="https://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="https://profiles.wordpress.org/jwenerd">Jared Wenerd</a>, <a href="https://profiles.wordpress.org/jaza613">Jaza613</a>, <a href="https://profiles.wordpress.org/jeffstieler">Jeff Stieler</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/slimndap">Jeroen Schmit</a>, <a href="https://profiles.wordpress.org/jerrysarcastic">Jerry Bates (jerrysarcastic)</a>, <a href="https://profiles.wordpress.org/jesin">Jesin A</a>, <a href="https://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="https://profiles.wordpress.org/jesper800">Jesper van Engelen</a>, <a href="https://profiles.wordpress.org/engelen">Jesper van Engelen</a>, <a href="https://profiles.wordpress.org/jessepollak">Jesse Pollak</a>, <a href="https://profiles.wordpress.org/jgadbois">jgadbois</a>, <a href="https://profiles.wordpress.org/jartes">Joan Artes</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/jkudish">Joey Kudish</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="https://profiles.wordpress.org/johnzanussi">John Zanussi</a>, <a href="https://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="https://profiles.wordpress.org/jonnyauk">jonnyauk</a>, <a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="https://profiles.wordpress.org/softmodeling">Jordi Cabot</a>, <a href="https://profiles.wordpress.org/jjeaton">Josh Eaton</a>, <a href="https://profiles.wordpress.org/tai">JOTAKI Taisuke</a>, <a href="https://profiles.wordpress.org/juliobox">Julio Potier</a>, <a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="https://profiles.wordpress.org/jtsternberg">Justin Sternberg</a>, <a href="https://profiles.wordpress.org/greenshady">Justin Tadlock</a>, <a href="https://profiles.wordpress.org/kadamwhite">K.Adam White</a>, <a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="https://profiles.wordpress.org/kapeels">kapeels</a>, <a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="https://profiles.wordpress.org/kevinlangleyjr">Kevin Langley</a>, <a href="https://profiles.wordpress.org/kworthington">Kevin Worthington</a>, <a href="https://profiles.wordpress.org/kpdesign">Kim Parsell</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/knutsp">Knut Sparhell</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/kurtpayne">Kurt Payne</a>, <a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="https://profiles.wordpress.org/leewillis77">Lee Willis</a>, <a href="https://profiles.wordpress.org/lessbloat">lessbloat</a>, <a href="https://profiles.wordpress.org/layotte">Lew Ayotte</a>, <a href="https://profiles.wordpress.org/lritter">lritter</a>, <a href="https://profiles.wordpress.org/lukecarbis">Luke Carbis</a>, <a href="https://profiles.wordpress.org/lgedeon">Luke Gedeon</a>, <a href="https://profiles.wordpress.org/m_i_n">m_i_n</a>, <a href="https://profiles.wordpress.org/funkatronic">Manny Fleurmond</a>, <a href="https://profiles.wordpress.org/targz-1">Manuel Schmalstieg</a>, <a href="https://profiles.wordpress.org/clorith">Marius (Clorith)</a>, <a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="https://profiles.wordpress.org/mjbanks">Matt Banks</a>, <a href="https://profiles.wordpress.org/sivel">Matt Martz</a>, <a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="https://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>, <a href="https://profiles.wordpress.org/mboynes">Matthew Boynes</a>, <a href="https://profiles.wordpress.org/mdbitz">Matthew Denton</a>, <a href="https://profiles.wordpress.org/mattheweppelsheimer">Matthew Eppelsheimer</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/meekyhwang">meekyhwang</a>, <a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="https://profiles.wordpress.org/mdawaffe">Michael Adams (mdawaffe)</a>, <a href="https://profiles.wordpress.org/michalzuber">michalzuber</a>, <a href="https://profiles.wordpress.org/midxcat">midxcat</a>, <a href="https://profiles.wordpress.org/mauteri">Mike Auteri</a>, <a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="https://profiles.wordpress.org/mikejolley">Mike Jolley</a>, <a href="https://profiles.wordpress.org/mikelittle">Mike Little</a>, <a href="https://profiles.wordpress.org/mikemanger">Mike Manger</a>, <a href="https://profiles.wordpress.org/mnelson4">Mike Nelson</a>, <a href="https://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="https://profiles.wordpress.org/mikeyarce">Mikey Arce</a>, <a href="https://profiles.wordpress.org/dimadin">Milan Dinic</a>, <a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="https://profiles.wordpress.org/usermrpapa">Mr Papa</a>, <a href="https://profiles.wordpress.org/mrmist">mrmist</a>, <a href="https://profiles.wordpress.org/m_uysl">Mustafa Uysal</a>, <a href="https://profiles.wordpress.org/muvimotv">MuViMoTV</a>, <a href="https://profiles.wordpress.org/nabil_kadimi">nabil_kadimi</a>, <a href="https://profiles.wordpress.org/namibia">Namibia</a>, <a href="https://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>, <a href="https://profiles.wordpress.org/nd987">nd987</a>, <a href="https://profiles.wordpress.org/neil_pie">Neil Pie</a>, <a href="https://profiles.wordpress.org/niallkennedy">Niall Kennedy</a>, <a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="https://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>, <a href="https://profiles.wordpress.org/schoenwaldnils">Nils Schonwald</a>, <a href="https://profiles.wordpress.org/ninos-ego">Ninos</a>, <a href="https://profiles.wordpress.org/nvwd">Nowell VanHoesen</a>, <a href="https://profiles.wordpress.org/compute">Patrick Hesselberg</a>, <a href="https://profiles.wordpress.org/pbearne">Paul Bearne</a>, <a href="https://profiles.wordpress.org/pdclark">Paul Clark</a>, <a href="https://profiles.wordpress.org/paulschreiber">Paul Schreiber</a>, <a href="https://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="https://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="https://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="https://profiles.wordpress.org/philipjohn">Philip John</a>, <a href="https://profiles.wordpress.org/senlin">Piet Bos</a>, <a href="https://profiles.wordpress.org/psoluch">Piotr Soluch</a>, <a href="https://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="https://profiles.wordpress.org/purzlbaum">purzlbaum</a>, <a href="https://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="https://profiles.wordpress.org/rclations">RC Lations</a>, <a href="https://profiles.wordpress.org/iamfriendly">Richard Tape</a>, <a href="https://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>, <a href="https://profiles.wordpress.org/rob1n">rob1n</a>, <a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, <a href="https://profiles.wordpress.org/rdall">Robert Dall</a>, <a href="https://profiles.wordpress.org/harmr">RobertHarm</a>, <a href="https://profiles.wordpress.org/rohan013">Rohan Rawat</a>, <a href="https://profiles.wordpress.org/rhurling">Rouven Hurling</a>, <a href="https://profiles.wordpress.org/ruudjoyo">Ruud Laan</a>, <a href="https://profiles.wordpress.org/ryan">Ryan Boren</a>, <a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="https://profiles.wordpress.org/sammybeats">Sam Brodie</a>, <a href="https://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>, <a href="https://profiles.wordpress.org/sathishn">Sathish Nagarajan</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/greglone">ScreenfeedFr</a>, <a href="https://profiles.wordpress.org/scribu">scribu</a>, <a href="https://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="https://profiles.wordpress.org/nessworthy">Sean Nessworthy</a>, <a href="https://profiles.wordpress.org/sergejmueller">Sergej Muller</a>, <a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/shanebp">shanebp</a>, <a href="https://profiles.wordpress.org/sharonaustin">Sharon Austin</a>, <a href="https://profiles.wordpress.org/shaunandrews">Shaun Andrews</a>, <a href="https://profiles.wordpress.org/simonp303">Simon Pollard</a>, <a href="https://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="https://profiles.wordpress.org/slobodanmanic">Slobodan Manic</a>, <a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="https://profiles.wordpress.org/sphoid">sphoid</a>, <a href="https://profiles.wordpress.org/stephdau">Stephane Daury</a>, <a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="https://profiles.wordpress.org/stompweb">Steven Jones</a>, <a href="https://profiles.wordpress.org/strangerstudios">strangerstudios</a>, <a href="https://profiles.wordpress.org/5um17">Sumit Singh</a>, <a href="https://profiles.wordpress.org/t4k1s">t4k1s</a>, <a href="https://profiles.wordpress.org/iamtakashi">Takashi Irie</a>, <a href="https://profiles.wordpress.org/taylorde">Taylor Dewey</a>, <a href="https://profiles.wordpress.org/thomasvanderbeek">Thomas van der Beek</a>, <a href="https://profiles.wordpress.org/tillkruess">Till Kruss</a>, <a href="https://profiles.wordpress.org/codenameeli">Tim 'Eli' Dalbey</a>, <a href="https://profiles.wordpress.org/tmeister">tmeister</a>, <a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="https://profiles.wordpress.org/tjnowell">Tom J Nowell</a>, <a href="https://profiles.wordpress.org/willmot">Tom Willmot</a>, <a href="https://profiles.wordpress.org/topher1kenobe">Topher</a>, <a href="https://profiles.wordpress.org/torresga">torresga</a>, <a href="https://profiles.wordpress.org/liljimmi">Tracy Levesque</a>, <a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="https://profiles.wordpress.org/treyhunner">treyhunner</a>, <a href="https://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>, <a href="https://profiles.wordpress.org/vinod-dalvi">Vinod Dalvi</a>, <a href="https://profiles.wordpress.org/vlajos">vlajos</a>, <a href="https://profiles.wordpress.org/voldemortensen">voldemortensen</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/winterdev">winterDev</a>, <a href="https://profiles.wordpress.org/wojtekszkutnik">Wojtek Szkutnik</a>, <a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="https://profiles.wordpress.org/katzwebdesign">Zack Katz</a>, <a href="https://profiles.wordpress.org/tollmanz">Zack Tollman</a>, and <a href="https://profiles.wordpress.org/zoerooney">Zoe Rooney</a>. Also thanks to <a href="http://michaelpick.wordpress.com/">Michael Pick</a> for producing the release video, and Helen with <a href="http://adriansandi.com">Adrián Sandí</a> for the music.</p>\n<p>If you want to follow along or help out, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.1!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:46:"https://wordpress.org/news/2014/09/benny/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"WordPress 4.0 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/2014/08/wordpress-4-0-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:76:"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Aug 2014 12:20:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3287";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:321:"The first release candidate for WordPress 4.0 is now available! In RC 1, we’ve made refinements to what we’ve been working on for this release. Check out the Beta 1 announcement post for more details on those features. We hope to ship WordPress 4.0 next week, but we need your help to get there. If you […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:2134:"<p>The first release candidate for WordPress 4.0 is now available!</p>\n<p>In RC 1, we’ve made refinements to what we’ve been working on for this release. Check out the <a href="https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">Beta 1 announcement post</a> for more details on those features. We hope to ship WordPress 4.0 <em>next week</em>, but we need your help to get there. If you haven’t tested 4.0 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</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 area in the support forums</a>. If any known issues come up, you’ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p>To test WordPress 4.0 RC1, try the <a href="https://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.0-RC1.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.0, visit the awesome About screen in your dashboard (<strong><img src="https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692" alt="" width="16" height="16" /> → About</strong> in the toolbar).</p>\n<p><strong>Developers,</strong> please test your plugins and themes against WordPress 4.0 and update your plugin’s <em>Tested up to</em> version in the readme to 4.0 before next week. If you find compatibility problems, please be sure to post any issues to the support forums so we can figure those out before the final release. You also may want to <a href="https://make.wordpress.org/core/2014/08/21/introducing-plugin-icons-in-the-plugin-installer/">give your plugin an icon</a>, which we launched last week and will appear in the dashboard along with banners.</p>\n<p><em>It is almost time</em><br />\n<em> For the 4.0 release</em><br />\n<em> And its awesomeness</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:72:"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.0 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/2014/08/wordpress-4-0-beta-4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 15 Aug 2014 05:06: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:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3280";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:353:"The fourth and likely final beta for WordPress 4.0 is now available. We’ve made more than 250 changes in the past month, including: Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes. Better handling of small screens in the media library modals. A separate bulk selection mode […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:2003:"<p>The fourth and likely final beta for WordPress 4.0 is now available. We’ve made <a href="https://core.trac.wordpress.org/log?rev=29496&stop_rev=29229&limit=300">more than 250 changes</a> in the past month, including:</p>\n<ul>\n<li>Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes.</li>\n<li>Better handling of small screens in the media library modals.</li>\n<li>A separate bulk selection mode for the media library grid view.</li>\n<li>Improvements to the installation language selector.</li>\n<li>Visual tweaks to plugin details and customizer panels.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for a release this month, which means the next week will be critical for identifying and squashing bugs. If you’re just joining us, please see <a href="https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 4.0 yet, now is the time — and be sure to update the “tested up to” version for your plugins so they’re listed as compatible with 4.0.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the <a href="https://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.0-beta4.zip">download the beta here</a> (zip).</p>\n<p><em>We are working hard</em><br />\n<em>To finish up 4.0<br />\n</em><em>Will you help us too?</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:32:"https://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Fri, 20 Feb 2015 08:47:44 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:10:"x-pingback";s:37:"https://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Wed, 18 Feb 2015 23:40:39 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20130911040210";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(110, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1424465266', 'no'),
(111, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1424422066', 'no'),
(112, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1424465273', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(113, '_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:45:"WPTavern: GravityView is Now Public on GitHub";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39249";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wptavern.com/gravityview-is-now-public-on-github";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3653:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/gravity-view.jpg" rel="prettyphoto[39249]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/gravity-view.jpg?resize=681%2C282" alt="gravity-view" class="aligncenter size-full wp-image-27113" /></a></p>\n<p>Six months ago, <a href="https://katz.co/" target="_blank">Zack Katz</a> and <a href="http://tinygod.pt/" target="_blank">Luis Godinho</a> launched <a href="http://wptavern.com/gravityview-launches-an-app-based-on-gravity-forms" target="_blank">GravityView</a>, an app based on the popular Gravity Forms plugin. It uses the <a href="http://wptavern.com/gravityforms-1-8-beta-released-introduces-api" target="_blank">Gravity Forms API</a> to display unique views of form data and entries on the frontend of WordPress.</p>\n<p>The main <a href="https://github.com/katzwebservices/GravityView" target="_blank">GravityView plugin</a> is now public on GitHub for anyone to access for free. The plugin’s repository was previously private and the code accessible only to GravityView’s paid customers, but co-founder Zack Katz recently decided to go another direction with the project.</p>\n<p>Katz told the Tavern that he was inspired by a <a href="https://mattreport.com/interview-matt-mullenweg/" target="_blank">discussion between Matt Medeiros and Matt Mullenweg</a> on ubiquity vs. scarcity in WordPress product businesses. Medeiros asked Mullenweg if he could offer any advice to WordPress startups that are looking to create a new product in this crowded space. Mullenweg replied:</p>\n<blockquote><p>The one pattern I see most right now that I think is not sustainable is, and it’s because it’s the easiest thing to do, is businesses that are built on a scarcity – the thing not being widely available. If you think about some of the coolest successes so far in WordPress, the Gravity Forms, some of the theme businesses, they are inherently predicated on the fact that you have to pay to access them. </p>\n<p>I’ve always been a fan of businesses that grow with ubiquity, that become more powerful the more ubiquitous they are, more valuable. WordPress itself is one of these. Akismet is one of these. Jetpack is certainly one of those. </p>\n<p>So if you think about turning that on its head, I think that’s what will create the sort of multi-generational businesses in the WordPress ecosystem. Even with themes, we’ve seen that themes are very cyclical. People who used to make the majority of their money from themes, like WooThemes, are now finding it’s an ever-decreasing percentage. You hear this across almost all the theme shops.</p></blockquote>\n<p>This advice runs counter to the way many WordPress product businesses have structured their revenue models. Rare exceptions like <a href="http://wptavern.com/pippin-williamson-on-building-a-community-around-your-open-source-project" target="_blank">Easy Digital Downloads</a>, <a href="http://wptavern.com/wooconf-the-first-ever-conference-dedicated-to-woocommerce-deemed-a-success" target="_blank">WooCommerce</a>, and other plugins where the base software is free, are shining examples where pushing for ubiquity instead of scarcity has truly paid off.</p>\n<p>The founders behind <a href="https://gravityview.co/" target="_blank">GravityView</a> are looking to find the same success within the Gravity Forms micro-ecosystem. With the base <a href="https://github.com/katzwebservices/GravityView" target="_blank">GravityView plugin</a> now available for free on GitHub, the company’s pricing is now only applicable to support and extensions.</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, 19 Feb 2015 21:47:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:28:"Matt: USB History and Type C";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44672";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://ma.tt/2015/02/usb-history-and-type-c/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:611:"<p>I enjoyed this Ars Technica look at <a href="http://arstechnica.com/gadgets/2015/01/usb-3-1-and-type-c-the-only-stuff-at-ces-that-everyone-is-going-to-use/">USB 3.1 and Type-C</a>, which is probably the cable/connection change people will notice the most over the next few years. (As I look with despair on my dozens of USB devices and cables.) I also dug their retrospective, <a href="http://arstechnica.com/gadgets/2014/08/a-brief-history-of-usb-what-it-replaced-and-what-has-failed-to-replace-it/">A brief history of USB, what it replaced, and what has failed to replace it</a>. Remember serial ports?</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, 19 Feb 2015 21:34: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: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:91:"WPTavern: WPWeekly Episode 180 – Interview With Wade Foster, CEO and Co-founder of Zapier";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=39274&preview_id=39274";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:96:"http://wptavern.com/wpweekly-episode-180-interview-with-wade-foster-ceo-and-co-founder-of-zapier";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3217:"<p>In this week’s episode of WordPress Weekly, <a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by <a title="http://wadefoster.net/" href="http://wadefoster.net/">Wade Foster</a>, CEO and Co-founder of <a title="https://zapier.com/" href="https://zapier.com/">Zapier</a>. Zapier is a service that acts as an integration point for more than 300 applications. During the interview, Foster tells us how the company was founded, how Zapier works, and why it’s different from <a title="https://ifttt.com/" href="https://ifttt.com/">IFTTT</a> (If This Then That).</p>\n<p>We learn how Zaps are created and the importance of APIs. We also discuss the community surrounding Zapier and how important the community manager’s position is. Last but not least, Foster explains why the company is 100% distributed and tells us <a title="https://zapier.com/jobs/" href="https://zapier.com/jobs/">they’re hiring</a>.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/a-look-back-at-16-automattic-acquisitions-since-2007" href="http://wptavern.com/a-look-back-at-16-automattic-acquisitions-since-2007">A Look Back at 16 Automattic Acquisitions Since 2007</a><br />\n<a title="http://wptavern.com/tickets-on-sale-for-wordcamp-north-canton-oh-2015" href="http://wptavern.com/tickets-on-sale-for-wordcamp-north-canton-oh-2015">Tickets On Sale For WordCamp North Canton, OH, 2015</a><br />\n<a title="http://wptavern.com/wordpress-4-2-on-track-to-expand-core-support-for-emoji" href="http://wptavern.com/wordpress-4-2-on-track-to-expand-core-support-for-emoji">WordPress 4.2 on Track to Expand Core Support for Emoji</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="https://wordpress.org/plugins/wp-image-shrinker/" href="https://wordpress.org/plugins/wp-image-shrinker/">WordPress Image Shrinker</a> lets users reduce image file sizes drastically while improving performance and Pagespeed score using the TinyPNG API within WordPress. Works for both PNGs and JPGs.</p>\n<p><a title="https://wordpress.org/plugins/there-can-be-only-one/" href="https://wordpress.org/plugins/there-can-be-only-one/">There Can Be Only One</a> ensures that there is only one published sticky post on the site at any given time.</p>\n<p><a title="https://wordpress.org/plugins/the-dude/" href="https://wordpress.org/plugins/the-dude/">The Dude</a> – When activated, you will randomly see a quote from “The Big Lebowski” in the upper right of your admin screen on every page.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 25th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #180:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Feb 2015 21:31:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:76:"Post Status: Layers, by Obox, introduces a beautiful page building 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:30:"https://poststatus.com/?p=8814";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"https://poststatus.com/layers-theme-obox/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:8510:"<p><a href="http://www.layerswp.com/">Layers</a> is a product <a href="http://blog.oboxthemes.com/from-today-the-way-you-build-wordpress-sites-will-change-say-hello-to-layers/">released by Obox</a> today that aims to integrate page building into the WordPress experience.</p>\n<p>Layers has the absolute best onboarding process I’ve seen in any tool like this. Also, the experience for creating new pages is very nice. While I have many disagreements with certain choices they made from a design perspective, overall I am very impressed with what they have done for the page building user experience.</p>\n<h3>Layers user experience sets a high bar</h3>\n<p>Layers has some very “wow” worthy features.</p>\n<p>I am very impressed with Obox’s onboarding. Upon theme activation, it takes you straight to a progressive walk-through that helps you learn about and setup Layers. It includes videos that operate like playable GIFs that show you what it’s referencing in each stage.</p>\n<p><img class="aligncenter size-large wp-image-8810" src="https://poststatus.com/wp-content/uploads/2015/02/layers-onboarding-752x364.png" alt="layers-onboarding" width="752" height="364" /></p>\n<p>The editor itself is also impressive. Layers are managed totally through the customizer. There is a single customizer tab that opens up panels for Layer widgets, which is very in tune with default WordPress.</p>\n<p><img class="aligncenter size-large wp-image-8809" src="https://poststatus.com/wp-content/uploads/2015/02/layers-edit-widget-752x351.png" alt="layers-edit-widget" width="752" height="351" /></p>\n<p>I call this method “going all in on the customizer”, which some people love and some people hate. I haven’t yet made up my mind, but I definitely like this better than many other methods I’ve seen — such as completely going outside of the WordPress UI.</p>\n<p>Within the WordPress page itself, it calls you to go to the Layers customizer to edit the content, but also has options for duplicating, importing, or exporting Layers templates.</p>\n<p><img class="aligncenter size-large wp-image-8813" src="https://poststatus.com/wp-content/uploads/2015/02/layers-page-752x475.png" alt="layers-page" width="752" height="475" /></p>\n<p>I like the way Layers makes getting started pretty easy. And I’m sure they will offer more templates going forward to help users quickly build pages that would otherwise require custom code.</p>\n<p>Obox is really stretching their legs on UX, and they are unabashedly prioritizing UX over everything else.</p>\n<p>David Perel — co-founder of Obox — tells me, “We believe in UX more than anything. Code is solveable; it just takes time. But user experience isn’t black and white.” I encouraged him to get more involved with core WordPress’ various UX projects, as I completely agree with his sentiment.</p>\n<h3>Behind the curtains of Layers code</h3>\n<p>When I first looked under the hood of Layers, I was completely baffled by some of the code decisions. Saving a page in Layers does not save anything to the actual <code>post_content</code> in WordPress, nor even in meta. No, content is essentially grouped — across any page ID — and stored in the options table, depending on the type of module in use.</p>\n<p><img class="aligncenter size-large wp-image-8811" src="https://poststatus.com/wp-content/uploads/2015/02/layers-options.png" alt="layers-options" width="657" height="199" /></p>\n<p>So, if you view the options field of <code>widget_layers-widget-column</code>, you see this:</p>\n<p><img class="aligncenter size-large wp-image-8812" src="https://poststatus.com/wp-content/uploads/2015/02/layers-option-752x369.png" alt="layers-option" width="752" height="369" /></p>\n<p>The above image is content for any column module in the Layers theme. Meanwhile, the <code>post_content</code> for the page you create is completely empty.</p>\n<p>I was baffled by this architecture decision, as it means that I can never recover that content or use it again unless I’m using Layers. While the UX may fit well into the WordPress experience, the code seemed far, far from it; and it was a complete blocker for me. Then I talked to David Perel.</p>\n<p>Thank goodness he showed me their backup tool. Before that, this post looked <em>much, much</em> different.</p>\n<p><img class="aligncenter size-large wp-image-8820" src="https://poststatus.com/wp-content/uploads/2015/02/layers-backup-752x386.png" alt="layers-backup" width="752" height="386" /></p>\n<p>They are working to automatically port content to the proper field in the database, but for now you can manually do it, so that your markup at least is preserved for if you change themes. This methodology is in line with other responsible page building tools like The Theme Foundry’s <a title="Make and Make Plus, a drag and drop framework from The Theme Foundry" href="https://poststatus.com/make-drag-and-drop-theme-foundry/">Make theme</a>.</p>\n<p>I also talked to David about disappointing front-end performance. The theme loads 16 styles and scripts on every page, no matter what. Scripts like Masonry are loading — and more than one Masonry related script — whether the page uses Masonry or not. Those are just the scripts that are not conditional at all. On page inspection of some of their common templates, I was seeing well over 20 HTTP requests for styles and scripts. This simply should not be acceptable. This, at least, is fixable.</p>\n<p>After discussing this with David, they are already working to implement a fix that will combine many of these files, and conditionally load others. Layers is 1.0, so while I wish this wasn’t an afterthought, I’m glad they’re moving fast to improve.</p>\n<p>Overall, Obox is trying really hard on Layers; and they’ve shipped an impressive 1.0. They are doing active reviews still with some highly qualified WordPress developers whose names we all would know, and we can expect further improvements on performance down the line.</p>\n<h3>Where to get Layers, and notes on the monetization model</h3>\n<p><a href="http://www.layerswp.com/">Layers</a> is free, and on <a href="https://github.com/Obox/layerswp">Github</a>. They also have <a href="http://www.layerswp.com/developers/">developer</a> notes and general <a href="http://docs.layerswp.com/">docs</a> available. The Obox team is also working to get the product on WordPress.org, but there are some things they have to work out before they can.</p>\n<p>For monetization, they intend to charge for pre-built child themes and commercial extensions. For now, they want to get mass adoption for Layers — a tactic that has worked really well for others in the space.</p>\n<h3>Thoughts on page builders</h3>\n<p>I am definitely not on the bandwagon for page builders, though it seems the WordPress product world is. Where traditional options heavy theme sales have died away, page builders have risen from their ashes.</p>\n<p>I think anyone building a tool like this needs someone at their side forcing them to justify every feature — as it seems to me that most of these are giving way too many options in their products.</p>\n<p>I may have a follow-up post in my mind that I’ll probably publish sometime soon describing why I think it is a bad thing for page builders (in the context of theming) to be the future of the web.</p>\n<p>I’m afraid, however, that end user “demand” may make it so whether I like it or not; but it won’t be for their own good. I think there is a better way. I think “page building”, as it seems we’ve standardized the term, is broken when too many granular design elements are allowed. Instead, I’d like to see <em>content building</em>, where structured content can be created with a tool, but theming and styles are still left to, well, themes.</p>\n<p>Tools like <a href="http://aesopstoryengine.com/">Aesop</a> story engine, <a href="https://thethemefoundry.com/wordpress-themes/make/">Make</a>, and <a href="http://www.layerswp.com/">Layers</a> are all making what I consider valiant efforts at evolving complex content creation for WordPress. I don’t think anyone is quite nailing it, but I like where at least these three projects are going for the most part. I’m happy to see Obox release their vision of what content creation should be in WordPress, with Layers.</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, 19 Feb 2015 20:46:29 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Brian Krogsgard";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:70:"WPTavern: BuddyPress Breaks One-Day Download Record with 2.2.1 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:28:"http://wptavern.com/?p=39240";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:80:"http://wptavern.com/buddypress-breaks-one-day-download-record-with-2-2-1-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:3420:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png" rel="prettyphoto[39240]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png?resize=839%2C398" alt="buddypress-logo-blue" class="aligncenter size-full wp-image-30655" /></a></p>\n<p>The <a href="https://buddypress.org/2015/02/2015-buddypress-survey/" target="_blank">2015 BuddyPress Survey</a> is out on the heels of the <a href="https://buddypress.org/2015/02/buddypress-2-2-1/" target="_blank">2.2.1 maintenance release</a>. Yesterday, the plugin broke its one-day download record with more than 10,000 downloads in 24 hours.</p>\n<blockquote class="twitter-tweet" width="550"><p>The <a href="https://twitter.com/hashtag/BuddyPress?src=hash">#BuddyPress</a> 2.2.1 release (just) set our record one-day download record of ~10,107.</p>\n<p>— Paul Gibbs (@pgibbs) <a href="https://twitter.com/pgibbs/status/568309497879535616">February 19, 2015</a></p></blockquote>\n<p></p>\n<p>Over the past seven years, <a href="https://wordpress.org/plugins/buddypress/" target="_blank">BuddyPress</a> has been downloaded more than 2.6 million times. Major performance improvements during the past two releases <a href="http://wptavern.com/buddypress-2-0-ramps-up-performance-reduces-footprint-by-up-to-75" target="_blank">reduced the plugin’s footprint by up to 75%</a>. Contributors added new administration tools and improved translation fetching.</p>\n<p>If you want to help shape BuddyPress development in 2015, participating in the survey is one of the best ways to provide feedback to contributors. Last year’s survey demonstrated that the community is growing and users are eager to stay on top of updates. The <a href="https://buddypress.org/2014/03/2014-buddypress-survey-results/" target="_blank">2014 survey results</a> indicated that more than 50% of BuddyPress sites are on the latest versions of WordPress and BuddyPress.</p>\n<p>When asked to choose categories for feature improvements, respondents selected group enhancements, a new media component, activity stream, membership add-ons, performance, and a few others. Many of these requests were addressed during 2014 development on the plugin. <a href="http://wptavern.com/buddypress-2-2-to-add-custom-post-type-support-to-the-activity-stream" target="_blank">Custom post types were added to the activity stream</a>, performance was enhanced beyond user expectations, and a new<a href="http://wptavern.com/buddypress-2-2-on-track-to-provide-a-basic-member-type-api" target="_blank"> member type API</a> was introduced earlier this year. Contributors also began working on a <a href="http://wptavern.com/buddypress-to-adopt-features-as-plugins-model-to-develop-new-media-component" target="_blank">media component as a feature plugin</a>.</p>\n<p>Last year, the survey captured feedback from 338 developers in 52 countries, and it would be helpful to get an even wider range of results this time around. The <a href="https://buddypress.org/2015/02/2015-buddypress-survey/" target="_blank">survey</a> takes approximately 20 minute of your time, but, as you can see from last year’s development, contributors are eager to act on user feedback. Your participation will give the BP core team an idea of the kinds of BuddyPress sites that developers are building and the features that you want to see prioritized in 2015.</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, 19 Feb 2015 19:41:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:49:"WPTavern: WordPress 4.1.1 Released, Fixes 21 Bugs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39243";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"http://wptavern.com/wordpress-4-1-1-released-fixes-21-bugs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2517:"<p>WordPress 4.1.1 <a title="https://wordpress.org/news/2015/02/wordpress-4-1-1/" href="https://wordpress.org/news/2015/02/wordpress-4-1-1/">is available</a> and fixes 21 bugs. According to Andrew Nacin who published the announcement, 4.1 was a smooth-sailing release and has been downloaded over 14 million times within the last two months. One of the bugs fixed<span class="s1"> is an issue where a tag and a category with the same name could get muddled and prevent each other from being updated. </span></p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/WP41DownloadCount.png" rel="prettyphoto[39243]"><img class="size-full wp-image-39245" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/WP41DownloadCount.png?resize=956%2C371" alt="WordPress 4.1 Download Count" /></a>WordPress 4.1 Download Count\n<p>Updates are slowly rolling out and if your site is configured to receive automatic updates, it should update within the next 72 hours. If not, visit <strong>Dashboard → Updates</strong> and click <strong>Update Now</strong> to manually trigger the update routine.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/KimParsell.png" rel="prettyphoto[39243]"><img class="size-full wp-image-36619" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/KimParsell.png?resize=655%2C418" alt="WordCamp San Francisco 2014 By Sheri Bigelow" /></a>WordCamp San Francisco 2014 By Sheri Bigelow\n<p>There are a handful of contributors to this release, but the one that sticks out is Kim Parsell. She <a title="https://core.trac.wordpress.org/ticket/30791" href="https://core.trac.wordpress.org/ticket/30791">helped fix an issue</a> where an old image file needed to be removed from core. Reading the release notes and coming across Kim’s name generates a rush of emotions as I remember the events surrounding New Years day. For those who don’t know, <a title="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away" href="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away">Kim passed away</a> earlier this year. In memory of Kim, The WordPress Foundation has <a title="http://wptavern.com/the-wordpress-foundation-creates-a-traveling-scholarship-in-memory-of-kim-parsell" href="http://wptavern.com/the-wordpress-foundation-creates-a-traveling-scholarship-in-memory-of-kim-parsell">created a traveling scholarship</a>.</p>\n<p>I think Nacin speaks for many when he says, “We miss you, Kim.”</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, 19 Feb 2015 01:04:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"Matt: 7 Principles of Rich Web Applications";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44680";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://ma.tt/2015/02/7-principles-of-rich-web-applications/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:165:"<p>Automattician Guillermo Rauch writes on the <a href="http://rauchg.com/2014/7-principles-of-rich-web-applications/">7 Principles of Rich Web Applications</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Feb 2015 00:50: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: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:73:"WPTavern: Customizer Theme Switcher Approved for Merge Into WordPress 4.2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39224";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:83:"http://wptavern.com/customizer-theme-switcher-approved-for-merge-into-wordpress-4-2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3367:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/customizer-theme-switcher.jpg" rel="prettyphoto[39224]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/customizer-theme-switcher.jpg?resize=1025%2C473" alt="customizer-theme-switcher" class="aligncenter size-full wp-image-38931" /></a></p>\n<p>The <a href="http://wptavern.com/customizer-theme-switcher-officially-proposed-for-wordpress-4-2" target="_blank">Customizer Theme Switcher</a> feature plugin was approved for merge today during the regularly scheduled WordPress core development meeting. Lead developers and contributors in attendance agreed that there are no major blocking issues.</p>\n<p>The Customizer Theme Switcher in WordPress 4.2 will make it possible for users to browse through themes that have already been installed and activate a new one on the frontend via the customizer. The idea is to unify the UI designated for customizing a site to create a more consistent experience for users on the frontend. In the future, the theme installation process will also be added to the customizer.</p>\n<p>Many users initially had concerns about adding this feature to the narrow customizer UI. “I would like to see a full-screen iteration so it doesn’t feel like I am looking through a port hole,” Andrew Nacin said during the development meeting. His comment echoes the concerns of others who have doubts about browsing themes through the small customizer window.</p>\n<p>In response to WP Tavern <a href="http://wptavern.com/customizer-theme-switcher-officially-proposed-for-wordpress-4-2#comment-64073" target="_blank">commenters who oppose the new feature</a>, project leader Nick Halsey encouraged users to examine how the customizer will force developers to simplify their UIs:</p>\n<blockquote><p>I’ll also point out for everyone that while the Customizer controls window is fairly small, this is a balance with providing a reasonably sized preview of the front-end, and the narrow controls UI window is mobile-first out-of-the-box. Being forced to work with less real estate in the customizer controls forces developers to simplify their UIs and make things easier to use. If you’re shoving hundreds of options into the Customizer, you’re creating something that’s just as bad of an experience to use as if you’d done that in a custom admin screen.</p></blockquote>\n<p>In response to those concerned about the next step of adding the theme installation process to the customizer, Halsey <a href="http://wptavern.com/customizer-theme-switcher-officially-proposed-for-wordpress-4-2#comment-64035" target="_blank">assured</a> users that they are planning on making the customizer controls area almost full-width. This will ensure a more pleasant experience while selecting a theme from a large collection. The theme switcher feature added to WordPress 4.2 will happen in the more narrow customizer pane, since it is most often limited to a small collection of already installed themes.</p>\n<p>The <a href="https://wordpress.org/plugins/press-this/" target="_blank">Press This Revamp project</a> is also currently under consideration for merge into WordPress 4.2 and contributors will be testing it over the next week. The merge window runs through next Wednesday, followed by two weeks of iteration before the first beta is expected.</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, 18 Feb 2015 22:09:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:78:"WPTavern: CMS Commander’s WordPress Site Creation Tool is Available for Free";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39187";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:85:"http://wptavern.com/cms-commanders-wordpress-site-creation-tool-is-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:2784:"<p>CMS Commander <a title="http://cmscommander.com/create-pre-configured-wp-blogs-free/" href="http://cmscommander.com/create-pre-configured-wp-blogs-free/">has announced</a> that their new WordPress site creation tool will be <a title="https://cmscommander.com/members/signup/index/c/trial" href="https://cmscommander.com/members/signup/index/c/trial">free of charge</a>. CMS Commander specializes in helping users manage WordPress sites. The tool gives users the ability to deploy new WordPress sites to any host via FTP with pre-configured settings and pre-installed plugins.</p>\n<p>WordPress is famous for its five-minute install, but users generally need to configure a few settings before they can publish their first post. CMS Commander has several settings you can pre-configure including: permalinks, deleting default content, and disabling the theme and plugin file editors.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/CMSCommanderPreconfigureSettings.jpg" rel="prettyphoto[39187]"><img class="size-full wp-image-39218" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/CMSCommanderPreconfigureSettings.jpg?resize=700%2C196" alt="CMS Commander Pre-configured Settings" /></a>CMS Commander Pre-configured Settings\n<p>You can also add plugins from the <a title="https://wordpress.org/plugins/" href="https://wordpress.org/plugins/">WordPress plugin directory</a> that will be installed and activated as part of the installation process.</p>\n<p>During the beta testing period, premium users created more than 200 websites allowing the team to fix numerous bugs. As a result of the beta testing period, CMS Commander added several other <a title="http://cmscommander.com/improved-site-creation-backup-features/" href="http://cmscommander.com/improved-site-creation-backup-features/">pre-configured settings</a>. The only feature not available to free users is the ability to add commercial plugins.</p>\n<h2>Removing Friction</h2>\n<p>The typical way to install WordPress on a webhost is to visit WordPress.org, download a zip file, extract the contents, and upload it to a webserver. This is a process that some find difficult, especially if FTP is as an unfamiliar concept or they’re not familiar with MySQL databases.</p>\n<p>CMS Commander and other tools like it are helping to bridge the gap between the install and set up process. This allows users to more quickly get to the publishing parts of WordPress. However, if WordPress is <a title="http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share" href="http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share">to reach 50% marketshare</a>, it needs to find a way to remove this friction instead of relying on third-parties.</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, 18 Feb 2015 21:36:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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:79:"WPTavern: Join the Discussion on Defining Network Types for WordPress Multisite";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39193";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wptavern.com/join-the-discussion-on-defining-network-types-for-wordpress-multisite";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3760:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mailboxes.jpg" rel="prettyphoto[39193]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mailboxes.jpg?resize=1024%2C496" alt="mailboxes" class="aligncenter size-full wp-image-39214" /></a></p>\n<p>Towards the end of 2013, WordPress lead developer Andrew Nacin outlined a <a href="https://make.wordpress.org/core/2013/10/06/potential-roadmap-for-multisite/" target="_blank">potential roadmap for multisite</a> that would address a number of long-standing questions regarding network setup and organization.</p>\n<p>When multisite, formerly known as WPMU, was first introduced, building large blogging networks was the primary use case. Over the years, the uses for multisite have evolved to encompass those who use it to facilitate the management of multiple, and sometimes unrelated, sites. In the future, contributors want to add the option for super admins to select from a list of pre-configured network types when installing a new network.</p>\n<p>The <a href="https://wordpress.slack.com/archives/core-multisite/p1424209234000834" target="_blank">discussion</a> in the #core-multisite room on Slack this week centered around identifying and defining different network types. The terms Open/Closed and Trusted/Untrusted were identified as possibilities, but nothing has been set in stone, as both options are ambiguous and confusing.</p>\n<p>Jeremy Felt <a href="https://make.wordpress.org/core/2015/02/18/multisite-objective-defining-network-types/" target="_blank">summarized</a> the questions that need to be answered before multisite development can move forward:</p>\n<ul>\n<li>What network types are there?</li>\n<li>Which of these should be pre-configured in core?</li>\n<li>What are possible ways of managing these network types?</li>\n<li>What kind of experience can we introduce during network installation that makes this simple.</li>\n</ul>\n<p>Multisite is used in a wide variety of ways, i.e. networks where super admins control everything, blogging networks where site admins have limited capabilities, private networks with closed registration and a set of trusted admins, and many more. It’s difficult to accurately nail down a small set of pre-configured network types that will be suitable for any new installation.</p>\n<p>One interesting idea, <a href="https://make.wordpress.org/core/2015/02/18/multisite-objective-defining-network-types/#comment-25248" target="_blank">proposed by Mike Schinkel</a>, is to allow developers to register a custom network type in order to better fit unique cases:</p>\n<blockquote><p>It would seem the first step, then, would be to identify and document all these potential configuration options at an atomic level. From there we could then “map” Network Types to their associated configuration settings.</p>\n<p>Even better, Network Types could then be registered just like how Post Types, Post Statuses, and Taxonomies are registered which would make missing out on an important use-case in core much less problematic.</p></blockquote>\n<p>Even with the option to register custom network types, WordPress core will still need to identify the most common ones to include in its set of pre-configured options. Contributors have been discussing this issue over the span of several months in order to find the best way forward.</p>\n<p>If you want to join in the conversation regarding the future of multisite, particularly as it relates to defining network types, make sure to leave your feedback on the recent Make/Core post: <a href="https://make.wordpress.org/core/tag/multisite/" target="_blank">Multisite Objective: Defining Network Types</a>. This will be the main topic of next week’s multisite office hours.</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, 18 Feb 2015 18:47: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: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:79:"WPTavern: Create Interactive Images in WordPress with the Draw Attention Plugin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39165";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wptavern.com/create-interactive-images-in-wordpress-with-the-draw-attention-plugin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6844:"<p><a title="https://wordpress.org/plugins/draw-attention/" href="https://wordpress.org/plugins/draw-attention/">Draw Attention</a> is a new plugin created by <a title="http://tylerdigital.com/" href="http://tylerdigital.com/">Tyler Digital,</a> that makes it easy to create interactive images in WordPress. Some common use cases include: floor plans for trade shows, real estate properties, and seating charts. Nathan Tyler explains the inspiration behind the plugin:</p>\n<blockquote><p>Natalie and I have built custom solutions for clients for trade shows, real estate, floor plans, etc. and we’re always frustrated by the process. We wanted to build an elegant solution in WordPress that would display well on all devices and would be easy for clients and end-users to maintain themselves.</p></blockquote>\n<h2>How it Works</h2>\n<p>After installation, a new item labeled Draw Attention is added to the admin menu. Similar to a post, the edit image screen has an area to give images a title. There’s also a series of options to configure the highlight and info box styling. Users can add an image via upload or through the WordPress media library.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionEditImageScreen.png" rel="prettyphoto[39165]"><img class="size-full wp-image-39177" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionEditImageScreen.png?resize=1025%2C405" alt="Edit Image Screen" /></a>Edit image screen for Draw Attention\n<p>Once an image is added, you’ll see it near the bottom of the page within the Hotspot Areas section. From here, users can draw interactive hot spots on an image simply by clicking on the portion you want to highlight. It took a bit of practice, but I was able to make the entire logo a hotspot by clicking the edges of the circle. Hot spots can be manipulated by clicking and dragging on the square markers.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpots.png" rel="prettyphoto[39165]"><img class="size-full wp-image-39178" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpots.png?resize=1025%2C701" alt="Draw Attention Hot Spots" /></a>Draw Attention hot spots\n<p>One of the biggest drawbacks I discovered during testing, is that there’s no undo button. If you make a mistake, you need to select the clear button and start over. Depending on the size of the hot spot, it’s a frustrating user experience. Hot spots are able to have titles of their own as well as a description. You can also add a detailed image which will display above the more info box. Last but not least, you can remove the hot spot area from the image.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpotsConfig.png" rel="prettyphoto[39165]"><img class="size-full wp-image-39179" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpotsConfig.png?resize=1002%2C493" alt="DrawAttentionHotSpotConfiguration" /></a>Draw Attention hot spot configuration\n<p>Here’s an example of what an interactive image looks like on the WordPress frontend. What you can’t see from the screenshot, is that clicking on a hot spot displays the image title and description above the image using <a title="http://en.wikipedia.org/wiki/Ajax_%28programming%29" href="http://en.wikipedia.org/wiki/Ajax_%28programming%29">Ajax</a>. In order to display interactive images, the <strong>[drawattention]</strong> short code needs to be inserted into a post or page. The styling options as seen in the first screenshot control how the title and description display on the frontend. It’s also worth noting that interactive images are responsive, so they’ll look good on mobile devices.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpotsWordPressFrontend.png" rel="prettyphoto[39165]"><img class="size-full wp-image-39180" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/DrawAttentionHotSpotsWordPressFrontend.png?resize=1025%2C810" alt="Draw Attention Hot Spots WordPress Frontend" /></a>How hot spots look on the WordPress frontend\n<h2>Needs Improvements</h2>\n<p>Draw Attention is a neat plugin that makes it easy to create hot spots on images. However, it’s the first version and it shows. In future versions, I’d like to see a number of things addressed.</p>\n<ol>\n<li>I’m confused as to the order of options displayed in the backend as styling options are displayed above image editing. I think these option panels should be reversed.</li>\n<li>The default highlight and info box styles didn’t display well on the testing environment. I’d like to see these options inherit colors that already exist within the theme.</li>\n<li>As mentioned previously, there needs to be an undo button as starting over is a frustrating experience.</li>\n<li>Setting the opacity to 55% displays a value of 55.00000000000001%</li>\n<li>Speaking of styling colors, it’s frustrating to edit display settings, click update, then refresh the post or page to see if the changes are ok. I’d like to see some sort of visual preview or something like the customizer so that I can configure the colors and see the changes live before I apply them.</li>\n<li>Instead of displaying the short code I need to use in a small, somewhat hidden meta box, I’d like to see a button in the visual post editor to make it easier to add to a post or page.</li>\n</ol>\n<p>One of the last remaining issues I have with Draw Attention is that users are limited to adding and editing <strong>one image</strong>. That’s because there’s a <a title="http://tylerdigital.com/products/draw-attention/" href="http://tylerdigital.com/products/draw-attention/">pro version</a> of the plugin available for $49 that contains the following additional features:</p>\n<ul>\n<li>Ability to create more than one interactive image</li>\n<li>Unlimited number of hot spot areas for each image</li>\n<li>20 different preset color schemes</li>\n<li>Custom layout options</li>\n</ul>\n<p>Limiting the plugin to one image gives users an idea on how it works, but I’d bump the limit to three or five. Users would then have more of an opportunity to discover cool uses cases and it might lead to more sales.</p>\n<p>With that said, it performed without any issues on WordPress 4.2 alpha. Tyler says they have plenty of items on their to-do list, “We have a bunch of items still on our to-do list, and we will be releasing regular updates for the next couple months based on community feedback.” If some of the issues are addressed and the image limits are raised, I think Draw Attention will be a nice solution for creating interactive images in WordPress.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Feb 2015 05:48:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:85:"WPTavern: WordCamp Prague 2015 Aims to Bring Central European Tech Community Together";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39157";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wptavern.com/wordcamp-prague-2015-aims-to-bring-central-european-tech-community-together";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2983:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/prague.jpg" rel="prettyphoto[39157]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/prague.jpg?resize=1025%2C498" alt="prague" class="aligncenter size-full wp-image-39158" /></a></p>\n<p><a href="http://prague.wordcamp.org/2015/" target="_blank">WordCamp Prague</a> is gearing up for its second edition on February 28, 2015. The event will be held at the <a href="http://ozs.vse.cz/english/" target="_blank">University of Economics</a>. Organizers are planning two tracks of presentations: one for end users and bloggers and the other for WordPress developers and programmers.</p>\n<p>Co-organizer <a href="https://twitter.com/vladamusilek" target="_blank">Vladislav Musílek</a> said that the team is expecting 300-350 attendees. “The Czech WordPress community is young and we started meeting in the summer of 2013,” he said. “There were three small meetups with a maximum of 30 attendees, but our first WordCamp Prague in 2014 had 230 attendees.”</p>\n<p>Musílek is one of three local organizers who decided to hold a larger meetup every three months, with smaller ones taking place monthly. The three meetups held in 2014 attracted 130-150 attendees each, and sessions are published on <a href="https://www.youtube.com/channel/UCUj8Epquc13YwVvnAzyI9Vg" target="_blank">YouTube</a>.</p>\n<p>Although the Czech WordPress community is relatively small, it is situated in central Europe with easy access for attendees from other countries. “We invited developers from other countries, because modern WordPress trends are what is missing in the Czech community,” Musílek said.</p>\n<p>“But what is unique is Prague, a beautiful city in the center, with 23 European capital cities not more than 1000 km away, i.e. Vienna, Berlin, Brussels, Copenhagen, Paris, Rome, Warsaw and more.”</p>\n<p>Musílek said the organizers’ goal was to create a WordCamp not only for the Czech community but for the greater central European development community. Many of the sessions cater to developers, and Musílek said this is intentional. “I am a developer and I wanted to invite speakers who are working with modern and trending technologies that we’ll be using for development in the near future,” he said.</p>\n<p>WordCamp Prague’s schedule will host 16 sessions, including nine in English and seven in Czech. There will also be two workshops held in English and two in Czech. The variety of languages helps to make the event more accessible to international attendees. View the event’s <a href="http://prague.wordcamp.org/2015/program/" target="_blank">schedule</a> for more details. Tickets are still available for any attendees who decide to join at the last minute. If you’re still on the fence, check out the promotion video the organizers created for the upcoming event:</p>\n<p><span class="embed-youtube"></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:"Tue, 17 Feb 2015 22:24:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:30:"Matt: Developer Employment Act";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44697";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://ma.tt/2015/02/developer-employment-act/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:689:"<blockquote><p>One theory I have is that there’s some secret “developer full-time employment act” that means these programmers have to do something even if it’s just replicating work that’s already been done. Kind of like New Jersey where every gas station is full serve (that had to be some full employment gambit back in the day).</p></blockquote>\n<p>Sounds like something that could be written today about Vox, Buzzfeed, Gawker, or any of the quixotic CMS projects at Washington Post, NY Times, Conde Nast, et al, but it was <a href="http://www.zdnet.com/article/wordpress-vs-an-army-of-clunky-content-management-systems/">actually written in 2007</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Feb 2015 21:50: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:13;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"WPTavern: WordPress 4.2 on Track to Expand Core Support for Emoji";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39129";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wptavern.com/wordpress-4-2-on-track-to-expand-core-support-for-emoji";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4194:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Twemoji.jpg" rel="prettyphoto[39129]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Twemoji.jpg?resize=700%2C320" alt="photo credit: Twitter.com" class="size-full wp-image-39143" /></a>photo credit: <a href="https://blog.twitter.com/2014/open-sourcing-twitter-emoji-for-everyone">Twitter.com</a>\n<p>Emoji characters were born in Japan in the late 90’s but took nearly a decade to break into global usage. They entered popular culture full force when select emoji character sets were incorporated into Unicode in 2010. Since that time, emoji popularity has grown, and there’s no denying that they are mainstream and here to stay.</p>\n<p>The good news is that better support for emoji will soon find its way into WordPress core. Last week, core contributor Gary Pendergast, unveiled <a href="https://make.wordpress.org/core/2015/02/13/emoji-chat-meeting-notes-february-12-2015/" target="_blank">a roadmap for better emoji support</a> and detailed the current state of the <a href="https://github.com/pento/x1f4a9" target="_blank">feature plugin</a>.</p>\n<p>Pendergast has spent quite a bit of time immersing himself in the history of emoji and the requirements for their support. Pendergast filled contributors in on the status of WordPress core support for emoji:</p>\n<blockquote><p>As of <a href="https://core.trac.wordpress.org/changeset/31349" target="_blank">r31349</a>, WordPress partially supports emoji. ~60% of WordPress sites are running MySQL 5.5 or later (so can be upgraded to store emoji), and ~40% of browsers natively support emoji. Emoji are a wildly popular method of communication, so we can expect them to be heavily used as soon as they’re available. The problem is, 60%/40% means a really bad experience for a huge number of our users, who’ll try to use emoji, and fail.</p></blockquote>\n<p>Getting more WordPress sites to run on MySQL 5.5+ would be no small task, so the emoji feature plugin is working around this by adding a wp_encode_emoji() function to turn emoji characters into HTML entities for sites using the utf8 character set. This gets the remaining ~40% of sites nearly all the way there.</p>\n<h3>Twemoji Fallback</h3>\n<p>The feature plugin proposes that WordPress adopt the <a href="https://github.com/twitter/twemoji" target="_blank">Twemoji</a> image set as a fallback for browsers that don’t display emoji natively, which reduces the extra load, especially for mobile browsers. Twitter open sourced its Twemoji 872 character image set last November, simultaneously partnering with Automattic to <a href="http://wptavern.com/wordpress-com-adds-emoji-support-coming-soon-to-jetpack" target="_blank">bring emoji to WordPress.com users</a>.</p>\n<p>Pendergast reports that the plugin is close to being finished, with only a handful of remaining <a href="https://github.com/pento/x1f4a9/issues" target="_blank">bugs to discuss</a>. The plugin has already been briefly reviewed by the accessibility team and requires only a few minor changes. The issue of where to host the images is still under discussion, and Pendergast and contributors are considering different options:</p>\n<blockquote><p>They’re currently hosted on WP.com’s CDN, but we’re investigating other options for where to host them, probably the W.org CDN. Given that the wp-admin Dashboard also loads things from Google, I have no problem with hosting them on an external CDN. There will naturally be a filter on the URL, to allow local hosting for sites that don’t want to use the CDN.</p></blockquote>\n<p>WordPress is on track to provide more comprehensive support for emoji in the near future. Pendergast says the project is on target for the upcoming 4.2 release.</p>\n<p>In the meantime, if you’d like to add emoji support to your self-hosted WordPress site, <a href="http://wptavern.com/new-plugin-adds-open-source-emoji-one-support-to-wordpress" target="_blank">WP Emoji One</a> is a good option. The plugin was the first to bring support for the open source <a href="http://emojione.com/" target="_blank">Emoji One</a> character set to WordPress posts and pages.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Feb 2015 21:29:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:74:"WPTavern: This Week On WPWeekly: Wade Foster, Co-founder and CEO of Zapier";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39096";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"http://wptavern.com/this-week-on-wpweekly-wade-foster-co-founder-and-ceo-of-zapier";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1501:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/06/ZapierFeaturedImage.png" rel="prettyphoto[39096]"><img class="aligncenter size-full wp-image-24443" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/06/ZapierFeaturedImage.png?resize=650%2C200" alt="Zapier Featured Image" /></a></p>\n<p>This Wednesday at 9:30 PM Eastern on <a title="http://wptavern.com/wordpress-weekly" href="http://wptavern.com/wordpress-weekly">WordPress Weekly</a>, Marcus Couch and I will be joined by Wade Foster, Co-founder and CEO of <a title="https://zapier.com/" href="https://zapier.com/">Zapier</a>. Zapier is a service that acts as an integration point for more than 300 applications. <a title="https://zapier.com/zapbook/gravity-forms/" href="https://zapier.com/zapbook/gravity-forms/">GravityForms</a>, <a title="http://wptavern.com/wp-remote-now-supports-zapier" href="http://wptavern.com/wp-remote-now-supports-zapier">WP Remote</a>, and <a title="http://www.woothemes.com/products/woocommerce-zapier/" href="http://www.woothemes.com/products/woocommerce-zapier/">WooCommerce</a> are just a few examples of popular WordPress plugins and services that support Zapier. The following video explains how it works.</p>\n<p><span class="embed-youtube"></span></p>\n<p>We’re going to discuss the company’s history, how the service works, and interesting integrations people are creating with it. If you have questions you’d like us to ask Foster, submit them in the comments.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Feb 2015 02:30:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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: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:52:"WPTavern: The Dude: A Fun Alternative to Hello Dolly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39104";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wptavern.com/the-dude-a-fun-alternative-to-hello-dolly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2280:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/the-dude.jpg" rel="prettyphoto[39104]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/the-dude.jpg?resize=670%2C290" alt="the-dude" class="aligncenter size-full wp-image-39110" /></a></p>\n<p>This isn’t just a plugin, man. It’s <a href="https://wordpress.org/plugins/the-dude/" target="_blank">The Dude</a>, so that’s what you call it. That, or His Dudeness… Duder… or El Duderino, if, you know, you’re not into the whole brevity thing.</p>\n<p>It symbolizes the realization of an entire modern lazy hippie bowling amateur private investigator generation summed up in two words spoken most famously by Jeff Bridges.</p>\n<p>The Dude was created by WordPress developer <a href="http://kosvrouvas.com/" target="_blank">Kostas Vrouvas</a>, who seemed to have a bit of free time on his hands. It takes inspiration (and some code) from Matt Mullenweg’s <a href="https://wordpress.org/plugins/hello-dolly/" target="_blank">Hello Dolly</a> plugin, replacing the musical’s lyrics at the top of admin screens with quotes from <a href="http://www.imdb.com/title/tt0118715/">The Big Lebowski</a>.</p>\n<p>We tested the plugin and found that it works flawlessly. <a href="https://www.youtube.com/watch?v=VLR_TDO0FTg" target="_blank">The royal “we”</a>. You know, the editorial…</p>\n<p>Some of the random Lebowski quotes so far include:</p>\n<ul>\n<li>Walter, he peed on my rug!</li>\n<li>And, you know, he’s got emotional problems, man.</li>\n<li>Well, that’s like, your opinion, man.</li>\n<li>Also, my rug was stolen.</li>\n<li>You’re Mr. Lebowski. I’m the Dude.</li>\n<li>Oh, the usual. I bowl. Drive around. The occasional acid flashback.</li>\n<li>Mr. Treehorn treats objects like women, man.</li>\n<li>Hey, careful, man, there’s a beverage here!</li>\n</ul>\n<p>Amusing, yes? So if you prefer <a href="http://wptavern.com/ https://www.youtube.com/watch?v=sft3VHxru2s" target="_blank">Creedence</a> to Louis Armstrong, then you may want to mix yourself a white russian and activate <a href="https://wordpress.org/plugins/the-dude/" target="_blank">The Dude</a> on your WordPress blog.</p>\n<p>It really ties the site together.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Feb 2015 00:53: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:"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:16;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"WPTavern: Why WordPress Job Titles Don’t Mean Much Anymore";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39069";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wptavern.com/why-wordpress-job-titles-dont-mean-much-anymore";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3590:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/JobTitleFeaturedImage.png" rel="prettyphoto[39069]"><img class="size-full wp-image-39089" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/JobTitleFeaturedImage.png?resize=650%2C200" alt="Job Titles Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/58871905@N03/5565517971">I love ’84</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>Mario Peshev published a great article that looks at where the WordPress community stands on <a title="http://devwp.eu/wordpress-job-titles-skills-stand/" href="http://devwp.eu/wordpress-job-titles-skills-stand/">job titles and skills</a>. Peshev explains why titles are out of control and how they don’t match their expected skill sets.</p>\n<blockquote><p>The problem with a number of general titles is that they are overused and it is no longer clear what the real meaning and level of expertise is. Moreover, they are so general, that it’s easy to be fooled into misusing them, seeing how many people just tag themselves in those categories.</p></blockquote>\n<p>I find it fascinating we’re having conversations on what people in the WordPress ecosystem call themselves. This is a big problem for people looking for WordPress experts who are routinely let down, because the people they’re hiring don’t actually have the skills required to get the job done.</p>\n<p>In some ways, the conversation circles back to the idea of having a <a title="http://wptavern.com/should-automattic-create-and-manage-a-wordpress-certification-program" href="http://wptavern.com/should-automattic-create-and-manage-a-wordpress-certification-program">WordPress certification program</a>. With a certification program, a document would clarify a person’s proficiency in WordPress. However, I think it opens up a new can of worms and isn’t the only solution.</p>\n<h2>Comparing a Corporate World to WordPress</h2>\n<p>In a typical corporation, titles are clearly laid out and each one has a set of skills attached to it. Employees know what they need to learn to get promoted to the next level. Employees also know the skills a person has with a particular title due to standards that dictate how it’s earned. In the WordPress ecosystem, titles are not earned, but rather, routinely made up. For example, I’ve used WordPress for more than seven years and consider myself a WordPress Tinkerer.</p>\n<p>Peshev outlines three distinct problems with the lack of standards, best practices, and business know-how in the WordPress community.</p>\n<ol>\n<li>Serious clients can’t find experts since everyone is an expert.</li>\n<li>Experts don’t get approached for larger systems (due to (1) ) and their time is wasted by people with the wrong perception of <em>expert</em>.</li>\n<li>The lack of satisfied clients and contractors means fewer customers are willing to invest in WordPress, fewer contractors are able to dedicate time back to WordPress, and there are fewer products developed as a result of WordPress driven projects.</li>\n</ol>\n<p>When looking at the big picture, the situation is a mess. It seems everyone has a WordPress title with no clear way to determine the skills that back it. Outside of some sort of regulation, I don’t see how the situation can improve. Perhaps the community can rally together to create a list of titles and assign appropriate skills to them? If you use a title to express your skills and knowledge to potential clients, what is it?</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 16 Feb 2015 23:24:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:93:"WPTavern: Keep a CHANGELOG Project Aims to Standardize Best Practices for Writing Change Logs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39051";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wptavern.com/keep-a-changelog-project-aims-to-standardize-best-practices-for-writing-change-logs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3140:"<p>A change log is the quickest, most convenient way for users and contributors to identify significant changes in a project as it moves from one version to the next. The log exists to keep users informed.</p>\n<p>Unfortunately, many open source project leaders have little motivation to provide a meaningful CHANGELOG file and are purely focused on shipping the code. Instead of writing clear, understandable logs for a release, many developers resort to dumping git logs, which are often rife with messy commit messages, into the CHANGELOG file.</p>\n<p><a href="http://olivierlacan.com/" target="_blank">Olivier Lacan</a>, software engineer at <a href="https://www.codeschool.com/" target="_blank">Code School</a>, has created a site and corresponding GitHub repository called <a href="http://keepachangelog.com/" target="_blank">Keep a CHANGELOG</a>, with an extensive collection of recommendations for writing better change logs.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/keep-a-changelog.png" rel="prettyphoto[39051]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/keep-a-changelog.png?resize=1025%2C788" alt="keep-a-changelog" class="aligncenter size-full wp-image-39070" /></a></p>\n<p>The project page offers a variety of tips for improving change logs, i.e. how to list releases, recommended date format, sections and labels for classifying changes, and file naming convention.</p>\n<p>One helpful tip Lacan offers, which isn’t commonly seen among even the finest, hand-crafted CHANGELOGs, is the recommendation for keeping an “Unreleased” section at the top. This helps users track for potential changes in progress for upcoming releases. Maintaining an “Unreleased” section minimizes the effort of writing the logs at release time, as you can easily add the version number to the section as changes are added and create a new Unreleased header.</p>\n<h3>Software Tools Are for People</h3>\n<p>Lacan makes a strong case for prioritizing the creation of a changelog for your open source project:</p>\n<blockquote><p>Why should I care? Because software tools are for people. If you don’t care, why are you contributing to open source?</p></blockquote>\n<p>He hopes that the Keep a CHANGELOG project will help to shape a better CHANGELOG file convention for all open source projects. Discussions and suggestions are welcome in the <a href="https://github.com/olivierlacan/keep-a-changelog/issues" target="_blank">issues queue</a> of the project’s GitHub repository. Contributors have already logged more than two dozen considerations.</p>\n<p>WordPress.org offers some <a href="https://wordpress.org/news/2009/07/improving-your-plugin-changelogs/" target="_blank">basic tips for improving change logs</a>, but the official plugin directory doesn’t require developers to maintain a CHANGELOG file. Lacan’s <a href="http://keepachangelog.com/" target="_blank">Keep a CHANGELOG project</a> is a complementary resource that can help WordPress developers and all open source project managers to write better logs for users and contributors.</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, 16 Feb 2015 21:45:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:61:"WPTavern: Tickets On Sale For WordCamp North Canton, OH, 2015";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39054";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"http://wptavern.com/tickets-on-sale-for-wordcamp-north-canton-oh-2015";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2149:"<p> </p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/WCNorthCanton2015FeaturedImage.png" rel="prettyphoto[39054]"><img class="aligncenter size-full wp-image-39055" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/WCNorthCanton2015FeaturedImage.png?resize=650%2C314" alt="WordCamp North Canton 2015 Featured Image" /></a>Tickets are <a title="http://northcanton.wordcamp.org/2015/tickets/" href="http://northcanton.wordcamp.org/2015/tickets/">on sale</a> for the 3rd annual, WordCamp North Canton, OH, May 8th-9th. Tickets are available for Friday and Saturday, Friday only, or Saturday only. <span class="tix-ticket-excerpt">Friday features a full day of learning split between entrepreneur and WordPress sessions. Saturday is a full day of WordPress sessions with breakfast and lunch included in the ticket price. Ticket prices are as follows:</span></p>\n<ul>\n<li>$30 Friday and Saturday</li>\n<li>$20 Friday only</li>\n<li>$20 Saturday only</li>\n</ul>\n<p>The event takes place on the <a title="http://www.starkstate.edu/" href="http://www.starkstate.edu/">Stark State College campus</a> within the business and entrepreneurial center. As I <a title="http://wptavern.com/recap-of-wordcamp-north-canton-2014" href="http://wptavern.com/recap-of-wordcamp-north-canton-2014">mentioned last year</a>, the venue has high-speed internet so WiFi shouldn’t be a problem. Joe Rozsa, who is helping to organize the event, says lunch will be provided by <a title="http://www.solpiepizza.com/" href="http://www.solpiepizza.com/">SOL Pie Pizza</a>, formerly known as <a title="http://ermannospizza.com/" href="http://ermannospizza.com/">Ermannos Pizza</a>.</p>\n<p>Speakers have yet to be confirmed, but I’ll be participating on a panel discussion on <a title="http://wordpress.tv/2014/02/14/chris-lema-escaping-the-impostor-syndrome/" href="http://wordpress.tv/2014/02/14/chris-lema-escaping-the-impostor-syndrome/">imposter syndrome</a>. We’re going to share our experiences battling the syndrome on a daily basis and give advice on how to avoid its influence. Let me know if you plan on attending.</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, 16 Feb 2015 20:18: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:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:19;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"Matt: Jonathan Ive Profile";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44703";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:42:"http://ma.tt/2015/02/jonathan-ive-profile/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2030:"<blockquote><p>Jobs’s taste for merciless criticism was notorious; Ive recalled that, years ago, after seeing colleagues crushed, he protested. Jobs replied, “Why would you be vague?,” arguing that ambiguity was a form of selfishness: “You don’t care about how they feel! You’re being vain, you want them to like you.” Ive was furious, but came to agree. “It’s really demeaning to think that, in this deep desire to be liked, you’ve compromised giving clear, unambiguous feedback,” he said. He lamented that there were “so many anecdotes” about Jobs’s acerbity: “His intention, and motivation, wasn’t to be hurtful.”</p></blockquote>\n<p>Your one #longread today should be <a href="http://www.newyorker.com/magazine/2015/02/23/shape-things-come">the New Yorker’s profile of Jonathan Ive</a> by Ian Parker. This anecdote resonated with me from the time I (poorly) did design for a living, and how much patience and stoicism are part of the job when working with a deciding stakeholder, often known as a client:</p>\n<blockquote><p>Bob Mansfield, a former senior hardware engineer at Apple, who is now semi-retired, recently described the pique that some colleagues felt about Ive’s privileged access. As he put it, “There’s always going to be someone vying for Dad’s attention.” But Mansfield was grateful for Ive’s cool handling of a C.E.O. who was “not the easiest guy to please.” Mansfield’s view was “Jony puts up with a lot, and, as a result of him doing it, people like me don’t have to.”</p></blockquote>\n<p>This also made me giggle.</p>\n<blockquote><p>Brunner is proud of the Beats brand, but it took him time to adjust to a design rhythm set as if for a sneaker company: “Originally, I hated it—‘Let’s do a version in the L.A. Lakers’ colors!’ ” He laughed. “ ‘Great. Purple and yellow. <em>Fantastic</em>.’ ”</p></blockquote>\n<p><a href="http://www.newyorker.com/magazine/2015/02/23/shape-things-come">Check out the entire thing</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 16 Feb 2015 16:01:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:20;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"Matt: Pollan on Psychedelics";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44682";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://ma.tt/2015/02/pollan-on-psychedelics/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:643:"<p>To make it a full New Yorker weekend, here’s a <a href="http://longreads.com/">longread</a> from <a href="http://michaelpollan.com/">Michael Pollan</a>, best known for his book <a href="http://michaelpollan.com/books/the-omnivores-dilemma/">Omnivore’s Dilemma</a>, on <a href="http://www.newyorker.com/magazine/2015/02/09/trip-treatment">the reopened research on the potential therapeutic uses of psychedelics</a>. While we’re on Pollan it’s worth repeating his advice from <a href="http://michaelpollan.com/books/food-rules/">Food Rules</a>, <strong>“Eat food, not too much, mostly plants.”</strong></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 16 Feb 2015 00:54:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:27:"Matt: Ex Girlfriend Meeting";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44667";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://ma.tt/2015/02/ex-girlfriend-meeting/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:350:"<p>Since it’s Valentine’s day, here’s a little humor from the New Yorker’s Hallie Cantor: <a href="http://www.newyorker.com/humor/daily-shouts/imagine-boyfriends-ex-girlfriends-right-now">What I Imagine My Boyfriend’s Ex-Girlfriends Are Doing Right Now</a>. (That the character is named Matt is completely coincidental.)</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, 14 Feb 2015 18:20: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: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:60:"WPTavern: Mayer WordPress Theme is Now Open Source on GitHub";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38975";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wptavern.com/mayer-wordpress-theme-is-now-open-source-on-github";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5274:"<p>Tom McFarlin released his <a href="https://github.com/pressware/mayer" target="_blank">Mayer WordPress theme on GitHub</a> today. The theme was designed with writers, bloggers, and authors in mind and was previously only <a href="https://theme.wordpress.com/themes/mayer/" target="_blank">available to WordPress.com users for $79</a>.</p>\n<p>Mayer is unique in that it was created to get users writing immediately, without having a bunch settings pages or additional widgets to configure. Content in the post editor is styled to match the front end, so users don’t need to leave the editor in order to see how it’s going to look.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mayer-for-wordpress-1024x819.png" rel="prettyphoto[38975]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mayer-for-wordpress-1024x819.png?resize=1024%2C819" alt="mayer-for-wordpress-1024x819" class="aligncenter size-full wp-image-39004" /></a></p>\n<p>Technically, the theme is already open source in terms of its licensing. However, up until this point, it was only distributed commercially via WordPress.com. McFarlin has written <a href="https://tommcfarlin.com/open-source-wordpress-themes/" target="_blank">several</a> <a href="https://tommcfarlin.com/mayer-for-wordpress-now-on-github/" target="_blank">posts</a> about how he came to the decision to make his products freely available on GitHub. He cites collaboration and accountability as the driving factors in his decision:</p>\n<p>“The advantage to this means that all of the work that the team and I have backlogged for this project (and for future projects) is publicly visible if for no other reason than for accountability,” he said. “Ideally though, we’d be able to benefit from the open source community that comes in the form of code reviews, pull requests, or just general conversations to help make the core product better.”</p>\n<h3>Free Products ≠ Free Support</h3>\n<p>Any theme or plugin author who decides to distribute a product for free will inevitably find the burden of support knocking at the door. It’s important to specify how much support, if any, is included for users who are receiving a product for free.</p>\n<p>“If the code itself falls under an open source license, then I’m willing to make the code freely available,” McFarlin said. <strong>“This does not mean that I’m willing to support the code base for those who haven’t paid, but that leads into an entirely different discussion.”</strong></p>\n<p>McFarlin will continue to sell the Mayer theme through his <a href="http://shop.pressware.co/mayer/" target="_blank">Pressware shop</a>. The $99/year price tag offers users professional support for a year.</p>\n<p>“To be clear, I’m not attempting yet-another-way to monetize or popularize a theme in hopes of making money,” McFarlin said. “The short of it is that the theme will sell given the right marketplace. If someone wants to freely use the theme, that’s fine – why not? After all, it may result in some pull requests or other issues that will improve the core theme.”</p>\n<p>Based on his experience navigating user expectations from open source software, McFarlin believes that there is no escaping the issue of support.</p>\n<p>“<span class="pullquote alignleft">I think that if you’re in the business of WordPress products (versus services), you’re in the support business whether you intend to be or not.</span> Everything that you release – regardless of where the transaction actually happens – is going to yield support from some of the customers,” he said.</p>\n<p>“In order to gain access to said support, the transaction just moves back one step from after accessing the source code rather than before accessing the source code.”</p>\n<p>This model is almost entirely the opposite of the larger theme marketplaces, such as Themeforest, where the customer has no option to preview the code or have a developer preview the code before purchasing the product. It’s essentially a blind purchase in hopes that you won’t have to ask for too much support.</p>\n<p>McFarlin is banking on the fact that users who need professional support will be willing to pay for it. <a href="http://themehybrid.com/" target="_blank">Theme Hybrid</a> is one notable shop that has pioneered this model for years, offering all of its open source products for free and charging for paid support. WordPress.com does something similar, with many of its free themes mirrored on WordPress.org. Pressware is moving in a similar direction and will be creating a products division to further experiment with the model. McFarlin plans to put more work up on GitHub in the future and will continue to write about his experience.</p>\n<p>The vast majority of WordPress theme developers have not experimented with this distribution model. For the most part, theme shops sell their products and free versions, if offered, are only available with a limited set of features. McFarlin hopes to prove that in an open source marketplace, a business can successfully sell support for a product that it’s already giving away for free.</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, 13 Feb 2015 23:56: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: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:60:"WPTavern: Excellent Primer on the WordPress REST API Project";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=39010";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wptavern.com/excellent-primer-on-the-wordpress-rest-api-project";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1981:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WordPressRestAPIPrimerFeaturedImage.png" rel="prettyphoto[39010]"><img class="size-full wp-image-39017" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WordPressRestAPIPrimerFeaturedImage.png?resize=655%2C327" alt="Rest API Primer Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/22280677@N07/3349296482">The Poor Man’s Racehorse?</a> – <a href="https://creativecommons.org/licenses/by-nd/2.0/">(license)</a>\n<p>In the past two years, there’s been a lot of discussion surrounding the <a title="https://github.com/WP-API/WP-API" href="https://github.com/WP-API/WP-API">WordPress REST API project</a>. If you’re not familiar with it, Brian Krogsgard <a title="https://poststatus.com/wordpress-json-rest-api/" href="https://poststatus.com/wordpress-json-rest-api/">published a great article</a> that explains what it is, how to get involved, and the possibilities it opens up to developers. Krogsgard believes the REST API is “the most exciting project for the platform since custom post types were introduced in WordPress 2.9 and 3.0.”</p>\n<p>While the article does a good job explaining what the API is, I find it to be developer heavy for my understanding. I think it’s a project that I won’t truly understand how great it is until I use products built with it.</p>\n<p>For additional information, read our <a title="http://wptavern.com/ryan-mccue-on-creating-the-json-rest-api-for-wordpress" href="http://wptavern.com/ryan-mccue-on-creating-the-json-rest-api-for-wordpress">interview from 2013 with Ryan McCue</a>, project lead for the WordPress REST API. In the interview, McCue explains why the API is such a big deal and lists a few practical use cases. There’s also a great presentation from WordCamp San Francisco 2014 by Sam Hotchkiss, that explains how APIs like the REST API are changing the internet.</p>\n<p></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 13 Feb 2015 22:46:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:24;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:92:"WPTavern: HeroPress Fails to Attract Backers, Cancels Kickstarter Campaign Ahead of Deadline";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38963";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wptavern.com/heropress-fails-to-attract-backers-cancels-kickstarter-campaign-ahead-of-deadline";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2467:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/heropress-funding-canceled.jpg" rel="prettyphoto[38963]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/heropress-funding-canceled.jpg?resize=1008%2C392" alt="heropress-funding-canceled" class="aligncenter size-full wp-image-38973" /></a></p>\n<p>Topher DeRosia, creator of <a href="http://wptavern.com/heropress-launches-kickstarter-campaign-to-highlight-wordpress-developers" target="_blank">HeroPress</a>, <a href="http://heropress.com/cancelling-kickstarter-1/" target="_blank">announced</a> today that he is canceling the project’s Kickstarter campaign. During the past few weeks, the project attracted 33 backers who pledged $21,855 of the $60,000 AUD goal. When it became clear that the fundraiser was hopelessly behind on reaching its goal, DeRosia canceled the funding three days ahead of its deadline.</p>\n<blockquote><p>The Kickstarter contributors were great. The verbal and public support of people were wonderful. And lastly the naysayers were welcome and useful. With very few exceptions our detractors enhanced what we were doing, and I appreciate it.</p></blockquote>\n<p>HeroPress encountered no small amount of resistance from those who either didn’t support the concept or didn’t appreciate the approach. The project’s mission was to “develop the WordPress heroes of the world by sharing the accumulated wisdom of the community.” HeroPress’ communication strategy failed to communicate the mission of the project and struggled to identify practical goals, apart from creating videos to inspire community members.</p>\n<p>DeRosia attempted to further clarify the mission of the project through <a href="https://www.kickstarter.com/projects/heropress/heropress-developing-the-wordpress-heroes-of-the-w/posts" target="_blank">short interviews with potential speakers</a> and supporters. Unfortunately, the video updates didn’t adequately represent the quality of videos that the HeroPress creator hoped to deliver on his $60,000 AUD budget for the project.</p>\n<p>“Our plan at this point is to huddle and make a new plan and give it another shot,” DeRosia said. “We’ve learned an enormous amount about our audience, their needs, and our capabilities.” He plans to continue HeroPress with a new, more cost-effective approach that will better address the needs the project was created to solve.</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, 13 Feb 2015 20:19:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:49:"WPTavern: DevPress Retires Its Best Selling Theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38968";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wptavern.com/devpress-retires-its-best-selling-theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4439:"<p>Devin Price, who owns and operates the WordPress commercial theme shop <a title="https://devpress.com/" href="https://devpress.com/">DevPress</a>, <a title="https://devpress.com/zelda-released-zenith-retired/" href="https://devpress.com/zelda-released-zenith-retired/">announced</a> that he is retiring his best selling theme, <a title="https://devpress.com/demo/zenith" href="https://devpress.com/demo/zenith">Zenith</a>. I asked Price why he’s retiring his best product.</p>\n<p>“Retirement may not be the best term. It’s more like introducing the new year’s model and stopping production on the previous one. The designs match pretty close, but there were a lot of under the hood updates I wanted to do that would have broken child themes and created compatibility issues for existing customers.”</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/DevPressZeldaTheme.png" rel="prettyphoto[38968]"><img class="size-full wp-image-38970" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/DevPressZeldaTheme.png?resize=880%2C660" alt="Zelda Replaces Zenith" /></a>Zelda Replaces Zenith\n<p>The HTML markup in Zelda is almost entirely rewritten. “If I was a customer who had spent hours making customizations through a child theme, I would be sorely disappointed when I clicked that auto-update button. Whereas, introducing a new version let’s the user decide whether to switch or not.” Price said. He plans on supporting Zenith for another year to give customers an opportunity to decide whether or not to switch to the new theme.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ThemeRetirement.png" rel="prettyphoto[38968]"><img class="size-full wp-image-38982" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ThemeRetirement.png?resize=650%2C200" alt="Theme Retirement" /></a>photo credit: <a href="http://www.flickr.com/photos/120360673@N04/13856166954">Retirement Calendar</a> – <a href="https://creativecommons.org/licenses/by-sa/2.0/">(license)</a>\n<p>Price <a title="https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/#comment-799966" href="https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/#comment-799966">gives more insight</a> into his strategy within the comments of an article written by Tom McFarlin on <a title="https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/" href="https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/">planned obsolescence of WordPress themes</a>.</p>\n<blockquote><p>I think planned obsolescence or ‘theme retirement’ is a really good option for theme shops. Big updates (like converting a theme to be responsive, or using new development techniques like icon fonts) is sometimes really difficult to do in a way that won’t break child themes.</p>\n<p>We’re using a mix of the ‘Fork It’ and ‘Retire It’ options at DevPress. The ‘Cascade’ theme will become ‘Cascadia’ (for example) and we’ll make the new theme available for free to all customers who purchased the free version. Less popular themes will just be retired as we add new themes to take their place.</p></blockquote>\n<p>Although theme shops are able to retire themes and set up redirects to newer versions, retiring a theme is not as easy to do on the WordPress theme directory. According to Price, “You can request a takedown and release a theme under a different name, but there’s no way to 301 redirect the established traffic to the new spot.” Not only does a theme author lose traffic, but they also can’t push out critical updates for retired themes.</p>\n<p>DevPress isn’t the first theme shop to use a retirement strategy. Since 2012, WooThemes has <a title="http://docs.woothemes.com/document/retired-themes/" href="http://docs.woothemes.com/document/retired-themes/">retired 92</a> themes. Array also <a title="https://array.is/theme-retirement/" href="https://array.is/theme-retirement/">retires themes</a>, but offers them for free with no support. A theme retirement strategy makes sense from a business perspective, but as a customer, I expect themes I buy to stick around for a year or more.</p>\n<p>As a customer, what do you think about commercial theme companies retiring themes? For commercial theme shops, how does such a strategy help your business?</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, 13 Feb 2015 20:13:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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: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:27:"Matt: Passing of David Carr";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44692";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://ma.tt/2015/02/passing-of-david-carr/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"<p>Shocked and dismayed this morning on the news that David Carr passed last night after collapsing in the New York Times newsroom, where he was working into the evening. If you’re not familiar with his work or legacy, <a href="http://mediagazer.com/150212/p36#a150212p36">these links on Mediagazer are a good start</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, 13 Feb 2015 16:04: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:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:27;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:62:"WPTavern: A Look Back at 16 Automattic Acquisitions Since 2007";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38863";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wptavern.com/a-look-back-at-16-automattic-acquisitions-since-2007";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:23673:"<p>Since <a title="http://automattic.com/" href="http://automattic.com/">Automattic</a> was founded in 2005, it has acquired several businesses, services, products, and people. In August, the company will be 10 years old and I thought it would be interesting to see if the acquisitions the company has made are still around. The list is organized from earliest to latest.</p>\n<h2>Gravatar</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/GravatarLogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-18453 size-full" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/GravatarLogo.png?resize=239%2C63" alt="Gravatar Logo 2" /></a> <a title="http://en.gravatar.com/" href="http://en.gravatar.com/">Gravatar</a> stands for globally recognized avatar and is an image that follows you around on the web. This eliminates the hassle of maintaining a visual identity across multiple communities. In 2014, what was supposed to be a Gravatar mobile app, <a title="http://wptavern.com/automattics-planned-gravatar-app-morphs-into-a-selfies-app-for-android" href="http://wptavern.com/automattics-planned-gravatar-app-morphs-into-a-selfies-app-for-android">morphed into a Selfies app for Android</a>. Although Gravatar is supported in a number of applications, I think there’s still a lot of work to do before it becomes a globally recognized image. Gravatar was created by Tom Werner and <a title="http://blog.gravatar.com/2007/10/18/automattic-gravatar/" href="http://blog.gravatar.com/2007/10/18/automattic-gravatar/">acquired in 2007</a>.</p>\n<h2>BuddyPress Acqui-hire</h2>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2009/04/buddypresslogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-966 size-full" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2009/04/buddypresslogo.png?resize=212%2C76" alt="BuddyPress Logo" /></a><a title="https://buddypress.org/" href="https://buddypress.org/">BuddyPress</a> was conceived <a title="https://buddypress.org/about/story/" href="https://buddypress.org/about/story/">in 2008</a> by Andy Peatling and started out as a set of plugins to add social networking features to WordPress MU (multi-user). In March of 2008, Peatling was <a title="http://ma.tt/2008/03/backing-buddypress/" href="http://ma.tt/2008/03/backing-buddypress/">acqui-hired by Automattic</a> and joined the company as an employee. Peatling is not as active in BuddyPress core development, but thanks to John James Jacoby and the community surrounding it, it’s still an actively developed project. BuddyPress 2.2 <a title="http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api" href="http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api">was released in February and </a>features a new member type API and several bug fixes.</p>\n<h2>IntenseDebate</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2009/08/intensedebatelogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-2326 size-full" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2009/08/intensedebatelogo.png?resize=189%2C43" alt="IntenseDebate Logo" /></a><a title="http://intensedebate.com/home" href="http://intensedebate.com/home">IntenseDebate</a> is a third-party commenting service that showed a lot of promise of being a premiere service to replace the native commenting system in WordPress. It synced comments from the service to the local database to ensure no comments were lost. The service <a title="http://blog.intensedebate.com/2009/03/05/introducing-intensedebate-plugins-add-the-features-you-want/" href="http://blog.intensedebate.com/2009/03/05/introducing-intensedebate-plugins-add-the-features-you-want/">introduced</a> a <a title="http://intensedebate.com/plugins" href="http://intensedebate.com/plugins">plugin eco-system</a> in 2009, that I think if given more time, would have helped the service fly past the competition. Unfortunately, development on the service came to a halt somewhere <a title="http://wptavern.com/what-is-the-future-of-comments-in-wordpress" href="http://wptavern.com/what-is-the-future-of-comments-in-wordpress">between 2012 and 2013</a>.</p>\n<p>IntenseDebate was founded by Isaac Keyet and Jon Fox in 2006 and was <a title="http://ma.tt/2008/09/intense-debate-goes-automattic/" href="http://ma.tt/2008/09/intense-debate-goes-automattic/">acquired by Automattic</a> in 2008.</p>\n<h2>Polldaddy</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2010/02/polldaddylogo2.png" rel="prettyphoto[38863]"><img class="alignright size-full wp-image-3334" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2010/02/polldaddylogo2.png?resize=242%2C56" alt="polldaddylogo2" /></a><a title="https://polldaddy.com/" href="https://polldaddy.com/">Polldaddy</a> is a platform agnostic service that lets users create surveys and polls. Polldaddy was founded in 2006 by David Lenehan in Sligo, Ireland and was <a title="http://blog.polldaddy.com/2008/10/15/automattic-acquires-polldaddy/" href="http://blog.polldaddy.com/2008/10/15/automattic-acquires-polldaddy/">acquired by Automattic</a> in 2008. Between 2006 and when the company was acquired, about 1 million polls were created and 195 million votes were collected. At the time of Polldaddy’s acquisition, Automattic had <a title="http://www.theguardian.com/technology/pda/2010/nov/26/ireland-sligo-polldaddy-wordpress-startup" href="http://www.theguardian.com/technology/pda/2010/nov/26/ireland-sligo-polldaddy-wordpress-startup">about 20 employees</a>.</p>\n<h2>Blo.gs</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/blogslogo.png" rel="prettyphoto[38863]"><img class="alignright size-full wp-image-38873" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/blogslogo.png?resize=244%2C90" alt="blogs logo" /></a><a title="http://blo.gs" href="http://blo.gs">Blog.gs</a> is a directory of recently updated blogs founded in 2002 by Jim Winstead. In 2005, the company was <a title="http://trainedmonkey.com/2005/6/14/blo_gs_has_been_acquired_by_yahoo_" href="http://trainedmonkey.com/2005/6/14/blo_gs_has_been_acquired_by_yahoo_">acquired by Yahoo!</a> and in 2009, transferred to Automattic. According to the <a title="http://ma.tt/2009/04/blogs-lives-on/" href="http://ma.tt/2009/04/blogs-lives-on/">announcement</a>, Automattic planned to beef up the service, “We’re looking forward to beefing up the service and giving it a refresh, while continuing its reputation for reliability.” The site’s design hasn’t changed in years and features like search and ping submissions are broken.</p>\n<h2>After the Deadline</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2009/09/afterthedeadlinelogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-2512 size-full" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2009/09/afterthedeadlinelogo.png?resize=253%2C60" alt="afterthedeadlinelogo" /></a><a title="http://www.afterthedeadline.com/" href="http://www.afterthedeadline.com/">After the Deadline</a> is a contextual spell checking service created in 2009 by Raphael Mudge. Out of all the acquisitions Automattic has made, Mudge has <a title="http://blog.afterthedeadline.com/2009/09/08/after-the-deadline-acquired/" href="http://blog.afterthedeadline.com/2009/09/08/after-the-deadline-acquired/">one of the best acquisition stories</a> I’ve read. After <a title="http://news.ycombinator.com/item?id=636168" href="http://news.ycombinator.com/item?id=636168">publishing a comment</a> on a Hacker News article showing off how AtD works, Mullenweg got in touch with Mudge and acquired the company in 2009.</p>\n<p>Mudge stayed with the company for a few years, but moved on to focus his energy on a new passion, <a title="http://www.advancedpentest.com/" href="http://www.advancedpentest.com/">cyber security</a>. AtD is actively developed and is available as <a title="http://jetpack.me/support/spelling-and-grammar/" href="http://jetpack.me/support/spelling-and-grammar/">a module in Jetpack</a>.</p>\n<h2>Plinky</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Plinkylogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-38875 size-full" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Plinkylogo.png?resize=283%2C127" alt="Plinkylogo" /></a><a title="http://www.plinky.com/" href="http://www.plinky.com/">Plinky</a> is a service created by Thing Labs that inspired users to write content. Every day Plinky displayed a prompt with a question, idea, or challenge. Writers answered the challenge using the Plinky editor which made it easy to add rich media and send posts to social media services. Plinky was acquired by Automattic in 2010. In 2014, user registration was disabled and the service was placed into archive mode.</p>\n<h2>Code Garage</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2012/12/CodeGaragelogo.jpg" rel="prettyphoto[38863]"><img class="alignright wp-image-6754 size-full" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2012/12/CodeGaragelogo.jpg?resize=262%2C54" alt="Code Garage Logo" /></a><a title="http://codegarage.com/blog/" href="http://codegarage.com/blog/">Code Garage</a> provided backups, security scanning, and crisis control for WordPress sites. Customers could monitor 5 websites for $25 a month which was more affordable than VaultPress which charged a flat fee per site. Code Garage was founded in 2010 and <a title="http://blog.vaultpress.com/2012/12/21/vaultpress-in-the-garage/" href="http://blog.vaultpress.com/2012/12/21/vaultpress-in-the-garage/">acquired by Automattic</a> in 2012.</p>\n<p>In May of 2013, Code Garage <a title="http://wptavern.com/code-garage-migrations-are-underway" href="http://wptavern.com/code-garage-migrations-are-underway">migrated customers</a> to VaultPress and promptly shut the service down in July. As part of the acquisition, Peter Butler, one of the company’s founders, joined Automattic to work with the VaultPress team.</p>\n<h2>Simperium and Simplenote</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Simperiumlogo.png" rel="prettyphoto[38863]"><img class="alignright size-full wp-image-38878" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Simperiumlogo.png?resize=127%2C126" alt="Simperiumlogo" /></a> <a title="https://simperium.com/" href="https://simperium.com/">Simperium </a>is the creator of <a title="http://simplenote.com/" href="http://simplenote.com/">SimpleNote</a>, a note taking app that is synchronized across platforms. Simperium is a data synchronization service that allows developers to move data everywhere it’s needed. The company was founded in 2010 and <a title="http://ma.tt/2013/01/simplenote-and-simperium/" href="http://ma.tt/2013/01/simplenote-and-simperium/">acquired by Automattic</a> in 2013.</p>\n<h2>Poster</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/PosterApp.png" rel="prettyphoto[38863]"><img class="alignright size-medium wp-image-38945" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/PosterApp.png?resize=300%2C148" alt="Poster Mobile App" /></a>Poster was a slick, easy to use, WordPress mobile app for iOS that was founded by <a title="http://www.tomwitkin.com/" href="http://www.tomwitkin.com/">Tom Witkin</a> and <a title="http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/" href="http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/">acquired in 2013</a>. After the acquisition, the app was removed from the App Store and Witkin joined the mobile team at Automattic.</p>\n<p>Frederic Lardinois, who <a title="http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/" href="http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/">wrote about the news</a> on TechCrunch, described the app as, “one of the most elegant and smarter mobile WordPress clients.” The WordPress mobile apps continue to get better, but it’s unclear which improvements have been influenced by Witkin or Poster.</p>\n<h2>Lean Domain Search</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2013/07/LeanDomainSearchLogo.jpg" rel="prettyphoto[38863]"><img class="alignright size-full wp-image-7919" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2013/07/LeanDomainSearchLogo.jpg?resize=259%2C51" alt="Lean Domain Search Logo" /></a><a title="http://www.leandomainsearch.com/" href="http://www.leandomainsearch.com/">Lean Domain Search </a>is a service that allows users to find and register domain names. One of its signature features is the domain name generator which suggests domains based on a word or phrase. Lean Domain Search was created by Matt Mazur in 2012 and <a title="http://www.leandomainsearch.com/blog/45-lean-domain-search-acquired-by-automattic" href="http://www.leandomainsearch.com/blog/45-lean-domain-search-acquired-by-automattic">acquired in 2013.</a> When users find a domain they like, Lean Domain Search provides an option to register it and create a new blog on WordPress.com. Thanks to the acquisition, the service is still available and free to use.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/LeanDomainSearchResults.png" rel="prettyphoto[38863]"><img class="size-full wp-image-38882" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/LeanDomainSearchResults.png?resize=996%2C761" alt="Lean Domain Search Results" /></a>Lean Domain Search Results\n<p> </p>\n<h2>Cloudup</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2013/12/cloudup.png" rel="prettyphoto[38863]"><img class="alignright wp-image-12353 size-thumbnail" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2013/12/cloudup.png?resize=150%2C150" alt="cloudup" /></a><a title="https://cloudup.com/" href="https://cloudup.com/">Cloudup</a> is a free file-sharing service founded by Thianh Lu and Guillermo Rauch in 2010 and <a title="http://ma.tt/2013/09/automattic-cloudup/" href="http://ma.tt/2013/09/automattic-cloudup/">acquired in 2013</a>. <a title="http://techcrunch.com/2013/09/25/automattic-acquires-file-sharing-service-cloudup-to-build-faster-media-library-and-enable-co-editing/" href="http://techcrunch.com/2013/09/25/automattic-acquires-file-sharing-service-cloudup-to-build-faster-media-library-and-enable-co-editing/">According to TechCrunch</a>, the acquisition was supposed to help Automattic improve two particular features on WordPress.com. The media library used for uploading visual content and co-editing to give multiple users the ability to edit a post at the same time.</p>\n<p>Immediately following the deal, the team was tasked with revamping the post editor and replacing the media library on WordPress.com with Cloudup. Although Cloudup has <a title="https://cloudup.com/blog" href="https://cloudup.com/blog">continued to add new features</a>, it has yet to replace the media library or add the ability to edit posts at the same on WordPress.com.</p>\n<h2>Longreads</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/longreads.jpg" rel="prettyphoto[38863]"><img class="alignright size-medium wp-image-20743" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/longreads.jpg?resize=300%2C95" alt="longreads" /></a><a title="http://longreads.com/" href="http://longreads.com/">Longreads</a> is dedicated to finding and sharing the best long-form stories on the web. Longreads was founded by Mark Armstrong in 2009 and <a title="http://en.blog.wordpress.com/2014/04/09/longreads-joins-automattic/" href="http://en.blog.wordpress.com/2014/04/09/longreads-joins-automattic/">acquired in 2014. </a>Longreads operates under a paid subscription model with plans ranging from $3-5 per month.</p>\n<h2>Scroll Kit</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/scroll-kit.png" rel="prettyphoto[38863]"><img class="alignright size-medium wp-image-21768" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/scroll-kit.png?resize=300%2C158" alt="scroll-kit" /></a> <a title="http://www.scrollkit.com/" href="http://www.scrollkit.com/">Scroll Kit</a> allowed users to create web pages without writing a line of code using a powerful visual editor. It made headlines when co-founder, Cody Brown, <a title="http://techcrunch.com/2013/05/21/snow-fail-the-new-york-times-and-its-misunderstanding-of-copyright/" href="http://techcrunch.com/2013/05/21/snow-fail-the-new-york-times-and-its-misunderstanding-of-copyright/">recreated the famous Snow Fall piece</a> from the New York Times. Brown said he made the replica site in only an hour, “The New York Times spent hundreds of hours hand-coding ‘Snow Fall.’ We made a replica in an hour.”</p>\n<p>Founded by Kate Ray and Cody Brown, <a title="http://www.scrollkit.com/" href="http://www.scrollkit.com/">Scroll Kit</a> was <a title="http://ma.tt/2014/04/scrollkit-and-longreads-at-automattic/" href="http://ma.tt/2014/04/scrollkit-and-longreads-at-automattic/">acquired in 2014</a>. According to an announcement on the <a title="http://www.scrollkit.com/" href="http://www.scrollkit.com/">Scroll Kit website</a>, Ray and Brown joined the WordPress.com product team. Scroll Kit shut down its service and users had three months to export their content. I’ve never used Scroll Kit, so it’s hard to determine what improvements are influenced by Ray and Brown. <a title="http://wptavern.com/automattic-snaps-up-scroll-kit-to-add-to-the-wordpress-com-product-team" href="http://wptavern.com/automattic-snaps-up-scroll-kit-to-add-to-the-wordpress-com-product-team">We questioned</a> whether Scroll Kit’s editor would be added to the theme editing experience on WordPress.com. As a WordPress.com user, I haven’t noticed any major changes to the theme editing experience since the acquisition.</p>\n<h2>Parka</h2>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2013/07/bruteforcelogo.jpg" rel="prettyphoto[38863]"><img class="alignright size-full wp-image-7693" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2013/07/bruteforcelogo.jpg?resize=228%2C219" alt="Brute Protect Logo" /></a><a title="http://getparka.com/" href="http://getparka.com/">Parka</a> is the parent company of <a title="https://bruteprotect.com/" href="https://bruteprotect.com/">BruteProtect,</a> a service that provides brute force login protection for thousands of sites. Parka was established in 2013 by Sam Hotchkiss and <a title="http://jetpack.me/2014/08/26/automattic-bruteprotect/" href="http://jetpack.me/2014/08/26/automattic-bruteprotect/">acquired in 2014. </a>All seven Parka employees joined Automattic and are part of the Jetpack development team.</p>\n<p>As part of the acquisition, <a title="https://my.bruteprotect.com/" href="https://my.bruteprotect.com/">BruteProtect pro</a> services became free to use. BruteProtect is undergoing a transformation as it’s merged into Jetpack as a module. Merging with Jetpack will give millions of sites free brute force login protection making the web a safer place.</p>\n<h2>Code For The People</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/CodeForThePeopleLogo.png" rel="prettyphoto[38863]"><img class="alignright wp-image-38941 size-full" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/CodeForThePeopleLogo.png?resize=270%2C132" alt="CodeForThePeopleLogo" /></a><a title="http://codeforthepeople.com/" href="http://codeforthepeople.com/">Code For The People</a> is a WordPress development agency based in the United Kingdom and a long time partner of the <a title="http://vip.wordpress.com/" href="http://vip.wordpress.com/">WordPress.com VIP program</a>. Founded by Simon Dickson and Simon Wheatley, Code For The People was <a title="http://wptavern.com/automattic-acquires-code-for-the-people-expands-wordpress-com-vips-reach-into-european-markets" href="http://wptavern.com/automattic-acquires-code-for-the-people-expands-wordpress-com-vips-reach-into-european-markets">acquired in 2014. </a>All six employees joined Automattic and will help out the VIP team during European hours.</p>\n<p>This acquisition is historic for two reasons. The first is that CTFP is the first WordPress development agency to be acquired by Automattic. Second, CFTP employee John Blackbourn was leading<a title="http://wptavern.com/meet-john-blackbourn-wordpress-4-1-release-lead" href="http://wptavern.com/meet-john-blackbourn-wordpress-4-1-release-lead"> the development cycle for WordPress 4.1</a> when the acquisition occurred, turning him into an Automattic employee.</p>\n<p>In addition to talent, they also obtained CFTP’s <a href="http://babbleplugin.com/" target="_blank">Babble</a> plugin, an open source multilingual tool, that will continue to be maintained by Automattic. According to <a title="http://techcrunch.com/2014/11/06/automattic-buys-uks-code-for-the-people-to-build-out-its-wordpress-vip-enterprise-business/" href="http://techcrunch.com/2014/11/06/automattic-buys-uks-code-for-the-people-to-build-out-its-wordpress-vip-enterprise-business/">TechCrunch</a>, Mullenweg says Babble was a key part of the deal.</p>\n<h2>Thoughts and Observations</h2>\n<p>While going through the list of acquisitions Automattic has made over the years, a few things occurred to me. For all the great talent Automattic has acquired, it’s difficult to determine an individual’s influence on WordPress.com products. For instance, as an individual, Tom Witkin created an awesome mobile app for WordPress. Since being acquired, I can’t tell which improvements in the <a title="https://apps.wordpress.org/" href="https://apps.wordpress.org/">WordPress for iOS app</a> are the result of his work.</p>\n<p>Whether it’s due to time, difficulty, or other factors, certain items in some of the acquisition announcements have failed to materialize. A good example is the Cloudup acquisition. Nearly two years after the deal happened, WordPress.com and the self-hosted version still lack the ability to co-edit a post at the same time. There’s also no improvements to the media library I can trace back to the Cloudup team. It’s unclear if these are items still on the priority list or if they’ve been discarded.</p>\n<p>Another thing I noticed is that I didn’t recognize most of the businesses, products, and services acquired until after the acquisition announcement was published. It indicates Mullenweg has his eye on up and coming properties doing awesome things in the space. Unfortunately, in some instances, it means the product or service is shut down by Automattic eliminating any opportunity to use it. Poster, Blo.gs, and Scroll Kit immediately come to mind as things I’ll never have the chance to use.</p>\n<p>I hope you enjoyed this trip down memory lane. We’re at the beginning of a new year and with <a title="http://recode.net/2014/05/05/wordpress-parent-automattic-has-raised-160-million-now-valued-at-1-16-billion-post-money/" href="http://recode.net/2014/05/05/wordpress-parent-automattic-has-raised-160-million-now-valued-at-1-16-billion-post-money/">Automattic raising $160M in 2014</a>, it’s only a matter of time before we read about the next acquisition. Who or what do you think the company will acquire next?</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, 13 Feb 2015 03:55:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:73:"WPTavern: Customizer Theme Switcher Officially Proposed for WordPress 4.2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38876";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:83:"http://wptavern.com/customizer-theme-switcher-officially-proposed-for-wordpress-4-2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2720:"<p>This week, Nick Halsey officially <a href="https://make.wordpress.org/core/2015/02/11/customizer-theme-switcher-feature-plugin-merge-proposal/" target="_blank">proposed</a> the Customizer Theme Switcher feature plugin for merge into WordPress 4.2. Halsey summarizes the goal of bringing theme switching into the customizer: “By integrating themes directly into the Customizer, live-previewing workflows are greatly simplified, and the relationship between themes and theme/site options is clarified for the user,” he said.</p>\n<p>Halsey explained that the new UI is part of a long-term plan to move all the “Appearance” functionality into the customizer. “The future roadmap includes <a href="https://wordpress.org/plugins/menu-customizer">Menus</a>, Theme-Install, and iterations on widgets that would allow the customizer to entirely replace those admin screens for most users,” he said.</p>\n<p>His proposal includes a video that demonstrates how a user might scroll through the customizer to browse and preview available themes.</p>\n<p><span class="embed-youtube"></span></p>\n<p>It’s important to note that if this feature plugin is cleared for merge, users will not have to search for and install themes from the narrow customizer pane. The Customizer Theme Switcher is intended for previewing and activating themes that have already been installed. Contributors on the project are proposing that WordPress 4.2 redirect the “Themes” link that appears in the frontend admin bar to the customizer, instead of the backend.</p>\n<p>In the future, Halsey plans to integrate theme installation into the customizer, but this is a larger effort that will be added to the project in a later release. Coming up with a UI that doesn’t make this a cramped and inconvenient experience is going to be a challenge.</p>\n<p>For more technical details on the proposed core changes and merge implementation, check out Halsey’s post on the <a href="https://make.wordpress.org/core/2015/02/11/customizer-theme-switcher-feature-plugin-merge-proposal/" target="_blank">Make/Core blog</a>. If you want to test out the new UI for theme switching, you can download the <a href="https://wordpress.org/plugins/customizer-theme-switcher/" target="_blank">Customizer Theme Switcher</a> plugin from WordPress.org.</p>\n<p>The feature plugin merge window will be closing the week of February 25th, and the official release is <a href="https://make.wordpress.org/core/version-4-2-project-schedule/" target="_blank">targeted for the week of April 22nd</a>. Updates on whether or not the Customizer Theme Switcher is approved for merge will be available within the next few weeks.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Feb 2015 21:04:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:29;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:85:"WPTavern: WPWeekly Episode 179 – Interview With James Laws, Co-founder of WP Ninjas";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=38913&preview_id=38913";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:90:"http://wptavern.com/wpweekly-episode-179-interview-with-james-laws-co-founder-of-wp-ninjas";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3285:"<p>In this episode of WordPress Weekly, <a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by the co-founder of <a title="http://wpninjas.com/" href="http://wpninjas.com/">WP Ninjas</a>, <a title="http://jameslaws.com/" href="http://jameslaws.com/">James Laws</a>. WP Ninjas specializes in WordPress plugins such as <a title="http://ninjaforms.com/" href="http://ninjaforms.com/">Ninjas Forms</a> and <a title="http://ninjademo.com/" href="http://ninjademo.com/">Ninja Demo</a>.</p>\n<p>In the show, Laws explains the origins of the business and why he decided to enter the forms market despite GravityForms being a popular choice among WordPress developers. He shares some of the mistakes he made early on such as competing based on price and offering a one time purchase price. Near the end of the interview, we find out what the future holds for both products.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/initiative-aims-to-improve-the-new-user-experience-in-wordpress-4-2" href="http://wptavern.com/initiative-aims-to-improve-the-new-user-experience-in-wordpress-4-2">Initiative Aims to Improve the New User Experience in WordPress 4.2</a><br />\n<a title="http://wptavern.com/the-first-conference-dedicated-to-wordpress-com-debuts-on-march-28th-in-portland-or" href="http://wptavern.com/the-first-conference-dedicated-to-wordpress-com-debuts-on-march-28th-in-portland-or">The First Conference Dedicated to WordPress.com Debuts on March 28th in Portland, OR</a><br />\n<a title="http://wptavern.com/wp-rocket-grows-from-0-to-35k-in-monthly-revenue" href="http://wptavern.com/wp-rocket-grows-from-0-to-35k-in-monthly-revenue">WP Rocket Grows From $0 to $35K in Monthly Revenue</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="https://wordpress.org/plugins/adminrocket/" href="https://wordpress.org/plugins/adminrocket/">AdminRocket</a> allows you to customize the WordPress backend with custom themes, dashboard widgets, and your own settings.</p>\n<p><a title="https://wordpress.org/plugins/seo-enforcer/" href="https://wordpress.org/plugins/seo-enforcer/">SEO Enforcer</a> is a small plugin that works with WordPress SEO by Yoast (it’s required), that will truncate your title or meta description tags if they’re too long.</p>\n<p><a title="https://wordpress.org/plugins/disable-wp-registration-page/" href="https://wordpress.org/plugins/disable-wp-registration-page/">Disable WP Registration Page</a> disables the default WordPress registration page by redirecting users who access the registration page URL to the default WordPress login page.</p>\n<p><strong>Next Episode:</strong> Wednesday, February 18th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #179:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Feb 2015 20:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:30;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:54:"Matt: What I Miss and Don’t Miss About San Francisco";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44012";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:38:"http://ma.tt/2015/02/left-my-heart-in/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5012:"<p>A few months ago I was chatting with <a href="http://www.borthwick.com/weblog/">John Borthwick</a>, who had just returned from a trip to San Francisco. I asked him how the city was doing as if he were a traveler who had visited someplace exotic — “How is it <em>over there</em>?” (As an investor he probably sees the crazier side of the city, since part of his job is looking at hundreds of companies, the vast majority of which will fail, and trying to pick a few winners.)</p>\n<p>Despite getting near-daily meeting requests, I don’t currently have any plans to visit San Francisco. I was there in June for a few days for Foo Camp and for drinks with <a href="http://www.tommarioni.com/">the artist Tom Marioni</a>. I returned for <a href="http://2014.sf.wordcamp.org/">WordCamp San Francisco in October</a>, and again a few weeks ago for <a href="http://scobleizer.com/">Scoble’s</a> 50th birthday party and a board meeting. But the couple-times-a-year rhythm seems to be enough for me. I’m enjoying the distance a bit, in fact.</p>\n<p>There has been plenty written about the bubble culture in SF right now, including on <a href="http://www.sfgate.com/bayarea/article/Is-the-antitech-movement-obsolete-6067623.php">the antitech movement that never really took off</a>. <a href="http://ma.tt/2013/03/evolution-of-san-francisco/">It’s a topic I already blogged about in 2013</a>. But I was curious to unpack my own thoughts about being away from it all.</p>\n<p>What I don’t miss:</p>\n<ul>\n<li>Too many meetings — every possible company is there, and everyone wants to meet.</li>\n<li>High prices for everything, from groceries to cocktails. Not even going to talk <a href="http://ma.tt/2014/12/how-paul-graham-is-wrong/">about the real estate market and rentals</a>.</li>\n<li>It takes forever to get across the city, even though it’s only 7 miles.</li>\n<li>The public transit, while workable, pales in comparison to other places like NYC.</li>\n<li>The weather isn’t bad, until you drive to Palo Alto or Marin and notice how much nicer it is there. (Or take a one-hour flight to Los Angeles or San Diego.)</li>\n<li>This is anecdotal, but I feel like cell phone service is terrible, especially for making calls. Calls are unintelligible and drop frequently. I think this is why everyone texts.</li>\n</ul>\n<p>I don’t have any problem with the social scene; SF might be tech-heavy, but it’s fairly easy to get out of the tech bubble. Many forget that San Francisco is home to a ton of people working for non-profits, in fashion, finance, bio-tech, art, and music.</p>\n<p>What I miss, deeply: <strong>the people.</strong> Some of my favorite people, professionally and personally, are in the Bay Area, and that’s the thing that will draw me back someday. I’m lucky that I can catch up with folks when they travel, like <a href="http://janekim.org/">Jane</a> or <a href="http://tonyconrad.wordpress.com/">Tony</a> in New York or <a href="http://om.co/">Om</a> in Italy. Of course the Automattic headquarters is there, along with some great colleagues, but I can also catch up with them at meetups.</p>\n<p>I miss how much <strong>technology permeates the culture</strong> there, from billboards to services like Uber or <a href="https://postmates.com/">Postmates</a> (or <a href="https://munchery.com/">Munchery</a> or <a href="https://www.spoonrocket.com/">Spoonrocket</a>) that today seem like conveniences, but will be the basis of something very meaningful down the line. You can feel like you’re living in the future there. Internet speeds seem to be getting better, too — local ISPs like <a href="https://webpass.net/">Webpass</a> and <a href="https://www.monkeybrains.net/">Monkeybrains</a> are leading the way, but even my Comcast account there delivers 120mbps.</p>\n<p>I miss being able to run along the water, and the close proximity to lots of beautiful nature areas (granted I didn’t take much advantage of those when I was still around). The quality of light is really nice — when you can see it. Restaurants, though tending toward pricey, offer great ingredients and quality.</p>\n<p>Finally, you can’t deny it’s a city of hustlers. This tweet has since been deleted, but you get the idea:</p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/photomatt">@photomatt</a> Can we interest you in any lemonade? Or what about a quick meeting at <a href="https://twitter.com/CoupaCafe">@CoupaCafe</a> in <a href="https://twitter.com/hashtag/paloalto?src=hash">#paloalto</a> <a href="http://t.co/ExoxtXHu38">pic.twitter.com/ExoxtXHu38</a></p>\n<p>— Closetclicks (@closetclicks) <a href="https://twitter.com/closetclicks/statuses/500345852352008193">August 15, 2014</a></p></blockquote>\n<p></p>\n<p><img class="wp-image-44687 size-full" src="http://i0.wp.com/ma.tt/files/2015/02/closetclicks_2015-Feb-11.jpg?resize=604%2C453" alt="" /></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, 12 Feb 2015 20:10:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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: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:71:"WPTavern: SiteGround Sponsors a Full-Time Contributor to WordPress Core";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38870";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:81:"http://wptavern.com/siteground-sponsors-a-full-time-contributor-to-wordpress-core";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4217:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/siteground-offices.jpg" rel="prettyphoto[38870]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/siteground-offices.jpg?resize=720%2C352" alt="siteground-offices" class="aligncenter size-full wp-image-38896" /></a></p>\n<p><a href="https://profiles.wordpress.org/iseulde" target="_blank">Iseulde Van Dorpe</a> is joining <a href="https://www.siteground.com/" target="_blank">SiteGround</a> to work full-time as a contributor to WordPress core. She expects to work on a variety of different tasks, particularly those that relate to media and the editing experience. Van Dorpe’s recent core contributions helped to improve the editor for users in the 4.0 release.</p>\n<blockquote class="twitter-tweet" width="550"><p>There are many WordPress 4.0 standouts, but <a href="https://twitter.com/avryl">@avryl</a> took my editor sizing/scrolling idea and ran with it. Turned it into something *magical*.</p>\n<p>— Mark Jaquith (@markjaquith) <a href="https://twitter.com/markjaquith/status/507580649536880640">September 4, 2014</a></p></blockquote>\n<p></p>\n<p>SiteGround identified and selected its new contributor based on recommendations from others involved in core development. “In search of developing our WordPress involvement even further, we made some inquiries as to what is most needed by the project at the moment,” said Tina Kesova, VP of Strategic Partnerships at SiteGround.</p>\n<p>“The answer we received was that front-end and Javascript specialists will be very valuable. A recommendation for Iseulde’s work in this field was also received from several key WordPress people, who have been impressed with the things she has done for the last year since she first started contributing on a volunteer basis,” she said.</p>\n<p>For the past five years, SiteGround has been actively involved with supporting the project by sponsoring community events, dedicating employees to help with event orgranization, and sending speakers to share their knowledge at WordCamps around the world.</p>\n<p>“We also already have a great relationship with Mario Peshev, who is contributing to the core on a part-time basis sponsored by our company,” Kesova said. This experience helped with the company’s decision to sponsor Van Dorpe as a full-time contributor.</p>\n<p>“What truly won us after we had personally met her, was that she is not just a capable WordPress developer, but she is also a great fit for our company culture,” Kesova said. “She has the same passion for quality and efficiency that drives SiteGround.”</p>\n<h3>What does a full-time WordPress core contributor do?</h3>\n<p>SiteGround isn’t the first hosting company to sponsor an employee’s time for working on the WordPress project. WP Engine, Dreamhost, and a handful of others have been doing so for the past several years. The job varies, depending on the amount of time the company can lend and the contributor’s areas of specialty and interest.</p>\n<p>“As part of the SiteGround team Iseulde will be working full time contributing to WordPress core and helping with some maintenance tasks,” Kesova said. “She has some great ideas about improvements in the WordPress backend, including the editor and the media manager, and she will be also doing some support work for WordPress by reviewing and closing tickets and patches.”</p>\n<p>Van Dorpe, originally from Belgium, will be working remotely from her current home in Glasgow, Scotland. SiteGround’s main headquarters are in Sofia, Bulgaria, but it also has two offices in Bulgaria and one in Spain. The company is in the process of hiring its first American employee and plans to open an office in the USA soon.</p>\n<p>“As a web hosting company, we are aware of the big significance open source projects like WordPress have for our business, by helping people build their websites on top of the hosting service we provide,” Kesova said. “That is why we believe it is our duty to support such projects in a meaningful way that can help further their development.”</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Feb 2015 18:55: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: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:35:"Post Status: The WordPress REST API";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"https://poststatus.com/?p=8643";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"https://poststatus.com/wordpress-json-rest-api/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:22527:"<p>The WordPress REST API project is the most exciting project for the platform since custom post types were introduced in WordPress 2.9 and 3.0. I really believe that.</p>\n<p>While the project is under a major rewrite and not yet slated for a specific core release, it can be really confusing to figure out what’s going on.</p>\n<p>Let’s talk about what the new API is, why it matters, and go over the state of the API to answer some common questions I’ve seen.</p>\n<h3>What is a JSON REST API?</h3>\n<p>Let’s start by defining the acronyms. It may seem tedious for experienced developers, but it’s a good way to get us in the right mindset.</p>\n<h4>API: Application Program Interface</h4>\n<p>APIs have a broad definition. Any program is an API. When you have some form of construct in a programming language — like PHP for example — where the construct makes it possible to perform a programming task, that’s a good way to think of an API.</p>\n<p>Let’s use custom post types as an example. WordPress has a custom post types API. Really, it’s just a significant chunk of code that makes previously difficult tasks simpler. Now, you can create all new types of content — that mimic the content structure for posts and pages — with just a few lines of code.</p>\n<p>The core team created a programming interface to make that possible. That’s a layman’s definition for an API.</p>\n<h4>JSON: JavaScript Object Notation</h4>\n<p>JSON is a preferred format for structuring data so that a variety of applications can read it. You can create JSON formatted data from one programming language and read and process it from another. It’s similar to XML, but seemingly universally preferred over XML.</p>\n<p>JSON makes communication between something like WordPress and something like a mobile app completely possible, as JSON is a common data format between them, so that you can create data on the WordPress side and return it in JSON, so that the data can be easily read on the mobile app side. Such relationships don’t have to be between WordPress and a mobile app; it could be nearly anything, meaning “WordPress as an app platform” becomes much more realistic.</p>\n<div id="attachment_8687" class="wp-caption aligncenter"><img class="size-large wp-image-8687" src="https://poststatus.com/wp-content/uploads/2015/02/json-api-data-752x460.jpg" alt="A JSON blurb, at least how it looks when you go straight to the URL" width="752" height="460" /><p class="wp-caption-text">A JSON blurb, at least how it looks when you go straight to the URL</p></div>\n<p>JSON looks terrifying if you see it “raw”. For instance, Post Status has the WordPress REST API enabled, so if you go to <a href="https://poststatus.com/wp-json/posts">https://poststatus.com/wp-json/posts</a> you can see my recent posts in a JSON format. This isn’t pretty to the human eye, but for a programming language, it’s beautiful.</p>\n<h4>REST: Representational State Transfer</h4>\n<p>A REST API is an architectural preference. Most REST APIs, including WordPress’, are based on HTTP. This means that the primary actions of the REST API are HTTP actions: <code>POST</code>, <code>GET</code>, <code>PUT</code>, <code>DELETE</code>.</p>\n<p>So, with a REST API, we are reading or manipulating data using HTTP.</p>\n<p>Wikipedia kindly defines RESTful APIs better than I can, namely with a definition based upon the restraints on the API itself:</p>\n<blockquote><p>Web service APIs that adhere to the <a href="http://en.wikipedia.org/wiki/Representational_state_transfer#Architectural_constraints">REST architectural constraints</a> are called RESTful. HTTP based RESTful APIs are defined with these aspects:</p>\n<ul>\n<li>base <a class="mw-redirect" title="URI" href="http://en.wikipedia.org/wiki/URI">URI</a>, such as <code>http://example.com/resources/</code></li>\n<li>an <a title="Internet media type" href="http://en.wikipedia.org/wiki/Internet_media_type">Internet media type</a> for the data. This is often <a title="JSON" href="http://en.wikipedia.org/wiki/JSON">JSON</a> but can be any other valid Internet media type (e.g. XML, Atom, microformats, images, etc.)</li>\n<li>standard <a class="mw-redirect" title="HTTP method" href="http://en.wikipedia.org/wiki/HTTP_method">HTTP methods</a> (e.g., GET, PUT, POST, or DELETE)</li>\n<li>hypertext links to reference state</li>\n<li>hypertext links to reference related resources<sup id="cite_ref-8" class="reference"><a href="http://en.wikipedia.org/wiki/Representational_state_transfer#cite_note-8">[8]</a></sup></li>\n</ul>\n</blockquote>\n<p>These restrictions serve as standards that anyone working with a RESTful API can expect to exist. So, in my case, I’m utilizing both the WP API and the Mailchimp API on Post Status. Interacting with either feels similar, because they’ve placed similar constraints on themselves.</p>\n<h3>What is the WordPress REST API?</h3>\n<p>Now we know what a JSON REST API is, so we can better define what the WordPress one is.</p>\n<p><span class="pullquote alignright">The WordPress REST API is a common data and programming interface that abstracts the reading and writing of information for WordPress from the WordPress application as we’ve previously known it.</span> Now, developers working with WordPress don’t have to know that much about WordPress.</p>\n<h3>How can the WordPress REST API be used?</h3>\n<p>Developers will be able to perform nearly all the data manipulation and data reading functions that are possible with PHP, with the new API. What’s that mean? It means everything.</p>\n<h4>Ditching WordPress on the front-end</h4>\n<p>With the JSON API, the frontend of WordPress doesn’t have to be WordPress at all. For example, developers can completely bypass the WordPress templating engine using the API. They can even keep the backend of WordPress and the front-end of the website on completely different server stacks, because they just need to read the data using the API.</p>\n<p>There are already many websites doing this around the web. Some of them use custom APIs they built themselves, and others are using the new WordPress REST API. Let’s discuss a couple of examples:</p>\n<ol>\n<li>The New York Times uses the WordPress REST API for a variety of things. They are able to use the API in combination with their proprietary CMS. This allows them to pull WordPress data for placement on the Times’ homepage and other places very easily. They’re also using the REST API for their live event coverage, like this <a href="http://elections.nytimes.com/2014/liveblog">elections live blog</a>.</li>\n<li><a href="http://www.bloomberg.com/politics/">Bloomberg Politics</a> uses WordPress to publish, but based on the front-end of the website, you’d never know it. I don’t think they’re using the official WordPress REST API, but they could.</li>\n<li><a href="http://mashable.com/">Mashable</a> uses WordPress to publish, but their front-end is not WordPress at all. This is also a custom implementation, as they made the switch before the official REST API was even underway.</li>\n</ol>\n<p>These are three examples of news sites using REST APIs for the front-end. But the applications go much, much farther than that.</p>\n<h4>WordPress as an application</h4>\n<p>If you want to see a prime case study, watch K. Adam White’s presentation from WordCamp San Francisco 2014, where he talks about <a href="http://wordpress.tv/2014/11/03/k-adam-white-wordpress-in-weird-places-content-management-for-node-using-rest/">how his team used WordPress as the CMS for a node.js app</a>. This really highlights the potential I’m talking about.</p>\n<p>Looking through the resulting <a href="https://github.com/kadamwhite/expresspress">ExpressPress repo</a> that K. Adam highlights in his presentation is an educational and fascinating experience.</p>\n<h4>Custom WordPress admins</h4>\n<p>WordPress administration doesn’t have to use the WordPress admin as we know it. With the REST API, you can create, edit, and delete content just as well as you can read it.</p>\n<p>Eventually, the WordPress admin itself may be re-written on top of the REST API. Using the API, creating completely custom administration panels will be easier than ever before. This will allow developers to create catered administration experiences for a particular application.</p>\n<div id="attachment_8686" class="wp-caption aligncenter"><img class="size-large wp-image-8686" src="https://poststatus.com/wp-content/uploads/2015/02/json-api-wpcom-post-editor-752x561.jpg" alt="The WordPress.com editor" width="752" height="561" /><p class="wp-caption-text">The WordPress.com editor</p></div>\n<p>For example, WordPress.com has already utilized their own REST API (which will hopefully be a similar implementation to the core API once it’s included) to create a custom admin experience for their blogging platform.</p>\n<div id="attachment_8685" class="wp-caption aligncenter"><img class="size-large wp-image-8685" src="https://poststatus.com/wp-content/uploads/2015/02/wp-api-happy-tables-752x490.jpg" alt="The Happy Tables editor" width="752" height="490" /><p class="wp-caption-text">The Happy Tables editor</p></div>\n<p>Other services, like <a href="http://happytables.com">Happy Tables</a> for instance, have also created custom WordPress admins. Doing this in the future will be easier than ever because the REST API integrates existing WordPress functionality to the API, so that developers don’t have to reinvent the wheel.</p>\n<h4>App integrations</h4>\n<p>Additionally to custom web integrations, WordPress will be able to talk to apps easier than ever before as well.</p>\n<p>Previous apps that interfaced with WordPress would most often use XML-RPC. With the REST API, the ability to perform complex functions in a reliable manner is increased. It will be simpler than ever to create a mobile app that can not only read WordPress data, but also create, edit, and delete that data.</p>\n<p>The entire mobile app can be written in Objective-C, Swift, or whatever programming language, and interface with WordPress.</p>\n<p>An example of this in action is <a href="http://apppresser.com/">AppPresser</a> (<a title="AppPresser: A foundation for using WordPress to make mobile apps" href="https://poststatus.com/appresser-wordpress-mobile-apps/">which I covered</a> when it launched). AppPresser has created an application framework that integrates with the WordPress REST API to make creating WordPress apps for individual sites quite simple.</p>\n<p>But it’s not limited to app creation with a tool like AppPresser. People can now have one data-storage area (WordPress) that can power both the website and an app, and that is a powerful feature. Also, the apps can talk to and write to the WordPress database directly through the API.</p>\n<p>We will see dozens of WordPress apps and admin integrations over the next few years. We could even see whole startups build apps with WordPress as a base layer.</p>\n<p><span class="pullquote alignright">WordPress can provide an excellent foundation for user management, content management, and much more — reducing the amount of work a startup creating a prototype mobile application have to recreate themselves.</span> The REST API makes it so a mobile app can look completely custom and also use a tool as widely distributed as WordPress to power many of the internals.</p>\n<h3>When is the WordPress REST API going to be in core?</h3>\n<p>The REST API is under heavy development, and is also between major versions that will sever backward compatibility. That has made the state of the API confusing.</p>\n<p>The REST API hasn’t been slated for a particular release, though it is officially active <a href="https://make.wordpress.org/core/features-as-plugins/">for the “feature as plugin”</a> model. The goal is for it to hit core some time in 2015, so probably between WordPress 4.3 and 4.5. I’d guess closer to 4.5, as there will need to be a lot of testing once the new stable version comes out.</p>\n<h3>Keeping up with development</h3>\n<p>If you want to keep track of the WordPress REST API development, there are a variety of ways to do so, though finding the proper channels can be a challenge at the moment.</p>\n<p>First off, know that a major new version is being finalized as we speak, so there is disparity between 1.1.x and the upcoming version for information, code, and documentation. The version under development — and is a significant restructuring — has been under development for nearly seven months.</p>\n<p>The <a href="https://wordpress.org/plugins/json-rest-api/">WordPress.org official plugin page</a> is somewhat closely synchronized with the latest 1.x release, though it is a few commits behind. The plugin is authored by Ryan McCue, who is the project lead and the initial author of the plugin, as it was his Google Summer of Code project for the first iteration. The WordPress.org page could also use some updating to make it more obvious that it’s the official REST API plugin for the WordPress project.</p>\n<p>The <a href="https://github.com/WP-API/WP-API">WP API Github</a> is where active issue tracking, version management, and releases are being handled. The API has its own account on Github, rather than being a part of the WordPress account, as there are adjacent repos to the actual API and it wasn’t originally guaranteed to be in core.</p>\n<p>The key to understanding the various states of the WP REST API is to think in terms of <strong>Develop</strong>, <strong>Master</strong>, and <strong>Stable</strong> versions.</p>\n<ul>\n<li><a href="https://wordpress.org/plugins/json-rest-api/">WordPress.org plugin repository</a> is the Stable version of the WP API.</li>\n<li><a href="https://github.com/WP-API/WP-API/tree/master">Github Master branch</a> is where a Beta version of the next release is managed.</li>\n<li><a href="https://github.com/WP-API/WP-API/tree/develop">Github Develop branch</a> is where the active development occurs.</li>\n</ul>\n<p><strong>If you’re using the WordPress REST API in production, you should use the WordPress.org version only</strong>. The Github Master and Development versions should be used for development and testing only.</p>\n<h3>Improvements coming in the rewrite</h3>\n<p>The long development cycle for the new version of the REST API is because it’s a signifcant rewrite for the project.</p>\n<p>Based on feedback and real-world use cases, the team was able to identify necessary improvements that needed to happen.</p>\n<p>There have been many, many changes in this version, but a couple of big ones are as follows:</p>\n<ul>\n<li>New functions have been added to allow for registration of custom endpoints with namespaces and versions. Rachel Baker <a href="https://gist.github.com/krogsgard/c3975a2ff449f20e56f3">shared this gist with me</a> that showcases that. This means themes and plugins will be able to add to and extend the API, offering significantly more power to it.</li>\n<li>Comment creation and edit handling have been added in the rewrite.</li>\n<li>The team has also started work on support for options endpoints to be able to view, edit, and create general site options, which would make complete site management possible with the API, in addition to content management.</li>\n</ul>\n<p>The changes in the current development cycle have taken a long time, and have required some significant architectural changes, but are very much worth the long term benefits.</p>\n<h3>Contributors to the WordPress REST API</h3>\n<p>There have been <a href="https://github.com/WP-API/WP-API/graphs/contributors">49 code contributors</a> to the REST API project on Github. It’s already a huge community effort. However, there are some folks that are really driving the project forward.</p>\n<p><img class="aligncenter size-large wp-image-8684" src="https://poststatus.com/wp-content/uploads/2015/02/wp-api-contributors-752x484.png" alt="wp-api-contributors" width="752" height="484" /></p>\n<ul>\n<li><a href="https://twitter.com/rmccue">Ryan McCue</a>: Ryan is the overall project lead, and is generally steering the ship. This all started as his GSoC (Google Summer of Code) project and he is still the lead. He works for <a href="http://hmn.md/">Human Made</a>, primarily on Happy Tables.</li>\n<li><a href="https://twitter.com/rachelbaker">Rachel Baker</a>: Rachel is a project lead, and is doing a great deal of development, as well as education and evangelism. She works for <a href="http://10up.com">10up</a> as a Senior Web Engineer.</li>\n<li><a href="https://twitter.com/danielbachhuber">Daniel Bachhuber</a>: Daniel is in day to day conversations and also commits a lot of code to the project. He works for himself and is the interim engineering director at <a href="http://fusion.net/">Fusion</a>.</li>\n<li><a href="https://twitter.com/joe_hoyle">Joe Hoyle</a>: Joe is in day to day conversations and also commits a lot of code to the project. He is a co-founder of <a href="http://hmn.md/">Human Made</a>.</li>\n</ul>\n<p>Though I highlight these four contributors, but there are a whopping 400 people watching the #core-restapi channel in Slack, and there are 49 code contributors on Github. Everyone deserves a huge round of applause that’s taken part in the strategic, code, education aspects of this project.</p>\n<p>And this is all before it goes into the core development cycle. Once this gets slated for a specific release, it’s going to get an insane amount of attention to make sure it’s ready for prime time and the millions of WordPress installs out there.</p>\n<h3>Meetings and blogs for the REST API</h3>\n<p>The REST API has a standing channel and weekly meeting in WordPress Slack, as well as two blogs you can keep track of:</p>\n<ul>\n<li>#core-restapi on WordPress Slack is where day to day communication occurs, and a feed of commit activity also goes into that channel. The weekly meeting is also here — and is actually held twice per week — at 23:00 UTC on Mondays and Wednesdays.</li>\n<li>The <a href="https://make.wordpress.org/core/tag/json-api/">json-api tag on Make WordPress Core</a> is where blog posts about the API go. However, this has been rarely used, and is primarily just for release information.</li>\n<li>Frequent meeting notes and other discussions are posted on <a href="http://make.wp-api.org/">make.wp-api.org</a>, which is an 02 blog (P2’s mysterious successor).</li>\n<li>Documentation can be viewed on <a href="http://wp-api.org">wp-api.org</a>. It’s important to keep in mind that <strong>the docs on the main website are for the stable WordPress plugin</strong>, not the Develop branch.</li>\n</ul>\n<h3>Basics for using the WordPress REST API</h3>\n<p>The new API will make sense to people familiar with other REST APIs. However, if you are new to such things, even with the documentation you can easily get lost. I know I did.</p>\n<p>I will have a lot more resources for members soon, but I’ll try and give a quick intro to reading data now.</p>\n<p>The first thing to remember is that it’s very important to know if you will be reading data only or reading and changing data. If you are reading data from your own website, and using it on the same website, you don’t need to worry about authentication. If you are changing, adding, or deleting data, then you need to authenticate with the website you are making changes to.</p>\n<p>Let’s show a few simple examples of reading data with <code>GET</code>.</p>\n<p>A URL to pull content from Post Status would look like this:</p>\n<a href="https://gist.github.com/c983960972582c6ec2c0" target="_blank"><em>View this code snippet on GitHub.</em></a>\n<p>To pull content with <code>WP_Query</code> parameters you’re used to, you could do it like this:</p>\n<a href="https://gist.github.com/c983960972582c6ec2c0" target="_blank"><em>View this code snippet on GitHub.</em></a>\n<p>To pull content of a custom post type, you can do it like this:</p>\n<a href="https://gist.github.com/c983960972582c6ec2c0" target="_blank"><em>View this code snippet on GitHub.</em></a>\n<p>And to pull content of a custom post type with those same <code>WP_Query</code> parameters, it looks like this:</p>\n<a href="https://gist.github.com/c983960972582c6ec2c0" target="_blank"><em>View this code snippet on GitHub.</em></a>\n<p>What you see returned in those URLs is the JSON data we’re going after. Go ahead and put one of those URLs in a browser tab to see the return data.</p>\n<p>You can see how the method for grabbing that data feels familiar to using <code>WP_Query</code> for a standard WordPress loop. If you don’t specify a parameter, the defaults to <code>WP_Query</code> will be used.</p>\n<p>These URLs return that data, but obviously you’ll want to get that data programatically. You can do this within a WordPress install (or outside) with two common methods: PHP or AJAX.</p>\n<p>Handling the data will be similar to handling any other JSON data. I’ll have more on doing this with WordPress at a later date, but in the meantime you may enjoy <a href="http://torquemag.io/introduction-wordpress-new-universal-connector-json-rest-api/">Josh Pollock’s introduction</a> to using the REST API.</p>\n<p>Now, of course, you can query far more than posts, as the <a href="http://wp-api.org">WP API website</a> notes, but I just wanted to introduce the concepts.</p>\n<p>The API allows you to manage pretty much anything: posts, pages, custom post types, users, media, taxonomies, or even overall site data.</p>\n<h3>This is just the beginning</h3>\n<p>Unfortunately, I’ve hardly given a proper introduction to actually using the new WordPress REST API. That will have to wait until another time. That said, you should know have a pretty good understanding of what this project is, what it means for WordPress, and where to go to get started with the new API.</p>\n<p>I highly encourage you to educate yourself on this API, as well as experiment with it. You can use the Stable branch in production projects (like I do here on Post Status), but it would be really great to get more people testing and using the API in general so that when it ships with WordPress it will be as good as it can be.</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, 11 Feb 2015 22:31:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Brian Krogsgard";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:19:"Matt: Amazing Dance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44669";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:35:"http://ma.tt/2015/02/amazing-dance/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:183:"<p></p>\n<p>Incredible music (“Take Me To Church” by Hozier), incredible artist (the dancer, Sergei Polunin), and incredible photographer / director (David LaChapelle).</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, 11 Feb 2015 19:08:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:58:"WPTavern: Tackling the Issue of WordPress Derivative Works";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38822";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wptavern.com/tackling-the-issue-of-wordpress-derivative-works";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6882:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/GPLFeaturedImage.png" rel="prettyphoto[38822]"><img class="size-full wp-image-24825" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/GPLFeaturedImage.png?resize=639%2C200" alt="GPL License Plate Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/benfrantzdale/170212544/">BenFrantzDale</a> – <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a>\n<p>In 2009-10, there <a title="http://wordpress.tv/2010/07/15/mixergy-interview-pearson-mullenweg/" href="http://wordpress.tv/2010/07/15/mixergy-interview-pearson-mullenweg/">was an intense debate</a> between the co-creator of WordPress, Matt Mullenweg, and the founder of DIY Themes, Chris Pearson. The debate centered on whether or not Thesis needed to be 100% GPL licensed. Thesis lifted lines of code from the core of WordPress, which <a title="https://markjaquith.wordpress.com/2010/07/17/why-wordpress-themes-are-derivative-of-wordpress/" href="https://markjaquith.wordpress.com/2010/07/17/why-wordpress-themes-are-derivative-of-wordpress/">some people claimed</a> made Thesis a derivative of WordPress. Pearson disagreed with the assessment which lead Mullenweg to insinuate <a title="http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/" href="http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/">he would take the matter to court</a>.</p>\n<p>Five years after that memorable debate, Richard Best of WP and Legal Stuff, <a title="http://wpandlegalstuff.com/wordpress-themes-gpl-conundrum-derivative-works/" href="http://wpandlegalstuff.com/wordpress-themes-gpl-conundrum-derivative-works/">has published a thorough analysis</a> of WordPress themes, the GPL license, and what is a derivative work. His post is a breath of fresh air and the best I’ve read so far on the subject. Best doesn’t sell themes or plugins in the WordPress ecosystem giving him a neutral position to discuss the matter. He also has a legal background, but does not offer legal advice through his site.</p>\n<p>Determining what defines a derivative work is complex, but according to Best, no one truly knows the answer to the question:</p>\n<blockquote><p>The reason we don’t truly know the answer is that the courts haven’t decided a case that is squarely on point (there are potentially analogous cases, of course, but – as far as I’m aware – no GPL or similar case directly on point). It is only the courts (in the absence of legislative intervention) that can finally determine the matter.</p>\n<p>Courts might apply what some might say are orthodox notions of what it means for something to be a derivative work or they might incrementally (some might say dangerously) develop the law on this point but we just don’t know. And even if the courts of one country made a definitive ruling on the point, courts in other countries – where other lawsuits might be commenced – could decide differently. As a result, uncertainty remains.</p></blockquote>\n<p>The debate against Thesis never went to court, but it spawned several conversations throughout the WordPress community, <a title="http://www.chipbennett.net/2010/07/20/wordpress-themes-gpl-and-copyright-case-law/" href="http://www.chipbennett.net/2010/07/20/wordpress-themes-gpl-and-copyright-case-law/"> like this one from Chip Bennett</a>. This is why <a title="http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/#comment-1584821297" href="http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/#comment-1584821297">some people</a> rallied for a court case to settle the matter once and for all. As far as WordPress is concerned, I think it’s unlikely a court case will ever take place.</p>\n<h2>Influence Instead of Lawyers</h2>\n<p>Mullenweg has other ways of influencing people to license their WordPress products 100% GPL which doesn’t require a lawyer. A good example is <a title="http://designcrumbs.com/automatically-blackballed" href="http://designcrumbs.com/automatically-blackballed">when Jake Caputo was banned</a> from speaking or participating at WordCamps because he didn’t license his themes 100% GPL on ThemeForest.</p>\n<p>After going back and forth in <a title="http://marketblog.envato.com/news/survey-results-about-gpl-opt-in-choice/" href="http://marketblog.envato.com/news/survey-results-about-gpl-opt-in-choice/">public debates</a>, ThemeForest <a title="http://marketblog.envato.com/general/100-gpl-option-now-available-plus-woothemes-arrives/" href="http://marketblog.envato.com/general/100-gpl-option-now-available-plus-woothemes-arrives/">eventually added the ability</a> for authors to choose between split-license and 100% GPL. After changing the license on all of his products to 100% GPL, Caputo was allowed to speak at WordCamps again. It’s this type of influence that prevents arguments from reaching the court system.</p>\n<h2>Only a Court Can Decide</h2>\n<p>There aren’t many posts these days debating the merits of GPL and WordPress. Best does a great job explaining why (emphasis mine):</p>\n<blockquote><p>I think the GPL/theme debate has reached the stage where it’s fair to say that a significant proportion of the WordPress community now frowns upon premium theme providers who either don’t GPL-license at all or (probably to a lesser extent) split-license their themes. That might not be good for business and that, for some, may be the bottom line.</p>\n<p>For some people, this frowning may be caused by a particular view of what the GPL requires <em>but</em> for others – and I think this is a particularly important point – it may be caused by a recognition of the enormous opportunities that WordPress makes possible and the open source spirit and generosity that pervades much of the WordPress community. <strong>I think we’ve reached the stage where, for some people, this is more about a community norm than it is about a strict reading of the GPL </strong>(not to mention the tedium of listening to more and more competing GPL arguments when, ultimately, only a court can decide).</p></blockquote>\n<p>If a debate like the one in 2010 were to happen again, I think we’d see a huge outcry from every corner of the community for a court case to settle the matter. After all, without that, everything else is a moot point, right? If you sell commercial WordPress themes and plugins, I highly encourage you to read his post. Also read his thoughts on a somewhat related topic, the <a title="http://wpandlegalstuff.com/gpl-assumptions-automatic-inheritance/" href="http://wpandlegalstuff.com/gpl-assumptions-automatic-inheritance/">assumptions of GPL and automatic inheritance</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, 11 Feb 2015 00:37:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:78:"WPTavern: WordPress Theme Review Team Sets New Guidelines for Custom CSS Boxes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38826";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:88:"http://wptavern.com/wordpress-theme-review-team-sets-new-guidelines-for-custom-css-boxes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2252:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/css.jpg" rel="prettyphoto[38826]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/css.jpg?resize=1024%2C491" alt="css" class="aligncenter size-full wp-image-38846" /></a></p>\n<p>Custom CSS boxes in themes are a common feature that allow users to easily add their own styles without having to edit any theme files. The inclusion of this feature in themes, as opposed to plugins, has long been a hotly contested issue among theme developers.</p>\n<p>WordPress.org Theme Review team admin Justin Tadlock <a href="https://make.wordpress.org/themes/2015/02/10/custom-css-boxes-in-themes/" target="_blank">announced</a> today that the team has agreed upon new guidelines for the inclusion of CSS boxes. He summarized the conclusions following the debate:</p>\n<ul>\n<li>It’s preferred that theme authors leave this feature to plugins.</li>\n<li>However, it is allowed if handled safely.</li>\n<li>The edit_theme_options capability is required (like all theme options).</li>\n<li>The wp_filter_nohtml_kses(), wp_strip_all_tags(), or equivalent function must be used to sanitize the data before it’s saved into the database.</li>\n</ul>\n<p>The main issue here is sanitizing the CSS to make sure it’s safe to store in the database. The guidelines do not cover validating the CSS, as that is less of a safety concern.</p>\n<p>While adding custom CSS boxes still falls within theme territory, it is best to consider relegating this feature to a plugin in order to keep your theme safe and lean. If you still wish to offer this feature in your theme, Tadlock <a href="https://make.wordpress.org/themes/2015/02/10/custom-css-boxes-in-themes/" target="_blank">posted sample code</a> that will provide a good starting place for adding a custom CSS box to WordPress’ native customizer.</p>\n<p>Commercial theme authors who want to keep pace with WordPress.org theme review requirements will want to review the updated guidelines. The theme review team recommends using a plugin, such as <a href="http://jetpack.me/support/custom-css/" target="_blank">Jetpack’s custom CSS module</a>, as a safe alternative to allowing the theme to save custom CSS to the database.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Feb 2015 23:53:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:83:"WPTavern: iThemes to Host Free Online Training Event: Intro to WordPress Web 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:28:"http://wptavern.com/?p=38746";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:92:"http://wptavern.com/ithemes-to-host-free-online-training-event-intro-to-wordpress-web-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:2962:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ithemes-training.jpg" rel="prettyphoto[38746]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ithemes-training.jpg?resize=932%2C445" alt="ithemes-training" class="aligncenter size-full wp-image-38816" /></a></p>\n<p>iThemes will be conducting a free online training event next week for those who are interested in getting started with WordPress. The <a href="https://ithemes.com/2015/02/05/free-intro-wordpress-web-design-workshop-february-18-20-2015/" target="_blank">Intro to WordPress Web Design</a> course will run from February 18 – 20 and will cover everything from learning how to set up a site to working with plugins and management tools:</p>\n<ul>\n<li>Understand what WordPress is, where it came from, why everything is a “post”—and who is Dolly?</li>\n<li>Unlock your WordPress site – learn how to set up your site the right way</li>\n<li>Unmask WordPress – learn the basics of how WordPress displays content for your site</li>\n<li>Supercharge your WordPress site with plugins</li>\n<li>Simplify your life with WordPress management tools and tips</li>\n<li>What to do to take your knowledge of WordPress to the next level</li>\n</ul>\n<p>The workshop is open to the first 1,000 registrants and will be taught by Benjamin Bradley, iThemes’ Training full-time instructor. Bradley has been working with the company for the past five years to build out a library of 600+ instructional videos for the community surrounding iThemes’ products. A chat room will be available for discussion and Q&A during the the online event.</p>\n<p>iThemes CEO Cory Miller began investing in the creation of training resources years ago after noticing that a lack of quality WordPress education material was putting an extra burden on his support staff. “We started this free online workshop several years ago in response to seeing many of the same questions being asked in our support area year after year,” Miller said.</p>\n<p>“We felt our customers weren’t able to make meaningful progress in learning the basics of WordPress web design because there weren’t good resources to do so. The need is there and it is great, in particular for online learning like this. It’s part of our contribution to building up our customers, but also the greater WordPress community,” he said.</p>\n<p>The event is not just for iThemes customers but is open to anyone. If you can’t attend the training sessions live, iThemes plans to make the recordings available on its blog after the event. If you or a family member, friend, or client want an approachable introduction to WordPress, <a href="https://attendee.gotowebinar.com/register/5530303058928143361" target="_blank">register for the course</a> at iThemes. Each session is only one hour and will put you on track to managing your own WordPress website.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Feb 2015 18:33: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:"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: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:32:"Matt: On the Tim Ferriss Podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44665";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"http://ma.tt/2015/02/on-the-tim-ferriss-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:581:"<p>I had the great fun the other week of hanging with Tim Ferriss on his podcast, an episode he titled <a href="http://fourhourworkweek.com/2015/02/09/matt-mullenweg/">Matt Mullenweg on Polyphasic Sleep, Tequila, and Building Billion-Dollar Companies</a>. His previous guest <a href="http://fourhourworkweek.com/2015/02/02/arnold-schwarzenegger/">was Arnold Schwarzenegger</a> (!) and if you <a href="http://fourhourworkweek.com/category/the-tim-ferriss-show/">dig into the podcast archives there are some really amazing episodes</a>, I’m working my way through them now.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Feb 2015 18:30: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:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:38;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:88:"WPTavern: GitHub Updater 4.1 to Add Remote Installation for WordPress Plugins and 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:28:"http://wptavern.com/?p=38758";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wptavern.com/github-updater-4-1-to-add-remote-installation-for-wordpress-plugins-and-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:3688:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/01/wpvsgithub.jpg" rel="prettyphoto[38758]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/01/wpvsgithub.jpg?resize=1025%2C381" alt="WordPress Versus Github" class="aligncenter size-full wp-image-15216" /></a></p>\n<p><a href="https://github.com/afragen/github-updater" target="_blank">GitHub Updater</a> is a plugin that developers often use to enable automatic updates to GitHub or Bitbucket-hosted WordPress plugins and themes. The project was started in July 2013 by <a href="http://thefragens.com/" target="_blank">Andy Fragen</a>, a trauma surgeon and plugin developer. Over the past two years GitHub Updater has received improvements from 14 <a href="https://github.com/afragen/github-updater/graphs/contributors" target="_blank">contributors</a>.</p>\n<p>Fragen’s work on GitHub Updater makes it possible for developers to stay in their <a href="http://wptavern.com/wordpress-org-vs-github-for-hosting-wordpress-plugins-and-themes" target="_blank">preferred GitHub/Bitbucket workflow</a> and still ship updates for plugins and themes to their users. After reading about how <a href="http://wptavern.com/wp-pusher-aims-to-provide-pain-free-deployment-of-wordpress-themes-and-plugins-from-github" target="_blank">WP Pusher is extending WordPress’ built-in auto updater to deploy remotely hosted themes and plugins</a>, Fragen was inspired to investigate the possibility of adding remote installation of WordPress extensions to his GitHub Updater.</p>\n<p>He now has the <code>develop</code> branch of the project working to successfully install both public and private GitHub or Bitbucket repositories remotely. “I must confess, the hardest part was getting everything in the Settings API functioning,” Fragen said.</p>\n<p>With the help of some code from the <a href="https://wordpress.org/plugins/zero-spam/" target="_blank">WordPress Zero Spam</a> plugin by Ben Marshall, and a few lines from <a href="http://tgmpluginactivation.com/" target="_blank">TGM Plugin Activation</a> by Thomas Griffin, he was able to get a tabbed settings interface in place in addition to the plugin dependency portion of the task.</p>\n<p>“After setting up the tabs in the Settings page I was able to simply create the correct endpoint for GitHub and Bitbucket,” Fragen said. “I thought allowing for private repository remote installation might prove more difficult but a couple of modifications in other parts of the plugin made this relatively painless. It certainly makes downloading a repo from GitHub, renaming it correctly, and then uploading it a single-click experience.”</p>\n<p><a href="https://github.com/afragen/github-updater" target="_blank">GitHub Updater</a> is <a href="https://github.com/afragen/github-updater/issues/34" target="_blank">not allowed in the WordPress.org directory</a>, as the guidelines forbid official plugins from allowing updates from anywhere outside of WordPress.org. Developers usually opt for using the GitHub Updater when they want to host their plugins on GitHub/Bitbucket, or need to provide updates for private repositories.</p>\n<p>The <a href="http://thefragens.com/2015/02/github-updater-and-remote-installation/" target="_blank">4.1 release of GitHub Updater</a> will include both remote installation and automatic updating in one package. If you want to test the functionality now, you can check out the <code>develop</code> branch. Feel free to log your issues and feedback on <a href="https://github.com/afragen/github-updater" target="_blank">GitHub</a>, as Fragen will be incorporating bug fixes into the 4.1 release.</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, 09 Feb 2015 20:32: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:"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: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:60:"WPTavern: WP Rocket Grows From $0 to $35K in Monthly Revenue";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38729";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wptavern.com/wp-rocket-grows-from-0-to-35k-in-monthly-revenue";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3947:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WPRocketFeaturedImage.png" rel="prettyphoto[38729]"><img class="aligncenter size-full wp-image-38763" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WPRocketFeaturedImage.png?resize=672%2C281" alt="WP Rocket Featured Image" /></a></p>\n<p>WP Media, the company behind WordPress caching plugin WP Rocket, <a title="http://blog.wp-rocket.me/transparency-matters/" href="http://blog.wp-rocket.me/transparency-matters/">published a post</a> that highlights how successful the plugin has been since launching a year and a half ago. When we wrote about the <a title="http://wptavern.com/wp-rocket-launches-commercial-caching-plugin-for-wordpress" href="http://wptavern.com/wp-rocket-launches-commercial-caching-plugin-for-wordpress">international launch of WP Rocket</a>, we questioned whether it would be able to compete against all of the free, robust options available.</p>\n<p>In a show of transparency, WP Media shares stats that indicate the plugin is doing well. Since launching a year and a half ago, WP Rocket has achieved the following milestones while being a 100% bootstrapped company:</p>\n<ul>\n<li>$0 to $35 000 in monthly revenue</li>\n<li>0 to +15 000 websites using WP Rocket</li>\n<li>0 to +4300 customers.</li>\n</ul>\n<p>Despite launching the product without a business plan, customers have shown they’re willing to buy a caching solution that’s simple to configure and use.</p>\n<p>Jean-Baptiste Marchand-Arvier, Co-founder of WP Rocket, says the move towards greater transparency is inspired by other companies that have revealed revenue numbers, recruitment strategies, and productivity tips.</p>\n<blockquote><p>We are really inspired by great companies like <a href="https://bufferapp.com/">Buffer</a>, <a href="http://baremetrics.io">Baremetrics</a> and <a href="https://mattermark.com/">Mattermark</a> where transparency is a company culture. They share it through several channels:</p>\n<ul>\n<li><a href="https://open.bufferapp.com">Buffer Open Blog</a>, “Our journey to greater productivity, more transparency and a happier work culture”</li>\n<li><a href="https://medium.com/@DanielleMorrill">Medium posts of Danielle Morrill</a>, CEO and Cofounder of Mattermark</li>\n<li><a href="https://baremetrics.io/blog">Baremetrics Blog</a></li>\n</ul>\n<p><strong>These companies have helped us greatly</strong> by sharing a lot of internal information including their monthly revenue, and more.</p></blockquote>\n<p>At the end of 2014, <a title="https://pippinsplugins.com/2014-review/" href="https://pippinsplugins.com/2014-review/">Easy Digital Downloads</a> and <a title="http://wpninjas.com/2014-review/" href="http://wpninjas.com/2014-review/">WP Ninjas</a> published year-end reviews that show how well each plugin has done. However, Matt Medeiros, of MattReport.com <a title="http://mattreport.com/precursor-greatness/" href="http://mattreport.com/precursor-greatness/">cautions,</a> that while reading about the success of others can be motivational, it can also be depressing.</p>\n<blockquote><p>Entrepreneurs or small business owners that have been in the game month-after-month or 3 years in still struggling to make it. “Everyone is doing better shit than me.” or “Look at the money they are making! Why can’t I?”</p>\n<p>The new social has amplified everyone else’s success while making yours seem insignificant.</p></blockquote>\n<p>I want to see as many companies as possible open up to their customers and readers by publishing revenue numbers and strategies that don’t work out as intended. Aside from knowing the numbers, I think a lot of people in the community would love to read about the struggles businesses are having and what they’re doing to overcome them.</p>\n<p>WP Rocket is proving that, despite jumping into an established market, there’s enough room for new products to grow.</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, 09 Feb 2015 20:21:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:40;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:94:"WPTavern: The First Conference Dedicated to WordPress.com Debuts on March 28th in Portland, OR";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38717";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wptavern.com/the-first-conference-dedicated-to-wordpress-com-debuts-on-march-28th-in-portland-or";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2200:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/PressPublishFeaturedImage.png" rel="prettyphoto[38717]"><img class="size-full wp-image-38718" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/PressPublishFeaturedImage.png?resize=668%2C262" alt="Press Publish Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/38072565@N00/462857539">Publish Akku</a> – <a href="https://creativecommons.org/licenses/by-nc/2.0/">(license)</a>\n<p>Those who use the <a title="https://wordpress.org/" href="https://wordpress.org/">self hosted version of WordPress</a> have access to <a title="http://central.wordcamp.org/" href="http://central.wordcamp.org/">WordCamps</a>, annual conferences dedicated to WordPress. Meanwhile, there has never been a conference focused on WordPress.com.</p>\n<p><a title="http://presspublish.events/" href="http://presspublish.events/">Press Publish</a> is a new <a title="http://presspublish.events/2015/02/04/portland-lineup-confirmed/" href="http://presspublish.events/2015/02/04/portland-lineup-confirmed/">series of events</a> focused on WordPress.com and Jetpack. The first is scheduled for <a title="http://presspublish.events/events/portland/" href="http://presspublish.events/events/portland/">March 28th, 2015 in Portland, OR</a>. There’s also a second event scheduled for <a title="http://presspublish.events/events/phoenix/" href="http://presspublish.events/events/phoenix/">April 18th, 2015 in Phoenix, AZ</a>.</p>\n<p>Each event lasts for one day and has two tracks. Speakers will share their personal success stories on using the WordPress.com platform. There will also be a handful of Automatticians on hand to answer any questions. Registration is open for both events and costs $250.00.</p>\n<p>Press Publish is an opportunity for attendees to learn from some of the brightest minds who make a living publishing content on WordPress.com. It’s also an opportunity for attendees to speak with Automatticians face to face to suggest features or enhancements to the service. The events and locations are part of a pilot program that, if successful, will likely spread to other places around the world.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Feb 2015 20:00:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:77:"WPTavern: Initiative Aims to Improve the New User Experience in WordPress 4.2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38655";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:87:"http://wptavern.com/initiative-aims-to-improve-the-new-user-experience-in-wordpress-4-2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4889:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/NewUserExperienceFeaturedImage.png" rel="prettyphoto[38655]"><img class="size-full wp-image-38713" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/NewUserExperienceFeaturedImage.png?resize=650%2C200" alt="New User Experience Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/35034347371@N01/414920055">zu.com – Image136</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>Drew Jaynes, who is <a title="http://wptavern.com/drew-jaynes-to-lead-wordpress-4-2" href="http://wptavern.com/drew-jaynes-to-lead-wordpress-4-2">leading the release cycle</a> for WordPress 4.2 <a title="https://make.wordpress.org/core/2015/02/05/4-2-community-initiative-nux-working-group/" href="https://make.wordpress.org/core/2015/02/05/4-2-community-initiative-nux-working-group/">announced on the Make.WordPress.core blog,</a> that a new community initiative has been launched called NUX or New User Experience. The group is made up of more than 15 members of the WordPress community who have experience in onboarding clients, training clients, and work with new users on a regular basis. According to the announcement, the group’s main task is as follows:</p>\n<blockquote><p>The group will be tasked with helping to identify common pain points new users might experience using WordPress. The hope is to (re)invigorate the conversation about making NUX a priority in core decision-making. We’ll work together to identify problems and recommend solutions.</p></blockquote>\n<p>With regards to 4.2, the group will brainstorm actionable goals and make recommendations to improve the new user experience throughout the WordPress backend. Jaynes says, “These changes would likely include improvements to contextual help on various screens, improvements to the content of the Welcome Panel, as well as adjustments to many other established workflows in core interfaces including the installation process.”</p>\n<p>Recommendations large and small will receive direct feedback from core developers. This provides an opportunity for new users to immediately contribute back to WordPress. The group’s first meeting will be held <a href="http://www.timeanddate.com/worldclock/fixedtime.html?iso=20150210T1900"><abbr class="date" title="2015-02-10T19:00:00+00:00">Tuesday, February 10, 2015 14:00 UTC-5</abbr></a> in the <a href="https://wordpress.slack.com/messages/core-flow/">#core-flow</a> channel on <a href="https://make.wordpress.org/chat">Slack</a>.</p>\n<h2>Re-establishing Easy as a Selling Point</h2>\n<p>I’ve used WordPress since 2008 and one of its strongest selling points has always been that it’s easy to use. However, as WordPress has advanced, I think it’s become progressively more difficult to use. Within the last two years, several articles have highlighted the increasing difficulty in using and explaining WordPress.</p>\n<ul>\n<li><a title="http://mor10.com/wordpress-easy-thats-ok/" href="http://mor10.com/wordpress-easy-thats-ok/">WordPress is not easy – and that’s OK</a></li>\n<li><a title="https://medium.com/@salliegoetsch/have-we-been-misleading-people-about-wordpress-9dcd7dbf3034" href="https://medium.com/@salliegoetsch/have-we-been-misleading-people-about-wordpress-9dcd7dbf3034">Have We Been Misleading People about WordPress?</a></li>\n<li><a title="http://wptavern.com/why-is-explaining-wordpress-to-someone-so-hard" href="http://wptavern.com/why-is-explaining-wordpress-to-someone-so-hard">Why Is Explaining WordPress To Someone So Hard?</a></li>\n</ul>\n<p>I think a good base to start from to improve the user experience is Jen Mylo’s <a title="http://jenmylo.com/2014/10/05/site-setup-journal-prologue/" href="http://jenmylo.com/2014/10/05/site-setup-journal-prologue/">site setup journal experiment</a>. In the series, Mylo documents what it’s like as a new user to install WordPress on a host, setup a website, and browse through documentation. <a title="http://jenmylo.com/2014/10/11/site-setup-journal-act-i/" href="http://jenmylo.com/2014/10/11/site-setup-journal-act-i/">Part 1</a> covers domains and hosting while <a title="http://jenmylo.com/2014/10/11/site-setup-journal-act-ii/" href="http://jenmylo.com/2014/10/11/site-setup-journal-act-ii/">part 2</a> is about setting up WordPress. Her journey is an eye-opening experience and shows how many areas of WordPress are ripe for improvement.</p>\n<p>If WordPress is going to achieve <a title="http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share" href="http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share">50% market share</a>, it needs to be easy to install and use. The New User Experience initiative is a good step towards ensuring the future of WordPress adoption.</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, 09 Feb 2015 19:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:42;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"Matt: Fusion.net";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44663";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:32:"http://ma.tt/2015/02/fusion-net/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:347:"<p>There’s <a href="http://fusion.net/">a relatively new site called Fusion.net that is definitely worth checking out</a>, it’s already full of great articles and they’re <a href="http://techmeme.com/lb">starting to climb up the Techmeme Leaderboard</a>. They run on <a href="http://vip.wordpress.com/">WordPress.com VIP</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Feb 2015 18:30:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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: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:81:"WPTavern: Unplug Jetpack: Use Jetpack Modules Without Connecting to WordPress.com";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38723";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:90:"http://wptavern.com/unplug-jetpack-use-jetpack-modules-without-connecting-to-wordpress-com";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2837:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/unplug.jpg" rel="prettyphoto[38723]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/unplug.jpg?resize=1024%2C510" alt="photo credit: Unplugged - (license)" class="size-full wp-image-38734" /></a>photo credit: <a href="http://www.flickr.com/photos/23307937@N04/3415991748">Unplugged</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>Connecting a WordPress.com account in order to use Jetpack can be a hassle, especially when developing for clients or working on your local machine. If you like Jetpack but don’t want to connect to WordPress.com, there’s a new plugin that makes it easy to use the features that don’t require a connection.</p>\n<p><a href="https://wordpress.org/plugins/unplug-jetpack/" target="_blank">Unplug Jetpack</a> was created by WordPress developer <a href="http://tannermoushey.com/" target="_blank">Tanner Moushey</a>. With the plugin activated, you won’t be required to connect to WordPress.com unless you need to use Site stats, Publicize, Related Posts, etc. If you don’t see the module you’re looking for among the others, that means that it likely requires a WordPress.com connection in order to use it.</p>\n<p>The Unplug Jetpack plugin essentially puts Jetpack into development mode. Development mode was introduced in Jetpack <a href="http://jetpack.me/2013/03/28/jetpack-dev-mode-release/" target="_blank">2.2.1</a> to help developers with local testing. It allows you to use features that do not require a connection to WordPress.com servers. Ordinarily, turning on development mode requires adding a line to your wp-config.php file or employing the filter via a plugin.</p>\n<p>Unplug Jetpack is convenient, because it allows you to turn development mode on/off using a plugin. It uses the Jetpack-supported method for doing this and consists of just a couple lines of code:</p>\n<pre class="brush: php; light: true; title: ; notranslate">\nfunction uj_init() {\n add_filter( ''jetpack_development_mode'', ''__return_true'' );\n}\nadd_action( ''plugins_loaded'', ''uj_init'' );\n</pre>\n<p>When asked whether or not the plugin offers a performance boost as opposed to using non-WordPress.com dependent modules with the connection to WordPress.com, Moushey <a href="https://twitter.com/tannermoushey/status/564189285071351808" target="_blank">said</a> that it’s unlikely to have a significant performance impact. “But that is not really the point of this,” he said. It’s the principle of the matter – being able to use Jetpack’s code without the requirement of connecting to a third party. <a href="https://wordpress.org/plugins/unplug-jetpack/" target="_blank">Unplug Jetpack</a> lets you do that with the flip of a switch.</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, 09 Feb 2015 18:22:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:44;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:23:"Matt: What is a Hacker?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44661";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:38:"http://ma.tt/2015/02/what-is-a-hacker/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"<p>Steven Levy asks <a href="https://medium.com/backchannel/what-is-a-hacker-51257cad8b54">What is a Hacker? and gets some great answers back</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Feb 2015 01:08:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:39:"Matt: Productivity of Working from Home";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44659";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://ma.tt/2015/02/productivity-of-working-from-home/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:270:"<p>FiveThirtyEight says <a href="http://fivethirtyeight.com/datalab/people-working-from-home-in-a-snowstorm-may-be-producing-more-than-you-are/">People Working From Home In A Snowstorm May Be Producing More Than You Are</a>, on the productivity of working from home.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 08 Feb 2015 03:41: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: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: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:28:"Matt: Tom Ford’s 15 Things";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44642";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://ma.tt/2015/02/tom-fords-15-things/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1195:"<p>For the <a href="http://www.vogue.co.uk/spy/15th-anniversary">15th anniversary of Vogue.com</a> noted fashion designer Tom Ford made a list of 15 things that every man should have, which are as follow:</p>\n<ol>\n<li>A sense of humour.</li>\n<li>A daily read of a newspaper.</li>\n<li>A sport that you love and are good at.</li>\n<li>Tweezers.</li>\n<li>A good cologne that becomes a signature.</li>\n<li>A well cut dark suit.</li>\n<li>A pair of classic black lace up shoes.</li>\n<li>A smart blazer.</li>\n<li>The perfect pair of dark denim jeans.</li>\n<li>Lots of crisp white cotton shirts.</li>\n<li>Always new socks and underwear, throw away the old ones every 6 months.</li>\n<li>A classic tuxedo.</li>\n<li>A beautiful day watch with a metal band.</li>\n<li>The perfect sunglasses.</li>\n<li>Perfect teeth. If you don’t have them, save up and get them fixed.</li>\n</ol>\n<p>A pretty good list, though I would <a href="http://cir.ca/">replace the newspaper with Circa</a>, and I must confess I’m not sure sure what #4 the tweezers are for.</p>\n<p><a href="http://om.co/2011/07/05/tom-ford-5-tips-to-be-a-modern-gentleman/">Om also has Tom Ford’s 5 tips for a modern gentleman</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, 06 Feb 2015 23:49:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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:47;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:66:"WPTavern: Customize Your Login Page Using the WordPress Customizer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38581";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:76:"http://wptavern.com/customize-your-login-page-using-the-wordpress-customizer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2713:"<p>As a result of the improvements to the Customizer API in WordPress 4.0 and 4.1, developers now have access to a wider array of controls and parameters that allow them to extend the feature for more varied uses beyond themes. The new <a href="https://wordpress.org/plugins/login-customizer/" target="_blank">Custom Login Customizer</a> plugin is a prime example of making the customizer available outside of a theme-related context.</p>\n<p>The plugin adds its own panel to the customizer with a myriad of options for customizing the design of your site’s login page.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/login-customizer.jpg" rel="prettyphoto[38581]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/login-customizer.jpg?resize=987%2C572" alt="login-customizer" class="aligncenter size-full wp-image-38688" /></a></p>\n<p>Custom Login Customizer allows you to customize nearly every aspect of the login form, including the following:</p>\n<ul>\n<li>Set a login logo, along with width, height, and padding</li>\n<li>Add a background, select background color and size</li>\n<li>Set a background for the form</li>\n<li>Adjust form styling – width, height, padding, border</li>\n<li>Style input field width, margin, background, and input/label colors</li>\n<li>Color picker for button background, border, hover background/border, button box shadow</li>\n<li>Select text colors</li>\n<li>Add custom CSS</li>\n</ul>\n<p>I tested the plugin and found it works smoothly as advertised. Once installed, navigate to Appearance > Login Customizer in order to launch your login page in the customizer while still being logged in.</p>\n<p>Custom Login Customizer was created by WordPress developer <a href="http://www.hardeepasrani.com/" target="_blank">Hardeep Asrani</a> and then sold to <a href="https://themeisle.com/" target="_blank">ThemeIsle.com</a> last week. “I believe Themeisle will most probably have a premium version with some more features in the future,” Asrani said. “However, the free plugin will still be there at the WordPerss.org repository and will have more features soon. At this moment, there’s no premium version or a plan for it.”</p>\n<p>There are many plugins out there which allow you to customize your login page. However, the advantage of using this particular one is that you can preview your changes live before saving them. This is one of the best uses of the customizer in a plugin that I have seen so far. It makes designing your login page an easy and enjoyable experience. Download the <a href="https://wordpress.org/plugins/login-customizer/" target="_blank">Login Customizer</a> from WordPress.org.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 06 Feb 2015 22:44: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: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:74:"WPTavern: Custom Metaboxes and Fields for WordPress (CMB2) Now Out of Beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38417";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"http://wptavern.com/custom-metaboxes-and-fields-for-wordpress-cmb2-now-out-of-beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4291:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/cmb2.jpg" rel="prettyphoto[38417]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/cmb2.jpg?resize=768%2C372" alt="photo credit: Different types of wand cases stacked - (license)" class="size-full wp-image-38683" /></a>photo credit: <a href="http://www.flickr.com/photos/22464562@N00/8084402724">Different types of wand cases stacked</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>The <a href="https://github.com/WebDevStudios/CMB2" target="_blank">Custom Metaboxes and Fields for WordPress (CMB2)</a> plugin is now officially out of beta and ready for public use. The tool was created to make it easy for developers to create metaboxes and forms with custom fields. Developers at <a href="http://webdevstudios.com/" target="_blank">WebDevStudios</a> took over the <a href="https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress" target="_blank">original CMB GitHub repository</a> from Jared Atchison, its original creator, in December of 2013.</p>\n<p>Justin Sternberg <a href="http://webdevstudios.com/2015/02/02/cmb2-wordpress-plugin/" target="_blank">explained</a> why WebDevStudios chose to start contributing to the CMB2 project:</p>\n<blockquote><p>After having been burned by some issues with other custom field plugins, we determined it was best to stick with code that we had some control over. We fell in love with CMB because it was a library we could include in any of our projects and it would just work while letting us keep all of the field configuration in the code, and more importantly, in our version control system.</p></blockquote>\n<p>Due to irreconcilable shortcomings in the original CMB, WebDevStudios opted to fork the project and create a new one that wouldn’t have the same backwards compatibility requirements. If you used CMB in the past, it’s important to note that the new CMB2 project has renamed every class, function, hook, and filter in the library to avoid conflicts with the original. It’s essentially a complete re-write.</p>\n<p>“CMB2 was built with a new mechanism to ensure it only loads the most recent version of CMB2 in your system,” Sternberg said. “This ensures that a plugin with an old bundled version will not conflict or take precedence over your up-to-date version.”</p>\n<p>The new <a href="https://wordpress.org/plugins/cmb2/" target="_blank">CMB2 is now available on WordPress.org</a> as a plugin for easy activation when you want to use it with one of your projects. As an alternative, you can <a href="https://github.com/WebDevStudios/CMB2/blob/master/example-functions.php#L14" target="_blank">include CMB2 directly</a>. The newly released plugin features the following:</p>\n<ul>\n<li>Create metaboxes to be used on post edit screens.</li>\n<li><a href="https://github.com/WebDevStudios/CMB2/wiki/Using-CMB-to-create-an-Admin-Theme-Options-Page" target="_blank">Create forms to be used on an options pages.</a></li>\n<li>Create forms to handle user meta and display them on user profile add/edit pages.</li>\n<li><a href="https://github.com/WebDevStudios/CMB2/wiki/Bringing-Metaboxes-to-the-Front-end" target="_blank">Flexible API that allows you to use CMB forms almost anywhere, even on the front-end</a></li>\n<li><a href="https://github.com/WebDevStudios/CMB2/wiki/Field-Types#types" target="_blank">30+ built-in field types</a></li>\n<li><a href="https://github.com/WebDevStudios/CMB2/wiki/Adding-your-own-field-types" target="_blank">Custom API hook that allows you to create your own field types</a></li>\n<li>Numerous hooks and filters, allowing you to modify many aspects of the library (without editing it directly)</li>\n<li>Repeatable fields for most field types are supported, as well as repeatable field groups</li>\n</ul>\n<p>The WebDevStudios team plans to maintain strict backwards compatibility moving forward, as of CMB2’s 2.0.1 release on WordPress.org. If you want to include CMB2 as part of your next project, make sure to check out the plugin’s <a href="https://github.com/WebDevStudios/CMB2/wiki" target="_blank">wiki and code library</a> for tips on how to add metaboxes, fields, and forms to WordPress themes and plugins.</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, 06 Feb 2015 21:05: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: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:72:"WPTavern: Harmonic: A Bold Free WordPress Theme for Artists and Bloggers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=38617";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:81:"http://wptavern.com/harmonic-a-bold-free-wordpress-theme-for-artists-and-bloggers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3114:"<p>If you like designs that feature stunning, fullscreen background images, then Automattic’s latest free theme release is a prime candidate for your next blog redesign. <a href="https://wordpress.org/themes/harmonic" target="_blank">Harmonic</a> recently landed on WordPress.org and is rapidly closing in on 3,000 downloads.</p>\n<p>This theme puts the spotlight on your images and content. Harmonic’s striking homepage is accompanied by a minimalist, one-column blog design and an optional portfolio page template.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic.png" rel="prettyphoto[38617]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic.png?resize=880%2C660" alt="harmonic" class="aligncenter size-full wp-image-38619" /></a></p>\n<p>Each section of the scrolling front page has options in the customizer that let you assign a unique display. The customizer allows you to easily set a background for the news, page, widgets, and portfolio sections. You can even include a background shade so that the title and tagline are more readable. The Visibility options allow you to hide any of the sections you’re not currently using.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic-customizer.png" rel="prettyphoto[38617]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic-customizer.png?resize=1025%2C542" alt="harmonic-customizer" class="aligncenter size-full wp-image-38629" /></a></p>\n<p>Single posts and pages with a featured image will display in a fullscreen design similar to the homepage. The blog archive is available with your choice of a one or two-column layout.</p>\n<p>With the addition of Jetpack, Harmonic also supports site logo upload and a portfolio. The customizer includes options for three different thumbnail aspect ratios, including: landscape (4:3), portrait (3:4), and square (1:1).</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/media.jpg" rel="prettyphoto[38617]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/media.jpg?resize=1025%2C748" alt="media" class="aligncenter size-full wp-image-38635" /></a></p>\n<p>Harmonic includes a custom menu for social links and has support for 16 different social networks. Check out the <a href="https://harmonicdemo.wordpress.com/" target="_blank">live demo</a> on WordPress.com to see the theme in action.</p>\n<p>With the release of <a href="https://wordpress.org/themes/harmonic" target="_blank">Harmonic</a> for self-hosted sites, Automattic now has 60 free themes available in the directory. This theme caters to visual artists and bloggers who have large images to showcase in the background, portfolio, or gallery sections of the site.</p>\n<p>Harmonic is unique in that it transforms featured images and titles into a splash page style intro to single posts. If you want to use images to make a strong impact on your reader, this theme fits the bill. It’s available on both WordPress.com and self-hosted WordPress sites via the admin themes browser.</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, 06 Feb 2015 08:19: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:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Fri, 20 Feb 2015 08:47:47 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"224220";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Fri, 20 Feb 2015 08:30:16 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20130911040210";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(114, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1424465273', 'no'),
(115, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1424422073', 'no'),
(116, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1424465276', 'no'),
(117, '_transient_feed_b9388c83948825c1edaef0d856b7b109', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"https://wordpress.org/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 20 Feb 2015 08:39: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:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:25:"http://bbpress.org/?v=1.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:24:"Jetpack by WordPress.com";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"https://wordpress.org/plugins/jetpack/#post-23862";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Jan 2011 02:21:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"23862@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:28:"Your WordPress, Streamlined.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Tim Moore";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"Contact Form 7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"https://wordpress.org/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2141@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:54:"Just another contact form plugin. Simple but flexible.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"WordPress SEO by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"https://wordpress.org/plugins/wordpress-seo/#post-8321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jan 2009 20:34:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"8321@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast's WordPress SEO plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WooCommerce - excelling eCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"https://wordpress.org/plugins/woocommerce/#post-29860";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Sep 2011 08:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"29860@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"WooThemes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"Google Analytics by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Sep 2007 12:15:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2316@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:124:"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:7:"Akismet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:46:"https://wordpress.org/plugins/akismet/#post-15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:11:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"15@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:98:"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"All in One SEO Pack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"753@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:126:"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"Google Analytics Dashboard for WP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 10 Mar 2013 17:07:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"50539@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:148:"Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your site.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Alin Marcu";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"WordPress Importer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/plugins/wordpress-importer/#post-18101";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 May 2010 17:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"18101@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brian Colinger";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"Wordfence Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/plugins/wordfence/#post-29832";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 04 Sep 2011 03:13:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"29832@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:137:"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Wordfence";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"Page Builder by SiteOrigin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"https://wordpress.org/plugins/siteorigin-panels/#post-51888";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 11 Apr 2013 10:36:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"51888@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:111:"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"Greg Priday";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:91:"NextGEN Facebook - Advanced Social SEO for Facebook, Google+, Pinterest, Twitter & More";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wordpress.org/plugins/nextgen-facebook/#post-40409";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Jul 2012 20:13: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"40409@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:132:"Display your content in the best possible way on Facebook, Google+, Twitter, Pinterest, etc. - no matter how your webpage is shared!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"JS Morisset";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"Google XML Sitemaps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"https://wordpress.org/plugins/google-sitemap-generator/#post-132";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:31:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"132@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Arne Brachhold";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"Advanced Custom Fields";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"https://wordpress.org/plugins/advanced-custom-fields/#post-25254";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 17 Mar 2011 04:07:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"25254@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:68:"Customise WordPress with powerful, professional and intuitive fields";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"elliotcondon";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:15:"NextGEN Gallery";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/plugins/nextgen-gallery/#post-1169";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 23 Apr 2007 20:08:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"1169@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:121:"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 11 million downloads.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Alex Rabe";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:46:"https://wordpress.org/plugins/rss/view/popular";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:11:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Fri, 20 Feb 2015 08:47:56 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:7:"expires";s:29:"Fri, 20 Feb 2015 09:14:54 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Fri, 20 Feb 2015 08:39:54 +0000";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20130911040210";}', 'no'),
(118, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1424465276', 'no'),
(119, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1424422076', 'no'),
(120, '_transient_timeout_plugin_slugs', '1424511056', 'no'),
(121, '_transient_plugin_slugs', 'a:3:{i:0;s:19:"akismet/akismet.php";i:1;s:9:"hello.php";i:2;s:27:"woocommerce/woocommerce.php";}', 'no'),
(122, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1424465276', 'no'),
(123, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wordpress.org/news/2015/02/wordpress-4-1-1/''>WordPress 4.1.1 Maintenance Release</a> <span class="rss-date">February 18, 2015</span><div class="rssSummary">WordPress 4.1.1 is now available. This maintenance release fixes 21 bugs in version 4.1. Some of you may have been waiting to update to the latest version until now, but there just wasn’t much to address. WordPress 4.1 was a smooth-sailing release and has seen more than 14 million downloads in the last two months. For a full […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wptavern.com/gravityview-is-now-public-on-github''>WPTavern: GravityView is Now Public on GitHub</a></li><li><a class=''rsswidget'' href=''http://ma.tt/2015/02/usb-history-and-type-c/''>Matt: USB History and Type C</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/wpweekly-episode-180-interview-with-wade-foster-ceo-and-co-founder-of-zapier''>WPTavern: WPWeekly Episode 180 – Interview With Wade Foster, CEO and Co-founder of Zapier</a></li></ul></div><div class="rss-widget"><ul><li class=''dashboard-news-plugin''><span>Popular Plugin:</span> <a href=''https://wordpress.org/plugins/woocommerce/'' class=''dashboard-news-plugin-link''>WooCommerce - excelling eCommerce</a> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=woocommerce&_wpnonce=3fa840ea9b&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''WooCommerce - excelling eCommerce''>Install</a>)</span></li></ul></div>', 'no'),
(127, 'recently_activated', 'a:0:{}', 'yes'),
(128, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1424435210', 'yes'),
(129, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:40:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"4916";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"3078";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"3022";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"2529";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2346";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1892";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"1729";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1680";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1678";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1676";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1612";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1609";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1505";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:4:"1322";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1276";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:4:"1175";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1171";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:4:"1083";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:4:"1079";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"918";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"905";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"874";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"843";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"837";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"794";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"758";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"748";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"709";}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";s:3:"700";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"692";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"682";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"657";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"649";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"642";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"642";}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";s:3:"623";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"620";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"605";}s:5:"share";a:3:{s:4:"name";s:5:"Share";s:4:"slug";s:5:"share";s:5:"count";s:3:"600";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"593";}}', 'yes'),
(130, '_site_transient_timeout_theme_roots', '1424426251', 'yes'),
(131, '_site_transient_theme_roots', 'a:3:{s:13:"twentyfifteen";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";s:14:"twentythirteen";s:7:"/themes";}', 'yes'),
(132, 'woocommerce_default_country', 'GB', 'yes'),
(133, 'woocommerce_allowed_countries', 'all', 'yes'),
(134, 'woocommerce_specific_allowed_countries', '', 'yes'),
(135, 'woocommerce_demo_store', 'no', 'yes'),
(136, 'woocommerce_demo_store_notice', 'This is a demo store for testing purposes — no orders shall be fulfilled.', 'no'),
(137, 'woocommerce_api_enabled', 'yes', 'yes'),
(138, 'woocommerce_currency', 'GBP', 'yes'),
(139, 'woocommerce_currency_pos', 'left', 'yes'),
(140, 'woocommerce_price_thousand_sep', ',', 'yes'),
(141, 'woocommerce_price_decimal_sep', '.', 'yes'),
(142, 'woocommerce_price_num_decimals', '2', 'yes'),
(143, 'woocommerce_weight_unit', 'kg', 'yes'),
(144, 'woocommerce_dimension_unit', 'cm', 'yes'),
(145, 'woocommerce_enable_review_rating', 'yes', 'no'),
(146, 'woocommerce_review_rating_required', 'yes', 'no'),
(147, 'woocommerce_review_rating_verification_label', 'yes', 'no'),
(148, 'woocommerce_review_rating_verification_required', 'no', 'no'),
(149, 'woocommerce_shop_page_id', '4', 'yes'),
(150, 'woocommerce_shop_page_display', '', 'yes'),
(151, 'woocommerce_category_archive_display', '', 'yes'),
(152, 'woocommerce_default_catalog_orderby', 'menu_order', 'yes'),
(153, 'woocommerce_cart_redirect_after_add', 'no', 'yes'),
(154, 'woocommerce_enable_ajax_add_to_cart', 'yes', 'yes'),
(155, 'shop_catalog_image_size', 'a:3:{s:5:"width";s:3:"300";s:6:"height";s:3:"300";s:4:"crop";i:1;}', 'yes'),
(156, 'shop_single_image_size', 'a:3:{s:5:"width";s:3:"600";s:6:"height";s:3:"600";s:4:"crop";i:1;}', 'yes'),
(157, 'shop_thumbnail_image_size', 'a:3:{s:5:"width";s:3:"180";s:6:"height";s:3:"180";s:4:"crop";i:1;}', 'yes'),
(158, 'woocommerce_enable_lightbox', 'yes', 'yes'),
(159, 'woocommerce_manage_stock', 'yes', 'yes'),
(160, 'woocommerce_hold_stock_minutes', '60', 'no'),
(161, 'woocommerce_notify_low_stock', 'yes', 'no'),
(162, 'woocommerce_notify_no_stock', 'yes', 'no'),
(163, 'woocommerce_stock_email_recipient', '[email protected]', 'no'),
(164, 'woocommerce_notify_low_stock_amount', '2', 'no'),
(165, 'woocommerce_notify_no_stock_amount', '0', 'no'),
(166, 'woocommerce_hide_out_of_stock_items', 'no', 'yes'),
(167, 'woocommerce_stock_format', '', 'yes'),
(168, 'woocommerce_file_download_method', 'force', 'no'),
(169, 'woocommerce_downloads_require_login', 'no', 'no'),
(170, 'woocommerce_downloads_grant_access_after_payment', 'yes', 'no'),
(171, 'woocommerce_calc_taxes', 'no', 'yes'),
(172, 'woocommerce_prices_include_tax', 'no', 'yes'),
(173, 'woocommerce_tax_based_on', 'shipping', 'yes'),
(174, 'woocommerce_default_customer_address', 'geolocation', 'yes'),
(175, 'woocommerce_shipping_tax_class', 'title', 'yes'),
(176, 'woocommerce_tax_round_at_subtotal', 'no', 'yes'),
(177, 'woocommerce_tax_classes', 'Reduced Rate\nZero Rate', 'yes'),
(178, 'woocommerce_tax_display_shop', 'excl', 'yes'),
(179, 'woocommerce_price_display_suffix', '', 'yes'),
(180, 'woocommerce_tax_display_cart', 'excl', 'no'),
(181, 'woocommerce_tax_total_display', 'itemized', 'no'),
(182, 'woocommerce_enable_coupons', 'yes', 'no'),
(183, 'woocommerce_enable_guest_checkout', 'yes', 'no'),
(184, 'woocommerce_force_ssl_checkout', 'no', 'yes'),
(185, 'woocommerce_unforce_ssl_checkout', 'no', 'yes'),
(186, 'woocommerce_cart_page_id', '5', 'yes'),
(187, 'woocommerce_checkout_page_id', '6', 'yes'),
(188, 'woocommerce_terms_page_id', '', 'no'),
(189, 'woocommerce_checkout_pay_endpoint', 'order-pay', 'yes'),
(190, 'woocommerce_checkout_order_received_endpoint', 'order-received', 'yes'),
(191, 'woocommerce_myaccount_add_payment_method_endpoint', 'add-payment-method', 'yes'),
(192, 'woocommerce_calc_shipping', 'yes', 'yes'),
(193, 'woocommerce_enable_shipping_calc', 'yes', 'no'),
(194, 'woocommerce_shipping_cost_requires_address', 'no', 'no'),
(195, 'woocommerce_shipping_method_format', '', 'no'),
(196, 'woocommerce_ship_to_destination', 'billing', 'no'),
(197, 'woocommerce_ship_to_countries', '', 'yes'),
(198, 'woocommerce_specific_ship_to_countries', '', 'yes'),
(199, 'woocommerce_myaccount_page_id', '7', 'yes'),
(200, 'woocommerce_myaccount_view_order_endpoint', 'view-order', 'yes'),
(201, 'woocommerce_myaccount_edit_account_endpoint', 'edit-account', 'yes'),
(202, 'woocommerce_myaccount_edit_address_endpoint', 'edit-address', 'yes'),
(203, 'woocommerce_myaccount_lost_password_endpoint', 'lost-password', 'yes'),
(204, 'woocommerce_logout_endpoint', 'customer-logout', 'yes'),
(205, 'woocommerce_enable_signup_and_login_from_checkout', 'yes', 'no'),
(206, 'woocommerce_enable_myaccount_registration', 'no', 'no'),
(207, 'woocommerce_enable_checkout_login_reminder', 'yes', 'no'),
(208, 'woocommerce_registration_generate_username', 'yes', 'no'),
(209, 'woocommerce_registration_generate_password', 'no', 'no'),
(210, 'woocommerce_email_from_name', 'tahsin's garage', 'no'),
(211, 'woocommerce_email_from_address', '[email protected]', 'no'),
(212, 'woocommerce_email_header_image', '', 'no'),
(213, 'woocommerce_email_footer_text', 'tahsin's garage - Powered by WooCommerce', 'no'),
(214, 'woocommerce_email_base_color', '#557da1', 'no'),
(215, 'woocommerce_email_background_color', '#f5f5f5', 'no'),
(216, 'woocommerce_email_body_background_color', '#fdfdfd', 'no'),
(217, 'woocommerce_email_text_color', '#505050', 'no'),
(219, 'woocommerce_db_version', '2.3.4', 'yes'),
(220, 'woocommerce_version', '2.3.4', 'yes'),
(221, 'woocommerce_admin_notices', 'a:0:{}', 'yes'),
(224, '_transient_woocommerce_cache_excluded_uris', 'a:0:{}', 'yes'),
(225, '_transient_woocommerce_webhook_ids', 'a:0:{}', 'yes'),
(226, '_transient_wc_attribute_taxonomies', 'a:0:{}', 'yes'),
(228, 'woocommerce_meta_box_errors', 'a:0:{}', 'yes'),
(229, 'woocommerce_allow_tracking', 'no', 'yes'),
(230, '_transient_timeout_geoip_127.0.0.1', '1425029521', 'no'),
(231, '_transient_geoip_127.0.0.1', '', 'no'),
(232, '_transient_timeout_external_ip_address_127.0.0.1', '1425029522', 'no'),
(233, '_transient_external_ip_address_127.0.0.1', '114.130.11.215', 'no'),
(234, '_transient_timeout_geoip_114.130.11.215', '1425029522', 'no'),
(235, '_transient_geoip_114.130.11.215', 'BD', 'no'),
(236, '_transient_timeout_wc_report_sales_by_date', '1424511152', 'no'),
(237, '_transient_wc_report_sales_by_date', 'a:8:{s:32:"bdbe494874dd2f21685386ebf746617e";a:0:{}s:32:"e11395486d674b3ebe8066791eafebc0";a:0:{}s:32:"970c73477891db629943eaad924d2732";a:0:{}s:32:"21fbdaff84f7a037c712f029b10c77d7";a:0:{}s:32:"6c9103eb3ca3cd3a447ae9ca42891eda";a:0:{}s:32:"71756dc30fb1e64bfc3ef161cc3d432d";a:0:{}s:32:"9f61e994f7eab76628127cd249017258";s:1:"0";s:32:"7fb4e0216dbc548beef6b7d7489e6237";a:0:{}}', 'no'),
(238, '_transient_timeout_wc_report_customers', '1424511488', 'no'),
(239, '_transient_wc_report_customers', 'a:4:{s:32:"11277ff709b4a1e948b791ce386bdd73";O:8:"stdClass":1:{s:12:"total_orders";s:1:"0";}s:32:"9a2b1fcd0f3b5364cd206fcb3ff19ea9";O:8:"stdClass":1:{s:12:"total_orders";s:1:"0";}s:32:"929cad908dac452bdabcf75b810f0b62";a:0:{}s:32:"0354e84c884a493f2c26c3d4cb5229b9";a:0:{}}', 'no');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE IF NOT EXISTS `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 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 IF NOT EXISTS `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
--
-- 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, '2015-02-20 08:47:24', '2015-02-20 08:47:24', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2015-02-20 08:47:24', '2015-02-20 08:47:24', '', 0, 'http://localhost/wordpress/?p=1', 0, 'post', '', 1),
(2, 1, '2015-02-20 08:47:24', '2015-02-20 08:47:24', 'This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin'' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href="http://localhost/wordpress/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'publish', 'open', 'open', '', 'sample-page', '', '', '2015-02-20 08:47:24', '2015-02-20 08:47:24', '', 0, 'http://localhost/wordpress/?page_id=2', 0, 'page', '', 0),
(3, 1, '2015-02-20 08:47:40', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2015-02-20 08:47:40', '0000-00-00 00:00:00', '', 0, 'http://localhost/wordpress/?p=3', 0, 'post', '', 0),
(4, 1, '2015-02-20 09:31:01', '2015-02-20 09:31:01', '', 'Shop', '', 'publish', 'closed', 'open', '', 'shop', '', '', '2015-02-20 09:31:01', '2015-02-20 09:31:01', '', 0, 'http://localhost/wordpress/?page_id=4', 0, 'page', '', 0),
(5, 1, '2015-02-20 09:31:02', '2015-02-20 09:31:02', '[woocommerce_cart]', 'Cart', '', 'publish', 'closed', 'open', '', 'cart', '', '', '2015-02-20 09:31:02', '2015-02-20 09:31:02', '', 0, 'http://localhost/wordpress/?page_id=5', 0, 'page', '', 0),
(6, 1, '2015-02-20 09:31:02', '2015-02-20 09:31:02', '[woocommerce_checkout]', 'Checkout', '', 'publish', 'closed', 'open', '', 'checkout', '', '', '2015-02-20 09:31:02', '2015-02-20 09:31:02', '', 0, 'http://localhost/wordpress/?page_id=6', 0, 'page', '', 0),
(7, 1, '2015-02-20 09:31:02', '2015-02-20 09:31:02', '[woocommerce_my_account]', 'My Account', '', 'publish', 'closed', 'open', '', 'my-account', '', '', '2015-02-20 09:31:02', '2015-02-20 09:31:02', '', 0, 'http://localhost/wordpress/?page_id=7', 0, 'page', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
CREATE TABLE IF NOT EXISTS `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'simple', 'simple', 0),
(3, 'grouped', 'grouped', 0),
(4, 'variable', 'variable', 0),
(5, 'external', 'external', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_relationships`
--
CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- 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 IF NOT EXISTS `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- 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),
(2, 2, 'product_type', '', 0, 0),
(3, 3, 'product_type', '', 0, 0),
(4, 4, 'product_type', '', 0, 0),
(5, 5, 'product_type', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_usermeta`
--
CREATE TABLE IF NOT EXISTS `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=16 ;
--
-- 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, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(11, 1, 'wp_user_level', '10'),
(12, 1, 'dismissed_wp_pointers', 'wp360_locks,wp390_widgets'),
(13, 1, 'show_welcome_panel', '1'),
(14, 1, 'session_tokens', 'a:1:{s:64:"fbb8ba71c6e5a438647c6d407c63e73ed964f855c559114babd4e9a83988d606";a:4:{s:10:"expiration";i:1424594858;s:2:"ip";s:9:"127.0.0.1";s:2:"ua";s:105:"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36";s:5:"login";i:1424422058;}}'),
(15, 1, 'wp_dashboard_quick_press_last_post_id', '3');
-- --------------------------------------------------------
--
-- Table structure for table `wp_users`
--
CREATE TABLE IF NOT EXISTS `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(64) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 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$Ba0XTztXn.LrSOtQYfbHXLCjWjAvwP1', 'admin', '[email protected]', '', '2015-02-20 08:47:24', '', 0, 'admin');
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--
CREATE TABLE IF NOT EXISTS `wp_woocommerce_attribute_taxonomies` (
`attribute_id` bigint(20) NOT NULL AUTO_INCREMENT,
`attribute_name` varchar(200) NOT NULL,
`attribute_label` longtext,
`attribute_type` varchar(200) NOT NULL,
`attribute_orderby` varchar(200) NOT NULL,
`attribute_public` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`attribute_id`),
KEY `attribute_name` (`attribute_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--
CREATE TABLE IF NOT EXISTS `wp_woocommerce_downloadable_product_permissions` (
`permission_id` bigint(20) NOT NULL AUTO_INCREMENT,
`download_id` varchar(32) NOT NULL,
`product_id` bigint(20) NOT NULL,
`order_id` bigint(20) NOT NULL DEFAULT '0',
`order_key` varchar(200) NOT NULL,
`user_email` varchar(200) NOT NULL,
`user_id` bigint(20) DEFAULT NULL,
`downloads_remaining` varchar(9) DEFAULT NULL,
`access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`access_expires` datetime DEFAULT NULL,
`download_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`permission_id`),
KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`,`download_id`),
KEY `download_order_product` (`download_id`,`order_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--
CREATE TABLE IF NOT EXISTS `wp_woocommerce_order_itemmeta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`order_item_id` bigint(20) NOT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `order_item_id` (`order_item_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_order_items`
--
CREATE TABLE IF NOT EXISTS `wp_woocommerce_order_items` (
`order_item_id` bigint(20) NOT NULL AUTO_INCREMENT,
`order_item_name` longtext NOT NULL,
`order_item_type` varchar(200) NOT NULL DEFAULT '',
`order_id` bigint(20) NOT NULL,
PRIMARY KEY (`order_item_id`),
KEY `order_id` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_tax_rates`
--
CREATE TABLE IF NOT EXISTS `wp_woocommerce_tax_rates` (
`tax_rate_id` bigint(20) NOT NULL AUTO_INCREMENT,
`tax_rate_country` varchar(200) NOT NULL DEFAULT '',
`tax_rate_state` varchar(200) NOT NULL DEFAULT '',
`tax_rate` varchar(200) NOT NULL DEFAULT '',
`tax_rate_name` varchar(200) NOT NULL DEFAULT '',
`tax_rate_priority` bigint(20) NOT NULL,
`tax_rate_compound` int(1) NOT NULL DEFAULT '0',
`tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
`tax_rate_order` bigint(20) NOT NULL,
`tax_rate_class` varchar(200) NOT NULL DEFAULT '',
PRIMARY KEY (`tax_rate_id`),
KEY `tax_rate_country` (`tax_rate_country`),
KEY `tax_rate_state` (`tax_rate_state`),
KEY `tax_rate_class` (`tax_rate_class`),
KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--
CREATE TABLE IF NOT EXISTS `wp_woocommerce_tax_rate_locations` (
`location_id` bigint(20) NOT NULL AUTO_INCREMENT,
`location_code` varchar(255) NOT NULL,
`tax_rate_id` bigint(20) NOT NULL,
`location_type` varchar(40) NOT NULL,
PRIMARY KEY (`location_id`),
KEY `tax_rate_id` (`tax_rate_id`),
KEY `location_type` (`location_type`),
KEY `location_type_code` (`location_type`,`location_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_termmeta`
--
CREATE TABLE IF NOT EXISTS `wp_woocommerce_termmeta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`woocommerce_term_id` bigint(20) NOT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `woocommerce_term_id` (`woocommerce_term_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
/*!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 */;