-
Notifications
You must be signed in to change notification settings - Fork 1
/
wdsqpw_matidb.sql
2454 lines (2173 loc) · 894 KB
/
wdsqpw_matidb.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Client : localhost
-- Généré le : Sam 22 Octobre 2016 à 01:27
-- Version du serveur : 5.6.25-1~dotdeb+7.1
-- Version de PHP : 5.6.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 utf8mb4 */;
--
-- Base de données : `wdsqpw_matidb`
--
-- --------------------------------------------------------
--
-- Structure de la table `accounts`
--
CREATE TABLE `accounts` (
`id` int(11) NOT NULL,
`username` varchar(64) NOT NULL,
`password` varchar(128) NOT NULL,
`email` varchar(128) NOT NULL,
`pseudonym` varchar(64) NOT NULL,
`nickname` varchar(64) NOT NULL,
`firstname` varchar(64) NOT NULL,
`lastname` varchar(64) NOT NULL,
`birthday` date DEFAULT NULL,
`register_date` datetime NOT NULL,
`user_right` varchar(32) NOT NULL,
`language` varchar(32) NOT NULL,
`admin_note` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `accounts`
--
INSERT INTO `accounts` (`id`, `username`, `password`, `email`, `pseudonym`, `nickname`, `firstname`, `lastname`, `birthday`, `register_date`, `user_right`, `language`, `admin_note`) VALUES
(1, 'Matiboux', '$2y$10$vUFTbrBzV1wxtRot9NxEQeOJzHmSVtZ63OgDuHyfixGtd/6vyAwy.', '[email protected]', 'Matiboux', 'Mati', 'Mathieu', 'Guérin', '2000-10-20', '2016-01-13 17:21:35', 'OWNER', 'fr', 'Eli\'s babe'),
(2, 'glenn', '$2y$10$fS6ww6SR7ecswOSiHW7HcOtqv08c.lxOGrqtGxLAqFGddbH6PklxC', '[email protected]', '', '', '', '', NULL, '2016-01-26 15:30:42', 'USER', '', ''),
(3, 'felixjules', '$2y$10$2KtQ7WG/XBd3P/RH7d1YeOPF9/barMnzljyM/1f0V8SIDU4J0uWn6', '[email protected]', 'felixjules', 'féfé/Félix the cat', 'Félix', 'SAUVOUREL', '2001-07-10', '2016-01-27 21:24:33', 'USER', 'fr', ''),
(4, 'TheKiller678', '$2y$10$9zZSTcQSlV6QH1PQ74ScvuNnoDCUA/CAxjnSt3DA7znGnuMGTQ5zS', '[email protected]', '', '', '', '', NULL, '2016-01-30 23:37:29', 'USER', '', ''),
(5, 'Dav', '$2y$10$QWy4CxhttAJjiog04EMfe.DVRcyzlcBDcNlPXPMZ4TxRylPpi/aRa', '[email protected]', 'Jean Rien', '', 'David', 'TOUGERON', '2000-07-20', '2016-03-06 16:28:23', 'USER', '', ''),
(6, 'Swan2000__', '$2y$10$kXn5JddwW6pJ.2Lti2D2tOXHrGTiMTBZI4W65hR1UJ9xzdGFU3T56', '[email protected]', 'GrIfFeD', '', 'Swan', 'Fruitet-Berneise', NULL, '2016-03-06 16:32:12', 'USER', '', ''),
(7, 'EliottA', '$2y$10$cW4j9jeJOEI87cmXLrEQHeCE1BXla0biJSlDbd/7l9134rJSVBH4G', '[email protected]', 'Elionatrox', 'Eli', 'Eliott', 'Andrieu', '1999-08-24', '2016-03-16 19:58:14', 'VIP', '', 'Mati\'s babe'),
(8, 'Vinny', '$2y$10$Oxw6vvlhle5H57BVzjJUhO2vK4enCiFEYJ0UetOvrY44qmkyIFnvq', '[email protected]', '', '', '', '', NULL, '2016-04-26 16:21:52', 'USER', '', ''),
(9, 'Maatiboux', '$2y$10$n31ieRO/wIdUziueytZ1CenPkItQf436yzvrxAR4FbmlsQgzYQ.fa', '[email protected]', '', '', '', '', NULL, '2016-05-19 20:45:55', 'USER', '', '');
-- --------------------------------------------------------
--
-- Structure de la table `accounts_infos`
--
CREATE TABLE `accounts_infos` (
`id` int(11) NOT NULL,
`username` varchar(64) NOT NULL,
`name_format` varchar(64) NOT NULL,
`pseudonym_complement` tinyint(1) NOT NULL,
`gender` varchar(32) NOT NULL,
`biography` text NOT NULL,
`location` varchar(256) NOT NULL,
`website` varchar(256) NOT NULL,
`twitter_profile` varchar(256) NOT NULL,
`twitter_oauth` varchar(512) NOT NULL,
`facebook_profile` varchar(256) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `accounts_infos`
--
INSERT INTO `accounts_infos` (`id`, `username`, `name_format`, `pseudonym_complement`, `gender`, `biography`, `location`, `website`, `twitter_profile`, `twitter_oauth`, `facebook_profile`) VALUES
(1, 'Matiboux', 'nickname', 1, 'male', 'C\'est moi, le petit Matiboux avec son pseudo des fois marqué d\'un "™" à la fin.\r\nJe suis un joueur PC, et ancien membre de la team Fruinity™ que j\'ai quitté volontairement.\r\nJe suis un jeune développeur Web qui, parfois, à ses heures perdues, dessine et tente de faire des vidéos.\r\nEt mon Eli, plus que tout <333', 'Maliott Town <3', 'http://matiboux.com/', 'https://twitter.com/Matiboux', 'a:5:{s:11:"oauth_token";s:50:"923019894-jCUdddUjM8arTXYzrmTrJq9Tts0CtN8eIHMFBmXi";s:18:"oauth_token_secret";s:45:"XxBvLoFO7dEGedThl5hPhVlSp7ZtL2g4gfpDp4dL9V5w8";s:7:"user_id";s:9:"923019894";s:11:"screen_name";s:8:"Matiboux";s:14:"x_auth_expires";s:1:"0";}', 'https://www.facebook.com/Matiboux-186196714888132/'),
(2, 'glenn', '', 0, '', '', '', '', '', '', ''),
(3, 'felixjules', 'fullname', 1, '', '', '', '', '', '', ''),
(4, 'TheKiller678', '', 0, '', '', '', '', 'https://twitter.com/Matiboux', '', ''),
(5, 'Dav', 'pseudonym', 0, 'male', 'Des Informations', 'Des Informations', 'http://www.jeuxvideo.fr/', 'https://twitter.com/TheDav64', '', ''),
(6, 'Swan Fruitet-Berneise', '', 0, '', '', '', '', '', '', ''),
(7, 'EliottA', 'short_fullname', 1, '', 'Je suis Eli. Le furry. Et je kiffe le Mati <3\r\n', 'Maliott Town', 'hello-world.eliott', 'http://twitter.com/Elionatrox', '', ''),
(8, 'Vinny', '', 0, '', '', '', '', '', '', ''),
(9, 'Maatiboux', '', 0, '', '', '', '', '', '', '');
-- --------------------------------------------------------
--
-- Structure de la table `accounts_requests`
--
CREATE TABLE `accounts_requests` (
`id` int(11) NOT NULL,
`username` varchar(64) NOT NULL,
`activate_key` varchar(256) NOT NULL,
`action` varchar(64) NOT NULL,
`request_date` datetime NOT NULL,
`expire_date` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Structure de la table `accounts_rights`
--
CREATE TABLE `accounts_rights` (
`id` int(11) NOT NULL,
`user_right` varchar(64) NOT NULL,
`acronym` varchar(64) NOT NULL,
`name` varchar(64) NOT NULL,
`permissions` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `accounts_rights`
--
INSERT INTO `accounts_rights` (`id`, `user_right`, `acronym`, `name`, `permissions`) VALUES
(0, 'NEW-USER', 'NEW', 'Nouveau', 'a:3:{i:0;s:2:"no";i:1;s:11:"permissions";i:2;s:3:"yet";}'),
(1, 'BANNED', 'BAN', 'Banni', 'a:3:{i:0;s:2:"no";i:1;s:11:"permissions";i:2;s:3:"yet";}'),
(2, 'USER', '', 'Utilisateur', 'a:3:{i:0;s:2:"no";i:1;s:11:"permissions";i:2;s:3:"yet";}'),
(3, 'VIP', '', 'Privilégié', 'a:3:{i:0;s:2:"no";i:1;s:11:"permissions";i:2;s:3:"yet";}'),
(4, 'MODERATOR', 'MOD', 'Modérateur', 'a:3:{i:0;s:2:"no";i:1;s:11:"permissions";i:2;s:3:"yet";}'),
(5, 'ADMINISTRATOR', 'ADMIN', 'Administrateur', 'a:3:{i:0;s:2:"no";i:1;s:11:"permissions";i:2;s:3:"yet";}'),
(6, 'OWNER', '', 'Fondateur', '*');
-- --------------------------------------------------------
--
-- Structure de la table `accounts_sessions`
--
CREATE TABLE `accounts_sessions` (
`id` int(11) NOT NULL,
`username` varchar(64) NOT NULL,
`auth_key` varchar(256) NOT NULL,
`user_ip` varchar(64) NOT NULL,
`port` varchar(32) NOT NULL,
`login_date` datetime NOT NULL,
`expire_date` datetime NOT NULL,
`update_date` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `accounts_sessions`
--
INSERT INTO `accounts_sessions` (`id`, `username`, `auth_key`, `user_ip`, `port`, `login_date`, `expire_date`, `update_date`) VALUES
(4, 'Dav', 'zp6nnkN3aBw1iqtgP8tmZfs6N8Au0lqT5F610B0vxOz3tT4ZLtEzMpY9PKPmklN0HyMYjbh4jC8ZtUqHBaS8anpHsxmIhXErovfS', '2.0.25.34', '', '2016-03-24 18:27:47', '2016-04-08 19:27:47', '2016-04-05 20:59:24'),
(10, 'Dav', '1SqVY4r42j1UXZ992Vb0P3fZ5ZouFTBWnVH47vp1HEOrlMmzYFZEfmwlAofUWrJVwqig4UUJcxfNMMTqTezp7t1pIAcw9DdhPJTr', '2.0.22.116', '', '2016-04-11 20:25:49', '2016-04-26 20:25:49', '2016-04-22 20:32:20'),
(21, 'felixjules', 'oGZknuuE2KaY8vtA7UidaSADIsvhmtNvceR6Jgdfa6kzdoGg5ST0vCJzJVJslYCv7LMFiyxOvtU3zYJVxACs3zvl5t40pQ0r363b', '88.172.64.179', '', '2016-05-02 23:31:23', '2016-05-17 23:31:23', '2016-05-02 23:36:28'),
(23, 'EliottA', 'uNMrm0sIJwkc6C62hxmZ1RxJJ2AHolwDy5k4wmEOjgtWwRAt8kimjxioU4eeKJE3GvHrLXsHOYIRJI6vYDzMqSij4zUmNTm512GC', '92.154.163.165', '', '2016-05-05 12:09:14', '2016-05-20 12:09:14', '2016-05-05 23:23:11'),
(32, 'felixjules', 'duOZK4JUYiGf8yu9VlyN6pz6SPDeF1zqFgeQi0U9HVUMGhRjAYyGDKjKlilghn0ZadSYqKeKcYMBG9zAqmtIiKwTBVVHPFBFG4Tr', '88.172.64.179', '', '2016-05-15 21:35:28', '2016-05-16 21:35:28', '2016-05-16 18:11:19'),
(34, 'glenn', 'CVuKk0XxG9XBCZpv725ooGEQVeTgM8ZpdftosYKion8Vcc9RRXPNmYTElkUtivyoPKop8uXAybix7sAKu1kpyqoaNVOmGS4Gv24N', '176.182.220.4', '', '2016-05-19 20:14:02', '2016-06-03 20:14:02', '2016-05-19 22:02:07'),
(36, 'Maatiboux', 'NHVZnUuLDjPGGUazL1Y1hgwT0x3IR23f7mhIlg3JIQqgW064goDCIKryAEQ8BB3MGITjCQQSog7XMQjh2634pDp8Oi9iEau3Ds4h', '89.91.144.175', '', '2016-05-19 20:50:07', '2016-06-03 20:50:07', '2016-05-19 20:59:49'),
(37, 'Maatiboux', '5Q3A1PpjZT5uB8LE67fntdQaOtc0SEXGRQqCdoUoFhhseppHmewe4KP89V7VK5wJ5282M5h6CnT2evnFjJTr6TSHpL8JMFjHS8hA', '89.91.144.175', '', '2016-05-19 21:06:26', '2016-06-03 21:06:26', '2016-05-19 21:44:18'),
(39, 'Matiboux', 'bpFIHjvSbHzGKMVVGdwyElBPFwywH3ld5seIsTXLXPDcgOQ69qCSdvzBxCin3C5AX2zD0NUW7CBPTL8NDUqI3WZxIeg1cM54dVjd', '90.105.160.76', '', '2016-05-21 15:15:22', '2016-06-05 15:15:22', '2016-05-27 21:31:22'),
(40, 'felixjules', 'JeRciO4iAACbpIuS3p3tdrdDr5BmVDPMaJtG18hnaAuJZYXorZ95jP3BaII4tXgm55vP5HF4kLMTcmL5A4dQlPAlsEKbXgWMojbs', '88.172.64.179', '', '2016-05-22 20:17:07', '2016-06-06 20:17:07', '2016-05-22 20:22:37'),
(41, 'Matiboux', 'mRgNthLuDsFx0vElBDLG4rmnIJ1zQKs2TjrRi6MqZJGsMegR3Nl907k1zk6BHWJVmxUZJgupXK8xDdlKVTiXQBF9Jk869ECUnK1l', '80.215.130.251', '', '2016-05-23 10:07:42', '2016-06-07 10:07:42', '2016-06-01 17:40:19'),
(42, 'Matiboux', 'mqSiJdpsKUoUnmd4fML3i359ObWm56EUIfHLon8gw4cWPRJ4f8nzoNmgBMB9uX9uUjrzDmDkmwe7XEfZyMqdEcdN8Iyqw7pyOMEW', '89.91.144.175', '', '2016-05-25 13:32:07', '2016-06-09 13:32:07', '2016-05-31 20:59:09'),
(43, 'felixjules', 'gQMbJxiFUOUGq5TbHOLsCZcpGd5TnoNwSIfjyWMJA9fgph0HT3oOi70x2v4j0psDpbZp1pFe1heIstGRIz25ISOmuWQpp2UywNEh', '88.172.64.179', '', '2016-05-26 21:02:14', '2016-06-10 21:02:14', '2016-05-26 21:04:27'),
(44, 'Matiboux', 'nxhjKy2ZzS8FyLHFjjjzo52Xu48XpGXoF4zdoHgoIUcdCrcVYvH6xyYaFHhbEDFyYUpjdjtjgOWCEWMWa68LQzeVZ4183toEYCMt', '176.151.9.138', '', '2016-05-28 15:37:05', '2016-06-12 15:37:05', '2016-05-29 19:32:23'),
(45, 'felixjules', '3PGQAPaBPm6TTgRixiKyxpUGX2FmBbWw4QpQwtH1TwyNqny7pcEA4E5X8mi5IXS0uDaqC30GgfGJ6xv9gVDG6f53TOiMVlAQkvf7', '88.172.64.179', '', '2016-05-29 18:17:33', '2016-06-13 18:17:33', '2016-05-30 17:09:44'),
(46, 'Matiboux', 'n4nDfhLMknvVGGwd0nA2HXGFw6c0lZ9eQn07TxcmShJgJucd87T8ZOZHpCbtLzvQk1E8QmR22zpwfMv8gt6Rk7HmOlXNcrySR0Ms', '89.91.144.175', '', '2016-06-02 17:28:36', '2016-06-17 17:28:36', '2016-06-02 17:28:37'),
(47, 'Matiboux', 'DDMqpMO4URH247gcphnAo1fPw8Bk3zVFMa8FGpTghzJg8VSpC6SaaeNoCjVc73QxWbNPpazheQN3URBpx2pmKPmL1zusrZJCFjz0', '5.51.250.107', '', '2016-06-04 16:28:53', '2016-06-19 16:28:53', '2016-06-04 17:04:06'),
(48, 'Matiboux', 'AUrBOkGParBZJpozM0vCmMg4e7Eh61ynSOLtoS9E7Kx8QjLthFIxCoH4ZMohDRGpX4HsaABCF5DjJ8CsvOq15slXNYHH11LZVVr5', '80.215.225.77', '', '2016-06-04 20:58:01', '2016-06-19 20:58:01', '2016-06-04 20:58:01'),
(49, 'Matiboux', 'tkdGOLTXzxcEisaNmz7FSXu7zMYRwrAPeRHxsntVqGdFHY0pyEh9a5yVrjhcIijzpc8TjBfXDtovbwSTyVoAQIsDeskdkaGYTddG', '5.51.250.107', '', '2016-06-05 12:25:33', '2016-06-20 12:25:33', '2016-06-05 12:26:01'),
(50, 'Matiboux', '87CPJJMZ2cmy6YUTxAlS0InMK7wVu9o58KHt407LA0HU0lXTRZxHeXb6qUfxGDWLXs2sINI14g0nkNMTJA4dF0faVFLCMXiJ88iC', '89.91.144.175', '', '2016-06-08 22:04:32', '2016-06-23 22:04:32', '2016-06-09 10:43:26'),
(51, 'Matiboux', 'OLihyhuCpQrzdgbJl897lZRqOtoh5uLbTFlqCpG1awfCpMsE05CqUiUOHJL6m58fpmtJZ65ZnaWXVVCEF641bl7TKWNz1CNSdZ59', '89.91.144.175', '', '2016-06-10 00:32:18', '2016-06-25 00:32:18', '2016-06-10 09:37:23'),
(52, 'Matiboux', 'ZjdnaL0gDxYMnqLIlCHxiXmtTtTbJr0cpLB5jEsZ03rr8LbAL5cRWwCF99dFSQqNOdjYVLxwdXfBpgpNJFwu2EZSeZJ2P1zYAqEJ', '89.91.144.175', '', '2016-06-10 00:51:51', '2016-06-25 00:51:51', '2016-06-10 01:16:05'),
(53, 'Matiboux', 'wHvm0np8LxPOaGnyktydxnzgPeXpSCz3yp7zCsR04BACqDlNwdXwxht7wNhBnVlT31YSC0Kbf77rZcwZ8ldgcNpXuqE5DB92PjA1', '89.91.144.175', '', '2016-06-10 09:42:33', '2016-06-25 09:42:33', '2016-06-10 09:43:29'),
(54, 'felixjules', 'drvFelKQYNMqYppuCU2ieZZSPSBnFnRePRDtIkNoOSXGmEF0B3lplXQVgJBB7GY1UJaPzl6IrKz8SMtIpYt2hLdBnGo7xYnhxwql', '88.172.64.179', '', '2016-06-11 12:41:47', '2016-06-26 12:41:47', '2016-06-11 12:41:48'),
(55, 'TheKiller678', 'r99QF6JIdNbLl9532oUIoj8PmRfXbNZVu4e07OeQ0rhXRT1s1d7whXjPLagjENnQcef5JKCypobUXeJ18XwEknSwvSVbrl7aEHJ9', '88.172.64.41', '', '2016-06-12 19:23:19', '2016-06-27 19:23:19', '2016-06-15 18:55:01'),
(56, 'Matiboux', 'Xvtb22cGJhhH9fdyBOCKGcnA1pNVXfRKeUg5xOLNDldHqSLIIjy9TxxCvp1XLakrsIEGT76v2u0UNeAqQeTuG1qr128mOBtZQmbx', '176.151.9.138', '', '2016-06-15 19:55:05', '2016-06-30 19:55:05', '2016-06-15 19:58:07'),
(57, 'felixjules', 'ISl9OK3aDF60Vew9rB0qF38ev4FHQr9ghhlygV8BJNYSMSpZDTYXwoXolw2AQrQnfLPgSJecV2uQ90u4y8WagnfhSwdHql3yzF4E', '88.172.64.179', '', '2016-06-15 23:40:24', '2016-06-30 23:40:24', '2016-06-19 18:43:47'),
(58, 'Matiboux', 'lxf4Ai3zrV93BHY3JJTEDInzbxDULPuMysItMRR0VfIoUuc4yKSBCI53oyUyM0igLFCC69FiETOjZqSOJsqZ8sfVJftnnHY7D7Y9', '176.151.9.138', '', '2016-06-16 18:46:44', '2016-07-01 18:46:44', '2016-06-16 21:49:47'),
(59, 'Matiboux', 'hOlXTFlUdcolOLq8raWt6UfDWz0NIS10tRqt4HxrbXsayS6mT8hfxoOIsPwRXF95IOBQeSbi9FnmVpmq5E2ahQqbHs5PMB8fMB8f', '176.151.9.138', '', '2016-06-18 23:34:41', '2016-07-03 23:34:41', '2016-06-18 23:53:12'),
(60, 'Matiboux', 'O5vGgtG9HOIPm1hCVHS57A86y3giayeWqqEjTL3Ctt5JytsNOvCIQObAAwUYy5r9z5c4CjjQTBpWFqn3f7rUatvXwaiGf6dg2FNK', '176.151.9.138', '', '2016-06-19 20:48:57', '2016-07-04 20:48:57', '2016-06-20 01:13:43'),
(61, 'Matiboux', 'hLWHvRvTuwLKY2fRto18E7cxwYFQD1AIuaLQD9O0rc35KdHzhrhFad4TKDzFuKYc9H9E611zUS9Mbf2Vac9sB7JgWyHIZnvGSbVB', '90.16.184.17', '', '2016-06-24 16:55:09', '2016-06-25 16:55:09', '2016-06-24 16:55:09'),
(62, 'Dav', 'WrlrWWGQwZtxf5tQOwYZm6wRYiETJbPIKKEKhUOfAxQeJK6DiW1BKC6rhNBSgfffRaTfGAoCwnYXeheHhVpg52A0eVgnG1smY70b', '2.0.153.187', '', '2016-06-27 22:13:56', '2016-07-12 22:13:56', '2016-06-27 22:25:38'),
(63, 'Matiboux', 'aRxFZwbcS2bZo1EM5c632kDTrlWYlqR2WL6Z3SDaIZVC7H0fMjhPETp9e7y8nVloSOFi2BulLD0MS0BpuyOQT1PS58JW0VVptozF', '90.105.160.76', '', '2016-07-03 20:24:52', '2016-07-18 20:24:52', '2016-07-06 23:48:21'),
(64, 'felixjules', 'bVBP1g6FmSf9Jdyhoc9qpQxmCV0uKkeKVZTnZ9ESAG57L6kWpHYtUpfvhPcumfDEAT0UNeqzHYl113ShwqWE0q5bTPCCInfA7rKD', '88.172.64.179', '', '2016-07-05 00:01:12', '2016-07-20 00:01:12', '2016-07-10 03:16:37'),
(65, 'TheKiller678', '5Ww6ta5FCyz6cMlTvkykaXZS4wmJW20uBN6dUHdksTzXepwIUhNRkEXLxSCE9yGODXeJzcivn3IFseUHNIQhr97f7Ny4EhhXPcMz', '88.172.64.41', '', '2016-07-07 02:16:35', '2016-07-22 02:16:35', '2016-07-17 22:47:25'),
(66, 'Matiboux', 'V2hpCIiaDgUBnk38PsZW5w4l0i3syt8k58PP6fkErmeRlv6xOyltiaSl8U245lbgV1BS7U2Ym1bwSovrDkEci3fmPE78tVDEEQWk', '90.105.160.76', '', '2016-07-07 20:11:49', '2016-07-22 20:11:49', '2016-07-07 23:07:58'),
(67, 'Matiboux', 'rJUJkxuTtpsqewXboDjNz4x2d7YYgJSpCnRr5JsKbQCUZ5W7kN8PupXt78Xd0se394jcxIcHdYUVSpfL56h3zIpbXWaFEVD8srqs', '176.151.9.138', '', '2016-08-11 20:46:51', '2016-08-26 20:46:51', '2016-08-21 20:50:00');
-- --------------------------------------------------------
--
-- Structure de la table `blog_commentmeta`
--
CREATE TABLE `blog_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `blog_comments`
--
CREATE TABLE `blog_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL,
`comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `blog_links`
--
CREATE TABLE `blog_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `blog_options`
--
CREATE TABLE `blog_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Contenu de la table `blog_options`
--
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://blog.matiboux.com', 'yes'),
(2, 'home', 'http://blog.matiboux.com', 'yes'),
(3, 'blogname', 'Matiboux Blog', 'yes'),
(4, 'blogdescription', 'Le blog de Matiboux', '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', '1', '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', 'd/m/Y', 'yes'),
(24, 'time_format', 'H:i', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/articles/%postname%/', 'yes'),
(29, 'hack_file', '0', 'yes'),
(30, 'blog_charset', 'UTF-8', 'yes'),
(31, 'moderation_keys', '', 'no'),
(32, 'active_plugins', 'a:6:{i:0;s:19:"akismet/akismet.php";i:1;s:9:"hello.php";i:2;s:23:"intergeo-maps/index.php";i:3;s:19:"jetpack/jetpack.php";i:4;s:45:"llorix-one-companion/llorix-one-companion.php";i:5;s:29:"pirate-forms/pirate-forms.php";}', 'yes'),
(33, 'category_base', '', 'yes'),
(34, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(35, 'comment_max_links', '2', 'yes'),
(36, 'gmt_offset', '1', 'yes'),
(37, 'default_email_category', '1', 'yes'),
(38, 'recently_edited', 'a:5:{i:0;s:73:"/var/www/wdsqpw/www/_blog/wp-content/plugins/jetpack/languages/readme.txt";i:1;s:64:"/var/www/wdsqpw/www/_blog/wp-content/plugins/jetpack/jetpack.php";i:2;s:84:"/var/www/wdsqpw/www/_blog/wp-content/plugins/siteorigin-panels/siteorigin-panels.php";i:3;s:90:"/var/www/wdsqpw/www/_blog/wp-content/plugins/llorix-one-companion/llorix-one-companion.php";i:4;s:62:"/var/www/wdsqpw/www/_blog/wp-content/themes/bizlight/style.css";}', 'no'),
(39, 'template', 'llorix-one-lite', 'yes'),
(40, 'stylesheet', 'llorix-one-lite', 'yes'),
(41, 'comment_whitelist', '1', 'yes'),
(42, 'blacklist_keys', '', 'no'),
(43, 'comment_registration', '', 'yes'),
(44, 'html_type', 'text/html', 'yes'),
(45, 'use_trackback', '0', 'yes'),
(46, 'default_role', 'subscriber', 'yes'),
(47, 'db_version', '35700', 'yes'),
(48, 'uploads_use_yearmonth_folders', '1', 'yes'),
(49, 'upload_path', '', 'yes'),
(50, 'blog_public', '1', 'yes'),
(51, 'default_link_category', '0', 'yes'),
(52, 'show_on_front', 'page', 'yes'),
(53, 'tag_base', '', 'yes'),
(54, 'show_avatars', '1', 'yes'),
(55, 'avatar_rating', 'PG', 'yes'),
(56, 'upload_url_path', '', 'yes'),
(57, 'thumbnail_size_w', '150', 'yes'),
(58, 'thumbnail_size_h', '150', 'yes'),
(59, 'thumbnail_crop', '1', 'yes'),
(60, 'medium_size_w', '300', 'yes'),
(61, 'medium_size_h', '300', 'yes'),
(62, 'avatar_default', 'mystery', 'yes'),
(63, 'large_size_w', '1024', 'yes'),
(64, 'large_size_h', '1024', 'yes'),
(65, 'image_default_link_type', 'none', 'yes'),
(66, 'image_default_size', '', 'yes'),
(67, 'image_default_align', '', 'yes'),
(68, 'close_comments_for_old_posts', '', 'yes'),
(69, 'close_comments_days_old', '14', 'yes'),
(70, 'thread_comments', '1', 'yes'),
(71, 'thread_comments_depth', '5', 'yes'),
(72, 'page_comments', '', 'yes'),
(73, 'comments_per_page', '50', 'yes'),
(74, 'default_comments_page', 'newest', 'yes'),
(75, 'comment_order', 'desc', 'yes'),
(76, 'sticky_posts', 'a:0:{}', 'yes'),
(77, 'widget_categories', 'a:3:{i:4;a:4:{s:5:"title";s:11:"Catégories";s:5:"count";i:1;s:12:"hierarchical";i:1;s:8:"dropdown";i:0;}i:5;a:4:{s:5:"title";s:11:"Catégories";s:5:"count";i:1;s:12:"hierarchical";i:1;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(78, 'widget_text', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(79, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(80, 'uninstall_plugins', 'a:1:{s:27:"wp-super-cache/wp-cache.php";s:22:"wpsupercache_uninstall";}', 'no'),
(81, 'timezone_string', '', 'yes'),
(82, 'page_for_posts', '17', 'yes'),
(83, 'page_on_front', '2', 'yes'),
(84, 'default_post_format', '0', 'yes'),
(85, 'link_manager_enabled', '0', 'yes'),
(86, 'finished_splitting_shared_terms', '1', 'yes'),
(87, 'site_icon', '0', 'yes'),
(88, 'medium_large_size_w', '768', 'yes'),
(89, 'medium_large_size_h', '0', 'yes'),
(90, 'initial_db_version', '35700', 'yes'),
(91, 'blog_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:61:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 'yes'),
(92, 'widget_search', 'a:5:{i:2;a:1:{s:5:"title";s:0:"";}i:4;a:0:{}i:5;a:0:{}i:7;a:1:{s:5:"title";s:9:"Recherche";}s:12:"_multiwidget";i:1;}', 'yes'),
(93, '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'),
(94, 'widget_recent-comments', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'widget_archives', 'a:3:{i:4;a:0:{}i:5;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(96, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:12:"Liens utiles";}s:12:"_multiwidget";i:1;}', 'yes'),
(97, 'sidebars_widgets', 'a:7:{s:19:"wp_inactive_widgets";a:1:{i:0;s:18:"twitter_timeline-3";}s:9:"sidebar-1";a:3:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:6:"meta-2";}s:11:"footer-area";a:1:{i:0;s:12:"categories-5";}s:13:"footer-area-2";a:1:{i:0;s:11:"top-posts-3";}s:13:"footer-area-3";a:1:{i:0;s:8:"search-7";}s:13:"footer-area-4";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(99, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(100, 'widget_calendar', 'a:2:{s:12:"_multiwidget";i:1;i:3;a:0:{}}', 'yes'),
(101, 'widget_tag_cloud', 'a:2:{s:12:"_multiwidget";i:1;i:3;a:0:{}}', 'yes'),
(102, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(103, 'cron', 'a:10:{i:1470908810;a:1:{s:40:"jetpack_display_posts_widget_cron_update";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"minutes_10";s:4:"args";a:0:{}s:8:"interval";i:600;}}}i:1470910696;a:3:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1470910722;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:1470911210;a:1:{s:20:"jetpack_clean_nonces";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1470911211;a:1:{s:20:"jetpack_v2_heartbeat";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1470911217;a:1:{s:24:"jp_purge_transients_cron";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1470914893;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1470943284;a:1:{s:24:"akismet_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:1470945195;a:1:{s:24:"grunion_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(116, 'can_compress_scripts', '0', 'yes'),
(120, 'recently_activated', 'a:0:{}', 'yes'),
(124, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1457821277', 'no');
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(125, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:49:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:26:"https://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Mar 2016 06:59: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:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:40:"https://wordpress.org/?v=4.5-beta3-36969";s:7:"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:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.5 Beta 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2016/03/wordpress-4-5-beta-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Mar 2016 06:59: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:8:"category";a:4:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.5";s: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: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:34:"https://wordpress.org/news/?p=4128";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"WordPress 4.5 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, 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:13:"Mike Schroder";s: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:3631:"<p>WordPress 4.5 Beta 3 is now available!</p>\n<p>This software is still in development<strong>,</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.5, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/" target="_blank">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.5-beta3.zip" target="_blank">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.5, check out the <a href="https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/">Beta 1</a> and <a href="https://wordpress.org/news/2016/03/wordpress-4-5-beta-2/">Beta 2</a> blog posts, along with <a href="https://make.wordpress.org/core/tag/4-5+dev-notes/">in-depth field guides on make/core</a>. Some of the fixes in Beta 3 include:</p>\n<ul>\n<li>Many <strong>Theme Logo Support</strong> (<a href="https://core.trac.wordpress.org/ticket/33755">#33755</a>) fixes, including support for bundled Twenty Fifteen (<a href="https://core.trac.wordpress.org/ticket/35944">#35944</a>).</li>\n<li>Add <strong>Responsive Preview</strong> to theme install previewer (<a href="https://core.trac.wordpress.org/ticket/36017">#36017</a>).</li>\n<li>Support <strong>Imagick in HHVM</strong> (<a href="https://core.trac.wordpress.org/ticket/35973">#35973</a>).</li>\n<li><strong>Whitelist IPTC, XMP, and EXIF profiles</strong> from <code>strip_meta()</code> to maintain authorship, copyright, license, and image orientation (<a href="https://core.trac.wordpress.org/ticket/28634">#28634</a>).</li>\n<li>Support <strong>Windows shares/DFS roots</strong> in <code>wp_normalize_path()</code> (<a href="https://core.trac.wordpress.org/ticket/35996">#35996</a>).</li>\n<li><span class="s1">New installs default to <strong>generating secret keys and salts locally</strong> instead of relying on the <span class="s2">WordPress.org</span> API. Please test installing WP in situations where it can’t connect to the internet <span class="s1">(like on a 🛳, ✈️, or 🛰) </span></span><span class="s1">(<a href="https://core.trac.wordpress.org/ticket/35290">#35290</a>).</span></li>\n<li>OPTIONS requests to REST API should <strong>return Allow header</strong> (<a href="https://core.trac.wordpress.org/ticket/35975">#35975</a>).</li>\n<li>Upgrade twemoji.js to version 2 (<a href="https://core.trac.wordpress.org/ticket/36059">#36059</a>) and add extra IE11 compatibility (<a href="https://core.trac.wordpress.org/ticket/35977">#35977</a>) for <strong>Emoji</strong>.</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href="https://core.trac.wordpress.org/log/?action=stop_on_copy&mode=stop_on_copy&rev=36931&stop_rev=36814&limit=200&verbose=on">more than 100 changes</a> during the last week.</li>\n</ul>\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" target="_blank">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/" target="_blank">file one on the WordPress Trac</a>. There, you can also find <a href="https://core.trac.wordpress.org/tickets/major" target="_blank">a list of known bugs.</a></p>\n<p>Happy testing!</p>\n<p class="p1"><em><span class="s1">Beta one, two, three<br />\n</span><span class="s1">so many bugs have been fixed<br />\n</span><span class="s2">Closer now; four, five.</span></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:"";}}}}}i:1;a:6:{s:4:"data";s:39:"\n \n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.5 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2016/03/wordpress-4-5-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 03 Mar 2016 04:55:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4116";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"WordPress 4.5 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, 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:13:"Mike Schroder";s: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:2370:"<p>WordPress 4.5 Beta 2 is now available!</p>\n<p>This software is still in development<strong>,</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.5, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/" target="_blank">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.5-beta2.zip" target="_blank">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.5, check out the <a href="https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/">Beta 1 blog post</a>. Some of the fixes in Beta 2 include:</p>\n<ul>\n<li>Added <a href="https://core.trac.wordpress.org/ticket/33300">Horizontal Rule (HR) editing shortcut</a> and <a href="https://core.trac.wordpress.org/ticket/28612">dismissible “Paste as Text” notice</a> in <strong>TinyMCE</strong>.</li>\n<li><strong>Selective Refresh</strong> support is <a href="https://core.trac.wordpress.org/changeset/36797">enabled for core themes titles and taglines</a>, which allows shift-click to focus on controls and PHP filters to apply in the preview.</li>\n<li>Resolved a fatal error on <strong>image upload</strong> when ImageMagick could not complete stripping meta during resize (<a href="https://core.trac.wordpress.org/ticket/33642">#33642</a>).</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href="https://core.trac.wordpress.org/log/?action=stop_on_copy&mode=stop_on_copy&rev=36813&stop_rev=36701&limit=200&verbose=on">just over 100 changes</a> in the last week.</li>\n</ul>\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" target="_blank">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/" target="_blank">file one on the WordPress Trac</a>. There, you can also find <a href="https://core.trac.wordpress.org/tickets/major" target="_blank">a list of known bugs.</a></p>\n<p>Happy testing!</p>\n<p><em>It’s peer pressure time</em><br />\n<em>Testing: all cool kids do it</em><br />\n<em>Help find ALL the bugs!</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:"";}}}}}i:2;a:6:{s:4:"data";s:33:"\n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"Contributor Weekend: One-Hour Video";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"https://wordpress.org/news/2016/02/contributor-weekend-one-hour-video/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 26 Feb 2016 19:36:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s: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:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4112";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:349:"It’s time for our second global contributor weekend, and this time we’re focusing on the video team. For this month’s challenge, in honor of it being our second month, you have two options for how you can participate! The challenge for this month overall is to work with at least one hour worth of WordCamp video, which […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"Jen";s: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:2590:"<p>It’s time for our second global contributor weekend, and this time we’re focusing on the <a href="https://make.wordpress.org/tv">video team</a>. For this month’s challenge, in honor of it being our second month, you have two options for how you can participate! The challenge for this month overall is to work with at least one hour worth of WordCamp video, which you can do by either creating subtitles or editing the video file in preparation for upload to <a href="http://WordPress.tv">WordPress.tv</a>.</p>\n<p>One of the great things about contributing to the video team is that you get to learn so much, since all the work basically involves watching WordCamp presentation videos. Subtitling is a doubly important need, as it is needed to make all those WordCamp videos accessible to people who are deaf or hard of hearing and can’t listen to the audio track, as well as making it possible for the videos to be consumed (in some cases after subtitle translation) by people who speak different languages.</p>\n<p>The challenge will last from Saturday, February 27, 2016 through Sunday, February 28, 2016, and the results will be reviewed afterward by members of the video team. If you enjoy the challenge, the video team would be very excited to welcome you into their ranks! Interested? <a href="https://wp.me/P6onIa-28D">Here’s how to participate</a>.</p>\n<h3>What About Last Month?</h3>\n<p>In January, the inaugural contributor weekend was focused on the support forums. That challenge had 73 participants, including 10 people who provided 20 or more correct answers to open support threads, thereby winning the challenge. Congratulations to Harris Anastasiadis, Ahmad Awais, Takis Bouyouris, Phil Erb, Eric Gunawan, Jackie McBride, Diana Nichols, Kostas Nicolacopoulos, Juhi Saxena, and Sarah Semark! To them and to everyone else who participated, thank you <strong>so much</strong> for your efforts. Every answer helps, and over the course of this contributor weekend, these amazing volunteers responded to <strong>800 support threads</strong>. The support forums queue of requests with no replies went from 28 pages to 7 pages — that was an incredible success, of which every participant was a part!</p>\n<p>So head on over to see how to <a href="https://wp.me/P6onIa-28D">get involved with the one-hour video challenge</a> this weekend, and help us make next month’s post just as impressive! <img src="https://s.w.org/images/core/emoji/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></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:"";}}}}}i:3;a:6:{s:4:"data";s:41:"\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:20:"WordPress 4.5 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/2016/02/wordpress-4-5-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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 25 Feb 2016 03:27:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4080";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"WordPress 4.5 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, 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:9:"enclosure";a:2:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"url";s:62:"https://wordpress.org/news/files/2016/02/wp-inline-linking.mp4";s:6:"length";s:6:"409018";s:4:"type";s:9:"video/mp4";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"url";s:62:"https://wordpress.org/news/files/2016/02/wp-editor-updates.mp4";s:6:"length";s:6:"231953";s:4:"type";s:9:"video/mp4";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Mike Schroder";s: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:5453:"<p>WordPress 4.5 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/" target="_blank">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.5-beta1.zip" target="_blank">download the beta here</a> (zip).</p>\n<p>WordPress 4.5 is slated for release on <a href="https://make.wordpress.org/core/version-4-5-project-schedule/" target="_blank">April 12</a>, but to get there, we need your help testing what we have been working on, including:</p>\n<ul>\n<li><strong>Responsive Preview of your site in the Customizer </strong>(<a href="https://core.trac.wordpress.org/ticket/31195">#31195</a>) – See how your site looks in <a href="https://make.wordpress.org/core/2016/01/28/previewing-site-responsiveness-in-the-customizer/">mobile, tablet, and desktop</a> contexts before making changes to its appearance.</li>\n<li><strong>Theme Logo Support </strong>(<a href="https://core.trac.wordpress.org/ticket/33755">#33755</a>) – Native support for a <a href="https://make.wordpress.org/core/2016/02/24/theme-logo-support/">theme logo within the Customizer</a>.</li>\n<li><strong>Inline Link Editing</strong> (<a href="https://core.trac.wordpress.org/ticket/33301">#33301</a>) – Within the visual editor, <a href="https://wordpress.org/news/files/2016/02/wp-inline-linking.mp4">edit links inline</a> for a smoother workflow.</li>\n<li><strong>Additional Editor Shortcuts</strong> (<a href="https://core.trac.wordpress.org/ticket/33300">#33300</a>) – <a href="https://wordpress.org/news/files/2016/02/wp-editor-updates.mp4">Includes a few new shortcuts</a>, like <code>`..`</code> for <code>code</code> and <code>**..**</code> for <strong>bold</strong>.</li>\n<li><strong>Comment Moderation Improvements </strong>(<a href="https://core.trac.wordpress.org/ticket/34133">#34133</a>) – An enhanced experience when moderating comments, including preview with rendered formatting.</li>\n<li><strong>Optimization of Image Generation </strong>(<a href="https://core.trac.wordpress.org/ticket/33642">#33642</a>) – Image sizes are generated more efficiently and remove unneeded meta, while still including color profiles in Imagick, for reduced sizes of up to 50% with near identical visual quality.</li>\n</ul>\n<p> </p>\n<p>There have been changes for developers to explore as well:</p>\n<ul>\n<li><strong>Selective Refresh </strong>(<a href="https://core.trac.wordpress.org/ticket/27355">#27355</a>)<strong> </strong>– A <a href="https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/">comprehensive framework</a> for rendering parts of the customizer preview in real time. Theme and plugin authors should test their widgets specifically for compatibility with selective refresh, and note that it <a href="https://core.trac.wordpress.org/ticket/35855">may ultimately be opt-in for 4.5</a>.</li>\n<li><strong>Backbone and Underscore updated to latest versions</strong> (<a href="https://core.trac.wordpress.org/ticket/34350">#34350</a>)<b> </b>– Backbone is upgraded from 1.1.2 to 1.2.3 and Underscore is upgraded from 1.6.0 to 1.8.3. See the <a href="https://make.wordpress.org/core/2016/02/17/backbone-and-underscore-updated-to-latest-versions/">this post</a> for important changes.</li>\n<li><strong>Embed templates</strong> (<a href="https://core.trac.wordpress.org/ticket/34561">#34561</a>) – Embed templates were split into parts and can now be directly overridden by themes via the template hierarchy.</li>\n<li><strong>New WP_Site class</strong> (<a href="https://core.trac.wordpress.org/ticket/32450">#32450</a>) – More object-oriented approach for managing sites in Multisite</li>\n<li><strong>Script loader</strong> (<a href="https://core.trac.wordpress.org/ticket/14853">#14853</a>, <a href="https://core.trac.wordpress.org/ticket/35873">#35873</a>) – Introduces <code>wp_add_inline_script()</code> for including inline JavaScript just like <code>wp_add_inline_style()</code> works for CSS, and better support for script header/footer dependencies.</li>\n</ul>\n<p>If you want a more in-depth view of what major changes have made it into 4.5, <a href="https://make.wordpress.org/core/tag/4-5/" target="_blank">check out all 4.5-tagged posts</a> on the main development blog, or check out a <a href="https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=4.5&group=component&order=priority">list of everything</a> that’s changed.</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" target="_blank">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/" target="_blank">file one on the WordPress Trac</a>. There, you can also find <a href="https://core.trac.wordpress.org/tickets/major" target="_blank">a list of known bugs.</a></p>\n<p>Happy testing!</p>\n<p><em>A wonderful day</em><br />\n<em>is one that brings new WordPress</em><br />\n<em>Four Five Beta One</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:"";}}}}}i:4;a:6:{s:4:"data";s:39:"\n \n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"Experiment: WordCamp Incubator";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2016/02/experiment-wordcamp-incubator/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Feb 2016 19:28: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:8:"category";a:3:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:6:"Events";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4076";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:399:"WordCamps are locally-organized WordPress conferences that happen all over the world (and are so fun). Sometimes people don’t realize that WordCamps are organized by local volunteers rather than a central organization, and they contact us asking, “Can you bring WordCamp to my city?” When this happens, we always suggest they start with a meetup group, and think 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:3:"Jen";s: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:2989:"<p><a href="http://wordcamp.org">WordCamps</a> are locally-organized WordPress conferences that happen all over the world (and are so fun). Sometimes people don’t realize that WordCamps are organized by local volunteers rather than a central organization, and they contact us asking, “Can you bring WordCamp to my city?” When this happens, we always suggest they start with a meetup group, and think about organizing a WordCamp themselves after their group has been active for a few months. We emphasize that WordCamps are locally-organized events, not something that the central <a href="https://make.wordpress.org/community">community team</a> plans from afar.</p>\n<p>This has been successful in many areas — there are currently 241 meetup groups on our meetup.com chapter program! In some regions, though, enthusiastic volunteers have had more of a challenge getting things started. Because of this, we’re going to try an experiment this year called the WordCamp Incubator.</p>\n<p>The intention of the incubator program is to help spread WordPress to underserved areas through providing more significant organizing support for a first event. In practical terms, this experiment means we’ll be choosing three cities in 2016 where there is not an active WordPress community — but where it seems like there is a lot of potential and where there are some people excited to become organizers — and will help to organize their first WordCamp. These WordCamps will be small, one-day, one-track events geared toward the goal of generating interest and getting people involved in creating an ongoing local community.*</p>\n<p>So, where should we do these three events? If you have always wanted a WordCamp in your city but haven’t been able to get a meetup group going, this is a great opportunity. We will be taking applications for the next week, then will get in touch with everyone who applied to discuss the possibilities. We will announce the cities chosen by the end of March.</p>\n<p>To apply, <a href="http://wordpressdotorg.polldaddy.com/s/wordcamp-incubator-application">fill in the application</a> by February 26, 2016. You don’t need to have any specific information handy, it’s just a form to let us know you’re interested. You can apply to nominate your city even if you don’t want to be the main organizer, but for this experiment we will need local liaisons and volunteers, so please only nominate cities where you live or work so that we have at least one local connection to begin.</p>\n<p>Thanks, and good luck!</p>\n<p><em><strong>* </strong>For the record, that describes the ideal first WordCamp even if you have an active meetup — there’s no need to wait until your group is big enough to support a large multi-day event, and small events are a lot of fun because everyone has a chance to be involved and get to know most of the other attendees.</em></p>\n<p> </p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:36:"\n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"WordPress 4.4.2 Security and Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"https://wordpress.org/news/2016/02/wordpress-4-4-2-security-and-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 02 Feb 2016 17:57:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4065";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:375:"WordPress 4.4.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.4.1 and earlier are affected by two security issues: a possible SSRF for certain local URIs, reported by Ronni Skansing; and an open redirection attack, reported by Shailesh Suthar. Thank 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:13:"Samuel Sidler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2072:"<p>WordPress 4.4.2 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.4.1 and earlier are affected by two security issues: a possible SSRF for certain local URIs, reported by <a href="https://www.linkedin.com/in/ronni-skansing-36143b65">Ronni Skansing</a>; and an open redirection attack, reported by <a href="https://twitter.com/shailesh4594">Shailesh Suthar</a>.</p>\n<p>Thank you to both reporters for practicing <a href="https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.4.2 fixes 17 bugs from 4.4 and 4.4.1. For more information, see the <a href="https://codex.wordpress.org/Version_4.4.2">release notes</a> or consult the <a href="https://core.trac.wordpress.org/query?milestone=4.4.2">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.4.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.4.2.</p>\n<p>Thanks to everyone who contributed to 4.4.2:</p>\n<p><a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/berengerzyla">berengerzyla</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="https://profiles.wordpress.org/chandrapatel">Chandra Patel</a>, <a href="https://profiles.wordpress.org/chriscct7">Chris Christoff</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/firebird75">firebird75</a>, <a href="https://profiles.wordpress.org/ivankristianto">Ivan Kristianto</a>, <a href="https://profiles.wordpress.org/jmdodd">Jennifer M. Dodd</a>, <a href="https://profiles.wordpress.org/salvoaranzulla">salvoaranzulla</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:"";}}}}}i:6;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:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"Contributor Weekend: Support Forums";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"https://wordpress.org/news/2016/01/contributor-weekend-support-forums/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 22 Jan 2016 18:31:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:4:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:6:"Events";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:12:"contributors";s: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:5:{s:4:"data";s:14:"Support Forums";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4055";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:351:"Our first global contributor drive is coming up next weekend, January 30-31, 2016, and we want you to be involved! Many of our current contributors first got involved at a Contributor Day at a WordCamp or WordPress Meetup event near them, but not everyone has had that opportunity, so we’re trying to create an online experience that […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"Jen";s: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:2112:"<p>Our first global contributor drive is coming up next weekend, January 30-31, 2016, and we want you to be involved!</p>\n<p>Many of our current contributors first got involved at a Contributor Day at a <a href="http://wordcamp.org">WordCamp</a> or <a href="http://www.meetup.com/pro/wordpress/">WordPress Meetup</a> event near them, but not everyone has had that opportunity, so we’re trying to create an online experience that will give new contributors the same kind of live support and group dynamic. We’ll be doing these as weekend challenges rather than one-day events so that WordPress users all over the world can participate without worrying about pesky time zones, but each challenge will be designed to be completed within a few hours, comparable to an in-person Contributor Day.</p>\n<p>Our inaugural Contributor Weekend is focused on the <a href="https://make.wordpress.org/support">Support Team</a> — the folks who volunteer their time to help people with WordPress questions in the <a href="https://wordpress.org/support">support forums</a> and <a href="https://make.wordpress.org/support/irc-support-channel/">IRC</a>. Over the two day span, forum moderators will be available online to help new contributors and answer questions as needed. The challenge this month is called <em>20 Questions;</em> your mission (should you choose to accept it) is to help WordPress users by answering 20 forum support requests over the course of the weekend.</p>\n<p>You can participate on your own, or you can get together with other people from your local meetup group and work on it together. Working together in person is really fun, so we highly recommend trying to get some folks together if you’re able, but if that’s not possible you can still connect to other participants online. Either way, this is a great way to give back to the WordPress project and have some fun helping people at the same time.</p>\n<p>Interested? <a href="https://make.wordpress.org/support/20-questions/">Get the details on how to participate</a>.</p>\n<p>Hope to see you next weekend!</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:"";}}}}}i:7;a:6:{s:4:"data";s:39:"\n \n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"WordPress 4.4.1 Security and Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"https://wordpress.org/news/2016/01/wordpress-4-4-1-security-and-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 06 Jan 2016 20:07:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4041";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:376:"WordPress 4.4.1 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.4 and earlier are affected by a cross-site scripting vulnerability that could allow a site to be compromised. This was reported by Crtc4L. There were also several non-security bug fixes: 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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Aaron Jorbin";s: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:5153:"<p>WordPress 4.4.1 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.4 and earlier are affected by a cross-site scripting vulnerability that could allow a site to be compromised. This was <a href="https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/">reported</a> by <a href="https://hackerone.com/crtc4l">Crtc4L</a>.</p>\n<p>There were also several non-security bug fixes:</p>\n<ul>\n<li>Emoji support has been updated to include all of the latest emoji characters, including the new diverse emoji! <img src="https://s.w.org/images/core/emoji/72x72/1f44d.png" alt="👍" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/72x72/1f3ff.png" alt="🏿" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/72x72/1f44c.png" alt="👌" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/72x72/1f3fd.png" alt="🏽" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/72x72/1f44f.png" alt="👏" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/72x72/1f3fc.png" alt="🏼" class="wp-smiley" style="height: 1em; max-height: 1em;" /></li>\n<li>Some sites with older versions of OpenSSL installed were unable to communicate with other services provided through some plugins.</li>\n<li>If a post URL was ever re-used, the site could redirect to the wrong post.</li>\n</ul>\n<p>WordPress 4.4.1 fixes 52 bugs from 4.4. For more information, see the <a href="https://codex.wordpress.org/Version_4.4.1">release notes</a> or consult the <a href="https://core.trac.wordpress.org/query?milestone=4.4.1">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.4.1</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.4.1.</p>\n<p>Thanks to everyone who contributed to 4.4.1:</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/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="https://profiles.wordpress.org/Compute">Compute</a>, <a href="https://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>, <a href="https://profiles.wordpress.org/DvanKooten">Danny van Kooten</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling (ocean90)</a>, <a href="https://profiles.wordpress.org/dossy">Dossy Shiobara</a>, <a href="https://profiles.wordpress.org/eherman24">Evan Herman</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/gblsm">gblsm</a>, <a href="https://profiles.wordpress.org/hnle">Hinaloe</a>, <a href="https://profiles.wordpress.org/igmoweb">Ignacio Cruz Moreno</a>, <a href="https://profiles.wordpress.org/jadpm">jadpm</a>, <a href="https://profiles.wordpress.org/jeffpyebrookcom/">Jeff Pye Brook</a>, <a href="https://profiles.wordpress.org/joemcgill">Joe McGill</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/JPr">jpr</a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/KrissieV">KrissieV</a>, <a href="https://profiles.wordpress.org/tyxla">Marin Atanasov</a>, <a href="https://profiles.wordpress.org/wp-architect">Matthew Ell</a>, <a href="https://profiles.wordpress.org/meitar">Meitar</a>, <a href="https://profiles.wordpress.org/swissspidy">Pascal Birchler</a>, <a href="https://profiles.wordpress.org/peterwilsoncc">Peter Wilson</a>, <a href="https://profiles.wordpress.org/rogerhub">Roger Chen</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/wonderboymusic">Scott Taylor</a>, <a href="https://profiles.wordpress.org/scottbrownconsulting">scottbrownconsulting</a>, <a href="https://profiles.wordpress.org/SergeyBiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/ShinichiN">Shinichi Nishikawa</a>, <a href="https://profiles.wordpress.org/smerriman">smerriman</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/tharsheblows">tharsheblows</a>, <a href="https://profiles.wordpress.org/voldemortensen">voldemortensen</a>, and <a href="https://profiles.wordpress.org/webaware">webaware</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:"";}}}}}i:8;a:6:{s:4:"data";s:36:"\n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"WordPress 4.4 “Clifford”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"https://wordpress.org/news/2015/12/clifford/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 08 Dec 2015 03:25: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: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.4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=3990";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:379:"Version 4.4 of WordPress, named “Clifford” in honor of jazz trumpeter Clifford Brown, is available for download or update in your WordPress dashboard. New features in 4.4 make your site more connected and responsive. Clifford also introduces a new default theme, Twenty Sixteen. Introducing Twenty Sixteen Our newest default theme, Twenty Sixteen, is a modern take […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:40793:"<p>Version 4.4 of WordPress, named “Clifford” in honor of jazz trumpeter Clifford Brown, is available for download or update in your WordPress dashboard. New features in 4.4 make your site more connected and responsive. Clifford also introduces a new default theme, Twenty Sixteen.</p>\n<p><iframe width=\'692\' height=\'388\' src=\'https://videopress.com/embed/J44FHXvg?hd=0\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script></p>\n<hr />\n<h2 style="text-align: center">Introducing Twenty Sixteen</h2>\n<p><img class="aligncenter size-full wp-image-3994" src="https://wordpress.org/news/files/2015/12/ipad-white-desktop-2x.png" alt="A screenshot of Twenty Sixteen set in an iPad frame" width="1680" height="1139" srcset="https://wordpress.org/news/files/2015/12/ipad-white-desktop-2x-300x203.png 300w, https://wordpress.org/news/files/2015/12/ipad-white-desktop-2x-768x521.png 768w, https://wordpress.org/news/files/2015/12/ipad-white-desktop-2x-1024x694.png 1024w, https://wordpress.org/news/files/2015/12/ipad-white-desktop-2x.png 1680w" sizes="(max-width: 1680px) 100vw, 1680px" /></p>\n<p>Our newest default theme, Twenty Sixteen, is a modern take on a classic blog design.</p>\n<p>Twenty Sixteen was built to look great on any device. A fluid grid design, flexible header, fun color schemes, and more, will all make your content shine.</p>\n<hr />\n<h2 style="text-align: center">Responsive Images</h2>\n<p><img class="aligncenter wp-image-3995 size-full" src="https://wordpress.org/news/files/2015/12/responsive-devices-ipad-2x.png" alt="An image of a laptop, iPad, Android phone, and iPhone containing the same image displayed at multiple sizes to demonstrate responsive image features." width="1396" height="640" srcset="https://wordpress.org/news/files/2015/12/responsive-devices-ipad-2x-300x138.png 300w, https://wordpress.org/news/files/2015/12/responsive-devices-ipad-2x-768x352.png 768w, https://wordpress.org/news/files/2015/12/responsive-devices-ipad-2x-1024x469.png 1024w, https://wordpress.org/news/files/2015/12/responsive-devices-ipad-2x.png 1396w" sizes="(max-width: 1396px) 100vw, 1396px" /></p>\n<p>WordPress now takes a smarter approach to displaying appropriate image sizes on any device, ensuring a perfect fit every time. You don’t need to do anything to your theme, it just works.</p>\n<hr />\n<h2 style="text-align: center">Embed Everything</h2>\n<div class="embed-container">\n<blockquote data-secret="wv4RlzOPNS" class="wp-embedded-content"><p><a href="https://make.wordpress.org/core/2015/10/28/new-embeds-feature-in-wordpress-4-4/">New Embeds Feature in WordPress 4.4</a></p></blockquote>\n<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" style="display:none;" src="https://make.wordpress.org/core/2015/10/28/new-embeds-feature-in-wordpress-4-4/embed/#?secret=wv4RlzOPNS" data-secret="wv4RlzOPNS" width="600" height="338" title="Embedded WordPress Post" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>\n</div>\n<p>Now you can embed your posts on other WordPress sites. Simply drop a post URL into the editor and see an instant embed preview, complete with the title, excerpt, and featured image if you’ve set one. We’ll even include your site icon and links for comments and sharing.</p>\n<p>In addition to post embeds, WordPress 4.4 also adds support for five new oEmbed providers: Cloudup, Reddit Comments, ReverbNation, Speaker Deck, and VideoPress.</p>\n<hr />\n<h2 style="text-align: center">Under the Hood</h2>\n<p><img class="aligncenter size-full wp-image-4003" src="https://wordpress.org/news/files/2015/12/banner-1544x500.jpg" alt="The WordPress REST API logo" width="1544" height="500" srcset="https://wordpress.org/news/files/2015/12/banner-1544x500-300x97.jpg 300w, https://wordpress.org/news/files/2015/12/banner-1544x500-768x249.jpg 768w, https://wordpress.org/news/files/2015/12/banner-1544x500-1024x332.jpg 1024w, https://wordpress.org/news/files/2015/12/banner-1544x500.jpg 1544w" sizes="(max-width: 1544px) 100vw, 1544px" /></p>\n<h3>REST API infrastructure</h3>\n<p>Infrastructure for the REST API has been integrated into core, marking a new era in developing with WordPress. The REST API gives developers an easy way to build and extend RESTful APIs on top of WordPress.</p>\n<p>Infrastructure is the first part of a multi-stage rollout for the REST API. Inclusion of core endpoints is targeted for an upcoming release. To get a sneak peek of the core endpoints, and for more information on extending the REST API, check out the official <a href="https://wordpress.org/plugins/rest-api/">WordPress REST API</a> plugin.</p>\n<h3>Term meta</h3>\n<p>Terms now support metadata, just like posts. See <a href="https://developer.wordpress.org/reference/functions/add_term_meta"><code>add_term_meta()</code></a>, <a href="https://developer.wordpress.org/reference/functions/get_term_meta"><code>get_term_meta()</code></a>, and <a href="https://developer.wordpress.org/reference/functions/update_term_meta"><code>update_term_meta()</code></a> for more information.</p>\n<h3>Comment query improvements</h3>\n<p>Comment queries now have cache handling to improve performance. New arguments in <code>WP_Comment_Query</code> make crafting robust comment queries simpler.</p>\n<div class="feature-section under-the-hood three-col">\n<div class="col">\n<h3>Term, comment, and network objects</h3>\n<p>New <code>WP_Term</code>, <code>WP_Comment</code>, and <code>WP_Network</code> objects make interacting with terms, comments, and networks more predictable and intuitive in code.</p>\n</div>\n</div>\n<hr />\n<h2>The Team</h2>\n<p><a class="alignleft" href="https://profiles.wordpress.org/wonderboymusic"><img src="https://www.gravatar.com/avatar/ed0f881acb9dc96bee53e4dc61b5558f?d=mm&s=180&r=G" alt="Scott Taylor" width="80" height="80" /></a>This release was led by <a href="http://scotty-t.com/">Scott Taylor</a>, with the help of these fine individuals. There are 471 contributors with props in this release (by far the most ever!). Pull up some Clifford Brown on your music service of choice, and check out some of their profiles:</p>\n<a href="https://profiles.wordpress.org/mercime">@mercime</a>, <a href="https://profiles.wordpress.org/_smartik_">_smartik_</a>, <a href="https://profiles.wordpress.org/a5hleyrich">A5hleyRich</a>, <a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/aaronrutley">Aaron Rutley</a>, <a href="https://profiles.wordpress.org/kawauso">Adam Harley (Kawauso)</a>, <a href="https://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>, <a href="https://profiles.wordpress.org/adamholisky">adamholisky</a>, <a href="https://profiles.wordpress.org/mrahmadawais">Ahmad Awais</a>, <a href="https://profiles.wordpress.org/akibjorklund">Aki Björklund</a>, <a href="https://profiles.wordpress.org/albertoct">AlbertoCT</a>, <a href="https://profiles.wordpress.org/akirk">Alex Kirk</a>, <a href="https://profiles.wordpress.org/viper007bond">Alex Mills (Viper007Bond)</a>, <a href="https://profiles.wordpress.org/tellyworth">Alex Shiels</a>, <a href="https://profiles.wordpress.org/gounder">Alexander Gounder</a>, <a href="https://profiles.wordpress.org/alireza1375">alireza1375</a>, <a href="https://profiles.wordpress.org/shedonist">Amanda Giles</a>, <a href="https://profiles.wordpress.org/amereservant">amereservant</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/aduth">Andrew Duthie</a>, <a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="https://profiles.wordpress.org/norcross">Andrew Norcross</a>, <a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/afragen">Andy Fragen</a>, <a href="https://profiles.wordpress.org/amandato">Angelo Mandato</a>, <a href="https://profiles.wordpress.org/ankitgadertcampcom">Ankit Gade</a>, <a href="https://profiles.wordpress.org/ankit-k-gupta">Ankit K Gupta</a>, <a href="https://profiles.wordpress.org/antpb">Anthony Burchell</a>, <a href="https://profiles.wordpress.org/apkoponen">ap.koponen</a>, <a href="https://profiles.wordpress.org/apokalyptik">apokalyptik</a>, <a href="https://profiles.wordpress.org/atomicjack">atomicjack</a>, <a href="https://profiles.wordpress.org/austinginder">Austin Ginder</a>, <a href="https://profiles.wordpress.org/filosofo">Austin Matzko</a>, <a href="https://profiles.wordpress.org/barryceelen">Barry Ceelen</a>, <a href="https://profiles.wordpress.org/barrykooij">Barry Kooij</a>, <a href="https://profiles.wordpress.org/bcworkz">bcworkz</a>, <a href="https://profiles.wordpress.org/bdn3504">BdN3504</a>, <a href="https://profiles.wordpress.org/pixolin">Bego Mario Garde</a>, <a href="https://profiles.wordpress.org/benjmay">Ben May</a>, <a href="https://profiles.wordpress.org/benjaminpick">Benjamin Pick</a>, <a href="https://profiles.wordpress.org/berengerzyla">berengerzyla</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/bilalcoder">bilalcoder</a>, <a href="https://profiles.wordpress.org/binarykitten">BinaryKitten</a>, <a href="https://profiles.wordpress.org/birgire">Birgir Erlendsson (birgire)</a>, <a href="https://profiles.wordpress.org/bjornjohansen">Bjørn Johansen</a>, <a href="https://profiles.wordpress.org/bobbingwide">bobbingwide</a>, <a href="https://profiles.wordpress.org/gitlost">bonger</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone B. Gorges</a>, <a href="https://profiles.wordpress.org/bradt">Brad Touesnard</a>, <a href="https://profiles.wordpress.org/bradparbs">bradparbs</a>, <a href="https://profiles.wordpress.org/bradyvercher">Brady Vercher</a>, <a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="https://profiles.wordpress.org/bravokeyl">bravokeyl</a>, <a href="https://profiles.wordpress.org/brentvr">brentvr</a>, <a href="https://profiles.wordpress.org/brettz95">brettz95</a>, <a href="https://profiles.wordpress.org/mckilem">Bruno Kos</a>, <a href="https://profiles.wordpress.org/crazycoolcam">Cam</a>, <a href="https://profiles.wordpress.org/camikaos">Cami Kaos</a>, <a href="https://profiles.wordpress.org/carolinegeven">carolinegeven</a>, <a href="https://profiles.wordpress.org/misterbisson">Casey Bisson</a>, <a href="https://profiles.wordpress.org/ch1902">ch1902</a>, <a href="https://profiles.wordpress.org/nhuja">Chandra M</a>, <a href="https://profiles.wordpress.org/chandrapatel">Chandra Patel</a>, <a href="https://profiles.wordpress.org/chasewiseman">Chase Wiseman</a>, <a href="https://profiles.wordpress.org/chiara_09">Chiara Dossena</a>, <a href="https://profiles.wordpress.org/chipbennett">Chip Bennett</a>, <a href="https://profiles.wordpress.org/chiragswadia">Chirag Swadia</a>, <a href="https://profiles.wordpress.org/chriscct7">Chris Christoff</a>, <a href="https://profiles.wordpress.org/chrismkindred">Chris Kindred</a>, <a href="https://profiles.wordpress.org/cklosows">Chris Klosowski</a>, <a href="https://profiles.wordpress.org/chriscoyier">chriscoyier</a>, <a href="https://profiles.wordpress.org/chrisdc1">Chrisdc1</a>, <a href="https://profiles.wordpress.org/lovememore">christianoliff</a>, <a href="https://profiles.wordpress.org/christophherr">Christoph Herr</a>, <a href="https://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="https://profiles.wordpress.org/chrisvendiadvertisingcom">cjhaas</a>, <a href="https://profiles.wordpress.org/codeelite">codeelite</a>, <a href="https://profiles.wordpress.org/coenjacobs">Coen Jacobs</a>, <a href="https://profiles.wordpress.org/compute">Compute</a>, <a href="https://profiles.wordpress.org/couturefreak">Courtney Ivey</a>, <a href="https://profiles.wordpress.org/craig-ralston">Craig Ralston</a>, <a href="https://profiles.wordpress.org/cgrymala">Curtiss Grymala</a>, <a href="https://profiles.wordpress.org/cdog">Cătălin Dogaru</a>, <a href="https://profiles.wordpress.org/extendwings">Daisuke Takahashi</a>, <a href="https://profiles.wordpress.org/dboulet">Dan Boulet</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/daniel-koskinen">Daniel Koskinen</a>, <a href="https://profiles.wordpress.org/dmenard">Daniel Ménard</a>, <a href="https://profiles.wordpress.org/mte90">Daniele Scasciafratte</a>, <a href="https://profiles.wordpress.org/daniellandau">daniellandau</a>, <a href="https://profiles.wordpress.org/daniloercoli">daniloercoli</a>, <a href="https://profiles.wordpress.org/dannydehaan">Danny de Haan</a>, <a href="https://profiles.wordpress.org/dvankooten">Danny van Kooten</a>, <a href="https://profiles.wordpress.org/nerrad">Darren Ethier (nerrad)</a>, <a href="https://profiles.wordpress.org/dllh">Daryl L. L. Houston (dllh)</a>, <a href="https://profiles.wordpress.org/dattaparad">Datta Parad</a>, <a href="https://profiles.wordpress.org/dmchale">Dave McHale</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/davidbinda">David Binovec</a>, <a href="https://profiles.wordpress.org/dlh">David Herrera</a>, <a href="https://profiles.wordpress.org/dshanske">David Shanske</a>, <a href="https://profiles.wordpress.org/debaat">DeBAAT</a>, <a href="https://profiles.wordpress.org/denis-de-bernardy">Denis de Bernardy</a>, <a href="https://profiles.wordpress.org/realloc">Dennis Ploetner</a>, <a href="https://profiles.wordpress.org/valendesigns">Derek Herman</a>, <a href="https://profiles.wordpress.org/downstairsdev">Devin Price</a>, <a href="https://profiles.wordpress.org/dezzy">Dezzy</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/dipalidhole27gmailcom">Dipali Dhole</a>, <a href="https://profiles.wordpress.org/dipeshkakadiya">dipesh.kakadiya</a>, <a href="https://profiles.wordpress.org/dbru">Dominik Bruderer</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/dossy">Dossy Shiobara</a>, <a href="https://profiles.wordpress.org/drebbitsweb">Dreb Bits</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/dustinbolton">dustinbolton</a>, <a href="https://profiles.wordpress.org/kucrut">Dzikri Aziz</a>, <a href="https://profiles.wordpress.org/edirect24">edirect24</a>, <a href="https://profiles.wordpress.org/oso96_2000">Eduardo Reveles</a>, <a href="https://profiles.wordpress.org/eduardozulian">Eduardo Zulian</a>, <a href="https://profiles.wordpress.org/cais">Edward Caissie</a>, <a href="https://profiles.wordpress.org/egill">Egill R. Erlendsson</a>, <a href="https://profiles.wordpress.org/egower">egower</a>, <a href="https://profiles.wordpress.org/iehsanir">Ehsaan</a>, <a href="https://profiles.wordpress.org/ehtis">ehtis</a>, <a href="https://profiles.wordpress.org/iseulde">Ella Iseulde Van Dorpe</a>, <a href="https://profiles.wordpress.org/ellieroepken">Ellie Strejlau</a>, <a href="https://profiles.wordpress.org/elliott-stocks">Elliott Stocks</a>, <a href="https://profiles.wordpress.org/elusiveunit">elusiveunit</a>, <a href="https://profiles.wordpress.org/enshrined">enshrined</a>, <a href="https://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="https://profiles.wordpress.org/ebinnion">Eric Binnion</a>, <a href="https://profiles.wordpress.org/ericdaams">Eric Daams</a>, <a href="https://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="https://profiles.wordpress.org/ericjuden">ericjuden</a>, <a href="https://profiles.wordpress.org/eherman24">Evan Herman</a>, <a href="https://profiles.wordpress.org/f4rkie">F4rkie</a>, <a href="https://profiles.wordpress.org/flixos90">Felix Arntz</a>, <a href="https://profiles.wordpress.org/fsylum">Firdaus Zahari</a>, <a href="https://profiles.wordpress.org/firebird75">firebird75</a>, <a href="https://profiles.wordpress.org/fonglh">fonglh</a>, <a href="https://profiles.wordpress.org/francoisb">francoisb</a>, <a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="https://profiles.wordpress.org/fjarrett">Frankie Jarrett</a>, <a href="https://profiles.wordpress.org/frozzare">Fredrik Forsmo</a>, <a href="https://profiles.wordpress.org/gaelan">Gaelan Lloyd</a>, <a href="https://profiles.wordpress.org/gagan0123">Gagan Deep Singh</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/grvrulz">Gaurav Pareek</a>, <a href="https://profiles.wordpress.org/gautamgupta">Gautam Gupta</a>, <a href="https://profiles.wordpress.org/gblsm">gblsm</a>, <a href="https://profiles.wordpress.org/geminorum">geminorum</a>, <a href="https://profiles.wordpress.org/kloon">Gerhard Potgieter</a>, <a href="https://profiles.wordpress.org/gezamiklo">geza.miklo</a>, <a href="https://profiles.wordpress.org/gizburdt">Gijs Jorissen</a>, <a href="https://profiles.wordpress.org/garusky">Giuseppe Mamone</a>, <a href="https://profiles.wordpress.org/jubstuff">Giustino Borzacchiello</a>, <a href="https://profiles.wordpress.org/gnaka08">gnaka08</a>, <a href="https://profiles.wordpress.org/gradyetc">gradyetc</a>, <a href="https://profiles.wordpress.org/gregrickaby">Greg Rickaby</a>, <a href="https://profiles.wordpress.org/tivnet">Gregory Karpinsky (@tivnet)</a>, <a href="https://profiles.wordpress.org/webord">Gustavo Bordoni</a>, <a href="https://profiles.wordpress.org/bordoni">Gustavo Bordoni</a>, <a href="https://profiles.wordpress.org/gwinhlopez">gwinh.lopez</a>, <a href="https://profiles.wordpress.org/hakre">hakre</a>, <a href="https://profiles.wordpress.org/hauvong">hauvong</a>, <a href="https://profiles.wordpress.org/helen">Helen Hou-Sandí</a>, <a href="https://profiles.wordpress.org/hnle">Hinaloe</a>, <a href="https://profiles.wordpress.org/hrishiv90">Hrishikesh Vaipurkar</a>, <a href="https://profiles.wordpress.org/hlashbrooke">Hugh Lashbrooke</a>, <a href="https://profiles.wordpress.org/hugobaeta">Hugo Baeta</a>, <a href="https://profiles.wordpress.org/polevaultweb">Iain Poulson</a>, <a href="https://profiles.wordpress.org/iandunn">Ian Dunn</a>, <a href="https://profiles.wordpress.org/iandstewart">Ian Stewart</a>, <a href="https://profiles.wordpress.org/icetee">icetee</a>, <a href="https://profiles.wordpress.org/igmoweb">Ignacio Cruz Moreno</a>, <a href="https://profiles.wordpress.org/headonfire">Ihor Vorotnov</a>, <a href="https://profiles.wordpress.org/imath">imath</a>, <a href="https://profiles.wordpress.org/ippetkov">ippetkov</a>, <a href="https://profiles.wordpress.org/ivankristianto">Ivan Kristianto</a>, <a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="https://profiles.wordpress.org/athsear">J.Sugiyama</a>, <a href="https://profiles.wordpress.org/jadpm">jadpm</a>, <a href="https://profiles.wordpress.org/jakubtyrcha">jakub.tyrcha</a>, <a href="https://profiles.wordpress.org/macmanx">James Huff</a>, <a href="https://profiles.wordpress.org/janhenckens">Jan Henckens</a>, <a href="https://profiles.wordpress.org/japh">Japh</a>, <a href="https://profiles.wordpress.org/jaspermdegroot">Jasper de Groot</a>, <a href="https://profiles.wordpress.org/jazbek">jazbek</a>, <a href="https://profiles.wordpress.org/jcroucher">jcroucher</a>, <a href="https://profiles.wordpress.org/jfarthing84">Jeff Farthing</a>, <a href="https://profiles.wordpress.org/jeffstieler">Jeff Stieler</a>, <a href="https://profiles.wordpress.org/jeffmatson">JeffMatson</a>, <a href="https://profiles.wordpress.org/cheffheid">Jeffrey de Wit</a>, <a href="https://profiles.wordpress.org/jeffpyebrookcom">Jeffrey Schutzman</a>, <a href="https://profiles.wordpress.org/jeichorn">jeichorn</a>, <a href="https://profiles.wordpress.org/jmdodd">Jennifer M. Dodd</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/jpry">Jeremy Pry</a>, <a href="https://profiles.wordpress.org/slimndap">Jeroen Schmit</a>, <a href="https://profiles.wordpress.org/jesin">Jesin A</a>, <a href="https://profiles.wordpress.org/engelen">Jesper van Engelen</a>, <a href="https://profiles.wordpress.org/jim912">jim912</a>, <a href="https://profiles.wordpress.org/jliman">jliman</a>, <a href="https://profiles.wordpress.org/jmayhak">jmayhak</a>, <a href="https://profiles.wordpress.org/jnylen0">jnylen0</a>, <a href="https://profiles.wordpress.org/jobst">Jobst Schmalenbach</a>, <a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="https://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="https://profiles.wordpress.org/joemcgill">Joe McGill</a>, <a href="https://profiles.wordpress.org/joehills">joehills</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/johnpbloch">John P. Bloch</a>, <a href="https://profiles.wordpress.org/mindctrl">John Parris</a>, <a href="https://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="https://profiles.wordpress.org/jonathanbardo">Jonathan Bardo</a>, <a href="https://profiles.wordpress.org/desrosj">Jonathan Desrosiers</a>, <a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="https://profiles.wordpress.org/koke">Jorge Bernal</a>, <a href="https://profiles.wordpress.org/betzster">Josh Betz</a>, <a href="https://profiles.wordpress.org/jjeaton">Josh Eaton</a>, <a href="https://profiles.wordpress.org/shelob9">Josh Pollock</a>, <a href="https://profiles.wordpress.org/jpr">jpr</a>, <a href="https://profiles.wordpress.org/jrf">jrf</a>, <a href="https://profiles.wordpress.org/juhise">Juhi Saxena</a>, <a href="https://profiles.wordpress.org/juliobox">Julio Potier</a>, <a href="https://profiles.wordpress.org/justdaiv">justdaiv</a>, <a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="https://profiles.wordpress.org/jshreve">Justin Shreve</a>, <a href="https://profiles.wordpress.org/jtsternberg">Justin Sternberg</a>, <a href="https://profiles.wordpress.org/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/kalenjohnson">KalenJohnson</a>, <a href="https://profiles.wordpress.org/karinedo">karinedo</a>, <a href="https://profiles.wordpress.org/karpstrucking">karpstrucking</a>, <a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="https://profiles.wordpress.org/kevinb">Kevin Behrens</a>, <a href="https://profiles.wordpress.org/kevinlangleyjr">Kevin Langley</a>, <a href="https://profiles.wordpress.org/kevinatelement">kevinatelement</a>, <a href="https://profiles.wordpress.org/kitchin">kitchin</a>, <a href="https://profiles.wordpress.org/ixkaito">Kite</a>, <a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/krissiev">KrissieV</a>, <a href="https://profiles.wordpress.org/drozdz">Krzysiek Dróżdż</a>, <a href="https://profiles.wordpress.org/kurtpayne">Kurt Payne</a>, <a href="https://profiles.wordpress.org/laceous">laceous</a>, <a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="https://profiles.wordpress.org/offereins">Laurens Offereins</a>, <a href="https://profiles.wordpress.org/lcherpit">lcherpit</a>, <a href="https://profiles.wordpress.org/ldinclaux">ldinclaux</a>, <a href="https://profiles.wordpress.org/leewillis77">Lee Willis</a>, <a href="https://profiles.wordpress.org/leemon">leemon</a>, <a href="https://profiles.wordpress.org/lessbloat">lessbloat</a>, <a href="https://profiles.wordpress.org/linuxologos">linuxologos</a>, <a href="https://profiles.wordpress.org/spmlucas">Lucas Karpiuk</a>, <a href="https://profiles.wordpress.org/lucatume">lucatume</a>, <a href="https://profiles.wordpress.org/luciole135">luciole135</a>, <a href="https://profiles.wordpress.org/lucymtc">Lucy Tomas</a>, <a href="https://profiles.wordpress.org/lukecarbis">Luke Carbis</a>, <a href="https://profiles.wordpress.org/madalinungureanu">madalin.ungureanu</a>, <a href="https://profiles.wordpress.org/mako09">Mako</a>, <a href="https://profiles.wordpress.org/manolis09">manolis09</a>, <a href="https://profiles.wordpress.org/iworks">Marcin Pietrzak</a>, <a href="https://profiles.wordpress.org/tyxla">Marin Atanasov</a>, <a href="https://profiles.wordpress.org/nofearinc">Mario Peshev</a>, <a href="https://profiles.wordpress.org/clorith">Marius (Clorith)</a>, <a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="https://profiles.wordpress.org/mechter">Markus</a>, <a href="https://profiles.wordpress.org/wilto">Mat Marquis</a>, <a href="https://profiles.wordpress.org/matheusfd">Matheus Martins</a>, <a href="https://profiles.wordpress.org/mattbagwell">Matt Bagwell</a>, <a href="https://profiles.wordpress.org/mgibbs189">Matt Gibbs</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/veraxus">Matt van Andel</a>, <a href="https://profiles.wordpress.org/mboynes">Matthew Boynes</a>, <a href="https://profiles.wordpress.org/wp-architect">Matthew Ell</a>, <a href="https://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="https://profiles.wordpress.org/mazurstas">mazurstas</a>, <a href="https://profiles.wordpress.org/mbrandys">mbrandys</a>, <a href="https://profiles.wordpress.org/mdmcginn">mdmcginn</a>, <a href="https://profiles.wordpress.org/mehulkaklotar">Mehul Kaklotar</a>, <a href="https://profiles.wordpress.org/meitar">Meitar</a>, <a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="https://profiles.wordpress.org/meloniq">meloniq</a>, <a href="https://profiles.wordpress.org/micahmills">micahmills</a>, <a href="https://profiles.wordpress.org/micahwave">micahwave</a>, <a href="https://profiles.wordpress.org/mdawaffe">Michael Adams (mdawaffe)</a>, <a href="https://profiles.wordpress.org/michael-arestad">Michael Arestad</a>, <a href="https://profiles.wordpress.org/cainm">Michael Cain</a>, <a href="https://profiles.wordpress.org/michielhab">Michiel Habraken</a>, <a href="https://profiles.wordpress.org/mcguive7">Mickey Kay</a>, <a href="https://profiles.wordpress.org/mdgl">Mike Glendinning</a>, <a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="https://profiles.wordpress.org/mikejolley">Mike Jolley</a>, <a href="https://profiles.wordpress.org/thaicloud">Mike Jordan</a>, <a href="https://profiles.wordpress.org/mikeschinkel">Mike Schinkel</a>, <a href="https://profiles.wordpress.org/mikeschroder">Mike Schroder</a>, <a href="https://profiles.wordpress.org/dimadin">Milan Dinić</a>, <a href="https://profiles.wordpress.org/mismith227">mismith227</a>, <a href="https://profiles.wordpress.org/misterunknown">misterunknown</a>, <a href="https://profiles.wordpress.org/mitchoyoshitaka">mitcho (Michael Yoshitaka Erlewine)</a>, <a href="https://profiles.wordpress.org/monika">Monika</a>, <a href="https://profiles.wordpress.org/morganestes">morganestes</a>, <a href="https://profiles.wordpress.org/mor10">Morten Rand-Hendriksen</a>, <a href="https://profiles.wordpress.org/mt8biz">moto hachi ( mt8.biz )</a>, <a href="https://profiles.wordpress.org/usermrpapa">Mr Papa</a>, <a href="https://profiles.wordpress.org/mrmist">mrmist</a>, <a href="https://profiles.wordpress.org/mulvane">mulvane</a>, <a href="https://profiles.wordpress.org/neoscrib">neoscrib</a>, <a href="https://profiles.wordpress.org/next-season">NExT-Season</a>, <a href="https://profiles.wordpress.org/niallkennedy">Niall Kennedy</a>, <a href="https://profiles.wordpress.org/nicholas_io">nicholas_io</a>, <a href="https://profiles.wordpress.org/nickciske">Nick Ciske</a>, <a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="https://profiles.wordpress.org/nickduncan">NickDuncan</a>, <a href="https://profiles.wordpress.org/rahe">Nicolas Juen</a>, <a href="https://profiles.wordpress.org/nikeo">nikeo</a>, <a href="https://profiles.wordpress.org/nikschavan">Nikhil Chavan</a>, <a href="https://profiles.wordpress.org/niklasbr">Niklas</a>, <a href="https://profiles.wordpress.org/nikolovtmw">Nikola Nikolov</a>, <a href="https://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>, <a href="https://profiles.wordpress.org/rabmalin">Nilambar Sharma</a>, <a href="https://profiles.wordpress.org/originalexe">OriginalEXE</a>, <a href="https://profiles.wordpress.org/pareshradadiya-1">Paresh Radadiya</a>, <a href="https://profiles.wordpress.org/swissspidy">Pascal Birchler</a>, <a href="https://profiles.wordpress.org/obrienlabs">Pat O\'Brien</a>, <a href="https://profiles.wordpress.org/pbearne">Paul Bearne</a>, <a href="https://profiles.wordpress.org/pauldewouters">Paul de Wouters</a>, <a href="https://profiles.wordpress.org/figureone">Paul Ryan</a>, <a href="https://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="https://profiles.wordpress.org/sirbrillig">Payton Swick</a>, <a href="https://profiles.wordpress.org/peterwilsoncc">Peter Wilson</a>, <a href="https://profiles.wordpress.org/walbo">Petter Walbø Johnsgård</a>, <a href="https://profiles.wordpress.org/petya">Petya Raykovska</a>, <a href="https://profiles.wordpress.org/pfefferle">pfefferle</a>, <a href="https://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="https://profiles.wordpress.org/philiplakin">PhilipLakin</a>, <a href="https://profiles.wordpress.org/corphi">Philipp Cordes</a>, <a href="https://profiles.wordpress.org/delawski">Piotr Delawski</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/prasad-nevase">Prasad Nevase</a>, <a href="https://profiles.wordpress.org/nprasath002">Prasath Nadarajah</a>, <a href="https://profiles.wordpress.org/pratikchaskar">Pratik</a>, <a href="https://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="https://profiles.wordpress.org/rajnikmit">rajnikmit</a>, <a href="https://profiles.wordpress.org/racase">Rakesh Lawaju (Racase Lawaju)</a>, <a href="https://profiles.wordpress.org/ramay">ramay</a>, <a href="https://profiles.wordpress.org/ramiy">Rami Yushuvaev</a>, <a href="https://profiles.wordpress.org/raulillana">Raul Illana</a>, <a href="https://profiles.wordpress.org/renoirb">renoirb</a>, <a href="https://profiles.wordpress.org/rhubbardreverb">rhubbardreverb</a>, <a href="https://profiles.wordpress.org/rhyswynne">Rhys Wynne</a>, <a href="https://profiles.wordpress.org/rianrietveld">Rian Rietveld</a>, <a href="https://profiles.wordpress.org/iamfriendly">Richard Tape</a>, <a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, <a href="https://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="https://profiles.wordpress.org/rogerhub">Roger Chen</a>, <a href="https://profiles.wordpress.org/rommelxcastro">Rommel Castro</a>, <a href="https://profiles.wordpress.org/wpmuguru">Ron Rennick</a>, <a href="https://profiles.wordpress.org/ronalfy">Ronald Huereca</a>, <a href="https://profiles.wordpress.org/kingkool68">Russell Heimlich</a>, <a href="https://profiles.wordpress.org/ruudjoyo">Ruud Laan</a>, <a href="https://profiles.wordpress.org/ryankienstra">Ryan Kienstra</a>, <a href="https://profiles.wordpress.org/markel">Ryan Markel</a>, <a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="https://profiles.wordpress.org/welcher">Ryan Welcher</a>, <a href="https://profiles.wordpress.org/zeo">Safirul Alredha</a>, <a href="https://profiles.wordpress.org/salcode">Sal Ferrarello</a>, <a href="https://profiles.wordpress.org/salvoaranzulla">salvoaranzulla</a>, <a href="https://profiles.wordpress.org/sammybeats">Sam Brodie</a>, <a href="https://profiles.wordpress.org/sam2kb">sam2kb</a>, <a href="https://profiles.wordpress.org/solarissmoke">Samir Shah</a>, <a href="https://profiles.wordpress.org/samuelsidler">Samuel Sidler</a>, <a href="https://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>, <a href="https://profiles.wordpress.org/sanketparmar">Sanket Parmar</a>, <a href="https://profiles.wordpress.org/rosso99">Sara Rosso</a>, <a href="https://profiles.wordpress.org/sarciszewski">sarciszewski</a>, <a href="https://profiles.wordpress.org/sgrant">Scott Grant</a>, <a href="https://profiles.wordpress.org/sc0ttkclark">Scott Kingsley Clark</a>, <a href="https://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="https://profiles.wordpress.org/scottbrownconsulting">scottbrownconsulting</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/sdavis2702">sdavis2702</a>, <a href="https://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="https://profiles.wordpress.org/sebastianpisula">Sebastian Pisula</a>, <a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/serpent7776">serpent7776</a>, <a href="https://profiles.wordpress.org/several27">several27</a>, <a href="https://profiles.wordpress.org/shimakyohsuke">shimakyohsuke</a>, <a href="https://profiles.wordpress.org/shinichin">Shinichi Nishikawa</a>, <a href="https://profiles.wordpress.org/side777">side777</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/sirzooro">sirzooro</a>, <a href="https://profiles.wordpress.org/sjmur">sjmur</a>, <a href="https://profiles.wordpress.org/smerriman">smerriman</a>, <a href="https://profiles.wordpress.org/spacedmonkey">Spacedmonkey</a>, <a href="https://profiles.wordpress.org/sboisvert">Stéphane Boisvert</a>, <a href="https://profiles.wordpress.org/khromov">Stanislav Khromov</a>, <a href="https://profiles.wordpress.org/metodiew">Stanko Metodiev</a>, <a href="https://profiles.wordpress.org/stebbiv">stebbiv</a>, <a href="https://profiles.wordpress.org/miglosh">Stefan Froehlich</a>, <a href="https://profiles.wordpress.org/sillybean">Stephanie Leary</a>, <a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="https://profiles.wordpress.org/stephenharris">Stephen Harris</a>, <a href="https://profiles.wordpress.org/stevegrunwell">Steve Grunwell</a>, <a href="https://profiles.wordpress.org/stevehenty">stevehenty</a>, <a href="https://profiles.wordpress.org/stevehoneynz">SteveHoneyNZ</a>, <a href="https://profiles.wordpress.org/stevenkword">Steven Word</a>, <a href="https://profiles.wordpress.org/charlestonsw">Store Locator Plus</a>, <a href="https://profiles.wordpress.org/sudar">Sudar Muthu</a>, <a href="https://profiles.wordpress.org/brainstormforce">Sujay</a>, <a href="https://profiles.wordpress.org/5um17">Sumit Singh</a>, <a href="https://profiles.wordpress.org/summerblue">summerblue</a>, <a href="https://profiles.wordpress.org/sunnyratilal">Sunny Ratilal</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/karmatosed">Tammie Lister</a>, <a href="https://profiles.wordpress.org/tanner-m">Tanner Moushey</a>, <a href="https://profiles.wordpress.org/tbcorr">tbcorr</a>, <a href="https://profiles.wordpress.org/tychay">Terry Chay</a>, <a href="https://profiles.wordpress.org/tharsheblows">tharsheblows</a>, <a href="https://profiles.wordpress.org/themiked">theMikeD</a>, <a href="https://profiles.wordpress.org/kraftner">Thomas Kräftner</a>, <a href="https://profiles.wordpress.org/thomaswm">thomaswm</a>, <a href="https://profiles.wordpress.org/tfrommen">Thorsten Frommen</a>, <a href="https://profiles.wordpress.org/tott">Thorsten Ott</a>, <a href="https://profiles.wordpress.org/tigertech">tigertech</a>, <a href="https://profiles.wordpress.org/tillkruess">Till</a>, <a href="https://profiles.wordpress.org/tevko">Tim Evko</a>, <a href="https://profiles.wordpress.org/tmatsuur">tmatsuur</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/willmot">Tom Willmot</a>, <a href="https://profiles.wordpress.org/tomharrigan">TomHarrigan</a>, <a href="https://profiles.wordpress.org/tommarshall">tommarshall</a>, <a href="https://profiles.wordpress.org/tomsommer">tomsommer</a>, <a href="https://profiles.wordpress.org/skithund">Toni Viemerö</a>, <a href="https://profiles.wordpress.org/toro_unit">Toro_Unit (Hiroshi Urabe)</a>, <a href="https://profiles.wordpress.org/liljimmi">Tracy Levesque</a>, <a href="https://profiles.wordpress.org/rilwis">Tran Ngoc Tuan Anh</a>, <a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="https://profiles.wordpress.org/trenzterra">trenzterra</a>, <a href="https://profiles.wordpress.org/tryon">Tryon Eggleston</a>, <a href="https://profiles.wordpress.org/tszming">tszming</a>, <a href="https://profiles.wordpress.org/junsuijin">ty</a>, <a href="https://profiles.wordpress.org/tywayne">Ty Carlson</a>, <a href="https://profiles.wordpress.org/chacha102">Tyler Carter</a>, <a href="https://profiles.wordpress.org/grapplerulrich">Ulrich</a>, <a href="https://profiles.wordpress.org/sorich87">Ulrich Sossou</a>, <a href="https://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>, <a href="https://profiles.wordpress.org/umeshnevase">Umesh Nevase</a>, <a href="https://profiles.wordpress.org/utkarshpatel">Utkarsh</a>, <a href="https://profiles.wordpress.org/vilkatis">vilkatis</a>, <a href="https://profiles.wordpress.org/voldemortensen">voldemortensen</a>, <a href="https://profiles.wordpress.org/walterebert">Walter Ebert</a>, <a href="https://profiles.wordpress.org/walterbarcelos">walterbarcelos</a>, <a href="https://profiles.wordpress.org/webaware">webaware</a>, <a href="https://profiles.wordpress.org/webdevmattcrom">webdevmattcrom</a>, <a href="https://profiles.wordpress.org/wen-solutions">WEN Solutions</a>, <a href="https://profiles.wordpress.org/wenthemes">WEN Themes</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/wmertens">wmertens</a>, <a href="https://profiles.wordpress.org/wojtekszkutnik">Wojtek Szkutnik</a>, <a href="https://profiles.wordpress.org/theode">WP Plugin Dev dot com</a>, <a href="https://profiles.wordpress.org/wpdev101">wpdev101</a>, <a href="https://profiles.wordpress.org/alphawolf">wpseek</a>, <a href="https://profiles.wordpress.org/wturrell">wturrell</a>, <a href="https://profiles.wordpress.org/yamchhetri">Yam Chhetri</a>, <a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="https://profiles.wordpress.org/oxymoron">Zach Wills</a>, <a href="https://profiles.wordpress.org/zrothauser">Zack Rothauser</a>, and <a href="https://profiles.wordpress.org/tollmanz">Zack Tollman</a>.\n<p> </p>\n<p>Special thanks go to <a href="http://siobhanmckeown.com/">Siobhan McKeown</a> for producing the release video with <a href="http://www.sararosso.com/newsletter/">Sara Rosso</a>, and <a href="http://camikaos.com">Cami Kaos</a> for the voice-over.</p>\n<p>Finally, thanks to all of the contributors who provided subtitles for the release video, which at last count had been translated into 23 languages!</p>\n<p>If you want to follow along or help out, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.5!</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:"";}}}}}i:9;a:6:{s:4:"data";s:39:"\n \n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"WordPress 4.4 Release Candidate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"https://wordpress.org/news/2015/11/wordpress-4-4-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 25 Nov 2015 23: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:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=3982";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:328:"The release candidate for WordPress 4.4 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.4 on Tuesday, December 8, but we need your help to get there. If you haven’t tested 4.4 yet, […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Scott Taylor";s: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:1801:"<p>The release candidate for WordPress 4.4 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.4 on <strong>Tuesday, December 8</strong>, but we need your help to get there.</p>\n<p>If you haven’t tested 4.4 yet, now is the time!</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p>To test WordPress 4.4 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.4-RC1.zip">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.4, check out the <a href="https://wordpress.org/news/2015/10/wordpress-4-4-beta-1/">Beta</a> blog post.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.4 and update your plugin’s <em>Tested up to</em> version in the readme to 4.4 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href="https://make.wordpress.org/core/">follow along the core development blog</a>, where we’ll continue to post <a href="https://make.wordpress.org/core/tag/dev-notes+4-4/">notes for developers</a> for 4.4.</p>\n<p><em>Tickets are all closed</em><br />\n<em>Help test the latest changes</em><br />\n<em>New WordPress for All</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: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:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 12 Mar 2016 10:18:21 GMT";s:12:"content-type";s:34:"application/rss+xml; charset=UTF-8";s:10:"connection";s:5:"close";s:25:"strict-transport-security";s:11:"max-age=360";s:6:"x-olaf";s:3:"⛄";s:13:"last-modified";s:29:"Thu, 10 Mar 2016 06:59:26 GMT";s:4:"link";s:63:"<https://wordpress.org/news/wp-json/>; rel="https://api.w.org/"";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20130911040210";}', 'no');
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(126, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1457821278', 'no'),
(127, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1457778078', 'no'),
(128, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1457821279', 'no');
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(129, '_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:23:"Matt: Changelog 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:22:"https://ma.tt/?p=46350";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"https://ma.tt/2016/03/changelog-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:575:"<p>I know a lot of people are on their way to SxSW right now, <a href="https://changelog.com/197/">here’s a podcast I joined called The Changelog you can download and check out on the way there</a> (or back). It’s a bit more technical than the interviews I normally do, we talk about Javascript, Calypso, the philosophy of open source and WordPress, some of the thinking behind Automattic’s acquisitions, and my favorite programming books. I hope <a href="https://changelog.com/197/">you can check it out</a>, Adam and Jerod did a great job on this one.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 12 Mar 2016 02:17:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"WPTavern: In Case You Missed It – Issue 4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=52368&preview_id=52368";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wptavern.com/in-case-you-missed-it-issue-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6912:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png" rel="attachment wp-att-50955"><img class="size-full wp-image-50955" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?resize=676%2C292" alt="In Case You Missed It Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/112901923@N07/16153818039">Night Moves</a> – <a href="https://creativecommons.org/licenses/by-nc/2.0/">(license)</a>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2>Justin Tadlock Announces Simpler Pricing</h2>\n<p>Justin Tadlock <a href="http://themehybrid.com/weblog/simpler-pricing-for-theme-designer-and-plugin-developer">revamped his pricing</a> model for his <a href="http://themehybrid.com/plugins/plugin-developer">Plugin Developer</a> and <a href="http://themehybrid.com/plugins/theme-designer">Theme Designer</a> plugins. Based on two months of feedback, Tadlock removed the pricing tiers in favor of a single price. Both plugins are $90 and come with source files, one year of support, and access to the Theme Hybrid Slack channel.</p>\n<p>Existing customers have already been upgraded and can take advantage of the new perks. What’s nice is that Tadlock is giving those who purchased the plugins for $125 a partial refund of $35 to make up the difference.</p>\n<h2>Using WordPress to Break The Silence</h2>\n<p>Mahangu Weerasinghe, who works at Automattic as a Happiness Engineer, <a href="http://heropress.com/essays/breaking-the-silence/">published a fantastic essay</a> on HeroPress this week that describes how WordPress helped him break his silence. Weerasinghe suffers from stuttering and as a result, remained silent even if he had something to say. It’s an inspirational story and the best content I’ve read all week. There are many quotable spots in the post, but this is my favorite.</p>\n<blockquote><p>There are a lot of things we cannot control in this world, many forces at work that we cannot even see. But, as members of this community, I think we can content ourselves with this thought:</p>\n<p>Because of the GPL, and the way it works, WordPress will be available as a publishing platform for decades to come, and long after the next social network comes and goes, for as long as the Internet remains free and accessible, anyone with WordPress will be able to have their say.</p>\n<p>What WordPress did for me, it can do for others. And that’s why we need to keep going.</p>\n<p>Because every silence can be overcome.</p></blockquote>\n<p>Congrats Weerasinghe on defeating the silence and helping others to do the same.</p>\n<h2>Automattic Acquires Pressable</h2>\n<p>Automattic has purchased the rest of Vid Luther’s common stock shares in Pressable and has effectively <a href="https://poststatus.com/automattic-pressable/">acquired the company</a>. Chris Lauzon, a Happiness Engineer at Automattic, is the company’s interim CEO. Be sure to read Matt Mulleweng’s statement which clearly indicates to me that the company is not part of Automattic’s long-term interests.</p>\n<h2>Matt Mullenweg in The Irish Times</h2>\n<p>Ciara O’Brien <a href="http://www.irishtimes.com/business/technology/matt-mullenweg-how-wordpress-got-the-whole-world-blogging-1.2558828">interviewed Matt Mullenweg</a> when he visited Dublin, Ireland to speak at an Irish Software Association event. It’s one of the better interviews I’ve read in recent memory and if you know Matt well enough, you can tell which parts of the interview he showed his sense of humor.</p>\n<p>For example, when asked how he relaxes and switches off work mode, he responds “Well, this is lovely. We have tea and little cookies.” I can almost guarantee you that he chuckled while making that remark.</p>\n<h2>Introvert Reviews Pressnomics</h2>\n<p>Jeff Matson, who leads the documentation efforts for Rocketgenius, <a href="http://jeffmatson.net/realization-of-progress-and-success/">documented</a> (pun intended) his experience at Pressnomics 4. Thanks to his involvement in the community the past few years, people recognized him and started conversations with him instead of the other way around.</p>\n<blockquote><p>I’m the nerd with the thick glasses, overgrown beard, and a hoodie; the guy who lives in a rather small apartment, drives a Kia, and shops at outlet malls. To put it simply, I’m your typical every-day middle-class 20-something guy. Certainly not the typically targeted clientele for such a high level business-centric conference.</p></blockquote>\n<p>Yet, he had a great time and strengthened relationships and created new ones with members of the community. As a friend, it’s great to see Jeff make large strides both in his professional and personal life.</p>\n<h2>Co-Organizing WordCamp Miami</h2>\n<p>David Bisset <a href="http://davidbisset.com/wordcamp-miami-2016-the-mega-review/">shares his experience</a> co-organizing one of the largest WordCamps in the US. According to a recent tweet, the team is already making plans for WordCamp Miami, FL 2017.</p>\n<blockquote class="twitter-tweet"><p lang="en" dir="ltr">One of the reasons <a href="https://twitter.com/hashtag/wcmia?src=hash">#wcmia</a> organization team is so great: post-conference planning meetups. 2017 planning has begun. <a href="https://t.co/NZF31TRNOj">pic.twitter.com/NZF31TRNOj</a></p>\n<p>— David Bisset (@dimensionmedia) <a href="https://twitter.com/dimensionmedia/status/708282526477979650">March 11, 2016</a></p></blockquote>\n<p></p>\n<h2>Wapuu of the North!</h2>\n<p>As a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don’t know, Wapuu is the <a href="http://wapuu.jp/2015/12/12/wapuu-origins/">unofficial mascot</a> of the WordPress project. St. Patrick’s day is right around the corner, so what better way to celebrate than with a Wapuu with Irish roots. Meet, The Wapuu of the North.</p>\n<p>The Wapuu of the North was created by Peter of <a href="http://1440design.com/wordpress/branding-wordcamp-belfast/" target="_blank">1440 Design</a> for WordCamp events in Dublin and Belfast Ireland. This particular Wapuu has quite the head of hair!</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/belfast_wapuu.jpg" rel="attachment wp-att-52005"><img class="aligncenter size-full wp-image-52005" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/belfast_wapuu.jpg?resize=1000%2C1000" alt="belfast_wapuu" /></a></p>\n<p>That’s it for issue four. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 12 Mar 2016 01:24:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:77:"WPTavern: OnePress: A Free Single-Page WordPress Theme Built with Bootstrap 4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=51305";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:86:"http://wptavern.com/onepress-a-free-single-page-wordpress-theme-built-with-bootstrap-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3001:"<p>If you’re a fan of the scrolling single-page parallax style themes, <a href="https://wordpress.org/themes/onepress/" target="_blank">OnePress</a> is a new one on WordPress.org that may pique your interest. After less than a month in the official directory, it has already been installed on more than 3,000 websites. OnePress was developed by the folks at <a href="https://www.famethemes.com/themes/onepress/" target="_blank">FameThemes</a> using <a href="http://v4-alpha.getbootstrap.com/" target="_blank">Bootstrap version 4</a>. It is suitable for business, portfolio, and agency websites.</p>\n<p>The theme features a full-screen background image with action buttons in the first major section. Scrolling further down reveals an about section, services, a video lightbox, an animated counter, team section, latest news, and contact form (powered by Contact Form 7).</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/onepress.png" rel="attachment wp-att-52246"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/onepress.png?resize=1025%2C769" alt="onepress" class="aligncenter size-full wp-image-52246" /></a></p>\n<p>All of the sections can be easily configured in the customizer and each has design options such as overlay color and opacity, section titles and subtitles, number of columns, and more. You can elect to hide any of the sections that you don’t want to use.</p>\n<p>Also, if you’re not a fan of the parallax animations, there are options to disable them per element or globally for all the animations in the theme. You can also disable the sticky header when scrolling.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/onepress-customizer.png" rel="attachment wp-att-52356"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/onepress-customizer.png?resize=1025%2C374" alt="onepress-customizer" class="aligncenter size-full wp-image-52356" /></a></p>\n<p>OnePress includes controls in the customizer for setting social profiles in the footer. It also includes a setting for pasting in a MailChimp Action URL for a newsletter signup form.</p>\n<p>Check out a <a href="http://www.famethemes.com/preview/?theme=OnePress" target="_blank">live demo</a> of OnePress and click the menu items or scroll to view all of the sections. You can also toggle through desktop, tablet, and mobile views. Its smooth responsiveness and mobile-friendly menu are powered by Bootstrap.</p>\n<p>OnePress is an excellent example of how a single-page WordPress theme can be easily configurable via WordPress’ native customizer. It is available for <a href="https://wordpress.org/themes/onepress/" target="_blank">download from WordPress.org</a> or via your admin theme browser. The OnePress homepage on FameThemes has thorough <a href="http://docs.famethemes.com/article/43-onepress-documentation" target="_blank">documentation</a> for setting up each of the sections.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 11 Mar 2016 22:10:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:59:"WPTavern: WordPress 4.5 Improves Comment Moderation Screens";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52295";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordpress-4-5-improves-comment-moderation-screens";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6151:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/comments.png" rel="attachment wp-att-28128"><img class="aligncenter size-full wp-image-28128" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/comments.png?resize=984%2C455" alt="comments" /></a>Building on the momentum generated from the <a href="https://make.wordpress.org/core/2015/10/28/comment-object-and-query-features-in-4-4/">WordPress 4.4 development cycle</a>, WordPress 4.5 includes a number of enhancements to comments. In a <a href="https://make.wordpress.org/core/2016/03/09/comment-changes-in-wordpress-4-5/">post on the Make Core blog</a>, Rachel Baker explains the changes and what to expect.</p>\n<p>“WordPress 4.5 includes several ancient bug fixes and a few enhancements in the Comments component. We have <a href="https://core.trac.wordpress.org/query?status=closed&component=Comments&milestone=4.5&group=resolution&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority">closed 25 tickets</a>,” Baker said.</p>\n<p>The biggest change users will notice are the design improvements to the comment moderation screen when clicking one of the available links in a comment moderation email. Instead of appearing as a large block of plain-text, comments are formatted as long as they contain the following HTML elements.</p>\n<ul>\n<li>A – Links</li>\n<li>Abbr – Abbreviations</li>\n<li>Acronym – Defines an acronym</li>\n<li>B – Bold</li>\n<li>Blockquote – Specifies a section that is quoted from another source</li>\n<li>Cite – Defines the title of a work</li>\n<li>Code – Defines a piece of computer code</li>\n<li>Del – Defines text that has been deleted from a document</li>\n<li>Em – Emphasizes text</li>\n<li>I – Italicize</li>\n<li>Q – Defines a short quotation</li>\n<li>S – Specifies text that is no longer correct</li>\n<li>Strike – Defines strikethrough text</li>\n<li>Strong – Defines important text</li>\n</ul>\n<p>During testing, I noticed that in some cases, the text still appears in a large block as if the paragraph tag is ignored. I’ve already reported this issue to Baker who is looking into it. As you can see, the text that is bold, blockquoted, linked, and italicized, maintains its formatting on the moderation screen.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/CommentFormattingOnModerationScreen.png" rel="attachment wp-att-52346"><img class="size-full wp-image-52346" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/CommentFormattingOnModerationScreen.png?resize=1025%2C571" alt="Formatted Text On The Comment Moderation Screen" /></a>Formatted Text On The Comment Moderation Screen\n<p>In addition to visual enhancements, an Edit Comment link was added to the bottom of the comment. In the future, it would be nice to edit a comment in place during the moderation flow, similar to how Quick Edit works, instead of navigating to a different screen. Other notable changes include:</p>\n<ul>\n<li>Updated message styles that match other screens.</li>\n<li>The comment date is only wrapped in a link if the comment permalink exists.</li>\n<li><code>#wpbody-content</code> is appended to comment moderation email links for accessibility.</li>\n<li>The <code>rel=nofollow</code> attribute and value pair will no longer be added to relative or same domain links within <code>comment_content</code>.</li>\n<li><code>WP_Comment_Query</code> now supports the <code>author_url</code> parameter.</li>\n<li>The new <code>pre_wp_update_comment_count_now</code> filter allows you to bail out of updating the comment count for a given Post.</li>\n</ul>\n<h2>Maximum Comment Field Length</h2>\n<p>Those who publish lengthy comments will be happy to know that in WordPress 4.5, “the comment fields will enforce the maximum length of each field’s respective database column with hardcoded attributes. The hardcoded limits can be adjusted to accommodate custom database schemas using the <code>comment_form_default_fields</code> filter,” Baker said. By default, the limits are as follows:</p>\n<ul>\n<li>Comment: 65525 characters</li>\n<li>Name : 245 characters</li>\n<li>Email: 100 characters</li>\n<li>Url: 200 characters</li>\n</ul>\n<p>When comments are submitted in 4.5, they’ll be checked by the new <code>wp_get_comment_fields_max_lengths()</code> function and the <code>wp_get_comment_fields_max_lengths</code> filter. If a value is more than the limit, a <code>WP_Error</code> is displayed. If a user publishes a comment and sees an error page, they’ll be able to navigate back to their comment via a link rather than having to use their browser’s back button.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/CommentErrorNavigation.png" rel="attachment wp-att-52347"><img class="size-full wp-image-52347" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/CommentErrorNavigation.png?resize=724%2C354" alt="Comment Error Page Navigation" /></a>Comment Error Page Navigation\n<p>It’s great that comments continue to receive attention, even if there’s a long way to go. Unfortunately, the ability to <a href="https://core.trac.wordpress.org/ticket/33717">send a notification email when a comment is approved from moderation</a> was punted to a future release. I’m looking forward to reviewing plugins that allow users to easily configure the comment length limits as seen above. It would be nice to configure the limits so spammers see an error message because of their comment’s length rather than being placed into the moderation queue.</p>\n<p>To see and test these improvements yourself, download and install <a href="https://wordpress.org/news/2016/03/wordpress-4-5-beta-3/">WordPress beta 3</a> on a test site. If you think you’ve discovered a bug, please create a new post on the <a href="https://wordpress.org/support/forum/alphabeta" target="_blank">Alpha/Beta area</a> of the support forums. What do you think of these changes to comments in WordPress 4.5?</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 11 Mar 2016 20:07: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:85:"WPTavern: GitHub Now Supports Emoji Reactions for Pull Requests, Issues, and Comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=52304";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:93:"http://wptavern.com/github-now-supports-emoji-reactions-for-pull-requests-issues-and-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3903:"<p>Last month GitHub finally <a href="http://wptavern.com/github-responds-to-letter-from-open-source-project-maintainers" target="_blank">responded</a> to the <a href="http://wptavern.com/open-source-project-maintainers-confront-github-with-open-letter-on-issue-management" target="_blank">open letter on issue management</a> that has now been <a href="https://docs.google.com/spreadsheets/d/1oGsg02jS-PnlIMJ3OlWIOEmhtG-udTwuDz_vsQPBHKs/htmlview?usp=sharing&sle=true" target="_blank">signed</a> by nearly 2,000 open source project maintainers. GitHub officially apologized for the lack of communication and promised to add new features and iterate on the core experience.</p>\n<p>Shortly after acknowledging the letter, GitHub <a href="http://wptavern.com/github-introduces-issue-and-pull-request-templates" target="_blank">introduced templates for issues and pull requests</a>, which allow project maintainers to guide contributors towards submitting more meaningful contributions.</p>\n<p>One of the other major requests included in the open letter was a voting system to declutter +1’s from issues. While the +1’s constitute valuable feedback, maintainers need a better UI to help make these conversations easier to read.</p>\n<p>GitHub has now answered this request by <a href="https://github.com/blog/2119-pull-request-and-issue-reactions" target="_blank">adding emoji reactions to pull requests, issues, and comments</a>. Emoji support is nothing new but organizing it into reactions helps keep comments more manageable:</p>\n<blockquote><p>In many cases, especially on popular projects, the result is a long thread full of emoji and not much content, which makes it difficult to have a discussion. With reactions, you can now reduce the noise in these threads.</p></blockquote>\n<p>Reactions are currently limited to six emoji that are commonly used in GitHub conversations:</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/github-reactions.gif" rel="attachment wp-att-52312"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/github-reactions.gif?resize=917%2C359" alt="github-reactions" class="aligncenter size-full wp-image-52312" /></a></p>\n<p>Going forward, emoji reactions should make life easier for project maintainers, as they provide a quick way to assess consensus. If contributors embrace emoji reactions, the new feature can help maintainers gauge how widespread a bug is. They also serve to highlight the most helpful comments in a conversation.</p>\n<p>Emoji reactions, which were also recently adopted by Slack and Facebook, are making their way into more applications as an alternative way of offering feedback. Path was one of the first social apps to offer reactions in 2012. Buzzfeed has taken the feature to a new level with the addition of gif reaction options at the end of articles:</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/buzzfeed-reactions.png" rel="attachment wp-att-52327"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/buzzfeed-reactions.png?resize=1025%2C601" alt="buzzfeed-reactions" class="aligncenter size-full wp-image-52327" /></a></p>\n<p>A feature that was once limited to social networks is now changing communication in the workplace by facilitating conversations for large groups of people. While emoji reactions offer people more ways of expressing themselves, they can also serve as a metric, a gauge, and a voting system.</p>\n<p>The new <a href="http://wptavern.com/new-feature-plugin-for-wordpress-adds-emoji-reactions-to-posts" target="_blank">Reactions feature plugin</a> for WordPress received no small amount of criticism when it was introduced earlier this week. Even if the plugin never reaches the proposal stage, the conversation about the value of emoji reactions in modern communication is worth having.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 11 Mar 2016 16:10:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:32:"Matt: From Silence to Publishing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=46343";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"https://ma.tt/2016/03/from-silence-to-publishing/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:722:"<blockquote><p>My parents first noticed my stutter when I was three years old. For the longest time, I thought I would one day be rid of it. I went for speech therapy, I did fluency exercises, I prayed. But now, at age thirty, I’m fairly confident that it’s here to stay. […]</p>\n<p>Somehow, as I progressed through high school, the expectant pauses of those listening to me were more difficult to bear that the nicknames and name calling. Often, I would not speak up, even when I had something I wanted to say.</p>\n<p>My default setting was silence.</p></blockquote>\n<p><a href="http://heropress.com/essays/breaking-the-silence/">Read the rest of Mahangu Weerasinghe’s story, Breaking the Silence</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Mar 2016 22:48:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:67:"Post Status: Automattic has purchased a majority stake in Pressable";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=22262";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"https://poststatus.com/automattic-pressable/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5218:"<p><a href="https://automattic.com">Automattic</a> has purchased a majority stake in <a href="https://pressable.com/">Pressable</a>, one of the earliest managed WordPress hosting companies, founded in 2010. They were first known as ZippyKid, and <a href="https://poststatus.com/zippykid-pressable/">rebranded in 2013</a>.</p>\n<p>Automattic was already a shareholder in Pressable, most recently as the primary investor of <a href="https://www.crunchbase.com/organization/pressable#/entity">a $1.5 million round</a> in April of 2015.</p>\n<p>Technically, Automattic purchased common stock shares from Vid Luther, the CEO of Pressable. The monetary value of that common stock was, “enough to be debt free,” according to Vid. He owned about 37% of the company, or 4.5 million shares of 7 million shares of common stock (versus preferred shares). The company has also been in debt, reportedly close to $1 million worth.</p>\n<p>Automattic is now the majority owner of Pressable, and since Vid sold his shares, this is effectively an acquisition, and Automattic will be able to set the direction of the company from now on. Chris Lauzon, a Happiness Engineer at Automattic, is the interim CEO. There are other smaller investors in Pressable whom maintain their shares in the company, and it’s unknown what those investors will do.</p>\n<p>When I confirmed the exit with Vid, he said, “This is the best thing that I could have done for my family, or myself.” He was burning the candle at both ends, working twice as much as he wanted to be working, and wasn’t seeing the growth and success that he dreamed of for so many years. Pressable has always done okay in the managed WordPress market, but never outpaced quick-growth and heavily funded WP Engine, or the first entry to the market, Pagely. But Pressable has not been in a position of strength for a really long time.</p>\n<p>Pagely, WP Engine, and Pressable were really the first three into the market of managed hosting — a market that now includes nearly every big name host. It’s fascinating to see the different directions they’ve gone since. WP Engine <a href="https://www.crunchbase.com/organization/wp-engine#/entity">has raised</a> nearly $40 million over the years and gone for scale (Automattic also invested in their Series A), while Pagely has bootstrapped the whole way and really hit their stride in the last couple of years with a move to the higher end of the market. Dozens of managed hosting companies exist today.</p>\n<p>The work these three companies put into the early managed market got the attention of the biggest players in the market, like GoDaddy and EIG (owner of BlueHost, HostGator, and many more). Pressable fought hard, and Vid’s exit from the company comes after a long road with many challenges.</p>\n<p>Pressable has long been on Rackspace infrastructure, as Vid had relationships with them going back a long time; that infrastructure suffered <a href="http://wptavern.com/recent-pressable-outages-the-result-of-a-slow-loris-attack">a few catastrophic outages</a> from attacks that cost Pressable quite a few customers in January 2015, stunting progress.</p>\n<p>They nearly sold Pressable to WP Engine about two years ago, and decided against it at the 11th hour. The financing round last year was a period of rejuvenation for them, after a troubled period between the malicious attacks on their infrastructure and some internal issues, and the team was looking forward to new opportunities moving forward, including a potential focus on hosting catered for eCommerce with WordPress.</p>\n<p>Speaking to an agency owner with clients at Pressable, they told me they believe they, “always struggled to find their voice and audience in a space that quickly filled up.” I agree with the observation.</p>\n<p>Pressable’s revenues were under $2 million per year, and they have a team of about 10 people. Vid is no longer at the company; his last day was March 7th. It remains to be seen exactly what direction Automattic will take the company, though I presume it will continue business as usual for now, like they did <a href="https://poststatus.com/automattic-acquired-woocommerce-woothemes/">after the WooThemes acquisition</a>. While Automattic now owns the company, Matt Mullenweg made it clear to me that it’s not in their long term interest to be significantly involved in the traditional hosting business.</p>\n<p>Matt Mullenweg gave the following statement about the purchase:</p>\n<blockquote><p>Automattic is happy to be an investor in a number of WordPress-related companies and web hosts, and will continue to invest in the future. With Pressable we’ve unfortunately been forced to take a more active role to protect Pressable’s customers, employees, and our investment. Chris Lauzon, a Happiness Engineer at Automattic, has been temporarily working with the Pressable team to get everything in order, especially on the support side. Automattic continues to enjoy working with and supporting many great WordPress hosts, and we expect that Pressable will be able to operate fully independently in the future.</p></blockquote>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Mar 2016 21:59:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:64:"WPTavern: Do the Woo: A New Podcast for WooCommerce Store Owners";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52197";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wptavern.com/do-the-woo-a-new-podcast-for-woocommerce-store-owners";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3266:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/03/podcast.jpg" rel="attachment wp-att-52297"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/03/podcast.jpg?resize=960%2C472" alt="photo credit: Maciej Korsan" class="size-full wp-image-52297" /></a>photo credit: <a href="https://stocksnap.io/photo/IQVHQYS3GL">Maciej Korsan</a>\n<p>Bob Dunn, a WordPress educator better known on the web as <a href="https://bobwp.com/" target="_blank">BobWP</a>, is <a href="http://dothewoopodcast.com/welcome-to-do-the-woo-the-podcast-for-woocommerce-shop-owners/" target="_blank">launching a podcast for WooCommerce store owners</a>. “Do the Woo” will air weekly on Wednesdays with tips and tricks to help store owners attract more customers. Dunn plans to host guests involved in WooCommerce development, as well as store owners who will be invited to share their challenges and successes.</p>\n<p>After using WooCommerce for five years with client projects, as well as his own products, Dunn is prepared to share his store management experience with listeners. He’s used the plugin and many of its extensions for selling services, bookings, downloads, and currently for his membership site sales. He has also taught WooCommerce workshops and is preparing new courses for his students.</p>\n<p>Store owners are the targeted audience for Dunn’s new podcast with a focus on the business aspects of store management.</p>\n<p>“It will be a mix of topics, rather than a straight interviews format, which is what many of the other podcasts are,” Dunn said. “I’ll be sharing eCommerce news and tips from a WooCommerce perspective. I’ll Interview Woo experts, designers, developers and shop owners. I’ll also share ideas for using Woo in ways that the average user might not have considered. There will be some tech, but also marketing, sales and social, all around WC.”</p>\n<p>Dunn is aiming to reach both tech savvy users and those who would rather focus solely on the business of running a store.</p>\n<p>“Having built sites for shop owners and in my role as co-organizer for the Seattle WooCommerce meetup, I would have to say that it’s a mix of technical skill,” he said. “As with anything WordPress, it spans the spectrum. Some are very hands-on and comfortable with the technology, while others want to focus more on their products and sales and tend to avoid the tech end of things.”</p>\n<p>With an estimated 30% of e-commerce sites running on WooCommerce, a podcast focused on navigating the WooCommerce ecosystem as a store owner has a good chance of finding a decent audience with the right content strategy.</p>\n<p>“My goal is to help these shop owners by giving them marketing ideas and providing a forum for stories from some of their colleagues who have insights and experiences to share,” Dunn said.</p>\n<p>Interested listeners can subscribe at <a href="http://dothewoopodcast.com/" target="_blank">DoTheWooPodcast.com</a> where the first official episode will be published next week. Dunn will also be running WooCommerce-related posts on <a href="http://BobWP.com" target="_blank">BobWP.com</a> every Wednesday.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Mar 2016 21:27: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: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:93:"WPTavern: WPWeekly Episode 225 – Interview With Scott Kingsley Clark Lead Developer of Pods";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52290&preview_id=52290";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:99:"http://wptavern.com/wpweekly-episode-225-interview-with-scott-kingsley-clark-lead-developer-of-pods";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2883:"<p>In this episode of WordPress Weekly, <a href="http://marcuscouch.com/">Marcus Couch</a> and I interview <a href="https://scottkclark.com/">Scott Kingsley Clark</a>, lead developer of the <a href="http://pods.io/">Pods framework</a> plugin. Clark explains the financial and organizational structure of the <a href="https://pods.io/friends-of-pods/">Friends of Pods program</a> and how it benefits the plugin’s development.</p>\n<p>He also explains what the <a href="https://github.com/sc0ttkclark/wordpress-fields-api">Fields API project</a> is and its significance to WordPress. To make a long story short, it’s on par with the REST API’s inclusion in core. Last but not least, in a first for WordPress Weekly, Clark sings a song while strumming his Baritone Ukulele.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="http://wptavern.com/custom-content-type-manager-plugin-update-creates-a-security-nightmare">Custom Content Type Manager Plugin Update Creates a Security Nightmare</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href="https://wordpress.org/plugins/video-conferencing-with-zoom-api/">Video Conferencing with Zoom API,</a> by <a href="https://profiles.wordpress.org/j_3rk/">Deepen Bajracharya</a> from Nepal, gives you the power to manage Zoom Meetings from your WordPress dashboard. You can manage meetings, users, and display meetings in posts or pages using shortcodes.</p>\n<p><a href="https://wordpress.org/plugins/timeline-diagram/">Time Line Diagram</a>, by <a href="https://profiles.wordpress.org/md-shiddikur-rahman/">Shiddikur Rahman, </a>is a responsive WordPress Plugin that allows you to create a beautiful vertical storyline. You simply create posts, assign images, a date, and then Time Line Diagram will automatically populate the posts in chronological order, based on the year and date.</p>\n<p><a href="https://wordpress.org/plugins/easier-excerpts/">Easier Excerpts,</a> by <a href="https://profiles.wordpress.org/tommcfarlin/">Tom McFarlin </a>and <a href="https://profiles.wordpress.org/ericdye/">Eric Dye</a> from PressWare, automatically expands and contracts the post’s excerpt to eliminate unnecessary white space.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 16th 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 #225:</strong><br />\n</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Mar 2016 20:37:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:93:"WPTavern: Jetpack 3.9.3 Maintenance Release Adds Compatibility for WordPress 4.5 Custom Logos";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52250";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/jetpack-3-9-3-maintenance-release-adds-compatibility-for-wordpress-4-5-custom-logos";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2731:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/jetpack-logo.gif" rel="attachment wp-att-27470"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/jetpack-logo.gif?resize=700%2C276" alt="jetpack-logo" class="aligncenter size-full wp-image-27470" /></a></p>\n<p><a href="http://jetpack.com/2016/03/10/jetpack-3-9-3-maintenance-and-compatibility-release/" target="_blank">Jetpack 3.9.3 and 3.9.4</a> are now available. Although 3.9.3 is billed as a “maintenance and compatibility release,” there are a number of significant changes and improvements that make this an important release.</p>\n<p>WordPress 4.5 will introduce native <a href="http://wptavern.com/wordpress-4-5-to-introduce-native-support-for-a-theme-logo" target="_blank">support for a theme logo</a>. This will render Jetpack’s site logo feature obsolete. The 3.9.3 release of the plugin adds compatibility with WordPress 4.5 by ensuring that sites use core’s implementation for custom logos instead.</p>\n<p>According to Konstantin Obenland in a recent <a href="https://make.wordpress.org/core/2016/03/10/custom-logo/" target="_blank">post</a> on make/core, “Jetpack will do a migration behind the scenes to work with it out of the box.” He also said that WordPress core’s new custom logo feature will use <a href="http://wptavern.com/customizer-responsive-preview-and-selective-refresh-to-be-merged-into-wordpress-4-5" target="_blank">Selective Refresh</a>, which means that the preview will load instantly after the image has been uploaded.</p>\n<p>Notable enhancements in this release include:</p>\n<ul>\n<li>When using Carousel and Photon together, Jetpack will now link to the Photon version of full-sized images</li>\n<li>Performance improvements to Comments, Infinite Scroll, Markdown, Publicize, Sitemaps, and the Subscription widget</li>\n<li>Infinite Scroll: Introduced a later filter for settings</li>\n<li>New filters in the Top Posts Widget code</li>\n<li>oEmbed for Houzz.com</li>\n</ul>\n<p>The release also fixes an annoying bug in the Comments module that would reload the page when clicking ‘Reply.’</p>\n<p>Jetpack 3.9.4 was released right on the heels of 3.9.3 to fix an issue where some comments were being displayed incorrectly. The problem was significant enough to push out an additional release right away.</p>\n<p>Updating to the latest version of Jetpack will help your site work seamlessly with WordPress 4.5 when it is released the week of April 12. Check out the full <a href="https://wordpress.org/plugins/jetpack/changelog/" target="_blank">changelog</a> for both releases to see all of the enhancements and bug fixes.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Mar 2016 18:29: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: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:90:"WPTavern: WordCamp Europe 2016 Expands Attendee Capacity to 2200, Largest WordCamp to Date";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52248";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:99:"http://wptavern.com/wordcamp-europe-2016-expands-attendee-capacity-to-2200-largest-wordcamp-to-date";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2919:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/MuseumsQuartier.jpg" rel="attachment wp-att-52255"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/MuseumsQuartier.jpg?resize=800%2C448" alt="photo credit: rank.at" class="size-full wp-image-52255" /></a>photo credit: <a href="https://www.rank.at/en/blog-article/old-meets-new-in-the-heart-of-vienna-the-museumsquartier-vienna.html">rank.at</a>\n<p><a href="https://2016.europe.wordcamp.org/" target="_blank">WordCamp Europe 2016</a> is now on track to be the largest WordPress conference to date. The event, which will be held in Vienna June 24-26, has expanded its capacity to 2200 attendees (including micro-sponsors.) 400 additional tickets will be made available this week.</p>\n<p><a href="http://wptavern.com/wordcamp-europe-2016-sold-out-organizers-working-to-get-more-venue-space" target="_blank">The first 1700 seats sold out</a> six months in advance, causing organizers to scramble to expand the venue capacity to meet the overwhelming demand for more tickets. They were able to secure three additional halls in the Leopold Museum and the Baroque suites of the MuseumsQuartier, all located within a minute’s walking distance of each other.</p>\n<p>“With the camp happening in the city center, we wanted to make it easy for people to visit all the exquisite museums and sights in the area,” lead organizer Petya Raykovska said. As a bonus, conference goers will receive free access to the Leopold’s museum’s permanent exhibitions as part of their tickets.</p>\n<p>WordCamp Europe will also be hosting the largest WordPress contributor day on record. Organizers are planning for 500 attendees and are considering using one of Vienna’s universities as the venue.</p>\n<p>“We would have liked it to be in Leopold’s but unfortunately securing stable wifi for so many people in a museum is above our budget, so we’re looking for a venue that already has the infrastructure,” Raykovska said.</p>\n<p>Current attendees represent 68 different countries, and the organizing team now includes members from 10 countries spanning both Eastern and Western Europe. The team would like to host a WordPress community summit for Europe but have not received confirmation for this year.</p>\n<p>The host city for WordCamp Europe 2017 will be selected by the end of March. This will expand the organizing team for the current event, as future hosts will come on board to learn the ropes.</p>\n<p>The next batch of <a href="https://2016.europe.wordcamp.org/tickets/" target="_blank">tickets</a> for the event will go on sale Friday, March 11th at 10 AM CET. In the meantime, the 250 people who signed up for the <a href="http://eepurl.com/bNsAUr" target="_blank">waiting list</a> will receive an email to claim their tickets first via a special reservation link.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Mar 2016 10:35:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:73:"WPTavern: Write CSS in the Customizer with the Advanced CSS Editor 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=52194";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/write-css-in-the-customizer-with-the-advanced-css-editor-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:3247:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/paint-brush.jpg" rel="attachment wp-att-52240"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/paint-brush.jpg?resize=1024%2C538" alt="photo credit: cutting in - (license)" class="size-full wp-image-52240" /></a>photo credit: <a href="http://www.flickr.com/photos/10687935@N04/6021868900">cutting in</a> – <a href="https://creativecommons.org/licenses/by-nc/2.0/">(license)</a>\n<p>Last year WordPress developer <a href="http://www.hardeepasrani.com/" target="_blank">Hardeep Asrani</a> and the folks at <a href="http://themeisle.com/" target="_blank">ThemeIsle</a> released <a href="http://wptavern.com/customize-your-login-page-using-the-wordpress-customizer" target="_blank">Custom Login Customizer</a>, a plugin that allows users to design their own login pages in the customizer. Since that time core developers have made more progress on the customizer roadmap, allowing for more varied uses outside of a theme-related context.</p>\n<p>Last week the ThemeIsle team debuted <a href="https://wordpress.org/plugins/advanced-css-editor/" target="_blank">Advanced CSS Editor</a>, a new plugin in its arsenal that demonstrates another exciting use for the customizer. It makes use of <a href="http://wptavern.com/customizer-responsive-preview-and-selective-refresh-to-be-merged-into-wordpress-4-5" target="_blank">postMessage transport</a> to offer live previews of CSS changes while a user is writing them in the customizer. The plugin also allows users to write CSS for different device screen sizes, including desktop, tablet, and mobile phones. The demo below shows a screen capture of the plugin in action on my test site:</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/edit-css.gif" rel="attachment wp-att-52205"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/edit-css.gif?resize=924%2C558" alt="edit-css" class="aligncenter size-full wp-image-52205" /></a></p>\n<p>Seeing CSS edits updating in real time, instead of switching back and forth between a file editor and the frontend, was a refreshing experience. Having the ability to quickly write and preview media queries is also a convenient feature.</p>\n<p>Although many core contributors are not fond of having a file editor in WordPress, the feature has yet to be removed. Using the Advanced CSS Editor plugin makes you wonder what the core file editor might look like in the customizer, at least for CSS files.</p>\n<p>In the past, the customizer’s paint brush admin icon seemed like an ambitious stretch for a feature that, up until recently, felt clunky and slow to render previews. But recent advancements like <a href="https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/" target="_blank">selective refresh</a> will help to make the customizer provide a true live preview experience.</p>\n<p>The <a href="https://wordpress.org/plugins/advanced-css-editor/" target="_blank">Advanced CSS Editor</a> plugin is a good example of how fast previews can be in the customizer and how much of a better experience it offers over similar plugins that require multiple clicks to refresh.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 09 Mar 2016 23:13:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:58:"WPTavern: Jetpack Turns 5 and Celebrates With a New Domain";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52190";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/jetpack-turns-5-and-celebrates-with-a-new-domain";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9574:"<p>On this day in 2011, <a href="https://wordpress.org/plugins/jetpack/">Jetpack</a>, the project formerly known as “.org connect” inside Automattic, was released to the public. At the time, the team consisted of five people. Today, there are more than 50 people on various teams within the project, including, support, user experience, growth, and development. It’s also active on more than 1 million sites.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/Jetpack11Interface.png" rel="attachment wp-att-52213"><img class="size-full wp-image-52213" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/Jetpack11Interface.png?resize=989%2C855" alt="Jetpack 1.1 User Interface" /></a>Jetpack 1.1 User Interface\n<p>To celebrate the occasion, <a href="https://profiles.wordpress.org/professor44/">Jesse Friedman</a>, Experience Advocate at Automattic, <a href="http://jetpack.com/2016/03/09/5-years-in-jetpack-is-soaring-higher-than-ever/">shares four unique stories</a> from people who rely on Jetpack for their sites. The stories include a food blogger who uses 20 different modules, a developer who manages a number of sites, a new user who discovers the benefits of <a href="http://jetpack.com/support/photon/">Photon</a>, and a convert who prefers Jetpack over clunky alternatives.</p>\n<p>Jetpack’s support team is also celebrating its fifth birthday. According to Carolyn Sonnek, Happiness Rocketeer for Jetpack, the support team responded to over 93,000 support messages between email and the forums last year.</p>\n<p>In addition to Jetpack’s birthday, the site’s domain has moved from Jetpack.me to Jetpack.com. Automattic <a href="http://www.thedomains.com/2015/12/09/automattic-com-owner-of-wordpress-acquires-jetpack-com/">purchased the domain</a> in December 2015, from Jetpack Design of Santa Monica, CA. According to domain appraisal service <a href="http://www.estibot.com">Estibot.com</a>, its <a href="http://www.estibot.com/appraise.php?a=appraisal&k=f818b525ed659fb84fdca10f05e64f47&domain=jetpack.com">estimated value</a> is $51K.</p>\n<h2>Interview With Jesse Friedman</h2>\n<p>Friedman describes his journey working on Jetpack and shares what he’s learned since joining the team.</p>\n<p><strong>How long have you been on the Jetpack journey and what’s it been like?</strong></p>\n<p>I started using Jetpack in the Spring of 2012. I was working as the Director of Web Development at a web development and marketing company. I needed several different tools to round out the WordPress environment I was building to house a 2,000 site multisite that was growing by 50 sites a month.</p>\n<p>All of us on the team agreed that Jetpack solved a lot of different needs for us in one convenient plugin. As developers, we loved the out of the box features like Sharing, Publicize, and Monitor, and our clients loved Stats.</p>\n<p>In 2014, I left that company and joined up with the BruteProtect team. We worked hard to build a great security plugin that has been implemented on millions of websites. Later in 2014, we were excited to receive the news that we were joining the Jetpack team to continue BruteProtect as a Jetpack feature. Released last year, Jetpack Protect guards our users from malicious and brute force login attempts. It was truly something special to go from being a big fan of Jetpack to being on the team at Automattic.</p>\n<p><strong>What are some things you have learned through Jetpack development that have benefited you in other areas?</strong></p>\n<p>In the last 18 months, I’ve been doing a lot of work around the experience users have with Jetpack. Everything from individual features, to the connection process, to our website and how we communicate with our users. I’ve learned a lot about Jetpack and our community. The main thing being that, while Jetpack provides a lot of value to professionals and veterans, it is just<span class="copyonly"> as</span><i></i>, if not more important for new users.</p>\n<p><strong>Do you think Jetpack is a key component to WordPress reaching 50% market share?</strong></p>\n<p>The WordPress community as a whole is growing so quickly. Hosts provide really simple tools to build a WordPress website with a single click or even no clicks at all. That means that WordPress and Jetpack have to be just as intuitive and work to improve the new user experience.<i class="copy_only"></i></p>\n<p>This is especially important when we consider growing WordPress’ market share. I think everyone who builds something for WordPress, or publishes on WordPress, or organizes WordPress community events, are critical to growing to 50% or beyond.</p>\n<p>Any WordPress tool or plugin that can help a user build their website faster while providing maintenance tools like Manage or security tools like Protect is going to play an important role in the growth of market share.</p>\n<p>Jetpack specifically, is in a unique position because we can leverage the<span class="Apple-converted-space"> </span><a href="http://wordpress.com/" target="_blank" rel="noreferrer">WordPress.com</a><span class="Apple-converted-space"> </span>infrastructure and network to build extremely powerful tools (like a global CDN) in an otherwise simple interface. Not to mention Jetpack’s popularity, it’s one of the most popular plugins across all of WordPress. Which is reinforced for me as I spend more and more time with our users, who are quite happy.</p>\n<h2>Paid Services in Jetpack Remain at a Minimum</h2>\n<p>Jetpack has come a long way since its inception but it’s interesting to look back at 2011 and review what some in the WordPress media world had to say about it. Ryan Imel, of WPCandy.com, <a href="http://wpcandy.com/thinks/jetpack-means-more-than-features-for-dot-org-users/">looked into new opportunities for Automattic</a> as Jetpack provided a direct line into millions of self hosted sites.</p>\n<blockquote><p>Jetpack is now a direct line in to WordPress.org Dashboards for Automattic. When (not <em>if</em>) Automattic releases a new software as a service, a simple update to Jetpack will bring that news in front of a serious number of WordPress.org users. This is a big step for Automattic, since up to now their reach has been mostly within the walls of WordPress.com. Now Jetpack is not only available for anyone to use, but it will come preinstalled with one-click installs of WordPress with a number of hosting providers.</p></blockquote>\n<p><a href="http://jetpack.com/2011/03/09/blast-off/">Jetpack’s goal</a> was to provide many of the useful features on WordPress.com to self-hosted users and while it does that, the business portion of the plugin can’t be ignored. Automattic owned services VideoPress and VaultPress are presented to millions of users who may otherwise not have known about them.</p>\n<p>Today, Jetpack contains only two modules that require a paid subscription, VideoPress and VaultPress. So while it would be easy to increase Jetpack’s revenue generating capabilities by cramming it with commercial services and paid add-ons, Automattic has not done so.</p>\n<p>At the end of the post, Imel asks a question that couldn’t be answered at the time, “In a large sense, what does Jetpack mean to the world of WordPress?” Fast forward five years later, we know that it’s a key component that’s helping <a href="http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share">WordPress move towards 50% market share</a>.</p>\n<h2>Jetpack Pride</h2>\n<p>The five year mark is a great milestone for any plugin and a great time to reflect. In Jetpack’s five year existence, Matt Mullenweg, WordPress co-founder, says what he’s most proud of, “I’m most proud of the fact that people who start using WordPress and Jetpack at the same time are more likely to be using WordPress a month later. It brings us closer to WordPress’ over-arching goal of democratizing publishing, giving users the ability to have the best of both worlds: open source and cloud.” Mullenweg said.</p>\n<h2>Share Your Jetpack Story</h2>\n<p>The Jetpack team is looking for feedback on how it’s saved you time, help you build websites faster, helped optimize your sites, etc. You can share your story by publishing it in the comments of this post or by using the <a href="https://twitter.com/search?q=%23JetpackTurns5&src=typd"><strong>#JetpackTurns5</strong></a> hashtag on Twitter. One of my favorite stories so far is from Cécile Rainon who discovered WordPress through Jetpack and now works for Automattic.</p>\n<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Discovered WordPress through this plugin and I\'m now a proud Automattician! <a href="https://t.co/r0yCKYzqmI">https://t.co/r0yCKYzqmI</a> via <a href="https://twitter.com/jetpack">@jetpack</a> <a href="https://twitter.com/hashtag/jetpackturns5?src=hash">#jetpackturns5</a></p>\n<p>— Cécile (@cecile_rainon) <a href="https://twitter.com/cecile_rainon/status/707594514433753088">March 9, 2016</a></p></blockquote>\n<p></p>\n<p>We use a number of modules to provide basic functionality such as contact forms, custom CSS, Likes, Protect, and more. In fact, every module except for five are activated on the Tavern. Using one plugin that handles a lot of the functionality we use on a daily basis is easier to maintain than using a number of separate plugins.</p>\n<p>Happy birthday, Jetpack and here’s to five more!</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 09 Mar 2016 22:02:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:21:"Matt: Jetpack Turns 5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=46331";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://ma.tt/2016/03/jetpack-turns-5/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:761:"<p>Today the <a href="http://jetpack.com/2016/03/09/5-years-in-jetpack-is-soaring-higher-than-ever/">Jetpack plugin turns five years old</a>. Who woulda thunk it? It’s one of the most popular plugins in WP history, and sites that include it as part of their WordPress install are more likely to to have engaged and active users — we’ve even seen it reduce churn on major web hosts. While there’s been a lot that’s happened in the Jetpack plugin so far, what’s around the corner has me even more excited. <img src="https://s.w.org/images/core/emoji/72x72/1f600.png" alt="😀" class="wp-smiley" /> <img src="https://s.w.org/images/core/emoji/72x72/1f680.png" alt="🚀" class="wp-smiley" /> P.S. Check out that new domain.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 09 Mar 2016 14:27: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: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:62:"WPTavern: WordPress 4.5 Adds Inline Editing to the Links Modal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52174";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wptavern.com/wordpress-4-5-adds-inline-editing-to-the-links-modal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1777:"<p>Today Andrew Ozz, one of the maintainers on <a href="https://make.wordpress.org/core/components/" target="_blank">WordPress’ core Editor component</a>, announced some <a href="https://make.wordpress.org/core/2016/03/08/link-modal-wplink-changes-in-wordpress-4-5/" target="_blank">major improvements coming to the links modal</a> in the 4.5 release. Currently, when adding a link to text in the visual editor, a modal launches where you can paste in the URL, add link text, and set the target to open in a new window. The modal also expands to let you search for and link to existing content.</p>\n<p>The TinyMCE link modal in WordPress 4.5 will allow for inline editing. It can actually detect when a user is entering a URL or attempting to search for one. The search uses jQuery UI Autocomplete, making it fast and easy to search through existing content. The gears icon launches the full modal with advanced options to set the target and title attribute.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/links-modal.gif" rel="attachment wp-att-52178"><img class="aligncenter size-full wp-image-52178" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/links-modal.gif?resize=838%2C496" alt="links-modal" /></a></p>\n<p>The links modal improvements are the result of WordPress core contributor Ella Iseulde Van Dorpe’s work on a <a href="https://core.trac.wordpress.org/ticket/33301" target="_blank">ticket</a> opened to make this UI similar to the way Google Docs handles links. The experience of linking in the visual editor is now tighter and much more elegant and intuitive. This is one of the many small, yet impactful ways that WordPress is improving with each incremental release.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 09 Mar 2016 00:34:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:72:"WPTavern: New Feature Plugin for WordPress Adds Emoji Reactions to Posts";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=52097";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/new-feature-plugin-for-wordpress-adds-emoji-reactions-to-posts";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5822:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/emoji.jpg" rel="attachment wp-att-52168"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/emoji.jpg?resize=1024%2C576" alt="photo credit: Emoji - (license)" class="size-full wp-image-52168" /></a>photo credit: <a href="http://www.flickr.com/photos/59525227@N08/25617662995">Emoji</a> – <a href="https://creativecommons.org/licenses/by-sa/2.0/">(license)</a>\n<p><a href="http://pento.net/" target="_blank">Gary Pendergast</a> is looking to bring WordPress users a new way of giving feedback on posts that goes beyond simple text-based comments. A core committer and emoji aficionado, Pendergast spearheaded the effort to add <a href="https://make.wordpress.org/core/tag/emoji/" target="_blank">emoji support</a> to WordPress and is now working on an <a href="https://make.wordpress.org/core/2016/03/07/reactions/" target="_blank">emoji reactions feature plugin</a>.</p>\n<p>The plugin is being developed to offer reactions that are similar to those available in Slack and Facebook.</p>\n<p>“It works much the same way as a Like button, but provides a wider range of reactions so readers can give more nuanced feedback without needing to go to the effort of leaving a comment,” Pendergast said. “This also allows readers to provide the same level of interaction in situations where a ‘Like’ is an inappropriate message to send, as Eric Meyer describes in his post about <a href="http://meyerweb.com/eric/thoughts/2014/12/24/inadvertent-algorithmic-cruelty/" target="_blank">Inadvertent Algorithmic Cruelty</a>.”</p>\n<p>The <a href="https://wordpress.org/plugins/react/" target="_blank">Reactions plugin</a> is available on WordPress.org as a proof-of-concept with basic features:</p>\n<ul>\n<li>Allows for reactions to posts</li>\n<li>REST API endpoints for storing and retrieving reactions</li>\n<li>An exceedingly ugly emoji selector</li>\n</ul>\n<p>The plugin is under active development but those who want to get involved testing it early can log bugs on the project’s <a href="https://github.com/pento/react/issues" target="_blank">GitHub issues queue</a>. Reactions requires the <a href="https://wordpress.org/plugins/rest-api/" target="_blank">WP REST API</a> plugin. Once both are installed, you’ll see an emoji reactions button beneath the post content.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/reactions.png" rel="attachment wp-att-52147"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/reactions.png?resize=1025%2C642" alt="reactions" class="aligncenter size-full wp-image-52147" /></a></p>\n<p>Clicking on the button will expand a panel of emoji reactions. The emoji picker UI is very basic but Pendergast is still investigating different options for display.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/reactions-expanded.png" rel="attachment wp-att-52161"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/reactions-expanded.png?resize=1025%2C639" alt="reactions-expanded" class="aligncenter size-full wp-image-52161" /></a></p>\n<p>The post on the make/core blog immediately drew heated criticism and opposition. One of the more restrained reactions from <a href="https://make.wordpress.org/core/2016/03/07/reactions/#comment-29449" target="_blank">@chatmandesign</a> praises the idea for personal blogs but discourages its development beyond a plugin:</p>\n<blockquote><p>I have to agree with what rapidly seems to be becoming the general consensus: Great idea for a plugin – if I ever setup my own personal blog, I might even use it – but I can’t imagine why this would be considered for Core. I would end up having to disable it on nearly every website I build, which are primarily business websites where this sort of goofy element would simply be inappropriate.</p></blockquote>\n<p>Others commented that while it may not be a good candidate for core, having a canonical plugin for handling emoji reactions could be beneficial for the community.</p>\n<p>Pendergast responded to critics by reiterating the casual exploratory nature of the project.</p>\n<p>“Right now, it isn’t being considered for Core – it’s being explored as a possible feature in the future,” he said. “The idea still has to prove itself in terms of usefulness, usability, and general appeal. In terms of how close this is to landing in Core, it’s about the same as a new ticket being opened on Trac.”</p>\n<p>Thanks in large part to mobile devices, emoji are now inescapable staples of modern communication for digitally connected people. Even so, the question of bringing emoji reactions into WordPress core may prove to be a deeply polarizing issue.</p>\n<p>In one camp you have emoji fanatics who would go so far as to create a 25,000+ character <a href="http://www.huffingtonpost.com/2015/04/16/alice-in-wonderland-emoji_n_7066576.html" target="_blank">emoji translation of Alice in Wonderland</a>. On the other side are equally impassioned emoji haters who think the characters are unimaginative and that using emoji <a href="http://www.theguardian.com/commentisfree/2014/jun/18/adults-emoji-grow-up-emoticons-teenagers" target="_blank">perpetuates “linguistic incompetence”</a>.</p>\n<p>If the Reactions feature plugin makes it to the core proposal stage, the WordPress community will be in for some interesting debates. If you want to get in on the fun of emoji reactions and lend a hand to the project, you can join the #feature-reactions channel in Slack. Development of the plugin will continue on <a href="https://github.com/pento/react" target="_blank">GitHub</a> and will be periodically pushed to WordPress.org.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 08 Mar 2016 21:56:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:80:"WPTavern: Automattic Releases WordPress Plugin for Facebook’s Instant Articles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52069";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/automattic-releases-wordpress-plugin-for-facebooks-instant-articles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5930:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/facebook-instant-articles-wordpress.jpg" rel="attachment wp-att-52114"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/facebook-instant-articles-wordpress.jpg?resize=1025%2C577" alt="facebook-instant-articles-wordpress" class="aligncenter size-full wp-image-52114" /></a></p>\n<p>Today the WordPress.com VIP team <a href="https://vip.wordpress.com/2016/03/07/new-wordpress-plugin-for-facebook-instant-articles/" target="_blank">released</a> a plugin for Facebook’s <a href="https://instantarticles.fb.com/" target="_blank">Instant Articles</a>, which will be <a href="http://media.fb.com/2016/02/17/opening-up-instant-articles/" target="_blank">open to any publisher</a> starting April 12, 2016. Automattic partnered with Facebook and VIP-Featured-Partner agency <a href="https://en.dekode.no/?noredirect=en_US" target="_blank">Dekode</a> to produce a plugin that outputs a compliant feed of posts wrapped in the required markup for Facebook.</p>\n<p>Instant Articles for WordPress is now <a href="https://vip.wordpress.com/2016/03/07/new-wordpress-plugin-for-facebook-instant-articles/" target="_blank">available on GitHub</a> and is also coming soon to the WordPress plugin directory.</p>\n<p>Publishers must go through a review process to ensure that their posts are properly formatted and compliant before being allowed to push content via Instant Articles. Once approved, articles will load nearly instantly on mobile devices. According to Facebook, the speed is as much as 10 times faster than the standard mobile web.</p>\n<p>“We had heard from a lot of WordPress publishers that they were eager to try out the Instant Articles program — based on the speed and user experience optimized for Facebook’s audience,” VP of Platform Services at Automattic Paul Maiorana said. “It’s still quite early, but we wanted to move quickly to ensure that WordPress and WordPress.com VIP publishers can take advantage of Instant Articles as soon as it opens up to everyone. And we were excited to work with Facebook to help make that happen.”</p>\n<p>Facebook is working to create the best news feed on the web. More content delivered instantly means more advertising revenue for the social network. Publishers that make their content available via Instant Articles also have the opportunity to earn advertising revenue. If publishers sell their own ads, they get to keep 100% of the revenue. If they opt to use the Facebook Audience Network, they keep 70%.</p>\n<p>Automattic’s open source Instant Articles plugin does not have built-in options for serving ads. According to Maiorana, further customization will be left up to the publishers.</p>\n<p>“The new plugin is meant to be a starting point for publishers, from which they can customize design, advertising options, and which articles they choose to syndicate,” Maiorana said.</p>\n<p>Instant Articles is not yet available to WordPress.com users, but Maiorana said that it’s something they will explore in the future.</p>\n<h3>Instant Articles Is Geared Towards News Publishers</h3>\n<p>You may be wondering if your brand or business should use the new plugin and start pursuing the approval process with Facebook. The current implementation of Instant Articles is not for everyone. A Facebook spokesperson told <a href="https://contently.com/strategist/2016/02/17/facebook-will-likely-open-instant-articles-to-brands-publishers-grandma/#footnote-1" target="_blank">Contently</a>:</p>\n<blockquote><p>In April, Instant Articles will be open to any publishers that wish to join, but it is primarily designed for news publishers. While other types of publishers will have the option to create Instant Articles, in many cases there are other formats on Facebook that will better serve their needs.</p></blockquote>\n<p>Facebook’s algorithm is likely to prioritize Instant Articles, as faster-loading articles are shared more often.</p>\n<p>However, publishing to Instant Articles requires no small amount of technical skill, especially if you’re not already on a platform like WordPress that offers support via a plugin. Even with the help of Automattic’s plugin you still need to make a number of customizations to add branding and advertising while the underlying APIs are still in flux.</p>\n<p>Publishers will need to decide how much control of their content they are willing to give up to Facebook in exchange for articles that load instantly. Funneling readers to Instant Articles hosted on Facebook has the potential to undermine direct mobile traffic. Facebook is also <a href="http://money.cnn.com/2016/02/04/technology/online-censorship-facebook-twitter/" target="_blank">notorious for its censorship</a>. What will Automattic’s response be to its partner if Facebook decides to censor WordPress publishers on its network? Maiorana wouldn’t directly answer this question.</p>\n<p>“Our goal at WordPress.com VIP is to help publishers have the tools and the freedom to make their own decisions — and to move quickly in experimenting across platforms,” Maiorana said. “This is another new way for them to do that.”</p>\n<p>New mobile publishing channels like Instant Articles and <a href="http://wptavern.com/automattic-adds-amp-support-to-wordpress-com-releases-plugin-for-self-hosted-sites" target="_blank">Google’s AMP project</a> require developer resources for publishers to get on board. Both of these tech giants are clawing for content distribution. They each have their own unique requirements that publishers will have to meet to in order to have their content found and prioritized. Each publisher will have to decide whether the improved speed, exposure, and/or ad revenue will be enough to make these efforts worthwhile.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 07 Mar 2016 21:30:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:57:"WPTavern: The Inaugural WPCampus Set For July 15-16, 2016";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52130";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wptavern.com/the-inaugural-wpcampus-set-for-july-15-16-2016";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1550:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/WPCampusFeaturedImage.png" rel="attachment wp-att-48353"><img class="aligncenter size-full wp-image-48353" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/WPCampusFeaturedImage.png?resize=811%2C161" alt="WPCampus Featured Image" /></a><a href="https://2016.wpcampus.org/">WPCampus</a>, a WordPress event geared towards non-profits and higher education, will take place on July 15-16, 2016 in Sarasota, FL at the <a href="https://2016.wpcampus.org/location/">University of South Florida Sarasota-Manatee</a> campus. The team is looking for <a href="https://2016.wpcampus.org/speakers/">speakers</a> and <a href="https://2016.wpcampus.org/sponsors/">sponsors</a>. Speakers who are accepted will receive free admission and swag.</p>\n<p>Organizers are open to stories as they relate to WordPress and education. According to the site, the intended audience will include faculty, students, developers, site designers, devops/sysadmins, content developers, instructional designers, marketing and admissions people, and institutional leaders. The team is most interested in case studies, conceptual discussions, best practices, and works-in-progress.</p>\n<p>If you’re interested in speaking at the first WPCampus, <a href="https://2016.wpcampus.org/speakers/">speaker submissions</a> close at midnight EST on March 21, 2016. WPCampus is not affiliated or endorsed by the WordPress Foundation and is its own community run entity.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 07 Mar 2016 20:44:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:80:"WPTavern: Custom Content Type Manager Plugin Update Creates a Security Nightmare";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52117";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/custom-content-type-manager-plugin-update-creates-a-security-nightmare";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4563:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/03/CustomContentTypeManagerPluginHeader.png" rel="attachment wp-att-52125"><img class="aligncenter size-full wp-image-52125" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/03/CustomContentTypeManagerPluginHeader.png?resize=758%2C237" alt="Custom Content Type Manager Plugin Header" /></a>Over the years, we’ve told users that the <a href="https://wordpress.org/plugins/">WordPress plugin directory</a> is the safest place to download and install plugins from. This is due in large part to <a href="http://wptavern.com/behind-the-scenes-in-the-wordpress-plugin-directory-with-mika-epstein">the dedication of volunteers</a> who act as gatekeepers and review plugins before they’re added to the directory. Plugin updates, however don’t receive the same scrutiny as there’s too many of them.</p>\n<p>Sucuri Security representative Denis Sinegubko, <a href="https://blog.sucuri.net/2016/03/when-wordpress-plugin-goes-bad.html">published an in-depth post</a> that explains how an update to the <a href="https://wordpress.org/plugins/custom-content-type-manager/">Custom Content Type Manager</a> plugin, which is active on more than 10k sites, turned into a security nightmare for some users. Custom Content Type Manager enables users to create custom fields for dropdowns, images, and more.</p>\n<p>According to Sinegubko, a user by the name of Wooranker was added as a maintainer on February 5th. Wooranker is also listed as a contributor to the <a href="https://wordpress.org/plugins/postie/">Postie plugin</a> but <a href="https://blog.sucuri.net/2016/03/when-wordpress-plugin-goes-bad.html#comment-2552555345">according to its author</a>, Wooranker does not and will not have access to change the source code. On February 19th, Wooranker <a href="https://plugins.trac.wordpress.org/changeset/1354314/custom-content-type-manager">pushed out an update</a> that included the CCTM_Communicator.php file and inserted new code into the plugin’s index.php file.</p>\n<p>On March 1st, MartinCDS <a href="https://wordpress.org/support/topic/vulnerability-on-auto-updatephp">created a thread</a> in the plugin’s support forums and reported the following:</p>\n<blockquote><p>I recently updated a few of my sites and since then my site was hacked. According to my log files the code was injected via custom-content-type-manager/auto-update.php. I navigated there and there is a form input. Please fix this in the next update. I don’t see a reason for an automatic update anyways- this is a known vulnerability by hackers.</p></blockquote>\n<p>Other users also reported that their sites had been hacked due to the auto-update.php file. This file allowed the attacker to upload a c.php file into the plugin directory. The c.php file was used to create a more sophisticated attack shell named wp-options.php in the site’s root directory. The c.php file was deleted once wp-options.php was created, making it harder to detect.</p>\n<h2>Custom Content Type Manager is Fixed</h2>\n<p>Samuel ‘Otto’ Wood, who helps maintain WordPress.org, <a href="https://blog.sucuri.net/2016/03/when-wordpress-plugin-goes-bad.html#comment-2553534185">left a comment on the article</a> acknowledging that the plugin has been fixed on the directory:</p>\n<blockquote><p>The plugin has been updated to 0.9.8.9, which is a copy of 0.9.8.6 (the last good version). This will remove the malicious code from the plugin, but not any code that was added to sites in the meantime. Please follow through with the Mitigation steps given by Denis in the post.</p></blockquote>\n<p>To learn how the attack works, insight into who Wooranker may be, and to see a list of mitigation steps, I encourage you to <a href="https://blog.sucuri.net/2016/03/when-wordpress-plugin-goes-bad.html">read the post</a>.</p>\n<h2>A Concerning Reminder</h2>\n<p>I feel bad for those who updated their plugins from a trusted source only to make their sites vulnerable to attack. Unfortunately, there is no way to prevent situations like these from occurring unless every line of code for each update is scrutinized by a security professional, but that doesn’t scale.</p>\n<p>This doesn’t detract the trust I have for the WordPress plugin directory but users need to realize that what happened with Custom Content Type Manager can happen to other plugins as well. Your best defense is to use security scanning software of your choice that keeps track of file changes and to make routine backups.</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, 07 Mar 2016 19:49:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:27:"Matt: Irish Times Interview";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=46328";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"https://ma.tt/2016/03/irish-times-interview/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:208:"<p>An interview <a href="http://www.irishtimes.com/business/technology/matt-mullenweg-how-wordpress-got-the-whole-world-blogging-1.2558828">I did with the Irish Times when I was in Dublin is now live</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, 07 Mar 2016 19:32: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: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:62:"WPTavern: Magnus: A Bold New Photoblogging Theme for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=52061";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"http://wptavern.com/magnus-a-bold-new-photoblogging-theme-for-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3831:"<p><a href="https://wordpress.org/themes/magnus/" target="_blank">Magnus</a> is a beautiful new photoblogging theme that landed in the WordPress Theme Directory last week. It was created by <a href="http://hugobaeta.com/" target="_blank">Hugo Baeta</a>, whose work you may have seen in the <a href="https://wordpress.com/design-handbook/" target="_blank">WordPress.com design handbook</a> and last year’s <a href="http://wptavern.com/wordpress-4-2-introduces-subtle-refinements-to-the-default-admin-color-scheme" target="_blank">subtle refinements to the default admin color scheme</a>. Magnus is Baeta’s first theme to be approved for the official directory.</p>\n<p>The theme puts the spotlight on your photographs with full-width featured images for posts. If the homepage is set to display posts, the most recent post’s title and featured image will show at the top of the page.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/magnus-home-menu.png" rel="attachment wp-att-52076"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/magnus-home-menu.png?resize=1025%2C573" alt="magnus-home-menu" class="aligncenter size-full wp-image-52076" /></a></p>\n<p>Baeta applied a unique pulse effect to the full-width images using CSS3 keyframes animation with the scale property. The resulting effect almost makes it appear as though you are traveling through the image. The theme also includes several other subtle, tasteful CSS animations for menus, toggling, and page transitions.</p>\n<p>If the homepage is set to display posts, they will tile uniformly under the most recent one with titles and featured images.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/magnus.png" rel="attachment wp-att-52073"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/magnus.png?resize=1025%2C1408" alt="magnus" class="aligncenter size-full wp-image-52073" /></a></p>\n<p>Baeta’s careful attention to typography is evident in the highly readable single post design. Magnus uses a combination of Google fonts – Karla for paragraph text and Montserrat for headers.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/03/single-post.png" rel="attachment wp-att-52074"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/03/single-post.png?resize=1025%2C666" alt="single-post" class="aligncenter size-full wp-image-52074" /></a></p>\n<p>The theme includes one widgetized area, a sidebar that can be toggled into view from the right side of the screen. The sidebar slides smoothly into view and is semi-transparent, which makes for a less jarring experience than other similar sidebar implementations.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/magnus-sidebar.png" rel="attachment wp-att-52072"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/magnus-sidebar.png?resize=1025%2C510" alt="magnus-sidebar" class="aligncenter size-full wp-image-52072" /></a></p>\n<p>Left, right, and centered overhanging pull quotes can be easily created by aligning blockquotes to either side or the center.</p>\n<p>One thing I appreciate about this theme is that it makes almost all of the design decisions and allows very few design-related customizer options. You can change the header image and the header text color, but that’s it. The design is all about showcasing your images.</p>\n<p>If you need your content to make a big impact, <a href="https://wordpress.org/themes/magnus/" target="_blank">Magnus</a> is solid option that doesn’t require configuring a long list of options. You can <a href="https://wordpress.org/themes/magnus/" target="_blank">download it for free from WordPress.org</a> or via your admin themes browser.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 07 Mar 2016 16:16:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:59:"WPTavern: WPWeekly Episode 224 – Preview of WordPress 4.5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52049&preview_id=52049";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wptavern.com/wpweekly-episode-224-preview-of-wordpress-4-5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2586:"<p>In our first episode in more than a month, <a href="http://marcuscouch.com/">Marcus Couch</a> and I discuss the latest WordPress news, including a preview of WordPress 4.5. I share my experience taking a month off away from WordPress and the lessons learned in doing so. This show is a little rough around the edges but we’ll be back to our normal selves starting next week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/">WordPress 4.5 Beta 1 Released</a><br />\n<a href="http://wptavern.com/wordpress-4-5-to-introduce-native-support-for-a-theme-logo">WordPress 4.5 to Introduce Native Support for a Theme Logo</a><br />\n<a href="http://wptavern.com/poetica-acquired-by-conde-nast-open-source-wordpress-plugin-will-be-discontinued">Poetica Acquired by Condé Nast, Open Source WordPress Plugin Will Be Discontinued</a><br />\n<a href="http://wptavern.com/stripe-payment-gateway-for-woocommerce-is-now-available-for-free">Stripe Payment Gateway for WooCommerce Is Now Available for Free</a><br />\n<a href="http://wptavern.com/automattic-adds-amp-support-to-wordpress-com-releases-plugin-for-self-hosted-sites">Automattic Adds AMP Support to WordPress.com, Releases Plugin for Self-Hosted Sites</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href="https://wordpress.org/plugins/migrate-ninja-forms-to-gravity-forms/">Migrate Ninja Forms to Gravity Forms</a> is a plugin that does exactly what it’s name implies. It migrates content from Ninja Forms to Gravity Forms.</p>\n<p><a href="https://wordpress.org/plugins/amp-analytics/">AMP Analytics</a> extends Google’s AMP to allow you to add analytics to your Accelerated Mobile Pages.</p>\n<p><a href="https://wordpress.org/plugins/pl-platform/">PageLines Platform 5</a> is a complete drag-and-drop editing system. It works with any standard WordPress theme.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 9th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #224:</strong><br />\n</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 04 Mar 2016 20:29:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:43:"WPTavern: In Case You Missed It – Issue 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=51929";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wptavern.com/in-case-you-missed-it-issue-3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7794:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png" rel="attachment wp-att-50955"><img class="size-full wp-image-50955" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?resize=676%2C292" alt="In Case You Missed It Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/112901923@N07/16153818039">Night Moves</a> – <a href="https://creativecommons.org/licenses/by-nc/2.0/">(license)</a>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is part of a new series where I share an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2>Automattic Stands with Apple</h2>\n<p>In light of the recent court order issued against Apple in the <a href="http://www.nytimes.com/2016/02/18/technology/apple-timothy-cook-fbi-san-bernardino.html?_r=0">San Bernardino case</a>, Automattic has <a href="https://transparency.automattic.com/2016/03/03/automattic-and-wordpress-com-stand-with-apple-to-support-digital-security/">taken a stand</a> with Apple by joining other influential technology companies in filing an amicus brief in support of Apple’s legal challenge.</p>\n<p>The court order requires Apple to write code that acts as a backdoor and weakens security on iPhones. Automattic’s transparency blog explains why they’re siding with Apple:</p>\n<blockquote><p>Like Apple, we respect the rule of law, and honor the valid government orders we receive to furnish data in connection with criminal investigations. But deliberately weakening information security, as Apple has been asked to do here, is a step too far that makes everyone less safe.</p>\n<p>Undermining security measures – even in situations where there appear to be good intentions – will inevitably have unintended consequences for regular people.</p>\n<p>We stand with Apple in both condemning terrorism and defending the privacy and security of our users. If Automattic was faced with a government order like the one issued in San Bernadino, we, like Apple, would do everything within the law to challenge it. That’s why we’re joining with a sizable group of leading tech companies today to support Apple in this case.</p></blockquote>\n<p>If you’d like to learn more about why the court order is a terrible idea, check out the <a href="https://cloudup.com/iZG9vzAV3U3">full legal brief</a> submitted by Automattic to the United States District Court.</p>\n<h2>The Ethics of Sharing GPL Code</h2>\n<p>Tom McFarlin shares his thoughts on working with clients, educating people, and <a href="https://tommcfarlin.com/sharing-gpl-code/">sharing GPL code</a> from client projects. If you’re a consultant, how do you convince clients to give you permission to release code they pay for and you write to the public under the GPL?</p>\n<p>After reading the post, <a href="https://tommcfarlin.com/sharing-gpl-code/#comment-881900">check out this comment</a> left by Darrinb.</p>\n<h2>Gravity Forms Becomes 2nd Gold Partner</h2>\n<p>Around this time last year, Scott Kingsley Clark <a href="http://wptavern.com/pods-lead-developer-scott-kingsley-clark-launches-friends-of-pods-funding-campaign">launched a new sponsorship program</a> called Friends of Pods. The funding is used to decrease private development of Pods and focus more on Pods core, related plugins, and integrations. Gravity Forms, the popular form creation plugin created by Rocketgenius is the <a href="http://pods.io/2016/03/04/announcing-our-2nd-gold-partner-gravity-forms/">second gold partner</a> in the program.</p>\n<p>In addition to the partnership news, the <a href="https://wordpress.org/plugins/pods-gravity-forms/">Pods Gravity Forms add-on</a> is now available on the WordPress plugin directory.</p>\n<h2>ActiveDen is No More</h2>\n<p><a href="http://activeden.net/">ActiveDen</a>, a site where people could sell Flash assets and was the first site in the Envato Marketplace has officially closed its doors. The company <a href="http://inside.envato.com/farewell-activeden/">shut it down</a> in order to focus on things that have more impact.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/ActiveDenShutsDown.png" rel="attachment wp-att-52052"><img class="size-full wp-image-52052" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/ActiveDenShutsDown.png?resize=812%2C303" alt="ActiveDen Shuts Down" /></a>ActiveDen Shuts Down\n<p>To learn more about the history of ActiveDen, I encourage you to watch this 45 minute video featuring Collis Ta’eed where he talks about the first six months of Envato.</p>\n<div class="embed-wrap"></div>\n<h2>SIDEKICK Partners With ThemeForest</h2>\n<p><a href="https://www.sidekick.pro/updates/sidekick-teams-themeforest/">SIDEKICK announced</a> it is in a trial partnership with 19 ThemeForest authors. The partnership enables customers to view interactive tutorials from within the WordPress dashboard. According to the announcement, the test aims to alleviate some support pain for authors.</p>\n<h2>Calypso’s Contributor Code of Conduct</h2>\n<p>Codes of Conduct are not limited to events. Many open source projects have implemented them as a way to provide a base line of expectations from those who participate in the project. WordPress core contributor, Ryan Boren, shared a link to <a href="https://github.com/Automattic/wp-calypso/blob/master/CODE-OF-CONDUCT.md">Calypso’s Code of Conduct</a> on Github which explains the expectations project maintainers have of contributors.</p>\n<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Open source contribution is onboarding flow 4 the future of work in a software eaten world. It has codes of conduct. <a href="https://t.co/isXa7S1WTh">https://t.co/isXa7S1WTh</a></p>\n<p>— Ryan Boren (@rboren) <a href="https://twitter.com/rboren/status/705228769192079360">March 3, 2016</a></p></blockquote>\n<p></p>\n<h2>Coen Jacobs on Bundling Libraries in WordPress</h2>\n<p>Coen Jacobs <a href="http://coenjacobs.me/2016/03/02/bundling-libraries-is-not-overhead-its-a-best-practice/">explains why</a> bundling libraries is not overhead but a best practice. It’s another post in a series from Jacobs on the issue of handling dependencies in WordPress.</p>\n<h2>WordImpress and Media Temple Partnership</h2>\n<p>The WordImpress team <a href="https://wordimpress.com/announcing-wordimpres-media-temple-community-consultants/">announced on its site</a> that it has partnered with Media Temple as WordPress Community Consultants. In exchange for information about customer needs, Media Temple is enabling the team to sponsor, attend, and speak at more WordCamps this year.</p>\n<h2>Happy Birthday Wapuu!</h2>\n<p>In what is a traditional part of this series, I end each issue featuring a Wapuu design. For those who don’t know, Wapuu is the <a href="http://wapuu.jp/2015/12/12/wapuu-origins/">unofficial mascot</a> of the WordPress project.</p>\n<p>In honor of <a href="http://wapuu.jp/2016/02/18/happy-birthday-wapuu/">Wapuu’s recent birthday</a> which is February 19th, I present Birthday Wapuu. I hope you’ll join me in wishing Wapuu a happy birthday!</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/BirthdayWapuu.png" rel="attachment wp-att-52054"><img class="size-full wp-image-52054" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/BirthdayWapuu.png?resize=900%2C1000" alt="Happy Birthday Wapuu" /></a>Happy Birthday Wapuu\n<p>That’s it for issue three. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 04 Mar 2016 20:12:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:53:"Akismet: Akismet WordPress Plugin 3.1.8 Now Available";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://blog.akismet.com/?p=1905";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://blog.akismet.com/2016/03/04/akismet-wordpress-plugin-3-1-8-now-available/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1089:"<p>Version 3.1.8 of <a href="http://wordpress.org/plugins/akismet/">the Akismet plugin for WordPress</a> is now available.</p>\n<p>This update improves compatibility with plugins that rewrite admin URLs. It also reduces the amount of space Akismet uses in the database and reduces the size of the Akismet API requests. A fix is also included for a bug that could have caused comment moderation emails to be sent for some comments that were caught as spam.</p>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href="http://wordpress.org/plugins/akismet/">the WordPress plugins directory</a>.</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1905/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1905&subd=akismet&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 04 Mar 2016 17:00: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:17:"Christopher Finke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:70:"WPTavern: Joshua Strebel Interviews Alex King 10 Days Before His Death";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=52027";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/joshua-strebel-interviews-alex-king-10-days-before-his-death";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1577:"<p>In September of 2015, Joshua Strebel, founder of Pagely, <a href="http://pressnomics.com/2015/09/four-speakers-added-to-pn4/">announced that Alex King</a> would be one of the speakers at Pressnomics 4, an annual conference devoted to the business aspects of WordPress. Unfortunately, days after the announcement, <a href="http://wptavern.com/alex-king-founder-of-crowd-favorite-passes-away">King passed away</a> from colon cancer.</p>\n<p>Due to health reasons, King would not have been able to attend the event in person. Instead, Strebel flew to King’s house and <a href="http://pressnomics.com/2016/03/our-interview-with-alex-king/">recorded a 40 minute bedside interview</a>. In the interview, which is edited beautifully, the duo discuss King’s career, lessons learned managing Crowd Favorite, and if Automattic is the empire, who fills the role of Darth Vader.</p>\n<div class="embed-wrap"></div>\n<p>Jeff Matson who writes and maintains documentation for <a href="http://www.rocketgenius.com/">Rocketgenius</a> and who’s attending the event, describes the crowd’s reaction after watching the interview, “Insightful and full of emotion, where a standing ovation was not only warranted, but mandatory. The crowd’s reaction truly showed how loved and respected Alex King was.”</p>\n<p>As I watched the interview, it was difficult not to cry. King passed away 10 days after it was recorded and even then, he had a sense of humor. King is survived by his wife Heather and his daughter Caitlin.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 03 Mar 2016 22:21:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:25;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:94:"WPTavern: Roots Team Releases wp-password-bcrypt Plugin to Improve WordPress Password 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:28:"http://wptavern.com/?p=51913";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:104:"http://wptavern.com/roots-team-releases-wp-password-bcrypt-plugin-to-improve-wordpress-password-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5264:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/passwords.jpg" rel="attachment wp-att-52033"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/passwords.jpg?resize=1024%2C436" alt="photo credit: Linux password file - (license)" class="size-full wp-image-52033" /></a>photo credit: <a href="http://www.flickr.com/photos/132889348@N07/20538585283">Linux password file</a> – <a href="https://creativecommons.org/licenses/by-sa/2.0/">(license)</a>\n<p>This week the <a href="https://roots.io/" target="_blank">Roots</a> development team released <a href="https://github.com/roots/wp-password-bcrypt" target="_blank">wp-password-bcrypt</a>, a plugin that uses <a href="https://en.wikipedia.org/wiki/Bcrypt" target="_blank">bcrypt</a> instead of <a href="https://en.wikipedia.org/wiki/MD5" target="_blank">MD5</a> password hashing. MD5’s known and exploited weaknesses have rendered it “cryptographically broken and unsuitable for further use,” according to the CMU Software Engineering Institute.</p>\n<p>In a <a href="https://roots.io/improving-wordpress-password-security/" target="_blank">post</a> announcing the plugin, Scott Walkinshaw explained why WordPress’ default MD5 hashing function + salting is insecure:</p>\n<blockquote><p>MD5 is considered “broken” due to its collision vulnerability, but it’s broken more fundamentally for passwords: it’s too cheap and fast to calculate a hash.</p></blockquote>\n<p><a href="https://en.wikipedia.org/wiki/Bcrypt" target="_blank">bcrypt</a>, on the other hand, is much slower than MD5, making it more expensive to calculate. This stronger method of password hashing is built into PHP 5.5, but WordPress maintains 5.2.4 as its minimum required version. This precludes WordPress from using the newer password_hash function.</p>\n<p>Walkinshaw cites a four year old <a href="https://core.trac.wordpress.org/ticket/21022" target="_blank">ticket</a> which proposes a way for WordPress to allow plugin developers to more easily change from the salted MD5 method of hashing to the more secure bcrypt. James McKay left a sobering <a href="https://core.trac.wordpress.org/ticket/21022#comment:8" target="_blank">comment</a> on that ticket, advocating that WordPress core move to make bcrypt the default for environments that support it:</p>\n<blockquote><p>bcrypt needs to be made the default, out of the box option on all systems that support it. The idea that WordPress admins should have to go hunting for a plugin or tweak configuration options to do this scares me, simply because most of them won’t unless (a) they are well versed in web security, (b) they know that WordPress uses a weak alternative by default, and (c) they consider it to be an issue worth worrying about.</p>\n<p>People often underestimate the seriousness of MD5 and the SHA-* algorithms being “less secure.” They aren’t just less secure: thanks to developments in password cracking in the past few years using GPU- and FPGA- based software, they are <a href="https://codahale.com/how-to-safely-store-a-password/" target="_blank">totally useless</a>. Programs such as oclHashCat even have an option specifically to crack passwords in WordPress databases — and the rate at which they can do so is terrifying. If you’re not making a strong password hashing algorithm the default, out of the box option, you’re exposing your users to unacceptable and unnecessary risk.</p></blockquote>\n<p>Unfortunately, action on the ticket has been held up due to a UX issue. Discussion on the ticket continues, but contributors have not yet settled on a path for improvement.</p>\n<p>“So what is holding up the switch?” Walkinshaw said. “Bureaucracy and the unwillingness to make it happen. The consensus of the ticket is that it’s actually a UX problem. At this point, there is no technical reason why this can’t be done.”</p>\n<p>In the meantime, if you want to implement secure bcrypt hashed passwords, you can use the <a href="https://github.com/roots/wp-password-bcrypt" target="_blank">wp-password-bcrypt</a> plugin from the Roots team. It will protect against database compromises. If your WP database fell into the wrong hands, attackers would have a much more difficult time attempting to brute force a bcrypted password versus a MD5-based password.</p>\n<p>The plugin re-hashes user passwords with bcrypt when users log in. If a user never logs in, the password remains hashed with MD5. It can also be uninstalled without negative consequences. There are no settings – it simply works in the background.</p>\n<p>“We’ve purposely tried to keep the plugin as simple as possible so there are no surprises,” Walkinshaw said. “Obviously we recommend people test out the plugin first, and hopefully put it on a staging site first.”</p>\n<p>The plugin can be installed by automatically autoloading it with Composer or by manually copying wp-password-bcrypt.php into your mu-plugins folder. It will also soon be added to Roots’ <a href="https://roots.io/bedrock/" target="_blank">Bedrock</a> project boilerplate to provide a more secure default.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 03 Mar 2016 21:37: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: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:96:"WPTavern: WordPress Meetup Groups in Belfast and Dublin are Planning WordCamps for 2016 and 2017";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=51824";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:106:"http://wptavern.com/wordpress-meetup-groups-in-belfast-and-dublin-are-planning-wordcamps-for-2016-and-2017";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4919:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/wordcamp-belfast.jpg" rel="attachment wp-att-52003"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/wordcamp-belfast.jpg?resize=712%2C291" alt="wordcamp-belfast" class="aligncenter size-full wp-image-52003" /></a></p>\n<p>The inaugural <a href="https://twitter.com/WCBelfast" target="_blank">WordCamp Belfast</a> and <a href="https://twitter.com/WordCampDublin" target="_blank">WordCamp Dublin</a> are now in the early stages of planning. Members of the WordPress Northern Ireland meetup group are collaborating with the Dublin meetup to organize an event in Belfast in September 2016 and one in Dublin in April 2017. The dates have not yet been set in stone but organizers are looking at venues and are gathering all the details and costs to begin work on a budget.</p>\n<p>“Ever since first setting up the WordPress Meetup group in January 2014, a WordCamp was always something that we wanted to see – when the time was right,” organizer Mark Smallman said. “Having had the meetup group running successfully for two years, and having been in communication with the Dublin group, we decided the time was right to explore the possibility of running a WordCamp.”</p>\n<p>John Walsh, co-organizer of the Dublin WordPress Meetup Group, has applied to be the lead organizer of WordCamp Dublin 2017.</p>\n<p>“The goal is to combine our resources and work together to achieve the common goal of bringing WordCamp to Dublin and to Belfast on an annual basis,” Walsh said. “Separately, we have a certain capability but by working together we can accomplish a lot more.”</p>\n<p>Since neither of the two groups has previously hosted or planned a WordCamp, Smallman said that it’s a steep learning curve for all of them.</p>\n<p>“It helps to have as many and as varied a range of skills as possible on-board to help us get to the summit,” Smallman said. “We hope that once we have #WCBelfast in full swing, some of the same organizing team members can either offer assistance to WordCamp Dublin or take on roles directly within their organizing team. This should help both WordCamps in terms of planning for the future.”</p>\n<p>Smallman said that if both WordCamps are a success, the teams will look at the possibility of alternating between Belfast and Dublin in future years.</p>\n<p>“Having a team that is spread over the two areas will also help to widen the net of possible speakers, sponsors and attendees for both WordCamps, hopefully helping to make both a success,” he said. “And who knows, possibly both will become regular events on the WordCamp calendar.”</p>\n<h3>The Wapuu of the North: Growing the Community Spirit in Belfast</h3>\n<p>Smallman and the organizing team hope the two WordCamps will help to validate and grow the unique WordPress communities on both sides of the border.</p>\n<p>“Belfast and Northern Ireland have a wide range of very skilled people in the I.T. sector,” he said. “But up until recently it was lacking when it comes to community spirit within the sector. Slowly, we have seen groups within the area grow and now we have thriving Blogging and PHP groups as well as many others.”</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/belfast_wapuu.jpg" rel="attachment wp-att-52005"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/belfast_wapuu.jpg?resize=300%2C300" alt="belfast_wapuu" class="alignright size-medium wp-image-52005" /></a>As an expression of community spirit, the Belfast organizing team has already created a wapuu mascot for the event.</p>\n<p>“The Wapuu of the North was generously created by Peter of <a href="http://1440design.com/wordpress/branding-wordcamp-belfast/" target="_blank">1440 Design</a> in Belfast,” Smallman said. “Peter works along side <a href="https://twitter.com/se_nelson" target="_blank">Sam Nelson</a> who is on our organizing team. Sam also created our #WCBelfast badge.</p>\n<p>“We chatted and bounced a few ideas around for a theme for the WordCamp,” he said. “Game of Thrones was a very obvious choice, and one that none of us could think of a better fit. Northern Ireland has no fewer than a dozen filming locations for the show. We all thought that we could not choose anyone better than the Wapuu of the North to deliver the message that the White Walkers (developers) were on their way!”</p>\n<p>Smallman said the team is excited about the venue they’ve selected for hosting Northern Ireland’s very first WordCamp.</p>\n<p>“With all being well, we really are planning something very special for our first WordCamp,” he said. “We cannot wait to get moving onto the next stage.”</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 03 Mar 2016 10:00:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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: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:87:"WPTavern: BuddyPress 2.5.0 Released, Features Customizable Emails and 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=51957";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/buddypress-2-5-0-released-features-customizable-emails-and-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:2990:"<p>BuddyPress 2.5.0 “Medici” was <a href="https://buddypress.org/2016/03/buddypress-2-5-0/" target="_blank">released</a> today, named for <a href="http://www.medici57.com/" target="_blank">Medici on 57th</a>, a Chicago restaurant famous among BP contributors for its “Garbage Pizza.” The new <a href="https://codex.buddypress.org/emails/" target="_blank">BP Email API</a> is the highlight of the release. It allows users to edit BuddyPress emails in the admin and change their appearance in the customizer.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/bp-emails-feature.png" rel="attachment wp-att-51979"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/bp-emails-feature.png?resize=1016%2C528" alt="bp-emails-feature" class="aligncenter size-full wp-image-51979" /></a></p>\n<p>The placeholder text in curly braces, which is replaced with data in the emails, is called a “token.” All <a href="https://codex.buddypress.org/emails/email-tokens/" target="_blank">available email tokens</a> are listed in the codex. Since BP emails are simply a custom post type, plugin developers can easily hook into BuddyPress’ email system and <a href="https://codex.buddypress.org/emails/custom-emails/" target="_blank">create new emails</a> that will be triggered by a specified action.</p>\n<p>This release also introduces long-awaited support for emoji, which can now be used in activity updates, messages, and group descriptions.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/bp-emoji.png" rel="attachment wp-att-51988"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/bp-emoji.png?resize=844%2C387" alt="bp-emoji" class="aligncenter size-full wp-image-51988" /></a></p>\n<p>Other highlights of BuddyPress 2.5 include:</p>\n<ul>\n<li><strong>Post Type Comments Tracking</strong> – Custom post types show in the activity stream and now, with the BuddyPress “Site Tracking” component enabled, replies to CPT-generated activity items will be synchronized with comments on the corresponding post.</li>\n<li><strong>Twenty Twelve Companion Stylesheet</strong> – BuddyPress now has basic styles that will make it fit in seamlessly when activated with the Twenty Twelve theme.</li>\n<li><strong>Autolink Settings for Profile Fields</strong> – BuddyPress profile fields can be autolinked to a search of the members directory using the field value as a search term. This release offers as new setting to enable or disable the autolinking on a per-field basis.</li>\n</ul>\n<p>34 volunteer contributors worked together to close 95 tickets for the <a href="https://buddypress.trac.wordpress.org/milestone/2.5" target="_blank">2.5 milestone</a>. For a full list of all the improvements and fixes, check out the <a href="https://buddypress.trac.wordpress.org/milestone/2.5" target="_blank">official 2.5.0 changelog</a>.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 03 Mar 2016 00:12:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:28;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:88:"WPTavern: TGM Plugin Activation Library Contributors Work Toward Feature Plugin Proposal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51715";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/tgm-plugin-activation-library-contributors-work-toward-feature-plugin-proposal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6907:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/paper.jpg" rel="attachment wp-att-51974"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/03/paper.jpg?resize=960%2C516" alt="photo credit: Startup Stock Photos" class="size-full wp-image-51974" /></a>photo credit: <a href="https://stocksnap.io/photo/AL0V4Q84GP">Startup Stock Photos</a>\n<p>The team behind the <a href="http://tgmpluginactivation.com/" target="_blank">TGM Plugin Activation Library</a> (TGMPA) is working to propose it as a feature plugin for WordPress. Last July contributors on the project <a href="https://make.wordpress.org/core/2015/07/10/feature-plugin-chat-on-july-14/#comment-26310" target="_blank">opened the discussion</a> on a post calling for feature plugins, and the upcoming 3.0 version is being developed with this path in mind.</p>\n<p>Developers use TGMPA to manage dependencies between plugins and themes, as an alternative to bundling a heap of plugin-type functionality into one extension. It walks users through the process of installing plugin dependencies that are required or recommended by the developer. The library is used by 6% of WordPress.org themes as well as a large number of commercial products hosted on CodeCanyon and Themeforest.</p>\n<p>TGMPA will require a substantial rewrite in order to make it ready for consideration as a feature plugin. It also needs to be multisite compatible, address a number of usability issues, and be trimmed of extra features to become leaner and more core friendly.</p>\n<p>The team behind the project has a <a href="https://docs.google.com/forms/d/1dGb8s2poPWbCGPBPLn5sDDxSulNRYit7vF_-rsk5V6M/viewform?c=0&w=1" target="_blank">survey</a> open to solicit opinions from the community regarding the implementation of these changes. A few sample considerations from the survey include:</p>\n<ul>\n<li>What method should the plugin use to supply dependency information to multisite independently of whether a theme or plugin is active?</li>\n<li>How should the plugin deal with themes and plugins which haven’t yet upgraded to the newer version of TGMPA?</li>\n<li>Should the plugin support plugin download sources other than wordpress.org?</li>\n</ul>\n<p>“To me it feels like we need more core team support for it to be properly considered for feature plugin status, so some lobbying behind the scenes is in order,” TGMPA lead developer <a href="https://twitter.com/jrf_nl" target="_blank">Juliette Reinders Folmer</a> told the Tavern. “The survey is also part of this as that will give us hard data to use in the discussions.”</p>\n<h3>The Future of TGMPA Is a More Modular Architecture</h3>\n<p>Folmer said that regardless of whether TGMPA is approved to become a feature plugin, future development will continue with core in mind.</p>\n<p>“Development for v3 will be a lot more modular,” Folmer said. “TGMPA currently is effectively one file with four classes. That makes it easy to include it in themes and plugins (one file), but not as easy to maintain. As v3 will contain some big changes, this seems like a good point in time to change the structure of TGMPA as well.”</p>\n<p>With a more modular approach in place, Folmer said that the team plans to split the package into a number of different repositories for development purposes. She has tentatively identified features that would be offered in the core module, and everything else would be supported via add-on modules, i.e.:</p>\n<ul>\n<li>support for bundled plugins</li>\n<li>support for non-wp.org download urls</li>\n<li>support for recommended plugins</li>\n</ul>\n<p>TGMPA would also introduce two wrappers – each would function as a layer that will load all the available modules:</p>\n<ul>\n<li>one for continued support for including TGMPA in plugins and themes</li>\n<li>one for TGMPA as a feature plugin</li>\n</ul>\n<p>“So no matter what will be decided concerning whether TGMPA will be allowed to become a feature plugin, support for the features of TGMPA as is (but better) will be continued,” Folmer said.</p>\n<p>“With the modular development, it won’t be as easy anymore to download ‘TGMPA’ from GitHub, as you’d need to download all the different modules (or use composer / use git submodules),” she said. “I envision the <a href="http://wptavern.com/tgm-plugin-activation-team-releases-custom-generator" target="_blank">Custom TGMPA Generator</a> to be the way forward for downloading TGMPA as a complete package in that respect.”</p>\n<h3>Can TGMPA Gain Enough Support from Core Developers to Become a Feature Plugin?</h3>\n<p>Folmer said that the WordPress core developers she has spoken with are divided on whether on whether its current approach makes it a good candidate for a feature plugin.</p>\n<p>During <a href="https://github.com/TGMPA/TGM-Plugin-Activation/issues/447" target="_blank">preliminary discussions on GitHub</a>, WordPress core committer <a href="http://pento.net/" target="_blank">Gary Pendergast</a> expressed reservations about requiring too much user interaction during the process.</p>\n<p>“The primary goal of plugin dependencies should be that it’s invisible to the user,” Pendergast said. “If there’s ever a point where the user is asked to make a decision, then it’s not ready for core.</p>\n<p>“I’ve had a quick read through the TGMPA code,” he said. “I think it’s solving the problem it needed to solve (providing a drop-in library for themes and plugins), but I think we’d need to tie it much more tightly into core for it to be a feature plugin.”</p>\n<p>Folmer hopes to address user experience concerns with refinements to the plugin based on feedback from the survey, which will be open until the end of March.</p>\n<p>“So far, most responses have been from developers using TGMPA,” she said. “Even though the survey is quite technical, we would very much also like to hear from more end-users.”</p>\n<p>With the recent confusion over WordPress.org’s previously unwritten rule <a href="http://wptavern.com/the-wordpress-plugin-directory-will-no-longer-accept-frameworks" target="_blank">banning framework plugins from the official directory</a>, the challenge of managing inter-plugin dependencies is under the spotlight again. The TGM Plugin Activation library isn’t the only possible solution to this problem, but it does have a motivated contributor base that is willing to take up the challenge of solving this problem via a feature plugin. If you want to be part of shaping the roadmap for version 3, make sure to <a href="https://docs.google.com/forms/d/1dGb8s2poPWbCGPBPLn5sDDxSulNRYit7vF_-rsk5V6M/viewform?c=0&w=1" target="_blank">fill out the survey</a> before April 1.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 02 Mar 2016 20:16:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:73:"WPTavern: The WordPress Plugin Directory Will No Longer Accept Frameworks";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51927";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/the-wordpress-plugin-directory-will-no-longer-accept-frameworks";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5925:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/sockets.jpg" rel="attachment wp-att-51946"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/sockets.jpg?resize=960%2C476" alt="photo credit: Jaroslaw Puszczyński" class="size-full wp-image-51946" /></a>photo credit: <a href="https://stocksnap.io/photo/M07SV6AMBD">Jaroslaw Puszczyński</a>\n<p>Today the WordPress plugin review team issued a reminder for what they said is a long-standing, unwritten rule: frameworks are not allowed in the official directory. In a post tiled “<a href="https://make.wordpress.org/plugins/2016/03/01/please-do-not-submit-frameworks/" target="_blank">Please do not submit frameworks</a>,” Mika Epstein outlined the reason behind the rule:</p>\n<blockquote><p>At this time, we are not accepting frameworks as we don’t feel frameworks, boilerplates, and libraries are appropriate for the Plugins Directory. We require that plugins be useful in and of themselves (even if only being a portal to an external service). And while there are many benefits to frameworks and libraries, without plugin dependency support in core or the directory, it becomes another level of hassle for users.</p></blockquote>\n<p>Until WordPress core adopts a way to support plugin dependencies, the plugin review team recommends that frameworks and libraries be packaged with each plugin in a way that doesn’t conflict with other plugins/frameworks/libraries.</p>\n<p>The issue was most recently addressed with the <a href="https://wordpress.org/plugins/cmb2/" target="_blank">CMB2</a> plugin, which Epstein said was <a href="https://make.wordpress.org/plugins/2016/02/25/re-thinking-tags-in-the-plugin-directory/#comment-42655" target="_blank">mistakenly approved months ago.</a> CMB2 is essentially a library that makes it easy for developers to build metaboxes, custom fields, and forms. It is exactly the kind of plugin that the previously unwritten rule is meant to block from being available in the official directory. Epstein further clarified the reasons why:</p>\n<blockquote><p>The issue is as follows: Having a framework as a plugin is a poor experience for the user. Not the developer. The user. The user understands “I have an add-on for WooCommerce, I probably need Woo.” They do not always understand “I have plugin Slider Joe. Why do I need Advanced Custom Fields?” In addition, by having a library as a plugin, the onus of version compatibility is now on the person least likely to understand it: the user.</p>\n<p>The plugin repository is not, currently, a library or framework repository. It’s not meant like the NPM package manager, or even Composer as a way to define what a plugin ‘needs’ in the same ways for a developer to build a project. The plugin repository is, plain and simple, meant for plugins that users will find useful. Plugins that add functionality to WordPress in a directly inter-actable way.\n</p></blockquote>\n<p>The confusion lies in the fact that this particular rule has been applied inconsistently for years and has many notable exceptions, including <a href="https://wordpress.org/plugins/redux-framework/" target="_blank">Redux Framework</a>, <a href="https://wordpress.org/plugins/cmb2/" target="_blank">CMB2</a>, and arguably plugins like <a href="https://wordpress.org/plugins/piklist/" target="_blank">Piklist</a>, <a href="https://wordpress.org/plugins/titan-framework/" target="_blank">Titan Framework</a>, <a href="https://wordpress.org/plugins/kirki/" target="_blank">Kirki</a>, <a href="https://wordpress.org/plugins/options-framework/" target="_blank">Options Framework</a>, and many more. These are the types of plugins that don’t really do anything out of the box but are meant for developers to use for building things.</p>\n<p>According to Epstein, a few of these plugins have been “grandfathered in” due to oversights in the plugin review process, but the rule stands for new submissions.</p>\n<p>“CMB2 and Redux Framework are grandfathered in,” she <a href="https://make.wordpress.org/plugins/2016/02/25/re-thinking-tags-in-the-plugin-directory/#comment-42655" target="_blank">said</a>. “We don’t let any more in, since a lot of plugins include them inside AS plugins. It’s a mess. Also CMB2 shouldn’t have been approved, which is a different mess altogether. Frameworks are not supposed to be in the repo at this time. Period.”</p>\n<p>Another commenter on the most recent post, who recently had his <a href="https://wordpress.org/plugins/advanced-term-fields/" target="_blank">Advanced Term Fields</a> plugin approved, asked, <strong>“Are you saying the best way to handle this scenario is to include the parent framework in each child plugin, as opposed to alerting the user that ‘This plugin requires XXX plugin in order to function properly?\'”</strong></p>\n<p>Epstein confirmed that this is in fact what the team is suggesting:</p>\n<blockquote><p>Currently, yes. That would have been the best way. Since your plugin is approved, though, it’s unfair of us to yank the rug out from under you. While you don’t have a great many users, we recognize when the gaff is us.</p></blockquote>\n<p>The plugin review team has a difficult job and is working with limited volunteer resources. However, the inconsistent application of unwritten rules has led to what appears to be an arbitrary set of guidelines. One thing that would make life easier for both reviewers and plugin developers is if WordPress core adopted a way to manage inter-plugin dependencies. <a href="http://tgmpluginactivation.com/" target="_blank">The TGM Plugin Activation</a> team is <a href="https://github.com/TGMPA/TGM-Plugin-Activation/issues/447" target="_blank">working on a proposal for a feature plugin</a>, which we’ll examine in depth in an upcoming post.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 02 Mar 2016 00: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:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:30;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:92:"WPTavern: Poetica Acquired by Condé Nast, Open Source WordPress Plugin Will Be Discontinued";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51903";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:100:"http://wptavern.com/poetica-acquired-by-conde-nast-open-source-wordpress-plugin-will-be-discontinued";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3293:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/poetica.png" rel="attachment wp-att-51905"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/03/poetica.png?resize=1025%2C520" alt="poetica" class="aligncenter size-full wp-image-51905" /></a></p>\n<p>Poetica <a href="https://blog.poetica.com/2016/03/01/our-next-chapter/" target="_blank">announced</a> today that its team and technology have been acquired by Condé Nast. The technology provided realtime “Google-docs style collaboration” in the WordPress post editor as well as a non-WordPress editor available via the public <a href="https://poetica.com/" target="_blank">Poetica.com</a> service. As of June 1, 2016, the service will be shut down.</p>\n<p>The Poetica team will continue to develop the technology as part of <a href="http://learn.copilot.conde.io/" target="_blank">Copilot</a>, Condé Nast’s proprietary publishing platform.</p>\n<p>According to CTO and co-founder Blaine Cook, <a href="https://twitter.com/blaine/status/704738953321013253" target="_blank">development on the open source plugin will be discontinued</a>, as the plugin is dependent on the Poetica service. Those who have been using the plugin will have no choice but to find an alternative.</p>\n<p>WordPress isn’t well-equipped for content collaboration. In fact, thanks to its fancy <a href="https://codex.wordpress.org/Post_Locking" target="_blank">post locking</a> feature, WordPress is streamlined to enable the opposite of a collaborative editorial workflow. It’s designed for one user to work on a post while locking all other users out.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2013/09/post-locking.png" rel="attachment wp-att-9350"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2013/09/post-locking.png?resize=715%2C231" alt="post-locking" class="aligncenter size-full wp-image-9350" /></a></p>\n<p>Additionally, after a post is published, no further collaboration can be made, as the only way to make edits is to push changes immediately to the live copy.</p>\n<p>Poetica was one of the few tools that provided a way for editorial teams to write together, allowing multiple WordPress users to view and edit content at the same time. The plugin tracked changes and allowed users to make suggested edits that could be accepted or rejected.</p>\n<p>Although Poetica provided a much-needed collaboration tool for WordPress, its founders said they were unable to create a profitable business model around the software:</p>\n<blockquote><p>Up until now, though, we’ve been a small five-person team. We’ve tackled the dual problems of creating a humane, intuitive, and collaborative way to interact with text, on any device and any content platform; and the parallel challenge of creating a viable business model. Unfortunately, these goals were often at odds with each-other, competing for our limited time and attention.</p></blockquote>\n<p>After Poetica.com is shut down, it will destroy any drafts and user data from the site, as Condé Nast has only acquired the software and not the user data. Users will soon be notified via email about how to download a full archive of their drafts ahead of the June 1st shutdown.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 01 Mar 2016 19:38:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:85:"WPTavern: aXe: An Open Source JavaScript Library for Automating Accessibility Testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51876";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:94:"http://wptavern.com/axe-an-open-source-javascript-library-for-automating-accessibility-testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4883:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/axe-logo.jpg" rel="attachment wp-att-51880"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/axe-logo.jpg?resize=780%2C366" alt="axe-logo" class="aligncenter size-full wp-image-51880" /></a></p>\n<p>In June 2015 <a href="http://www.deque.com/" target="_blank">Deque</a>, an accessibility consultancy, open sourced <a href="https://github.com/dequelabs/axe-core" target="_blank">aXe</a>, its accessibility rules engine for automated web UI testing. aXe is a compact JavaScript library (~100 KB) that executes automated accessibility tests inside your testing framework or browser. Deque outlined a number of advantages that the aXe library has over previous approaches to automated testing of HTML-based user interfaces:</p>\n<ul>\n<li>It works on all modern browsers</li>\n<li>It supports in-memory fixtures, static fixtures, integration tests and iframes of infinite depth</li>\n<li>It has zero false positives (bugs notwithstanding)</li>\n<li>It is open source</li>\n<li>It is actively supported by a major accessibility vendor</li>\n<li>It is designed to work with whatever tools, frameworks, libraries and environments you have today</li>\n<li>It is designed to be integrated into your existing functional/acceptance automated tests</li>\n<li>It automatically determines which rules to run based on the evaluation context</li>\n<li>It is highly configurable</li>\n</ul>\n<p>aXe integrates with Karma, QUnit, Jasmine, Mocha, PhantomJS, and many others – basically any testing framework that supports JavaScript execution.</p>\n<h3>aXe Extension Adds Accessibility Testing to Chrome Developer Tools</h3>\n<p>If you’re not using automated testing tools in your projects, the Chrome developer tools extension is the easiest gateway to performing accessibility tests directly in the browser as you’re viewing or building a website or application.</p>\n<p>aXe is available as a <a href="https://chrome.google.com/webstore/detail/axe/lhdoppojpmngadmnindnejefpokejbdd" target="_blank">free extension from the Chrome web store</a>. (Alternatively, it’s also available as an <a href="https://addons.mozilla.org/en-us/firefox/addon/axe-devtools/?src=search&utm_campaign=aXe%20The%20Accessibility%20Engine&utm_content=aXe%20for%20Firefox&utm_medium=Hyperlink&utm_source=Website" target="_blank">add-on for Firefox</a>.) Once you click “Add to Chrome,” aXe will be available under its own tab in Chrome DevTools panel. It automatically ferrets out accessibility defects and offers details for each violation.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/02/axe-on-wordpressorg.png" rel="attachment wp-att-51879"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/02/axe-on-wordpressorg.png?resize=1025%2C583" alt="axe-on-wordpressorg" class="aligncenter size-full wp-image-51879" /></a></p>\n<p>The creators of aXe were invited to contribute the open source library to the <a href="http://www.w3.org/WAI/ER/2015/draft-charter-3" target="_blank">W3C WAI Evaluation and Repair Tools Working Group</a>, as the group works to develop a normative set of rules for evaluating <a href="https://www.w3.org/TR/WCAG20/" target="_blank">WCAG 2.0</a> conformance.</p>\n<p>If you’re working on improving WordPress’ accessibility, the aXe extension can even help perform some of the <a href="https://make.wordpress.org/accessibility/handbook/testing/how-to-test-for-accessibility/" target="_blank">tests recommended by the Accessibility team</a>. You can log issues by <a href="https://make.wordpress.org/core/handbook/reporting-bugs/" target="_blank">creating a ticket on WordPress Trac</a> or testing patches for existing tickets.</p>\n<p>In 2014 the Accessibility team <a href="https://make.wordpress.org/accessibility/2014/05/02/automated-accessibility-testing/" target="_blank">discussed adding automated accessibility testing to WordPress</a>, with Quail.js as one of the frontrunners. The team is just now <a href="http://wptavern.com/your-chance-to-give-feedback-on-wordpress-accessibility-coding-standards" target="_blank">adding accessibility code standards to the WordPress core handbook</a>. The next step would be firming up a list of requirements for an automated testing tool. aXe might be a new possibility to consider, as it is open source and focused on helping websites meet WCAG 2.0 requirements.</p>\n<p>Deque’s mission with aXe is to bring equality to the digital world. They are working to make automated accessibility testing more mainstream with professional web developers. If accessibility is a priority for your work, <a href="https://github.com/dequelabs/axe-core" target="_blank">aXe</a> is a lightweight library you may want to consider for automated testing on own projects.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 01 Mar 2016 01:11: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: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:74:"WPTavern: Stripe Payment Gateway for WooCommerce Is Now Available for Free";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=51757";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"http://wptavern.com/stripe-payment-gateway-for-woocommerce-is-now-available-for-free";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2694:"<p>Last week WooCommerce announced on Twitter that its <a href="https://www.woothemes.com/products/stripe/" target="_blank">Stripe payment gateway</a> is now a free product. Prior to this decision, it was priced at $79 for a single license, $99 for up to five sites, and $199 for up to 25 sites.</p>\n<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Exciting product announcement from <a href="https://twitter.com/stripe">@stripe</a> (which is also now free for WooCommerce, woo!) <a href="https://t.co/kQet52WMbn">https://t.co/kQet52WMbn</a> <a href="https://t.co/PzCRoyrgWG">pic.twitter.com/PzCRoyrgWG</a></p>\n<p>— WooCommerce (@WooCommerce) <a href="https://twitter.com/WooCommerce/status/702809439271821312">February 25, 2016</a></p></blockquote>\n<p></p>\n<p>The news coincides with the debut of Stripe’s new <a href="https://stripe.com/atlas" target="_blank">Atlas</a> product, which allows foreign companies to incorporate as a U.S. company in Delaware, set up a U.S. bank account, and accept payments with Stripe. Atlas was created to help entrepreneurs start global businesses no matter where they are located in the world.</p>\n<p>Automattic had a similar aim of lowering the barrier to entry for WooCommerce when it made the Stripe payment gateway available for free.</p>\n<p>“Receiving payments is integral to running an online store,” WooCommerce Product Team Lead Matty Cohen said. “Publishing the WooCommerce Stripe integration for free is one way we are helping merchants to get their stores set up quicker, and to easily receive credit card payments through their stores.</p>\n<p>“One of our focuses is to lower the barrier to entry and to assist WooCommerce stores in becoming successful,” Cohen said. “We are excited to be partners in making payment processing globally available for WooCommerce merchants.”</p>\n<p>Over the past two years, Stripe has been working to expand its services beyond the handful of countries it initially supported in the US and Europe. Although Stripe is increasingly popular, it cannot yet be considered a global option for accepting payments. It’s currently in <a href="https://support.stripe.com/questions/what-countries-does-stripe-support" target="_blank">private beta</a> for businesses in Brazil, Mexico, Portugal, Singapore, and Switzerland.</p>\n<p>Products like Atlas, in combination with the free gateway available from WooCommerce, should serve to bring Stripe availability to more locations around the world. WooCommerce representatives would not comment on whether Automattic is planning on offering more payment gateweys for free.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 29 Feb 2016 19:27:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:98:"WPTavern: Mandrill to Discontinue Free Tier for Transactional Emails, Developers Seek Alternatives";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51826";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:107:"http://wptavern.com/mandrill-to-discontinue-free-tier-for-transactional-emails-developers-seek-alternatives";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3123:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/paper-plane.jpg" rel="attachment wp-att-51834"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/paper-plane.jpg?resize=1024%2C444" alt="photo credit: Paper Plane - (license)" class="size-full wp-image-51834" /></a>photo credit: <a href="http://www.flickr.com/photos/8176740@N05/5703519506">Paper Plane</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>This week Mandrill announced that it will be <a href="http://blog.mailchimp.com/important-changes-to-mandrill/" target="_blank">discontinuing its free tier for transactional emails</a>. As of March 16th, new Mandrill users will create their accounts through MailChimp and existing users will be required to merge their accounts with a MailChimp account where they will be charged <a href="http://blog.mandrill.com/important-changes-to-mandrill.html" target="_blank">$20+/mo</a> for transactional emails. The deadline for merging accounts is April 27th.</p>\n<p>MailChimp is choosing to focus on delivering “personalized transactional” emails that require more design. For those who want to continue delivering utility type emails, the company recommends <a href="https://aws.amazon.com/ses/" target="_blank">Amazon SES</a>:</p>\n<blockquote><p>Transactional emails, like password reminders and the myriad email notifications you get after making changes to online accounts, are dead simple. Utilitarian providers like Amazon SES excel at this. Their innovation is mostly focused on increasing efficiency and reducing costs.</p></blockquote>\n<p>Many WordPress developers depend on Mandrill for sending wp_mail() emails in order to ensure delivery and take this load off the server. After MailChimp’s announcement, many are scrambling to find an alternative.</p>\n<p>Amazon SES allows users to send 62,000 messages per month to any recipient, as long as you call it from an Amazon EC2 instance. If you already have one set up, this is one of the best options.</p>\n<p><a href="https://hmn.md/" target="_blank">Human Made</a> created an open source <a href="https://github.com/humanmade/aws-ses-wp-mail" target="_blank">plugin</a> that makes it easy to change to Amazon SES. Setting it up is as simple as adding a few constants to your wp-config.php file and then verifying your sending domain for SES.</p>\n<p>Of course, Amazon SES isn’t the only option. Remkus de Vries wrote a post on <a href="https://remkusdevries.com/transactional-email-alternatives-for-mandrillapp/" target="_blank">transactional email alternatives to Mandrill</a>, which includes <a href="https://www.mailgun.com/" target="_blank">MailGun</a> (10,000 emails free every month), <a href="https://sendgrid.com/" target="_blank">SendGrid</a> (up to 12,000 emails free per month), <a href="https://www.sendinblue.com/" target="_blank">SendIn Blue</a> (up to 9,000 emails/month, 300 emails/day free), and several others. Many of these email services also have corresponding plugins available in the WordPress Plugin Directory.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 26 Feb 2016 21:15: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:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:34;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:73:"WPTavern: Austin WordPress Meetup to Host Charity Hackathon April 8, 2016";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51762";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/austin-wordpress-meetup-to-host-charity-hackathon-april-8-2016";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4645:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/collaboration.jpg" rel="attachment wp-att-51819"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/collaboration.jpg?resize=960%2C479" alt="photo credit: Startup Stock Photos" class="size-full wp-image-51819" /></a>photo credit: <a href="https://stocksnap.io/photo/69TMH4ITIE">Startup Stock Photos</a>\n<p>After leading the do_action( ‘wordpress-charity-hackathon’ ); event in <a href="http://wptavern.com/wordpress-cape-town-to-host-charity-hackathon-in-august" target="_blank">2014</a> and <a href="http://wptavern.com/wordpress-cape-town-to-host-2nd-annual-charity-hackathon-in-june" target="_blank">2015</a> in Cape Town, South Africa, Hugh Lashbrooke is bringing the event to Texas with the help of Austin local David Cole. The Austin WordPress Meetup Group will be <a href="http://www.meetup.com/austinwordpress/events/228432694/" target="_blank">hosting the hackathon on April 8th</a>, which will coincide with <a href="https://wooconf.com/" target="_blank">WooConf</a>.</p>\n<p>Participants will spend the day building new WordPress-powered websites for 10 local non-profit organizations. At the end of the day, the following charities will have a new (or revamped) online presence with free hosting:</p>\n<ul>\n<li>North Austin Community Media (aka KXPE-LP)</li>\n<li>The Blood Center of Central Texas</li>\n<li>Refugee Services of Texas</li>\n<li>PelotonU</li>\n<li>Circle of Health International</li>\n<li>Black Fret</li>\n<li>AIDS Services of Austin</li>\n<li>Texas PACE Authority</li>\n<li>Day With Daddy</li>\n<li>Austin Kids First</li>\n</ul>\n<p>“What we’re looking for are 5-6 people to sign up for each build team and with 10 build teams that means we’re looking for 50-60 people to get involved and help to give back to the non-profits in the Austin area,” Lashbrooke said. “It’s important to note that the build teams are not just developers – we’re looking for project managers, social media managers, designers and content creators as well as developers.”</p>\n<p>The hackathon will be held at the tail end of WooConf and Lashbrooke said he hopes to attract a few WooConf attendees.</p>\n<p>“We’re going to make a more direct push to get WooConf attendees to be a part of the event, but right now the sign-up form is open to absolutely anyone,” he said.</p>\n<p>As part of the WordPress Community team’s new initiative to <a href="https://make.wordpress.org/community/2016/01/25/full-day-events/" target="_blank">standardize certain specialized full day events</a>, the do_action charity hackathon is now fully backed by the WordPress Foundation.</p>\n<p>“The Foundation will be on hand to offer support (logistically and financially) where necessary, just like with regular meetup events,” Lashbrooke said. “I will also be putting together documentation on how we organize this kind of event, which will be published on WordPress.org so that other communities can replicate the event type in their area.”</p>\n<p>When looking for non-profits to include, Lashbrooke said they don’t only look for organizations without websites. They also look for those that need their online presence improved or otherwise entirely rebuilt.</p>\n<p>“That may mean their website works fine, but it doesn’t really cater to their needs (accepting donations, selling goods, encouraging volunteers, etc.), so then on the day we can refresh things for them and make it all work in the way that they need it to,” he said.</p>\n<p>Last year the Cape Town participants helped create websites for the <a href="http://www.adultswithautism.org.za/" target="_blank">Academy for Adults with Autism</a>, <a href="http://www.carecareers.co.za/" target="_blank">Care Career Connection</a>, the <a href="http://www.psoriasis.org.za/" target="_blank">South African Psoriasis Association</a>, and several others.</p>\n<p>“It really does feel great – the non-profit representatives are there on the day as well, and seeing their reaction to the results of the hard work from their teams is always hugely satisfying,” Lashbrooke said. “Ultimately, what we’re doing is empowering non-profits to get on with the work that they do best without their online presence being a hinderance to their work.”</p>\n<p>If you live in Austin or will be attending WooConf and want to be part of the hackathon, you can sign up via the <a href="http://goo.gl/forms/2hjEXfSH0q" target="_blank">volunteer form</a>.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 26 Feb 2016 18:16: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: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:62:"WPTavern: The WordPress Plugin Directory Is Getting a Makeover";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51789";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/the-wordpress-plugin-directory-is-getting-a-makeover";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/02/hammer-nails.jpg" rel="attachment wp-att-51795"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/02/hammer-nails.jpg?resize=960%2C419" alt="photo credit: Patryk Dziejma" class="size-full wp-image-51795" /></a>photo credit: <a href="https://stocksnap.io/photo/POQ7B631M3">Patryk Dziejma</a>\n<p>In February 2015, the <a href="http://wptavern.com/wordpress-theme-directory-launches-new-design" target="_blank">WordPress Theme Directory launched a new design</a>. Konstantin Obenland worked with Samuel “Otto” Wood and the <a href="https://make.wordpress.org/meta/" target="_blank">WordPress meta team</a> to update the design and move the directory off of bbPress. Today Obenland <a href="https://make.wordpress.org/meta/2016/02/25/plugin-directory-v3/" target="_blank">announced</a> that the <a href="https://wordpress.org/plugins/" target="_blank">Plugin Directory</a> will be getting a similar treatment.</p>\n<p>Version 3 of the Plugin Directory will focus heavily on improving the search interface, including prioritizing translated plugins for international users. Another major goal of the redesign is to streamline the plugin submission and review process. The new directory will be powered by WordPress, instead of bbPress, which will make it easier for plugin developers and reviewers to manage plugins, tags/categories, and committers.</p>\n<p>According to the <a href="https://make.wordpress.org/meta/plugin-directory-version-3/" target="_blank">project overview</a>, plugins will be saved in a custom post type, offering reviewers a more efficient workflow that makes use of post statuses with capability controlled permissions. This will also make it possible to run automated checks on plugins, which should reduce the number of <a href="https://make.wordpress.org/plugins/2016/02/03/plugin-review-inconsistencies/#comment-42561" target="_blank">inconsistencies in the review process</a>.</p>\n<p>The meta team plans to hit milestones every two weeks in order to ship version 3 by June 26, 2016. Obenland is aiming for getting a minimal viable product off the ground by March 1st, which would includes the plugin CPT, readme.txt parsing, and a basic display on the frontend. A full overview of the project and the tickets that will need to be addressed is available on the <a href="https://make.wordpress.org/meta/plugin-directory-version-3/" target="_blank">make.wordpress.org/meta P2</a>. New contributors are welcome to jump in on <a href="https://meta.trac.wordpress.org/query?status=!closed&component=Plugin+Directory" target="_blank">Meta Trac</a> and in the #meta Slack channel.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 25 Feb 2016 22:41:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:68:"WPTavern: WordPress 4.5 to Introduce Native Support for a Theme Logo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51767";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:78:"http://wptavern.com/wordpress-4-5-to-introduce-native-support-for-a-theme-logo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4944:"<p>In October 2014, <a href="http://wptavern.com/jetpack-3-2-released-introduces-new-site-logo-feature-for-theme-developers" target="_blank">Jetpack 3.2 introduced a new site logo feature</a> for theme developers. As Jetpack is widely used, it provided a way for theme developers to easily build in logo support, thereby increasing data portability across themes.</p>\n<p>After discussion in yesterday’s core development meeting, <a href="https://make.wordpress.org/core/2016/02/24/theme-logo-support/" target="_blank">WordPress 4.5 is now set to introduce theme support for a site logo</a> using code that was ported over from Jetpack’s implementation. Themes will be able to declare support via: <code>add_theme_support( \'site-logo\', size )</code>, which will add the site logo upload to the customizer.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/02/site-logo.png" rel="attachment wp-att-51779"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/02/site-logo.png?resize=1025%2C748" alt="Image credit: Ryan Boren" class="size-full wp-image-51779" /></a>Image credit: <a href="https://make.wordpress.org/flow/2016/02/19/customize-site-logo-and-icon-33755-5-diff-iphone-6/">Ryan Boren</a>\n<p>According to release lead Mike Schroder, WordPress 4.5 will ship with a new version of <a href="https://wordpress.org/themes/twentysixteen/" target="_blank">Twenty Sixteen</a> that will support a site logo as an example implementation for theme developers.</p>\n<h3>Adding a Site Logo was Not Intuitive for Users During Testing</h3>\n<p>In the corresponding <a href="https://core.trac.wordpress.org/ticket/33755" target="_blank">ticket</a>, a few WordPress contributors were concerned about users experiencing confusion between the “Site Icon” and “Site Logo” features. Tammie Lister conducted <a href="https://make.wordpress.org/flow/2016/02/20/site-logo-and-icon-user-testing/" target="_blank">two users tests</a>, which she posted on the make.wordpress.org/flow blog.</p>\n<p>The first user landed on Appearance > Header and said, “I’m not really sure if this is the logo where I should be adding this.” She goes back to the admin, returns again to the header setting, and then finally lands on the customizer. She mistakenly added a site icon thinking it was the logo. Eventually, she found the correct setting and added the logo.</p>\n<p>The second tester first landed on the Tools menu and then navigated to Appearance, got lost in the theme browser, and then landed on Customize. She thought she was on the wrong screen and went back. She navigated to Settings, Users, and several other screens in the process of trying to find the right place to upload the logo. Eventually she found it with the explicit instructions included in the testing round for those who are having trouble.</p>\n<p>Both test users struggled to find this feature. Based on these tests, it does not appear that adding a site logo is very intuitive for users who are not working in WordPress every day. Watching the test users struggle through the admin in search of this setting is rather painful.</p>\n<p>“Discoverability of the feature isn’t great,” Lister <a href="https://core.trac.wordpress.org/ticket/33755#comment:77" target="_blank">reported</a> when summarizing the results of her testing. “Perhaps this is ok as a theme feature. Perhaps we need to ensure publicity of this feature and documentation. Once people find it and use it the actual process makes sense.”</p>\n<p>Two Jetpack support personnel joined the conversation to report that the site logo feature has been well tested while used in the plugin and that they receive very few questions about it.</p>\n<p>“I can’t recall a single case where a user was confused about how to use the Site Logo, nor a single instance where a user confused it with the Site Icon,” Kathryn Presner said.</p>\n<p>Several contributors involved in the conversation commented that the feature seemed rushed. Given that nearly every modern website has a logo, this feature is one that is likely to be widely used with theme support. Theme authors will be the ones to add support for a site logo and field questions about how to use it. Based on the user tests, however, a brand new WordPress user with a vanilla site running Twenty Sixteen may be in for a bit of a hunt when trying to upload a logo.</p>\n<p>Schroder pulled the trigger yesterday to include the feature in the upcoming release and it is now available in the first beta <a href="https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/" target="_blank">released last night</a>. If you want to help test, the easiest way is to use the <a href="https://wordpress.org/plugins/wordpress-beta-tester/" target="_blank">WordPress Beta Tester</a> plugin and select “bleeding edge nightlies.”</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 25 Feb 2016 18:11:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:37;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:93:"WPTavern: Automattic Adds AMP Support to WordPress.com, Releases Plugin for Self-Hosted Sites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=51722";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:102:"http://wptavern.com/automattic-adds-amp-support-to-wordpress-com-releases-plugin-for-self-hosted-sites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6300:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/02/amp-wpcom-screenshots2.png" rel="attachment wp-att-51747"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/02/amp-wpcom-screenshots2.png?resize=1025%2C372" alt="amp-wpcom-screenshots2" class="aligncenter size-full wp-image-51747" /></a></p>\n<p>Today WordPress.com <a href="https://en.blog.wordpress.com/2016/02/24/amp-for-wordpress-dot-com/" target="_blank">announced</a> support for <a href="https://www.ampproject.org/" target="_blank">Accelerated Mobile Pages</a> (AMP), Google’s open source project to improve the experience of the mobile web for publishers. When visitors arrive to a WordPress.com site via a mobile search, posts will load faster than ever before.</p>\n<p>Each post is dynamically generated according to the AMP spec, with /amp/ added to the end of the URL for the mobile version. They’re also cached in Google’s cloud infrastructure to reduce loading time. The performance gains are staggering. In early tests, Pinterest’s engineering team found that <strong>“<a href="https://engineering.pinterest.com/blog/building-faster-mobile-web-experience-amp" target="_blank">AMP pages load four times faster and use eight times less data than traditional mobile-optimized pages</a>.”</strong></p>\n<p>What makes AMP pages load so quickly? Google has a <a href="https://www.ampproject.org/docs/get_started/technical_overview.html" target="_blank">strict set of optimizations</a> that are employed to improve mobile loading:</p>\n<ul>\n<li>Allow only asynchronous scripts</li>\n<li>Size all resources statically</li>\n<li>Don’t let extension mechanisms block rendering</li>\n<li>Keep all third-party JavaScript out of the critical path</li>\n<li>All CSS must be inline and size-bound</li>\n<li>Font triggering must be efficient</li>\n<li>Minimize style recalculations</li>\n<li>Only run GPU-accelerated animations</li>\n<li>Prioritize resource loading</li>\n<li>Load pages in an instant</li>\n</ul>\n<p>To see just how fast AMP is, check out the Google search demo at <a href="https://googleblog.blogspot.com/2015/10/introducing-accelerated-mobile-pages.html" target="_blank">g.co/amp</a>.</p>\n<p>Automattic also released a <a href="https://wordpress.org/plugins/amp/" target="_blank">plugin</a> that allows self-hosted WordPress users to take advantage of the mobile performance improvements offered by AMP. The plugin has been tested since October and is currently active on 8,000 installs. For most users, it’s as easy as installing the plugin and activating it. The default styles are fairly generic but developers can refer to the <a href="https://github.com/Automattic/amp-wp/blob/master/readme.md" target="_blank">documentation on GitHub</a> to further customize AMP styles.</p>\n<p>The Jetpack team is working on getting its publishing-related modules ready for AMP compatibility. In order to take advantage of AMP performance increases, users have to compromise on JS-powered features like Sharing Buttons and Likes.</p>\n<p>“It’s definitely something on our roadmap, and we’re working on the details and timeline at the moment,” Jetpack team lead Sam Hotchkiss told the Tavern.</p>\n<p>According to <a href="http://www.niemanlab.org/2016/02/diving-all-in-or-dipping-a-toe-how-publishers-are-approaching-googles-accelerated-mobile-pages-initiative/" target="_blank">NiemanLab’s survey of newsrooms</a>, publishers that are not running on WordPress are struggling to get on board with AMP, due to the fact that it requires developer resources to implement. This is especially difficult for those that impose JavaScript-based paywalls, as AMP heavily restricts JavaScript.</p>\n<p>AMP allows for paywalls, subscription content, and ads, but for many publishers these will have to be rebuilt to be distributed according to the AMP specifications. At this time, AMP <a href="https://github.com/ampproject/amphtml/blob/325878c6bde7a4bd40d67e8c81b9e599af1039d7/ads/integration-guide.md" target="_blank">does not support “interstitials,”</a> the pop-up ads that obscure content and annoy readers.</p>\n<p>Publishers can opt not to support AMP, but the kicker is that Google may show preference to results that are configured to deliver AMP-powerd posts, simply by virtue of the fact that it already factors page speed into results. The <a href="https://googleblog.blogspot.com/2015/10/introducing-accelerated-mobile-pages.html" target="_blank">AMP demo</a> shows a carousel of AMP-powered posts under Top Stories, but it’s not yet clear whether this will be the actual implementation.</p>\n<h3>AMP is a Big Win for the Open Web</h3>\n<p>Google is firing back at <a href="https://instantarticles.fb.com/" target="_blank">Facebook’s Instant Articles</a> with the official launch of AMP today. Facebook’s attempt to speed up mobile viewing is platform-specific and only available within its app. AMP, on the other hand, works anywhere online and is controlled and customized by the publisher.</p>\n<p>In October 2015, WordPress.com was one of the first publishers to partner with Google on this initiative to speed up the mobile web. Paul Maiorana, VP of Platform Services at Automattic, <a href="https://vip.wordpress.com/2015/10/07/mobile-web/" target="_blank">announced the company’s involvement in the project on the VIP blog</a>:</p>\n<blockquote><p>We believe that open source is one of the most powerful ideas of our generation. We strongly and actively support a free, open internet. We’re very happy to support an open source initiative like AMP, which brings publishers and technology companies together to make a better mobile experience for everyone.</p></blockquote>\n<p>The mobile web is currently a zombie wasteland of bloated, sluggish pages – many sites are unbearable to browse and users quickly abandon slow-loading pages. The AMP project helps publishers deliver a leaner version of posts. It makes mobile browsing faster for everyone, not just those using a few select apps. As such, it is a victory for the open web.</p>\n<p>For more background on the project with comments from WordPress.com’s Paul Maiorana, check out video below:</p>\n<div class="embed-wrap"></div>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 24 Feb 2016 22:27:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:42:"Matt: Ten Thousand Hours with Reid Hoffman";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=46223";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://ma.tt/2016/02/ten-thousand-hours-with-reid-hoffman/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:287:"<p><a href="http://casnocha.com/">Ben Casnocha</a> is an interesting and innovative character in his own right, and <a href="http://casnocha.com/reid-hoffman-lessons">it’s worth reading his essay slash short book on the years he spent as the right hand man of Reid Hoffman</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 24 Feb 2016 16:17:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:62:"WPTavern: WordCamp Miami Wapuuno Cards Now Available 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=51699";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordcamp-miami-wapuuno-cards-now-available-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:1942:"<p>One of the challenges of organizing a WordCamp is coming up with general swag for the event that will delight attendees, as opposed to filling swag bags with cheap plastic junk. Organizers are also tasked with arranging a gift for speakers. WordCamp Miami, which will be entering its ninth year running in 2017, is well known for creating fun collectibles for attendees and speakers. Last year the team gave <a href="https://twitter.com/dimensionmedia/status/702185356330930176" target="_blank">“WordPress developer” cards</a> as speaker gifts.</p>\n<p>This year organizers created a deck of Wapuu Uno cards, dubbed “Wapuuno,” as a gift for speakers. Each card features a different wapuu, most of which were designed for past WordCamps in various locations around the world. Organizer David Bisset created the deck based on open source Wapuus that are publicly available.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/02/wapuuno-cards.png" rel="attachment wp-att-51701"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/02/wapuuno-cards.png?resize=1025%2C915" alt="wapuuno-cards" class="aligncenter size-full wp-image-51701" /></a></p>\n<p>I asked Bisset what he would recommend to other WordCamp organizers who are stumped about what to get speakers. “I don’t think speaker gifts need to be anything meaningful,” he said. “Miami does these out of fun, but organizers shouldn’t be pressured to do these things. If they are stumped, sometimes a gift is simply a nice coffee or trinket.”</p>\n<p>The <a href="https://github.com/dimensionmedia/Wapuuno" target="_blank">Wapuuno cards</a> are now available on GitHub for anyone to download and print. Bisset joked that WordCamp Miami organizers are looking into creating Candy Land style Wapuu cards in 2017 but is hoping that other WordCamp organizers will beat them to it.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 24 Feb 2016 00:03: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: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:63:"WPTavern: 10up Open Sources ElasticPress Plugin for WooCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51677";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wptavern.com/10up-open-sources-elasticpress-plugin-for-woocommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6465:"<p><a href="https://www.woothemes.com/woocommerce/" target="_blank">WooCommerce</a> is currently the most popular way to add a store to WordPress. Its usage is on the rise and seems to be growing in tandem with global WordPress usage. Wappalyzer estimates a <a href="https://wappalyzer.com/categories/ecommerce" target="_blank">31% marketshare</a> in the e-commerce category and <a href="http://builtwith.com/ecommerce/" target="_blank">BuiltWith has WooCommerce at roughly 29%</a> among other shopping cart technologies. Either way you slice it, WooCommerce accounts for a big piece of the pie.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/02/woocommerce-marketshare.png" rel="attachment wp-att-51688"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2016/02/woocommerce-marketshare.png?resize=1025%2C618" alt="woocommerce-marketshare" class="aligncenter size-full wp-image-51688" /></a></p>\n<p>Store managers are attracted to WooCommerce because of its ease of use and its ecosystem that offers hundreds of free and commercial extensions. The reason many stores are still built on Magento, an open source shopping cart with a more complicated store management interface, is because it was built to handle massive stores with thousands of products and complex searches. WooCommerce is rapidly becoming a more viable option for these types of stores, with continual <a href="https://www.woothemes.com/2016/01/woocommerce-25-dashing-dolphin/" target="_blank">performance improvements</a> and the new open source <a href="http://10up.com/blog/2016/elasticpress-woocommerce-plugin/" target="_blank">ElasticPress WooCommerce</a> extension from <a href="http://10up.com/" target="_blank">10up</a>.</p>\n<p>In 2014 the engineering team at 10up created <a href="https://wordpress.org/plugins/elasticpress/" target="_blank">ElasticPress</a> to improve WordPress search, allow for complex search filters, and allow for cross-blog search within multisite (a feature missing from existing ElasticSearch plugins at the time).</p>\n<p>Taylor Lovett, 10up’s Director of Web Engineering, said he was surprised by the amount of feedback they received on the project.</p>\n<p>“The plugin grew from just search to improving WordPress performance by routing slow queries through Elasticsearch,” Lovett said. “As such, we continued to iterate on the project, supporting as many WP_Query parameters as possible and making things as developer friendly as possible.”</p>\n<p>During that time Lovett was traveling to WordCamps around the world talking about the power of ElasticPress. He met other developers who asked what it would take to support WooCommerce queries.</p>\n<p>“ElasticPress has a very powerful API that allows it to route almost all WordPress functionality through Elasticsearch instead of MySQL,” Lovett said. “However, in order to make the plugin really work for WooCommerce, we needed a ‘connector’ of sorts. The connector mostly enables Elasticsearch integration in the admin, adds support for indexing ALL post statuses and public post types, and passes appropriate GET parameters to WP_Query in ElasticPress proper formats. ElasticPress tries to support all of WP_Query functionality but there are some holes that the connector needed to fill.</p>\n<p>“I knew that WooCommerce sites could suffer from performance problems given the complex product/order queries that they run,” he said. “As such, we built ElasticPress WooCommerce to solve those problems.”</p>\n<p>After testing the plugin locally on a store with about 10,000 products and 20,000 orders, 10up found that <strong>“ElasticPress WooCommerce can easily turn database queries that take 3-4 seconds into Elasticsearch queries that take 30 milliseconds.”</strong> According to Lovett, the tests included about 20 WooCommerce extensions and the database queries were timed using the Debug Bar, Debug Bar Extender, and Debug Bar ElasticPress.</p>\n<p>ElasticPress WooCommerce provides roughly a 100% data retrieval performance improvement when it comes to filtering products on both the frontend and in the admin. This helps stores render pages faster to capture potential customers while they’re in the buying mood.</p>\n<h3>Using ElasticPress WooCommerce for Performance Increases with Other Extensions</h3>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/elasticpress-woocommerce.png" rel="attachment wp-att-51691"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/elasticpress-woocommerce.png?resize=1025%2C439" alt="elasticpress-woocommerce" class="aligncenter size-full wp-image-51691" /></a></p>\n<p><a href="https://wordpress.org/plugins/elasticpress-woocommerce/" target="_blank">ElasticPress WooCommerce</a> requires ElasticPress 1.8+ and PHP 5.2.4+. Once those are in place, it is relatively plug-and-play. Lovett said that the only caveat is that it is not guaranteed to support the hundreds of WooCommerce extensions completely. If an extension uses WP_Query in a way that’s compatible with ElasticPress then it should automatically take advantage of the performance increases.</p>\n<p>“We try to support as much extension functionality as we can but there is just too much to tackle,” he said. “The way those extensions use WP_Query varies. We can’t predict how every extension interacts with WP_Query and don’t have time to test every single one.</p>\n<p>“Some extensions have no bearing on ElasticPress WooCommerce,” Lovett said. “For example, a different payment gateway. Extensions that involve showing/filtering products and orders should test their extensions with the plugin and refer to the ElasticPress documentation to make sure they are only using supported WP_Query parameters.”</p>\n<p>10up is looking for more developers to test and collaborate on the project, which is hosted on both <a href="https://github.com/10up/elasticpress-woocommerce" target="_blank">GitHub</a> and <a href="https://wordpress.org/plugins/elasticpress-woocommerce/" target="_blank">WordPress.org</a>. The company plans to improve the plugin based on experience with enterprise WooCommerce customers. If you are looking to scale WooCommerce or are currently managing a sluggish store, ElasticPress WooCommerce is one option that you may want to test.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 23 Feb 2016 20:51:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:65:"WPTavern: WordPress Tops Alignable’s Small Business Trust Index";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51635";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wptavern.com/wordpress-tops-alignables-small-business-trust-index";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4128:"<p>In a <a href="https://www.alignable.com/small-business-insights/introducing-alignables-smb-trust-index" target="_blank">SMB trust index survey</a> conducted by Alignable in the fourth quarter of 2015, WordPress ranked as the most trusted of 25 nationally recognized brands used by small business owners. The results were ranked using the (<a href="http://www.netpromotersystem.com/about/measuring-your-net-promoter-score.aspx" target="_blank">Net Promoter System</a>), a trademarked customer loyalty metric that measures promoters against detractors to produce a net trustworthiness score.</p>\n<p>The survey, which was <a href="http://www.bizjournals.com/sanfrancisco/blog/techflash/2016/02/alignable-survey-smb-trust-q4-2015-yelp-wordpress.html" target="_blank">originally reported by the San Francisco Business Times</a>, was roundly disregarded in the WordPress community due to the misuse of the word ‘company’ in the Times’ writeup:</p>\n<blockquote><p>For small business owners, WordPress is a well-trusted company, Yelp is a brand in trouble, and Facebook is on a downward path.</p></blockquote>\n<p>Additionally, the wording on the <a href="https://s3.amazonaws.com/alignable/content/Alignable-SMB-Trust-Index-Q4-2015.pdf" target="_blank">ranking graphic</a> seemed to trivialize the results: <em>“WordPress proves ‘free’ doesn’t always mean ‘junk.\'”</em></p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/02/wordpress-nps-results.png" rel="attachment wp-att-51664"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/02/wordpress-nps-results.png?resize=1025%2C729" alt="wordpress-nps-results" class="aligncenter size-full wp-image-51664" /></a></p>\n<p>Despite the odd presentation, the results are worth examining, as Alignable surveyed more than 6,000 small business owners across 7,000 communities in North America. WordPress received an NPS of 73, significantly higher than other brands known for website creation: Shopify (29), Godaddy (26), Squarespace (11), Wix (-7), Weebly (-13), and Web.com (-61).</p>\n<p>The footnote on the report explains the relative position changes which are shown on the rankings graphic for brands that were included in the previous quarter’s survey:</p>\n<blockquote><p>Data represents running, cumulative report of SMB sentiment of vendors and providers from more than 6,000 ratings. Relative position changes from this quarter to the prior quarter were generated from the 25% net new ratings added to the database in the quarter. Alignable members rated these brands on a sliding scale from 0-10. NPS values calculated by subtracting percentage of detractors (brands rated 0-6) from percentage of promoters (brands rated 9-10).</p></blockquote>\n<p>Godaddy fell one point in positioning and Wix and Weebly fell 4 and 8 points respectively. WordPress is new to Alignable’s SMB index and should have relative position notes included in next quarter’s survey.</p>\n<p>Although the footnote specifies that the index rates brands, the 25 that are included are clearly companies and products. Any conclusions drawn from rating the general WordPress brand would be somewhat nebulous, given that it’s not clear if business owners are rating their experiences with the WordPress.com service or the self-hosted software. With the introduction of <a href="http://wptavern.com/early-reviews-show-applications-like-calypso-are-the-future-of-wordpress" target="_blank">Calypso</a>, the gap between the two publishing experiences continues to grow.</p>\n<p>Nevertheless, most of the brands included are also representative of several different products. The scores are more of a general indication of the trustworthiness of the brand name, although creators of the Net Promoter System claim that a high NPS can point toward long-term profitable growth. If you’re in the business of building websites or applications for clients, it’s good to know that the trustworthiness of the WordPress brand is ranking high among industry competitors.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 22 Feb 2016 19:53:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:112:"WPTavern: Varying Vagrant Vagrants 1.3.0 Released with Support for MailCatcher and More Virtualization Providers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51643";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:122:"http://wptavern.com/varying-vagrant-vagrants-1-3-0-released-with-support-for-mailcatcher-and-more-virtualization-providers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2774:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/vvv.png" rel="attachment wp-att-51659"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/vvv.png?resize=1025%2C473" alt="vvv" class="aligncenter size-full wp-image-51659" /></a></p>\n<p>Over the weekend, Jeremy Felt released <a href="https://varyingvagrantvagrants.org/2016/02/21/varying-vagrant-vagrants-1-3-0/" target="_blank">Varying Vagrant Vagrants 1.3.0</a>. Although VVV uses <a href="https://www.virtualbox.org/" target="_blank">VirtualBox</a> as its default virtualization provider, this release adds support for Parallels, VMWare Fusion, VMWare Workstation, and Hyper-V in the default Vagrantfile.</p>\n<p>Version 1.3.0 also adds <a href="http://mailcatcher.me/" target="_blank">MailCatcher</a> to the default provisioning. When working in a development environment, you generally don’t want want to deliver emails from the test site. MailCatcher collects any mail that is sent out and stores it for display. It’s available in the browser at vvv.dev:1080 in case you need to troubleshoot WordPress core and/or plugins.</p>\n<p>Felt, the project’s current maintainer, said that he is aiming to push out more incremental releases every three months and hopes to get more developers using the <code>develop</code> branch on GitHub.</p>\n<p>“A tough thing about marking version numbers on a project like VVV is that all of the various versions of included packages change frequently,” Felt said. “We need to do a better job of making it easier to maintain existing packages.”</p>\n<p>Felt is currently <a href="https://github.com/Varying-Vagrant-Vagrants/VVV/issues/583" target="_blank">soliciting feedback on changing the TLD for test sites</a> in the next version, as Google is attempting to <a href="https://gtldresult.icann.org/application-result/applicationstatus/applicationdetails/1339" target="_blank">gain control of the .dev TLD</a>. If the company were to open it up for public registration, it could cause confusion with test sites. After a brief discussion with VVV users, Felt has narrowed the considerations to .localhost, .test, and .local.</p>\n<p>In addition to a new TLD for test sites, Felt hopes to update packages on <code>vagrant provision</code> in a future release, which should help keep PHP, Nginx, and MySQL updated. He also wants to make it easy to remove the default configurations for WordPress local, trunk, and dev environments that are offered with VVV out of the box.</p>\n<p>For more details on the 23 features and bug fixes in 1.3.0, check out the official <a href="https://github.com/Varying-Vagrant-Vagrants/VVV/blob/1.3.0/CHANGELOG.md" target="_blank">changelog</a>.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 22 Feb 2016 16:02: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: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:35:"Matt: New Yorker on Zen Master Poet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=46218";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"https://ma.tt/2016/02/new-yorker-on-zen-master-poet/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:171:"<p>It’s never a bad time to <a href="http://www.newyorker.com/magazine/2008/10/20/zen-master">read and learn about the life, work, and poetry of Gary Snyder</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, 22 Feb 2016 15:50:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:44;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"Matt: Jazzy Claire de Lune";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=46164";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"https://ma.tt/2016/02/jazzy-claire-de-lune/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:939:"<p><span class="embed-youtube"></span></p>\n<p>I love this version from <a href="http://www.kamasiwashington.com/">Kamasi Washington</a> of Claude Debussy’s Clair de Lune, or “light of the moon.” Here’s the <a href="https://en.wikipedia.org/wiki/Paul_Verlaine">Paul Verlaine</a> poem that inspired the original composition:</p>\n<blockquote><p>Your soul is a chosen landscape<br />\nWhere charming masqueraders and bergamaskers go<br />\nPlaying the lute and dancing and almost<br />\nSad beneath their fanciful disguises.</p>\n<p>All sing in a minor key<br />\nOf victorious love and the opportune life,<br />\nThey do not seem to believe in their happiness<br />\nAnd their song mingles with the moonlight,</p>\n<p>With the still moonlight, sad and beautiful,<br />\nThat sets the birds dreaming in the trees<br />\nAnd the fountains sobbing in ecstasy,<br />\nThe tall slender fountains among marble statues.</p></blockquote>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 21 Feb 2016 20:07: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:45;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:58:"Post Status: All things HTTP/2 and HTTPS — Draft podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=21371";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"https://poststatus.com/all-things-http2-and-https-draft-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2417:"<p>Welcome to the Post Status <a href="https://poststatus.com/category/draft">Draft podcast</a>, which you can find <a href="https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008">on iTunes</a>, <a href="http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast">Stitcher</a>, and <a href="http://simplecast.fm/podcasts/1061/rss">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.</p>\n<p><span>HTTPS and HTTP/2 are somewhat intertwined, and a lot has been going on lately in this realm. Google has made a big push to encourage the use of SSL for websites — including making it a search ranking factor — and LetsEncrypt and other services are offering new ways to deliver free SSL certificates, securely. And HTTPS is required for HTTP/2, which is making a big splash as well, quickly outpacing SPDY. Today, we’ll talk about what these terms are, and what it means for the web and for WordPress.</span></p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href="https://audio.simplecast.com/27370.mp3">https://audio.simplecast.com/27370.mp3</a>\n<p><a href="http://audio.simplecast.com/27370.mp3">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href="https://letsencrypt.org/">Let’s Encrypt</a></li>\n<li><a href="http://wordpress.tv/2015/12/09/zack-tollman-and-aaron-jorbin-the-future-stack-running-wordpress-with-tomorrows-technologies/">The Future Stack: Running WordPress with Tomorrow’s Technologies</a></li>\n<li><a href="http://oauth.net/">OAuth</a></li>\n<li><a href="https://http2.github.io/faq/">HTTP/2 FAQs</a></li>\n<li><a href="https://make.wordpress.org/core/2015/09/08/wordpress-and-http2/">WordPress and HTTP/2</a></li>\n<li><a href="https://en.wikipedia.org/wiki/HTTP/2#Software_and_services_supporting_HTTP.2F2">Software and services supporting HTTP/2</a></li>\n<li><a href="http://blog.chromium.org/2016/02/transitioning-from-spdy-to-http2.html">Transitioning from SPDY to HTTP/2</a></li>\n<li><a href="https://wordpress.tv/2015/07/29/zack-tollman-http-2-and-you/">HTTP/2 and You</a></li>\n<li><a href="https://blog.cloudflare.com/introducing-http2/">Introducing HTTP/2</a></li>\n<li><a href="http://www.buzzfeed.com/nickrkm/youre-listening-to-delilah#.wa82qoMyR">You’re Listening to Delilah</a></li>\n</ul>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 20 Feb 2016 18:20:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Katie Richards";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:81:"WPTavern: hack.summit() Event for Developers Will Be Live-Streamed February 22-24";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51615";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/hack-summit-event-for-developers-will-be-live-streamed-february-22-24";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2570:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/02/hack.summit.png" rel="attachment wp-att-51623"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2016/02/hack.summit.png?resize=1025%2C375" alt="hack.summit" class="aligncenter size-full wp-image-51623" /></a></p>\n<p><a href="https://hacksummit.org/" target="_blank">Hack.summit()</a> is a unique event for developers that is set to be live-streamed February 22-24, 2016. It is the world’s largest virtual conference ever assembled, with 64,000 developers registered for last year’s event. hack.summit() will feature an impressive array of programming language creators and open source contributors and all ticket sales/donations go to support programming non-profits such as Code.org, Code for America, CoderDojo, and Girls Who Code.</p>\n<p>The event focuses on three primary objectives:</p>\n<ul>\n<li>To educate programmers of all languages and skill sets</li>\n<li>To raise money for coding nonprofits</li>\n<li>To encourage mentorship among software developers</li>\n</ul>\n<p>In lieu of traditional ticket sales, hack.summit() attendees are asked to donate to one of the selected coding non-profits. Those who are not financially able to donate can get a free ticket by sharing the event on Twitter or Facebook. Attendees are provided with a unique ticket number after registering, which includes access to the live conference.</p>\n<p>The event heavily promotes mentoring by asking attendees to sign a <a href="https://hackpledge.org/" target="_blank">hack pledge</a> to help mentor the next generation of developers with a minimum of one hour of coding help. The hack pledge video below features stories from programmers who have struggled to master software craftsmanship and those who benefited greatly from mentors:</p>\n<div class="embed-wrap"></div>\n<p>hack.summit() will also host the largest <a href="https://www.koding.com/Hackathon" target="_blank">virtual hackathon</a> in the world. Participants will create a web app using any publicly available API that falls within three general categeries: data visualization, productivity, or gaming. Last year’s event drew 60,000 coders from more than 900 cities. Participants will compete to win from a $150,000 prize pool.</p>\n<p>If you’re looking for an interesting non-WordPress event to attend this year, <a href="https://hacksummit.org/" target="_blank">hack.summit()</a> is one of the most accessible with high quality speakers that will expand your technical horizons.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 19 Feb 2016 20:21: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:"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: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:19:"Matt: WordPress NPS";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=46156";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:36:"https://ma.tt/2016/02/wordpress-nps/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:753:"<blockquote><p>For small business owners, WordPress is a well-trusted company, Yelp is a brand in trouble, and Facebook is on a downward path. Those are some of the findings out today from a survey of 6,000 small business owners from the second half of 2015 conducted by Alignable.</p></blockquote>\n<p><a href="http://www.bizjournals.com/sanfrancisco/blog/techflash/2016/02/alignable-survey-smb-trust-q4-2015-yelp-wordpress.html">You can see the whole thing here</a>. WordPress came in with a NPS of 73, Shopify at 29, Godaddy at 26, Squarespace at 11, Wix at -7, Weebly at -13, Web.com at -61, and Yelp at -66. <a href="http://www.netpromotersystem.com/about/measuring-your-net-promoter-score.aspx">Here’s how a Net Promoter Score works</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, 19 Feb 2016 19:55:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:69:"WPTavern: WordPress to Launch Experimental WordCamp Incubator Program";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=51599";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://wptavern.com/wordpress-to-launch-experimental-wordcamp-incubator-program";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2595:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/wordpress-swag.jpg" rel="attachment wp-att-17801"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/wordpress-swag.jpg?resize=1024%2C441" alt="photo credit: Huasonic - cc" class="size-full wp-image-17801" /></a>photo credit: <a href="http://www.flickr.com/photos/huasonic/3008912290/">Huasonic</a> – <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a>\n<p>During the 2015 State of the Word address, Matt Mullenweg shared a few stats about the growth of WordPress events around the globe. Last year there were 89 WordCamps with 21,000 attendees across 34 countries. A surprising 60% of the 601 WordCamp organizers were doing it for the first time. More people are getting involved in hosting WordPress events but there are many areas of the world that have yet to experience one.</p>\n<p>The WordPress community team, which provides support and guidance for WordCamps, will be experimenting with bringing events to new locations in 2016. Ordinarily, WordCamps spring up organically from local WordPress communities with active meetups. The new <a href="https://wordpress.org/news/2016/02/experiment-wordcamp-incubator/" target="_blank">WordPress incubator program</a> will bring a WordCamp to three new cities where meetups are not necessarily as well established.</p>\n<p>Jen Mylo outlined the goal of the program in a recent <a href="https://wordpress.org/news/2016/02/experiment-wordcamp-incubator/" target="_blank">post</a> on the WordPress news blog:</p>\n<blockquote><p>The intention of the incubator program is to help spread WordPress to underserved areas through providing more significant organizing support for a first event. In practical terms, this experiment means we’ll be choosing three cities in 2016 where there is not an active WordPress community — but where it seems like there is a lot of potential and where there are some people excited to become organizers — and will help to organize their first WordCamp.</p></blockquote>\n<p>The new WordCamps will be designed as one-day, one-track events that connect the local community and inspire them to establish an ongoing presence. Qualifications for applying are rather loose. Those who have always wanted to get WordPress events going in their city but haven’t had success organizing meetups are encouraged to apply.</p>\n<p>Applications will be accepted until February 26, 2016, and cities will be chosen by the end of March. Where do you think the world needs a new WordCamp?</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 19 Feb 2016 18:23:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:87:"WPTavern: Happy Joe to Shut Down Non-Profit Organization in Favor of For-Profit Venture";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=51587";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:97:"http://wptavern.com/happy-joe-to-shut-down-non-profit-organization-in-favor-of-for-profit-venture";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3100:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/VeteransDayFeaturedImage.png" rel="attachment wp-att-33378"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/VeteransDayFeaturedImage.png?resize=638%2C285" alt="Veterans Day Featured Image" class="size-full wp-image-33378" /></a>photo credit: <a href="https://www.flickr.com/photos/soldiersmediacenter/6343590279/">The U.S. Army</a> – <a href="http://creativecommons.org/licenses/by/2.0/">cc</a>\n<p>Happy Joe founder James Dalman <a href="https://www.happyjoe.org/shutting-down/" target="_blank">announced</a> this week that the non-profit organization will be shutting down. Dalman started the organization to help veterans find employment opportunities in WordPress and other web technologies. He plans to continue with a modified version of the Happy Joe mission set up as a for-profit venture.</p>\n<p>After operating for the past two years as a tax-exempt 501(c)(3) organization, Dalman no longer has the desire to continue raising funds. Happy Joe pulled in $80,000 in 2015 through corporate sponsorships and private donations, but Dalman started 2016 with no funds to carry through.</p>\n<p>“The reality is we can’t continue on a zero budget and I can’t continue to work for free,” he said. “While it would be simple to say dedicate more time to asking companies and people for funding, it’s not in my heart to do so anymore. I believe in being self-sufficient and not a burden on others.”</p>\n<p>Lack of funding is the primary reason the organization is shutting down, but Dalman also struggled with the perception of non-profits. With organizations like the <a href="http://www.nytimes.com/2016/01/28/us/wounded-warrior-project-spends-lavishly-on-itself-ex-employees-say.html?_r=0" target="_blank">Wounded Warrior Foundation receiving negative press for excessive spending</a>, Dalman said the growing skepticism of non-profits made his job more challenging.</p>\n<blockquote><p>There’s no doubt that accountability and transparency is critical and Happy Joe has strived to excel in this. But the wrong assumptions about what a non-profit can do and the skepticism and lack of trust also complicates the mission for teams operating in the non-profit space for the future. Battling these challenges keeps us from doing the work that truly matters.</p></blockquote>\n<p>Dalman’s non-profit post-mortem also cites negative stereotypes about veterans, expectations of rewards or kickbacks for donations, and his own leadership as contributing factors to his decision to shut the organization down.</p>\n<p>“We will now operate as a for-profit venture and will shift our focus from web tech training to building a talent marketplace where veterans can get freelance work and be mentored in growing a business,” Dalman said.</p>\n<p>The new for-profit venture will drop some of the programs that Happy Joe offered previously but will continue to assist veterans in seeking employment and developing entrepreneurial skills.</p>\n<div id="epoch-width-sniffer"></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 18 Feb 2016 22:29:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 12 Mar 2016 10:18:22 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"218743";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Sat, 12 Mar 2016 10:00:14 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20130911040210";}', 'no');
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(130, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1457821280', 'no'),
(131, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1457778080', 'no'),
(138, '_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b', '1457821282', 'no'),
(140, '_transient_dash_88ae138922fe95674369b1cb3d215a2b', '<div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2016/03/wordpress-4-5-beta-3/\'>WordPress 4.5 Beta 3</a> <span class="rss-date">March 10, 2016</span><div class="rssSummary">WordPress 4.5 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2016/03/changelog-podcast/\'>Matt: Changelog Podcast</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/in-case-you-missed-it-issue-4\'>WPTavern: In Case You Missed It – Issue 4</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/onepress-a-free-single-page-wordpress-theme-built-with-bootstrap-4\'>WPTavern: OnePress: A Free Single-Page WordPress Theme Built with Bootstrap 4</a></li></ul></div><div class="rss-widget"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/wpclef/\' class=\'dashboard-news-plugin-link\'>Clef Two-Factor Authentication</a> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=wpclef&_wpnonce=e9fb7d509c&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Clef Two-Factor Authentication\'>Install</a>)</span></li></ul></div>', 'no'),
(141, '_transient_twentysixteen_categories', '1', 'yes'),
(148, 'jetpack_options', 'a:12:{s:7:"version";s:16:"3.9.7:1464344610";s:11:"old_version";s:16:"3.9.4:1457778190";s:28:"fallback_no_verify_ssl_certs";i:0;s:9:"time_diff";i:78;s:2:"id";i:77844687;s:6:"public";i:1;s:9:"jumpstart";s:19:"jumpstart_activated";s:11:"master_user";i:1;s:14:"last_heartbeat";i:1470825005;s:20:"sync_bulk_reindexing";b:1;s:21:"publicize_connections";a:1:{s:7:"twitter";a:1:{i:9081597;a:9:{s:7:"user_id";i:1;s:8:"provider";s:13:"twitter:38869";s:6:"issued";s:19:"2014-10-28 15:39:33";s:7:"expires";s:19:"0000-00-00 00:00:00";s:11:"external_id";s:9:"923019894";s:13:"external_name";s:8:"Matiboux";s:16:"external_display";s:9:"@Matiboux";s:4:"type";s:6:"access";s:15:"connection_data";a:5:{s:2:"id";s:7:"9081597";s:8:"token_id";s:7:"9114005";s:7:"blog_id";s:8:"77844687";s:7:"user_id";i:1;s:4:"meta";a:4:{s:16:"external_user_id";i:1;s:14:"follower_count";i:190;s:12:"display_name";s:9:"@Matiboux";s:4:"link";s:27:"http://twitter.com/Matiboux";}}}}}s:9:"hide_jitm";a:1:{s:5:"stats";s:4:"hide";}}', 'yes'),
(149, 'jetpack_activated', '1', 'yes'),
(150, 'jetpack_file_data', 'a:1:{s:5:"3.9.7";a:49:{s:32:"31e5b9ae08b62c2b0cd8a7792242298b";a:14:{s:4:"name";s:20:"Spelling and Grammar";s:11:"description";s:89:"Check your spelling, style, and grammar with the After the Deadline proofreading service.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"6";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:115:"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche";}s:32:"3f41b2d629265b5de8108b463abbe8e2";a:14:{s:4:"name";s:8:"Carousel";s:11:"description";s:63:"Transform standard image galleries into full-screen slideshows.";s:14:"jumpstart_desc";s:79:"Brings your photos and images to life as full-size, easily navigable galleries.";s:4:"sort";s:2:"22";s:20:"recommendation_order";s:2:"12";s:10:"introduced";s:3:"1.5";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:17:"Photos and Videos";s:7:"feature";s:9:"Jumpstart";s:25:"additional_search_queries";s:80:"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image";}s:32:"c6ebb418dde302de09600a6025370583";a:14:{s:4:"name";s:8:"Comments";s:11:"description";s:79:"Let readers comment with WordPress.com, Twitter, Facebook, or Google+ accounts.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"20";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.4";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:6:"Social";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:53:"comments, comment, facebook, twitter, google+, social";}s:32:"836f9485669e1bbb02920cb474730df0";a:14:{s:4:"name";s:12:"Contact Form";s:11:"description";s:44:"Insert a contact form anywhere on your site.";s:14:"jumpstart_desc";s:111:"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.";s:4:"sort";s:2:"15";s:20:"recommendation_order";s:2:"14";s:10:"introduced";s:3:"1.3";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:5:"Other";s:7:"feature";s:9:"Jumpstart";s:25:"additional_search_queries";s:44:"contact, form, grunion, feedback, submission";}s:32:"ea3970eebf8aac55fc3eca5dca0e0157";a:14:{s:4:"name";s:20:"Custom Content Types";s:11:"description";s:92:"Organize and display different types of content on your site, separate from posts and pages.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"34";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"3.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:72:"cpt, custom post types, portfolio, portfolios, testimonial, testimonials";}s:32:"d2bb05ccad3d8789df40ca3abb97336c";a:14:{s:4:"name";s:10:"Custom CSS";s:11:"description";s:57:"Customize your site’s CSS without modifying your theme.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"2";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.7";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:10:"Appearance";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:108:"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet";}s:32:"a2064eec5b9c7e0d816af71dee7a715f";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"53a4ec755022ef3953699734c343da02";a:14:{s:4:"name";s:21:"Enhanced Distribution";s:11:"description";s:27:"Increase reach and traffic.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"5";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.2";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:6:"Public";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:7:"Traffic";s:25:"additional_search_queries";s:54:"google, seo, firehose, search, broadcast, broadcasting";}s:32:"72fecb67ee6704ba0a33e0225316ad06";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"d56e2886185a9eace719cc57d46770df";a:14:{s:4:"name";s:19:"Gravatar Hovercards";s:11:"description";s:58:"Enable pop-up business cards over commenters’ Gravatars.";s:14:"jumpstart_desc";s:131:"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.";s:4:"sort";s:2:"11";s:20:"recommendation_order";s:2:"13";s:10:"introduced";s:3:"1.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:18:"Social, Appearance";s:7:"feature";s:9:"Jumpstart";s:25:"additional_search_queries";s:20:"gravatar, hovercards";}s:32:"e391e760617bd0e0736550e34a73d7fe";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:8:"2.0.3 ??";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"2e345370766346c616b3c5046e817720";a:14:{s:4:"name";s:15:"Infinite Scroll";s:11:"description";s:46:"Add support for infinite scroll to your theme.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"26";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.0";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:10:"Appearance";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:33:"scroll, infinite, infinite scroll";}s:32:"bd69edbf134de5fae8fdcf2e70a45b56";a:14:{s:4:"name";s:8:"JSON API";s:11:"description";s:69:"Allow applications to securely access your content through the cloud.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"19";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.9";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:6:"Public";s:11:"module_tags";s:19:"Writing, Developers";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:50:"api, rest, develop, developers, json, klout, oauth";}s:32:"8110b7a4423aaa619dfa46b8843e10d1";a:14:{s:4:"name";s:14:"Beautiful Math";s:11:"description";s:85:"Use LaTeX markup language in posts and pages for complex equations and other geekery.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"12";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:47:"latex, math, equation, equations, formula, code";}s:32:"fd7e85d3b4887fa6b6f997d6592c1f33";a:14:{s:4:"name";s:5:"Likes";s:11:"description";s:70:"Give visitors an easy way to show their appreciation for your content.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"23";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.2";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:6:"Social";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:26:"like, likes, wordpress.com";}s:32:"c5dfef41fad5bcdcaae8e315e5cfc420";a:14:{s:4:"name";s:6:"Manage";s:11:"description";s:76:"Manage all your sites from a centralized place, https://wordpress.com/sites.";s:14:"jumpstart_desc";s:151:"Helps you remotely manage plugins, turn on automated updates, and more from <a href="https://wordpress.com/plugins/" target="_blank">wordpress.com</a>.";s:4:"sort";s:1:"1";s:20:"recommendation_order";s:1:"3";s:10:"introduced";s:3:"3.4";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:35:"Centralized Management, Recommended";s:7:"feature";s:22:"Recommended, Jumpstart";s:25:"additional_search_queries";s:26:"manage, management, remote";}s:32:"fd6dc399b92bce76013427e3107c314f";a:14:{s:4:"name";s:8:"Markdown";s:11:"description";s:51:"Write posts or pages in plain-text Markdown syntax.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"31";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.8";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:12:"md, markdown";}s:32:"c49a35b6482b0426cb07ad28ecf5d7df";a:14:{s:4:"name";s:12:"Mobile Theme";s:11:"description";s:64:"Optimize your site with a mobile-friendly theme for smartphones.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"21";s:20:"recommendation_order";s:2:"11";s:10:"introduced";s:3:"1.8";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:31:"Appearance, Mobile, Recommended";s:7:"feature";s:11:"Recommended";s:25:"additional_search_queries";s:24:"mobile, theme, minileven";}s:32:"b42e38f6fafd2e4104ebe5bf39b4be47";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"771cfeeba0d3d23ec344d5e781fb0ae2";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"54f0661d27c814fc8bde39580181d939";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"46c4c413b5c72bbd3c3dbd14ff8f8adc";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"9ea52fa25783e5ceeb6bfaed3268e64e";a:14:{s:4:"name";s:7:"Monitor";s:11:"description";s:25:"Reports on site downtime.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"28";s:20:"recommendation_order";s:2:"10";s:10:"introduced";s:3:"2.6";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:11:"Recommended";s:7:"feature";s:33:"Recommended, Performance-Security";s:25:"additional_search_queries";s:37:"monitor, uptime, downtime, monitoring";}s:32:"cfcaafd0fcad087899d715e0b877474d";a:14:{s:4:"name";s:13:"Notifications";s:11:"description";s:84:"Receive notification of site activity via the admin toolbar and your Mobile devices.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"13";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.9";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:5:"Other";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:62:"notification, notifications, toolbar, adminbar, push, comments";}s:32:"0d18bfa69bec61550c1d813ce64149b0";a:14:{s:4:"name";s:10:"Omnisearch";s:11:"description";s:66:"Search your entire database from a single field in your Dashboard.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"16";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.3";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:10:"Developers";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:6:"search";}s:32:"3f0a11e23118f0788d424b646a6d465f";a:14:{s:4:"name";s:6:"Photon";s:11:"description";s:27:"Speed up images and photos.";s:14:"jumpstart_desc";s:141:"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.";s:4:"sort";s:2:"25";s:20:"recommendation_order";s:1:"1";s:10:"introduced";s:3:"2.0";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:42:"Photos and Videos, Appearance, Recommended";s:7:"feature";s:44:"Recommended, Jumpstart, Performance-Security";s:25:"additional_search_queries";s:38:"photon, image, cdn, performance, speed";}s:32:"e37cfbcb72323fb1fe8255a2edb4d738";a:14:{s:4:"name";s:13:"Post by Email";s:11:"description";s:58:"Publish posts by email, using any device and email client.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"14";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.0";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:20:"post by email, email";}s:32:"728290d131a480bfe7b9e405d7cd925f";a:14:{s:4:"name";s:7:"Protect";s:11:"description";s:28:"Prevent brute force attacks.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"1";s:20:"recommendation_order";s:1:"4";s:10:"introduced";s:3:"3.4";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:11:"Recommended";s:7:"feature";s:33:"Recommended, Performance-Security";s:25:"additional_search_queries";s:65:"security, secure, protection, botnet, brute force, protect, login";}s:32:"f9ce784babbbf4dcca99b8cd2ceb420c";a:14:{s:4:"name";s:9:"Publicize";s:11:"description";s:30:"Automatically promote content.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"10";s:20:"recommendation_order";s:1:"7";s:10:"introduced";s:3:"2.0";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:19:"Social, Recommended";s:7:"feature";s:20:"Recommended, Traffic";s:25:"additional_search_queries";s:107:"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing";}s:32:"052c03877dd3d296a71531cb07ad939a";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"52edecb2a75222e75b2dce4356a4efce";a:14:{s:4:"name";s:13:"Related Posts";s:11:"description";s:24:"Display similar content.";s:14:"jumpstart_desc";s:113:"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.";s:4:"sort";s:2:"29";s:20:"recommendation_order";s:1:"9";s:10:"introduced";s:3:"2.9";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:11:"Recommended";s:7:"feature";s:31:"Recommended, Jumpstart, Traffic";s:25:"additional_search_queries";s:22:"related, related posts";}s:32:"8b059cb50a66b717f1ec842e736b858c";a:14:{s:4:"name";s:7:"Sharing";s:11:"description";s:32:"Visitors can share your content.";s:14:"jumpstart_desc";s:116:"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.";s:4:"sort";s:1:"7";s:20:"recommendation_order";s:1:"6";s:10:"introduced";s:3:"1.1";s:7:"changed";s:3:"1.2";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:19:"Social, Recommended";s:7:"feature";s:31:"Recommended, Jumpstart, Traffic";s:25:"additional_search_queries";s:141:"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr";}s:32:"a6d2394329871857401255533a9873f7";a:14:{s:4:"name";s:16:"Shortcode Embeds";s:11:"description";s:77:"Embed content from YouTube, Vimeo, SlideShare, and more, no coding necessary.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"3";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.1";s:7:"changed";s:3:"1.2";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:46:"Photos and Videos, Social, Writing, Appearance";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:251:"shortcodes, shortcode, embeds, media, bandcamp, blip.tv, dailymotion, digg, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube";}s:32:"21496e2897ea5f81605e2f2ac3beb921";a:14:{s:4:"name";s:16:"WP.me Shortlinks";s:11:"description";s:56:"Enable WP.me-powered shortlinks for all posts and pages.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"8";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:6:"Social";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:17:"shortlinks, wp.me";}s:32:"e2a54a5d7879a4162709e6ffb540dd08";a:14:{s:4:"name";s:9:"Site Icon";s:11:"description";s:29:"Add a site icon to your site.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"22";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"3.2";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:5:"Other";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:24:"favicon, icon, site icon";}s:32:"f5c537bc304f55b29c1a87e30be0cd24";a:14:{s:4:"name";s:8:"Sitemaps";s:11:"description";s:75:"Creates sitemaps to allow your site to be easily indexed by search engines.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"13";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"3.9";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:6:"Public";s:11:"module_tags";s:20:"Recommended, Traffic";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:39:"sitemap, traffic, search, site map, seo";}s:32:"59a23643437358a9b557f1d1e20ab040";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"6a90f97c3194cfca5671728eaaeaf15e";a:14:{s:4:"name";s:14:"Single Sign On";s:11:"description";s:27:"Secure user authentication.";s:14:"jumpstart_desc";s:98:"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.";s:4:"sort";s:2:"30";s:20:"recommendation_order";s:1:"5";s:10:"introduced";s:3:"2.6";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:10:"Developers";s:7:"feature";s:31:"Jumpstart, Performance-Security";s:25:"additional_search_queries";s:34:"sso, single sign on, login, log in";}s:32:"b65604e920392e2f7134b646760b75e8";a:14:{s:4:"name";s:10:"Site Stats";s:11:"description";s:35:"Collect traffic stats and insights.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"1";s:20:"recommendation_order";s:1:"2";s:10:"introduced";s:3:"1.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:23:"Site Stats, Recommended";s:7:"feature";s:20:"Recommended, Traffic";s:25:"additional_search_queries";s:54:"statistics, tracking, analytics, views, traffic, stats";}s:32:"23a586dd7ead00e69ec53eb32ef740e4";a:14:{s:4:"name";s:13:"Subscriptions";s:11:"description";s:88:"Allow users to subscribe to your posts and comments and receive notifications via email.";s:14:"jumpstart_desc";s:126:"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.";s:4:"sort";s:1:"9";s:20:"recommendation_order";s:1:"8";s:10:"introduced";s:3:"1.2";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:6:"Social";s:7:"feature";s:9:"Jumpstart";s:25:"additional_search_queries";s:74:"subscriptions, subscription, email, follow, followers, subscribers, signup";}s:32:"1d978b8d84d2f378fe1a702a67633b6d";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"b3b983461d7f3d27322a3551ed8a9405";a:14:{s:4:"name";s:15:"Tiled Galleries";s:11:"description";s:73:"Display your image galleries in a variety of sleek, graphic arrangements.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"24";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:17:"Photos and Videos";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:43:"gallery, tiles, tiled, grid, mosaic, images";}s:32:"d924e5b05722b0e104448543598f54c0";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"36741583b10c521997e563ad8e1e8b77";a:14:{s:4:"name";s:12:"Data Backups";s:11:"description";s:27:"Daily or real-time backups.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"32";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:5:"0:1.2";s:7:"changed";s:0:"";s:10:"deactivate";s:5:"false";s:4:"free";s:5:"false";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:0:"";s:7:"feature";s:20:"Performance-Security";s:25:"additional_search_queries";s:28:"vaultpress, backup, security";}s:32:"2b9b44f09b5459617d68dd82ee17002a";a:14:{s:4:"name";s:17:"Site Verification";s:11:"description";s:77:"Verify your site or domain with Google Search Console, Pinterest, and others.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"33";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"3.0";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:56:"webmaster, seo, google, bing, pinterest, search, console";}s:32:"5ab4c0db7c42e10e646342da0274c491";a:14:{s:4:"name";s:10:"VideoPress";s:11:"description";s:68:"Upload and embed videos right on your site. (Subscription required.)";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"27";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.5";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:5:"false";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:17:"Photos and Videos";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:25:"video, videos, videopress";}s:32:"60a1d3aa38bc0fe1039e59dd60888543";a:14:{s:4:"name";s:17:"Widget Visibility";s:11:"description";s:57:"Specify which widgets appear on which pages of your site.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"17";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.4";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:10:"Appearance";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:54:"widget visibility, logic, conditional, widgets, widget";}s:32:"174ed3416476c2cb9ff5b0f671280b15";a:14:{s:4:"name";s:21:"Extra Sidebar Widgets";s:11:"description";s:79:"Add images, Twitter streams, your site’s RSS links, and more to your sidebar.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"4";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.2";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:18:"Social, Appearance";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:65:"widget, widgets, facebook, gallery, twitter, gravatar, image, rss";}s:32:"28b931a1db19bd24869bd54b14e733d5";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}}}', 'yes'),
(151, 'jetpack_available_modules', 'a:1:{s:5:"3.9.7";a:37:{s:18:"after-the-deadline";s:3:"1.1";s:8:"carousel";s:3:"1.5";s:8:"comments";s:3:"1.4";s:12:"contact-form";s:3:"1.3";s:20:"custom-content-types";s:3:"3.1";s:10:"custom-css";s:3:"1.7";s:21:"enhanced-distribution";s:3:"1.2";s:19:"gravatar-hovercards";s:3:"1.1";s:15:"infinite-scroll";s:3:"2.0";s:8:"json-api";s:3:"1.9";s:5:"latex";s:3:"1.1";s:5:"likes";s:3:"2.2";s:6:"manage";s:3:"3.4";s:8:"markdown";s:3:"2.8";s:9:"minileven";s:3:"1.8";s:7:"monitor";s:3:"2.6";s:5:"notes";s:3:"1.9";s:10:"omnisearch";s:3:"2.3";s:6:"photon";s:3:"2.0";s:13:"post-by-email";s:3:"2.0";s:7:"protect";s:3:"3.4";s:9:"publicize";s:3:"2.0";s:13:"related-posts";s:3:"2.9";s:10:"sharedaddy";s:3:"1.1";s:10:"shortcodes";s:3:"1.1";s:10:"shortlinks";s:3:"1.1";s:9:"site-icon";s:3:"3.2";s:8:"sitemaps";s:3:"3.9";s:3:"sso";s:3:"2.6";s:5:"stats";s:3:"1.1";s:13:"subscriptions";s:3:"1.2";s:13:"tiled-gallery";s:3:"2.1";s:10:"vaultpress";s:5:"0:1.2";s:18:"verification-tools";s:3:"3.0";s:10:"videopress";s:3:"2.5";s:17:"widget-visibility";s:3:"2.4";s:7:"widgets";s:3:"1.2";}}', 'yes'),
(153, 'jetpack_security_report', 'a:0:{}', 'yes'),
(156, 'ossdl_off_cdn_url', 'http://blog.matiboux.com', 'yes'),
(157, 'ossdl_off_include_dirs', 'wp-content,wp-includes', 'yes'),
(158, 'ossdl_off_exclude', '.php', 'yes'),
(159, 'ossdl_cname', '', 'yes'),
(161, 'wpsupercache_start', '1457778206', 'yes'),
(162, 'wpsupercache_count', '0', 'yes'),
(164, 'wpsupercache_gc_time', '1457863940', 'yes'),
(165, 'jetpack_log', 'a:13:{i:0;a:4:{s:4:"time";i:1457778389;s:7:"user_id";i:1;s:7:"blog_id";b:0;s:4:"code";s:8:"register";}i:1;a:4:{s:4:"time";i:1457778407;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:9:"authorize";}i:2;a:5:{s:4:"time";i:1457778433;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:8:"activate";s:4:"data";s:6:"manage";}i:3;a:5:{s:4:"time";i:1457778434;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:8:"activate";s:4:"data";s:10:"sharedaddy";}i:4;a:5:{s:4:"time";i:1457778434;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:8:"activate";s:4:"data";s:13:"subscriptions";}i:5;a:5:{s:4:"time";i:1457778434;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:8:"activate";s:4:"data";s:19:"gravatar-hovercards";}i:6;a:5:{s:4:"time";i:1457778434;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:8:"activate";s:4:"data";s:12:"contact-form";}i:7;a:5:{s:4:"time";i:1457778434;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:8:"activate";s:4:"data";s:8:"carousel";}i:8;a:5:{s:4:"time";i:1457778434;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:8:"activate";s:4:"data";s:6:"photon";}i:9;a:5:{s:4:"time";i:1457778434;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:8:"activate";s:4:"data";s:13:"related-posts";}i:10;a:5:{s:4:"time";i:1457778435;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:8:"activate";s:4:"data";s:3:"sso";}i:11;a:5:{s:4:"time";i:1457778968;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:10:"deactivate";s:4:"data";s:19:"gravatar-hovercards";}i:12;a:5:{s:4:"time";i:1458587901;s:7:"user_id";i:1;s:7:"blog_id";i:77844687;s:4:"code";s:8:"activate";s:4:"data";s:13:"tiled-gallery";}}', 'no'),
(166, 'jetpack_private_options', 'a:3:{s:8:"register";s:76:"B0HohmOgxhWOI2NB2iEtIw6Spmfuytla:NrUvt5g9H7TZ4amV4Cy45eaSBGdUoToW:1457778989";s:10:"blog_token";s:65:"Su61f(CsNAti5KSZFJK9NNeUyd8ryswc.YV7dJqmi5t%OgvTocIO#dv11Mj8xQw3B";s:11:"user_tokens";a:1:{i:1;s:67:"tf&E#6%S2@uy9ONNRy2Hd1FVFKvlbxV(.X2I#CQD%B4)YWD6HhsNqPx7fh(RalSrj.1";}}', 'yes'),
(169, 'jetpack_unique_connection', 'a:3:{s:9:"connected";i:1;s:12:"disconnected";i:0;s:7:"version";s:5:"3.6.1";}', 'yes'),
(170, 'jetpack_active_modules', 'a:28:{i:0;s:18:"after-the-deadline";i:1;s:12:"contact-form";i:2;s:20:"custom-content-types";i:3;s:10:"custom-css";i:4;s:21:"enhanced-distribution";i:6;s:8:"json-api";i:7;s:5:"latex";i:8;s:5:"notes";i:9;s:10:"omnisearch";i:10;s:13:"post-by-email";i:11;s:7:"protect";i:12;s:9:"publicize";i:13;s:10:"sharedaddy";i:14;s:10:"shortcodes";i:15;s:10:"shortlinks";i:16;s:8:"sitemaps";i:17;s:5:"stats";i:18;s:13:"subscriptions";i:20;s:18:"verification-tools";i:21;s:17:"widget-visibility";i:22;s:7:"widgets";i:24;s:8:"carousel";i:25;s:6:"photon";i:26;s:13:"related-posts";i:27;s:3:"sso";i:28;s:7:"monitor";i:29;s:6:"manage";i:30;s:13:"tiled-gallery";}', 'yes'),
(175, 'widget_blog_subscription', 'a:3:{s:12:"_multiwidget";i:1;i:3;a:0:{}i:4;a:0:{}}', 'yes'),
(176, 'widget_facebook-likebox', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(177, 'widget_wpcom-goodreads', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(178, 'widget_googleplus-badge', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(179, 'widget_grofile', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(180, 'widget_image', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(181, 'widget_rss_links', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(182, 'widget_wpcom_social_media_icons_widget', 'a:2:{s:12:"_multiwidget";i:1;i:3;a:10:{s:5:"title";s:6:"Social";s:17:"facebook_username";s:0:"";s:16:"twitter_username";s:8:"Matiboux";s:18:"instagram_username";s:0:"";s:18:"pinterest_username";s:0:"";s:17:"linkedin_username";s:0:"";s:15:"github_username";s:0:"";s:16:"youtube_username";s:0:"";s:14:"vimeo_username";s:0:"";s:19:"googleplus_username";s:0:"";}}', 'yes'),
(183, 'widget_twitter_timeline', 'a:3:{s:12:"_multiwidget";i:1;i:3;a:9:{s:5:"title";s:22:"Suivez moi sur Twitter";s:5:"width";s:0:"";s:6:"height";i:400;s:11:"tweet-limit";i:4;s:9:"widget-id";s:18:"708607362391736320";s:10:"link-color";s:7:"#337ab7";s:12:"border-color";s:7:"#e5e5e5";s:5:"theme";s:5:"light";s:6:"chrome";a:1:{i:0;s:8:"noheader";}}i:5;a:9:{s:5:"title";s:11:"Mon twitter";s:5:"width";s:0:"";s:6:"height";i:400;s:11:"tweet-limit";i:4;s:9:"widget-id";s:18:"708647700070309888";s:10:"link-color";s:7:"#f96e5b";s:12:"border-color";s:7:"#e8e8e8";s:5:"theme";s:5:"light";s:6:"chrome";a:0:{}}}', 'yes'),
(184, 'widget_jetpack_display_posts_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(186, 'jetpack_protect_key', 'ce8324e130b511445660f45458210b0031d328f6', 'yes'),
(188, 'stats_options', 'a:7:{s:9:"admin_bar";b:1;s:5:"roles";a:1:{i:0;s:13:"administrator";}s:11:"count_roles";a:0:{}s:7:"blog_id";i:77844687;s:12:"do_not_track";b:1;s:10:"hide_smile";b:1;s:7:"version";s:1:"9";}', 'yes'),
(193, 'trusted_ip_header', 'O:8:"stdClass":3:{s:14:"trusted_header";s:11:"REMOTE_ADDR";s:8:"segments";i:1;s:7:"reverse";b:0;}', 'yes'),
(195, 'sharing-options', 'a:1:{s:6:"global";a:5:{s:12:"button_style";s:4:"icon";s:13:"sharing_label";b:0;s:10:"open_links";s:4:"same";s:4:"show";a:1:{i:0;s:4:"post";}s:6:"custom";a:0:{}}}', 'yes'),
(196, 'sharing-services', 'a:2:{s:7:"visible";a:3:{i:0;s:7:"twitter";i:1;s:8:"facebook";i:2;s:13:"google-plus-1";}s:6:"hidden";a:0:{}}', 'yes'),
(209, 'subscription_options', 'a:2:{s:10:"invitation";s:226:"Howdy.\r\n\r\nYou recently followed this blog\'s posts. This means you will receive each new post by email.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.";s:14:"comment_follow";s:239:"Howdy.\r\n\r\nYou recently followed one of my posts. This means you will receive an email when new comments are posted.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.";}', 'yes'),
(210, 'jetpack_relatedposts', 'a:4:{s:7:"enabled";b:1;s:13:"show_headline";b:0;s:15:"show_thumbnails";b:0;s:4:"size";N;}', 'yes'),
(215, 'widget_widget_contact_info', 'a:3:{i:1;a:0:{}i:5;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(216, 'widget_top-posts', 'a:3:{i:1;a:0:{}s:12:"_multiwidget";i:1;i:3;a:5:{s:5:"title";s:18:"Meilleurs articles";s:5:"count";i:5;s:8:"ordering";s:5:"views";s:5:"types";a:1:{i:0;s:4:"post";}s:7:"display";s:4:"text";}}', 'yes'),
(218, '_transient_twentyfifteen_categories', '1', 'yes'),
(219, '_site_transient_timeout_wporg_theme_feature_list', '1457793393', 'yes'),
(220, '_site_transient_wporg_theme_feature_list', 'a:4:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:6:"Layout";a:9:{i:0;s:12:"fixed-layout";i:1;s:12:"fluid-layout";i:2;s:17:"responsive-layout";i:3;s:10:"one-column";i:4;s:11:"two-columns";i:5;s:13:"three-columns";i:6;s:12:"four-columns";i:7;s:12:"left-sidebar";i:8;s:13:"right-sidebar";}s:8:"Features";a:20:{i:0;s:19:"accessibility-ready";i:1;s:8:"blavatar";i:2;s:10:"buddypress";i:3;s:17:"custom-background";i:4;s:13:"custom-colors";i:5;s:13:"custom-header";i:6;s:11:"custom-menu";i:7;s:12:"editor-style";i:8;s:21:"featured-image-header";i:9;s:15:"featured-images";i:10;s:15:"flexible-header";i:11;s:20:"front-page-post-form";i:12;s:19:"full-width-template";i:13;s:12:"microformats";i:14;s:12:"post-formats";i:15;s:20:"rtl-language-support";i:16;s:11:"sticky-post";i:17;s:13:"theme-options";i:18;s:17:"threaded-comments";i:19;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}', 'yes'),
(223, 'theme_mods_twentysixteen', 'a:2:{s:18:"nav_menu_locations";a:2:{s:6:"social";i:2;s:7:"primary";i:0;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1457782976;s:4:"data";a:2:{s:19:"wp_inactive_widgets";a:2:{i:0;s:21:"widget_contact_info-3";i:1;s:18:"twitter_timeline-3";}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}}}}', 'yes'),
(224, 'current_theme', 'Llorix One Lite', 'yes'),
(225, 'theme_mods_twentyfifteen', 'a:3:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:6:"social";i:2;s:7:"primary";i:0;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1457782534;s:4:"data";a:2:{s:19:"wp_inactive_widgets";a:2:{i:0;s:21:"widget_contact_info-3";i:1;s:18:"twitter_timeline-3";}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}}}}', 'yes'),
(226, 'theme_switched', '', 'yes'),
(227, 'safecss_rev', '5', 'yes'),
(230, 'theme_mods_bizlight', 'a:4:{i:0;b:0;s:16:"bizlight-options";a:27:{s:21:"bizlight-enable-title";b:1;s:23:"bizlight-enable-tagline";b:0;s:19:"bizlight-link-color";s:7:"#337ab7";s:25:"bizlight-link-hover-color";s:7:"#23527c";s:20:"bizlight-h1-h6-color";s:7:"#333333";s:18:"bizlight-fs-enable";b:1;s:26:"bizlight-fs-enable-control";b:1;s:27:"bizlight-fs-enable-autoplay";b:1;s:28:"bizlight-home-service-enable";b:1;s:27:"bizlight-home-service-title";s:11:"Mes projets";s:23:"bizlight-fs-pages-ids_1";i:0;s:23:"bizlight-fs-pages-ids_2";i:0;s:33:"bizlight-home-service-pages-ids_2";i:0;s:26:"bizlight-home-about-enable";b:1;s:25:"bizlight-home-about-title";s:22:"Bienvenue sur mon blog";s:27:"bizlight-home-about-content";s:204:"Ici sont postés informations et nouvelles à propos de mes différents projets personnels. Restez à l\'écoute pour les futures mises à jour ou aidez-nous à les améliorer en nous proposant vos idées.";s:31:"bizlight-home-about-right-image";s:74:"http://blog.matiboux.com/wp-content/themes/bizlight/assets/img/product.png";s:28:"bizlight-home-featured-title";s:37:"En savoir plus sur moi et mes projets";s:33:"bizlight-home-featured-button-url";s:30:"http://blog.matiboux.com/about";s:29:"bizlight-home-featured-enable";b:1;s:24:"bizlight-home-blog-title";s:17:"Derniers articles";s:25:"bizlight-home-blog-enable";b:1;s:32:"bizlight-home-testimonial-enable";b:0;s:23:"bizlight-default-layout";s:13:"right-sidebar";s:23:"bizlight-copyright-text";s:47:"© Copyright 2016 Matiboux - All right reserved";s:28:"bizlight-enable-social-icons";b:1;s:37:"bizlight-home-testimonial-pages-ids_1";i:0;}s:18:"nav_menu_locations";a:2:{s:6:"social";i:2;s:7:"primary";i:0;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1457782464;s:4:"data";a:2:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:5:{i:0;s:8:"search-2";i:1;s:12:"categories-2";i:2;s:6:"meta-2";i:3;s:10:"archives-2";i:4;s:18:"twitter_timeline-3";}}}}', 'yes'),
(243, 'nav_menu_options', 'a:1:{s:8:"auto_add";a:0:{}}', 'yes'),
(251, 'WPLANG', 'fr_FR', 'yes'),
(256, 'jetpack_portfolio', '0', 'yes'),
(257, 'jetpack_testimonial', '0', 'yes'),
(262, 'stb_enabled', '1', 'yes'),
(263, 'stc_enabled', '1', 'yes'),
(272, '_site_transient_timeout_popular_importers_fr_FR', '1457954817', 'yes'),
(273, '_site_transient_popular_importers_fr_FR', 'a:2:{s:9:"importers";a:8:{s:7:"blogger";a:4:{s:4:"name";s:7:"Blogger";s:11:"description";s:86:"Install the Blogger importer to import posts, comments, and users from a Blogger blog.";s:11:"plugin-slug";s:16:"blogger-importer";s:11:"importer-id";s:7:"blogger";}s:9:"wpcat2tag";a:4:{s:4:"name";s:29:"Categories and Tags Converter";s:11:"description";s:109:"Install the category/tag converter to convert existing categories to tags or tags to categories, selectively.";s:11:"plugin-slug";s:18:"wpcat2tag-importer";s:11:"importer-id";s:9:"wpcat2tag";}s:11:"livejournal";a:4:{s:4:"name";s:11:"LiveJournal";s:11:"description";s:82:"Install the LiveJournal importer to import posts from LiveJournal using their API.";s:11:"plugin-slug";s:20:"livejournal-importer";s:11:"importer-id";s:11:"livejournal";}s:11:"movabletype";a:4:{s:4:"name";s:24:"Movable Type and TypePad";s:11:"description";s:99:"Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog.";s:11:"plugin-slug";s:20:"movabletype-importer";s:11:"importer-id";s:2:"mt";}s:4:"opml";a:4:{s:4:"name";s:8:"Blogroll";s:11:"description";s:61:"Install the blogroll importer to import links in OPML format.";s:11:"plugin-slug";s:13:"opml-importer";s:11:"importer-id";s:4:"opml";}s:3:"rss";a:4:{s:4:"name";s:3:"RSS";s:11:"description";s:58:"Install the RSS importer to import posts from an RSS feed.";s:11:"plugin-slug";s:12:"rss-importer";s:11:"importer-id";s:3:"rss";}s:6:"tumblr";a:4:{s:4:"name";s:6:"Tumblr";s:11:"description";s:84:"Install the Tumblr importer to import posts & media from Tumblr using their API.";s:11:"plugin-slug";s:15:"tumblr-importer";s:11:"importer-id";s:6:"tumblr";}s:9:"wordpress";a:4:{s:4:"name";s:9:"WordPress";s:11:"description";s:130:"Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.";s:11:"plugin-slug";s:18:"wordpress-importer";s:11:"importer-id";s:9:"wordpress";}}s:10:"translated";b:0;}', 'yes'),
(278, '_transient_timeout_jetpack-testimonial-count-cache', '1457825372', 'no'),
(279, '_transient_jetpack-testimonial-count-cache', '1', 'no'),
(293, '_transient_bizlight_categories', '1', 'yes');
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(304, 'theme_mods_llorix-one-lite', 'a:47:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:6:"social";i:2;s:7:"primary";i:3;}s:16:"background_image";s:0:"";s:17:"background_repeat";s:8:"repeat-y";s:21:"background_position_x";s:5:"right";s:33:"llorix_one_lite_disable_preloader";s:0:"";s:26:"llorix_one_lite_text_color";s:7:"#333333";s:27:"llorix_one_lite_title_color";s:7:"#555555";s:20:"llorix_one_lite_logo";s:0:"";s:29:"llorix_one_lite_sticky_header";s:0:"";s:36:"llorix_one_lite_very_top_header_show";s:1:"1";s:37:"llorix_one_lite_very_top_header_phone";s:17:"(+9) 0999.500.400";s:33:"llorix_one_lite_blog_header_title";s:19:"Le blog de Matiboux";s:36:"llorix_one_lite_blog_header_subtitle";s:33:"Toute l\'actualité de mes projets";s:27:"llorix_one_lite_header_logo";s:0:"";s:28:"llorix_one_lite_header_title";s:19:"Se tenir au courant";s:31:"llorix_one_lite_header_subtitle";s:47:"L\'actualité des projets personnels de Matiboux";s:34:"llorix_one_lite_header_button_text";s:22:"Découvrir les projets";s:34:"llorix_one_lite_header_button_link";s:33:"http://blog.matiboux.com/projects";s:12:"header_image";s:20:"random-default-image";s:27:"llorix_one_lite_enable_move";s:0:"";s:27:"llorix_one_lite_first_layer";s:81:"http://blog.matiboux.com/wp-content/themes/llorix-one-lite/images/background1.png";s:28:"llorix_one_lite_second_layer";s:81:"http://blog.matiboux.com/wp-content/themes/llorix-one-lite/images/background2.png";s:26:"llorix_one_lite_logos_show";s:1:"1";s:30:"llorix_one_lite_our_story_show";s:1:"1";s:31:"llorix_one_lite_our_story_title";s:12:"Mon histoire";s:30:"llorix_one_lite_our_story_text";s:35:"ahah, j\'ai rien à dire sur moi :DD";s:31:"llorix_one_lite_our_story_image";s:0:"";s:33:"llorix_one_lite_ribbon_background";s:114:"http://blog.matiboux.com/wp-content/themes/llorix-one-lite/images/background-images/parallax-img/parallax-img1.jpg";s:28:"llorix_one_lite_ribbon_title";s:74:"La plupart de mes projets fonctionnent sous mon propre framework PHP : Oli";s:27:"llorix_one_lite_button_text";s:14:"Découvrir Oli";s:27:"llorix_one_lite_button_link";s:47:"http://blog.matiboux.com/projects/oli-framework";s:33:"llorix_one_lite_latest_news_title";s:17:"Derniers articles";s:37:"llorix_one_lite_very_top_social_icons";s:499:"[{"icon_value":"fa-facebook","text":"undefined","link":"#","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d069ad8cb6b","shortcode":"undefined"},{"icon_value":"fa-twitter","text":"undefined","link":"#","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d069b48cb6c","shortcode":"undefined"},{"icon_value":"fa-google-plus-square","text":"undefined","link":"#","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d069b58cb6d","shortcode":"undefined"}]";s:29:"llorix_one_lite_logos_content";s:1201:"[{"text":"undefined","link":"#","image_url":"http:\\/\\/blog.matiboux.com\\/wp-content\\/themes\\/llorix-one-lite\\/images\\/companies\\/1.png","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d069bb8cb71","shortcode":"undefined"},{"text":"undefined","link":"#","image_url":"http:\\/\\/blog.matiboux.com\\/wp-content\\/themes\\/llorix-one-lite\\/images\\/companies\\/2.png","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d069bc8cb72","shortcode":"undefined"},{"text":"undefined","link":"#","image_url":"http:\\/\\/blog.matiboux.com\\/wp-content\\/themes\\/llorix-one-lite\\/images\\/companies\\/3.png","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d069bd8cb73","shortcode":"undefined"},{"text":"undefined","link":"#","image_url":"http:\\/\\/blog.matiboux.com\\/wp-content\\/themes\\/llorix-one-lite\\/images\\/companies\\/4.png","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d06d128cb74","shortcode":"undefined"},{"text":"undefined","link":"#","image_url":"http:\\/\\/blog.matiboux.com\\/wp-content\\/themes\\/llorix-one-lite\\/images\\/companies\\/5.png","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d06d3d8cb75","shortcode":"undefined"}]";s:36:"llorix_one_lite_contact_info_content";s:404:"[{"icon_value":"fa-envelope","text":"Envoyez-moi un mail","link":"mailto:[email protected]","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d450a72cb3a","shortcode":"undefined"},{"icon_value":"fa-twitter","text":"Trouvez-moi sur Twitter","link":"https:\\/\\/twitter.com\\/Matiboux","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d069b88cb6f","shortcode":"undefined"}]";s:28:"llorix_one_lite_social_icons";s:380:"[{"icon_value":"fa-envelope","text":"undefined","link":"mailto:[email protected]","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d069b78cb6e","shortcode":"undefined"},{"icon_value":"fa-twitter","text":"undefined","link":"https:\\/\\/twitter.com\\/Matiboux","title":"undefined","subtitle":"undefined","id":"llorix_one_lite_56d450842cb39","shortcode":"undefined"}]";s:25:"llorix_one_lite_copyright";s:16:"© 2016 Matiboux";s:34:"llorix_one_lite_our_services_title";s:18:"Projets principaux";s:37:"llorix_one_lite_our_services_subtitle";s:36:"Les projets mis en avant de Matiboux";s:32:"llorix_one_lite_services_content";s:1098:"[{"icon_value":"","text":"H\\u00e9bergement simple et rapide de vos images ou GIFs en ligne pour ensuite les partager \\u00e0 n'importe qui, n'importe o\\u00f9.","link":"http:\\/\\/blog.matiboux.com\\/projects\\/imgshot\\/","image_url":"","choice":"llorix_one_lite_none","title":"ImgShot","subtitle":"undefined","id":"","shortcode":"undefined"},{"icon_value":"","text":"G\\u00e9n\\u00e9rateur de cl\\u00e9s al\\u00e9atoires et s\\u00e9curis\\u00e9s pour vos prochains mots de passe.","link":"http:\\/\\/blog.matiboux.com\\/projects\\/keygen\\/","image_url":"","choice":"llorix_one_lite_none","title":"KeyGen","subtitle":"undefined","id":"","shortcode":"undefined"},{"icon_value":"","text":"Service d'h\\u00e9bergement de vos fichiers en ligne. Retrouvez et g\\u00e9rez-les gr\\u00e2ce \\u00e0 votre compte utilisateur pour les partager et y acc\\u00e9der de n'importe o\\u00f9. (service g\\u00e9r\\u00e9 par Natrox)","link":"http:\\/\\/blog.matiboux.com\\/projects\\/natrox-cloud\\/","image_url":"","choice":"llorix_one_lite_none","title":"Natrox Cloud","subtitle":"undefined","id":"","shortcode":"undefined"}]";s:28:"llorix_one_lite_team_content";s:194:"[{"text":"undefined","image_url":"http:\\/\\/blog.matiboux.com\\/wp-content\\/uploads\\/2016\\/03\\/furry-300x300.jpg","title":"Matiboux","subtitle":"D\\u00e9veloppeur","id":"","shortcode":"undefined"}]";s:36:"llorix_one_lite_testimonials_content";s:1717:"[{"text":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec purus feugiat, molestie ipsum et, consequat nibh. Etiam non elit dui. Nullam vel eros sit amet arcu vestibulum accumsan in in leo. Fusce malesuada vulputate faucibus. Integer in hendrerit nisi. Praesent a hendrerit urna. In non imperdiet elit, sed molestie odio. Fusce ac metus non purus sollicitudin laoreet.","image_url":"http:\\/\\/blog.matiboux.com\\/wp-content\\/themes\\/llorix-one-lite\\/images\\/clients\\/1.jpg","title":"Happy Customer","subtitle":"Lorem ipsum","id":"","shortcode":"undefined"},{"text":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec purus feugiat, molestie ipsum et, consequat nibh. Etiam non elit dui. Nullam vel eros sit amet arcu vestibulum accumsan in in leo. Fusce malesuada vulputate faucibus. Integer in hendrerit nisi. Praesent a hendrerit urna. In non imperdiet elit, sed molestie odio. Fusce ac metus non purus sollicitudin laoreet.","image_url":"http:\\/\\/blog.matiboux.com\\/wp-content\\/themes\\/llorix-one-lite\\/images\\/clients\\/2.jpg","title":"Happy Customer","subtitle":"Lorem ipsum","id":"","shortcode":"undefined"},{"text":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec purus feugiat, molestie ipsum et, consequat nibh. Etiam non elit dui. Nullam vel eros sit amet arcu vestibulum accumsan in in leo. Fusce malesuada vulputate faucibus. Integer in hendrerit nisi. Praesent a hendrerit urna. In non imperdiet elit, sed molestie odio. Fusce ac metus non purus sollicitudin laoreet.","image_url":"http:\\/\\/blog.matiboux.com\\/wp-content\\/themes\\/llorix-one-lite\\/images\\/clients\\/3.jpg","title":"Happy Customer","subtitle":"Lorem ipsum","id":"","shortcode":"undefined"}]";s:29:"llorix_one_lite_our_team_show";s:1:"1";s:30:"llorix_one_lite_our_team_title";s:9:"L\'équipe";s:33:"llorix_one_lite_our_team_subtitle";s:91:"Je suis la plupart du temps seul sur mes projets, je les développe et les gère moi-même.";s:36:"llorix_one_lite_happy_customers_show";s:1:"1";}', 'yes'),
(305, 'theme_switched_via_customizer', '', 'yes'),
(341, 'stats_cache', 'a:1:{s:32:"745b68e07cc03f72079eb5e3ca80979c";a:1:{i:1470908743;a:0:{}}}', 'yes'),
(347, 'sharedaddy_disable_resources', '0', 'yes'),
(348, 'jetpack-twitter-cards-site-tag', 'Matiboux', 'yes'),
(394, 'intergeo_messages', 'a:1:{i:1;a:0:{}}', 'yes'),
(396, 'widget_pirate_forms_contact_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(398, 'pirate_forms_settings_array', 'a:27:{s:20:"pirateformsopt_email";s:27:"[email protected]";s:31:"pirateformsopt_email_recipients";s:18:"[email protected]";s:24:"pirateformsopt_blacklist";s:3:"yes";s:28:"pirateformsopt_confirm_email";s:0:"";s:6:"action";s:4:"save";s:12:"proper_nonce";s:10:"9bcd815793";s:25:"pirateformsopt_name_field";s:3:"req";s:26:"pirateformsopt_email_field";s:3:"req";s:28:"pirateformsopt_subject_field";s:3:"req";s:28:"pirateformsopt_message_field";s:3:"req";s:32:"pirateformsopt_recaptcha_sitekey";s:40:"6Lf4pxoTAAAAAAovoQ8iuJeV2vwaUGMwH6ocv2_P";s:34:"pirateformsopt_recaptcha_secretkey";s:40:"6Lf4pxoTAAAAAJro0YUttiY7jRf6wnPjZAPE8k6s";s:25:"pirateformsopt_label_name";s:3:"Nom";s:26:"pirateformsopt_label_email";s:5:"Email";s:28:"pirateformsopt_label_subject";s:5:"Sujet";s:28:"pirateformsopt_label_message";s:7:"Message";s:31:"pirateformsopt_label_submit_btn";s:18:"Envoyer le message";s:29:"pirateformsopt_label_err_name";s:25:"Veuillez entrer votre nom";s:30:"pirateformsopt_label_err_email";s:30:"Veuillez entrer un mail valide";s:32:"pirateformsopt_label_err_subject";s:38:"Veuillez préciser le sujet du message";s:35:"pirateformsopt_label_err_no_content";s:28:"Veuillez taper votre message";s:27:"pirateformsopt_label_submit";s:42:"Merci ! Votre message a bien été envoyé";s:24:"pirateformsopt_smtp_host";s:0:"";s:24:"pirateformsopt_smtp_port";s:0:"";s:38:"pirateformsopt_use_smtp_authentication";s:3:"yes";s:28:"pirateformsopt_smtp_username";s:0:"";s:28:"pirateformsopt_smtp_password";s:0:"";}', 'yes'),
(400, 'theme_mods_zerif-lite', 'a:5:{s:28:"zerif_contactus_button_label";s:18:"Envoyer le message";s:21:"zerif_contactus_email";s:18:"[email protected]";s:30:"zerif_contactus_recaptcha_show";i:1;s:23:"zerif_contactus_sitekey";s:40:"6Lf4pxoTAAAAAAovoQ8iuJeV2vwaUGMwH6ocv2_P";s:25:"zerif_contactus_secretkey";s:40:"6Lf4pxoTAAAAAJro0YUttiY7jRf6wnPjZAPE8k6s";}', 'yes'),
(407, 'siteorigin_panels_initial_version', '2.3.2', 'no'),
(408, 'siteorigin_panels_settings', 'a:0:{}', 'yes'),
(409, 'widget_siteorigin-panels-post-content', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(410, 'widget_siteorigin-panels-postloop', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(411, 'widget_siteorigin-panels-builder', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(413, 'widget_sow-button', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(414, 'widget_sow-google-map', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(415, 'widget_sow-image', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(416, 'widget_sow-slider', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(417, 'widget_sow-post-carousel', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(418, 'widget_sow-editor', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(420, 'siteorigin_widget_bundle_version', '1.5.9', 'yes'),
(421, 'siteorigin_widgets_old_widgets', '/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/button/button.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/cta/cta.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/contact/contact.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/editor/editor.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/features/features.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/google-map/google-map.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/headline/headline.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/hero/hero.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/image/image.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/image-grid/image-grid.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/slider/slider.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/post-carousel/post-carousel.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/price-table/price-table.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/simple-masonry/simple-masonry.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/social-media-buttons/social-media-buttons.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/testimonial/testimonial.php,/var/www/wdsqpw/www/_blog/wp-content/plugins/so-widgets-bundle/widgets/video/video.php', 'yes'),
(422, '_transient_timeout_sow:cleared', '1458400930', 'no'),
(423, '_transient_sow:cleared', '1', 'no'),
(425, 'siteorigin_widgets_active', 'a:7:{s:6:"button";b:1;s:10:"google-map";b:1;s:5:"image";b:1;s:6:"slider";b:1;s:13:"post-carousel";b:1;s:6:"editor";b:1;s:7:"contact";b:1;}', 'yes'),
(426, 'widget_sow-contact-form', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(498, 'category_children', 'a:1:{i:7;a:2:{i:0;i:5;i:1;i:6;}}', 'yes'),
(817, '_site_transient_timeout_available_translations', '1457872596', 'yes'),
(818, '_site_transient_available_translations', 'a:77:{s:3:"ary";a:8:{s:8:"language";s:3:"ary";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-12 10:15:45";s:12:"english_name";s:15:"Moroccan Arabic";s:11:"native_name";s:31:"العربية المغربية";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.4.2/ary.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:3;s:3:"ary";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:2:"ar";a:8:{s:8:"language";s:2:"ar";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-07 13:09:53";s:12:"english_name";s:6:"Arabic";s:11:"native_name";s:14:"العربية";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/ar.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:2;s:3:"ara";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:2:"az";a:8:{s:8:"language";s:2:"az";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-07 20:53:51";s:12:"english_name";s:11:"Azerbaijani";s:11:"native_name";s:16:"Azərbaycan dili";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/az.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:2;s:3:"aze";}s:7:"strings";a:1:{s:8:"continue";s:5:"Davam";}}s:3:"azb";a:8:{s:8:"language";s:3:"azb";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-11 22:42:10";s:12:"english_name";s:17:"South Azerbaijani";s:11:"native_name";s:29:"گؤنئی آذربایجان";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.4.2/azb.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:3;s:3:"azb";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"bg_BG";a:8:{s:8:"language";s:5:"bg_BG";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 08:50:29";s:12:"english_name";s:9:"Bulgarian";s:11:"native_name";s:18:"Български";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/bg_BG.zip";s:3:"iso";a:2:{i:1;s:2:"bg";i:2;s:3:"bul";}s:7:"strings";a:1:{s:8:"continue";s:22:"Продължение";}}s:5:"bn_BD";a:8:{s:8:"language";s:5:"bn_BD";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-08 13:17:04";s:12:"english_name";s:7:"Bengali";s:11:"native_name";s:15:"বাংলা";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/bn_BD.zip";s:3:"iso";a:1:{i:1;s:2:"bn";}s:7:"strings";a:1:{s:8:"continue";s:23:"এগিয়ে চল.";}}s:5:"bs_BA";a:8:{s:8:"language";s:5:"bs_BA";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-04 09:40:25";s:12:"english_name";s:7:"Bosnian";s:11:"native_name";s:8:"Bosanski";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/bs_BA.zip";s:3:"iso";a:2:{i:1;s:2:"bs";i:2;s:3:"bos";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:2:"ca";a:8:{s:8:"language";s:2:"ca";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-16 13:48:03";s:12:"english_name";s:7:"Catalan";s:11:"native_name";s:7:"Català";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/ca.zip";s:3:"iso";a:2:{i:1;s:2:"ca";i:2;s:3:"cat";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:3:"ceb";a:8:{s:8:"language";s:3:"ceb";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-16 15:34:57";s:12:"english_name";s:7:"Cebuano";s:11:"native_name";s:7:"Cebuano";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.4.2/ceb.zip";s:3:"iso";a:2:{i:2;s:3:"ceb";i:3;s:3:"ceb";}s:7:"strings";a:1:{s:8:"continue";s:7:"Padayun";}}s:2:"cy";a:8:{s:8:"language";s:2:"cy";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-26 16:01:40";s:12:"english_name";s:5:"Welsh";s:11:"native_name";s:7:"Cymraeg";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/cy.zip";s:3:"iso";a:2:{i:1;s:2:"cy";i:2;s:3:"cym";}s:7:"strings";a:1:{s:8:"continue";s:6:"Parhau";}}s:5:"da_DK";a:8:{s:8:"language";s:5:"da_DK";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 22:48:20";s:12:"english_name";s:6:"Danish";s:11:"native_name";s:5:"Dansk";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/da_DK.zip";s:3:"iso";a:2:{i:1;s:2:"da";i:2;s:3:"dan";}s:7:"strings";a:1:{s:8:"continue";s:12:"Fortsæt";}}s:5:"de_CH";a:8:{s:8:"language";s:5:"de_CH";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 14:19:21";s:12:"english_name";s:20:"German (Switzerland)";s:11:"native_name";s:17:"Deutsch (Schweiz)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/de_CH.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:12:"de_DE_formal";a:8:{s:8:"language";s:12:"de_DE_formal";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-26 16:11:56";s:12:"english_name";s:15:"German (Formal)";s:11:"native_name";s:13:"Deutsch (Sie)";s:7:"package";s:71:"https://downloads.wordpress.org/translation/core/4.4.2/de_DE_formal.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:5:"de_DE";a:8:{s:8:"language";s:5:"de_DE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-29 10:47:54";s:12:"english_name";s:6:"German";s:11:"native_name";s:7:"Deutsch";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/de_DE.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:2:"el";a:8:{s:8:"language";s:2:"el";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-03-01 18:27:32";s:12:"english_name";s:5:"Greek";s:11:"native_name";s:16:"Ελληνικά";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/el.zip";s:3:"iso";a:2:{i:1;s:2:"el";i:2;s:3:"ell";}s:7:"strings";a:1:{s:8:"continue";s:16:"Συνέχεια";}}s:5:"en_CA";a:8:{s:8:"language";s:5:"en_CA";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-06 23:10:59";s:12:"english_name";s:16:"English (Canada)";s:11:"native_name";s:16:"English (Canada)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/en_CA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_GB";a:8:{s:8:"language";s:5:"en_GB";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-14 21:14:29";s:12:"english_name";s:12:"English (UK)";s:11:"native_name";s:12:"English (UK)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/en_GB.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_NZ";a:8:{s:8:"language";s:5:"en_NZ";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 13:34:17";s:12:"english_name";s:21:"English (New Zealand)";s:11:"native_name";s:21:"English (New Zealand)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/en_NZ.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_ZA";a:8:{s:8:"language";s:5:"en_ZA";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-15 11:52:35";s:12:"english_name";s:22:"English (South Africa)";s:11:"native_name";s:22:"English (South Africa)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/en_ZA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_AU";a:8:{s:8:"language";s:5:"en_AU";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-07 04:39:48";s:12:"english_name";s:19:"English (Australia)";s:11:"native_name";s:19:"English (Australia)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/en_AU.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"eo";a:8:{s:8:"language";s:2:"eo";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-25 13:07:29";s:12:"english_name";s:9:"Esperanto";s:11:"native_name";s:9:"Esperanto";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/eo.zip";s:3:"iso";a:2:{i:1;s:2:"eo";i:2;s:3:"epo";}s:7:"strings";a:1:{s:8:"continue";s:8:"Daŭrigi";}}s:5:"es_CL";a:8:{s:8:"language";s:5:"es_CL";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-28 19:55:54";s:12:"english_name";s:15:"Spanish (Chile)";s:11:"native_name";s:17:"Español de Chile";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_CL.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_VE";a:8:{s:8:"language";s:5:"es_VE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-13 06:14:13";s:12:"english_name";s:19:"Spanish (Venezuela)";s:11:"native_name";s:21:"Español de Venezuela";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_VE.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_GT";a:8:{s:8:"language";s:5:"es_GT";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-09 18:08:52";s:12:"english_name";s:19:"Spanish (Guatemala)";s:11:"native_name";s:21:"Español de Guatemala";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_GT.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_PE";a:8:{s:8:"language";s:5:"es_PE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-24 15:17:36";s:12:"english_name";s:14:"Spanish (Peru)";s:11:"native_name";s:17:"Español de Perú";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_PE.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CO";a:8:{s:8:"language";s:5:"es_CO";s:7:"version";s:6:"4.3-RC";s:7:"updated";s:19:"2015-08-04 06:10:33";s:12:"english_name";s:18:"Spanish (Colombia)";s:11:"native_name";s:20:"Español de Colombia";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/4.3-RC/es_CO.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_MX";a:8:{s:8:"language";s:5:"es_MX";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-07 17:35:10";s:12:"english_name";s:16:"Spanish (Mexico)";s:11:"native_name";s:19:"Español de México";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_MX.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_AR";a:8:{s:8:"language";s:5:"es_AR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-23 00:46:01";s:12:"english_name";s:19:"Spanish (Argentina)";s:11:"native_name";s:21:"Español de Argentina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_AR.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_ES";a:8:{s:8:"language";s:5:"es_ES";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-13 12:28:49";s:12:"english_name";s:15:"Spanish (Spain)";s:11:"native_name";s:8:"Español";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_ES.zip";s:3:"iso";a:1:{i:1;s:2:"es";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:2:"et";a:8:{s:8:"language";s:2:"et";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-18 06:44:22";s:12:"english_name";s:8:"Estonian";s:11:"native_name";s:5:"Eesti";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/et.zip";s:3:"iso";a:2:{i:1;s:2:"et";i:2;s:3:"est";}s:7:"strings";a:1:{s:8:"continue";s:6:"Jätka";}}s:2:"eu";a:8:{s:8:"language";s:2:"eu";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-07 21:19:15";s:12:"english_name";s:6:"Basque";s:11:"native_name";s:7:"Euskara";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/eu.zip";s:3:"iso";a:2:{i:1;s:2:"eu";i:2;s:3:"eus";}s:7:"strings";a:1:{s:8:"continue";s:8:"Jarraitu";}}s:5:"fa_IR";a:8:{s:8:"language";s:5:"fa_IR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-31 19:24:20";s:12:"english_name";s:7:"Persian";s:11:"native_name";s:10:"فارسی";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/fa_IR.zip";s:3:"iso";a:2:{i:1;s:2:"fa";i:2;s:3:"fas";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:2:"fi";a:8:{s:8:"language";s:2:"fi";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-23 06:49:15";s:12:"english_name";s:7:"Finnish";s:11:"native_name";s:5:"Suomi";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/fi.zip";s:3:"iso";a:2:{i:1;s:2:"fi";i:2;s:3:"fin";}s:7:"strings";a:1:{s:8:"continue";s:5:"Jatka";}}s:5:"fr_BE";a:8:{s:8:"language";s:5:"fr_BE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 13:47:35";s:12:"english_name";s:16:"French (Belgium)";s:11:"native_name";s:21:"Français de Belgique";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/fr_BE.zip";s:3:"iso";a:2:{i:1;s:2:"fr";i:2;s:3:"fra";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:5:"fr_FR";a:8:{s:8:"language";s:5:"fr_FR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-11 10:20:56";s:12:"english_name";s:15:"French (France)";s:11:"native_name";s:9:"Français";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/fr_FR.zip";s:3:"iso";a:1:{i:1;s:2:"fr";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:5:"fr_CA";a:8:{s:8:"language";s:5:"fr_CA";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-09 02:16:19";s:12:"english_name";s:15:"French (Canada)";s:11:"native_name";s:19:"Français du Canada";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/fr_CA.zip";s:3:"iso";a:2:{i:1;s:2:"fr";i:2;s:3:"fra";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:2:"gd";a:8:{s:8:"language";s:2:"gd";s:7:"version";s:5:"4.3.3";s:7:"updated";s:19:"2015-09-24 15:25:30";s:12:"english_name";s:15:"Scottish Gaelic";s:11:"native_name";s:9:"Gàidhlig";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.3.3/gd.zip";s:3:"iso";a:3:{i:1;s:2:"gd";i:2;s:3:"gla";i:3;s:3:"gla";}s:7:"strings";a:1:{s:8:"continue";s:15:"Lean air adhart";}}s:5:"gl_ES";a:8:{s:8:"language";s:5:"gl_ES";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-13 16:48:03";s:12:"english_name";s:8:"Galician";s:11:"native_name";s:6:"Galego";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/gl_ES.zip";s:3:"iso";a:2:{i:1;s:2:"gl";i:2;s:3:"glg";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:3:"haz";a:8:{s:8:"language";s:3:"haz";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-05 00:59:09";s:12:"english_name";s:8:"Hazaragi";s:11:"native_name";s:15:"هزاره گی";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip";s:3:"iso";a:1:{i:3;s:3:"haz";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:5:"he_IL";a:8:{s:8:"language";s:5:"he_IL";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-28 21:55:44";s:12:"english_name";s:6:"Hebrew";s:11:"native_name";s:16:"עִבְרִית";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/he_IL.zip";s:3:"iso";a:1:{i:1;s:2:"he";}s:7:"strings";a:1:{s:8:"continue";s:12:"להמשיך";}}s:5:"hi_IN";a:8:{s:8:"language";s:5:"hi_IN";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-06 14:16:56";s:12:"english_name";s:5:"Hindi";s:11:"native_name";s:18:"हिन्दी";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/hi_IN.zip";s:3:"iso";a:2:{i:1;s:2:"hi";i:2;s:3:"hin";}s:7:"strings";a:1:{s:8:"continue";s:12:"जारी";}}s:2:"hr";a:8:{s:8:"language";s:2:"hr";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-24 11:33:48";s:12:"english_name";s:8:"Croatian";s:11:"native_name";s:8:"Hrvatski";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/hr.zip";s:3:"iso";a:2:{i:1;s:2:"hr";i:2;s:3:"hrv";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:5:"hu_HU";a:8:{s:8:"language";s:5:"hu_HU";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-03 14:37:42";s:12:"english_name";s:9:"Hungarian";s:11:"native_name";s:6:"Magyar";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/hu_HU.zip";s:3:"iso";a:2:{i:1;s:2:"hu";i:2;s:3:"hun";}s:7:"strings";a:1:{s:8:"continue";s:7:"Tovább";}}s:2:"hy";a:8:{s:8:"language";s:2:"hy";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-04 07:13:54";s:12:"english_name";s:8:"Armenian";s:11:"native_name";s:14:"Հայերեն";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/hy.zip";s:3:"iso";a:2:{i:1;s:2:"hy";i:2;s:3:"hye";}s:7:"strings";a:1:{s:8:"continue";s:20:"Շարունակել";}}s:5:"id_ID";a:8:{s:8:"language";s:5:"id_ID";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-21 16:17:50";s:12:"english_name";s:10:"Indonesian";s:11:"native_name";s:16:"Bahasa Indonesia";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/id_ID.zip";s:3:"iso";a:2:{i:1;s:2:"id";i:2;s:3:"ind";}s:7:"strings";a:1:{s:8:"continue";s:9:"Lanjutkan";}}s:5:"is_IS";a:8:{s:8:"language";s:5:"is_IS";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 00:20:24";s:12:"english_name";s:9:"Icelandic";s:11:"native_name";s:9:"Íslenska";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/is_IS.zip";s:3:"iso";a:2:{i:1;s:2:"is";i:2;s:3:"isl";}s:7:"strings";a:1:{s:8:"continue";s:6:"Áfram";}}s:5:"it_IT";a:8:{s:8:"language";s:5:"it_IT";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-30 18:58:39";s:12:"english_name";s:7:"Italian";s:11:"native_name";s:8:"Italiano";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/it_IT.zip";s:3:"iso";a:2:{i:1;s:2:"it";i:2;s:3:"ita";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"ja";a:8:{s:8:"language";s:2:"ja";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-25 13:08:14";s:12:"english_name";s:8:"Japanese";s:11:"native_name";s:9:"日本語";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/ja.zip";s:3:"iso";a:1:{i:1;s:2:"ja";}s:7:"strings";a:1:{s:8:"continue";s:9:"続ける";}}s:5:"ka_GE";a:8:{s:8:"language";s:5:"ka_GE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-09 08:53:31";s:12:"english_name";s:8:"Georgian";s:11:"native_name";s:21:"ქართული";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/ka_GE.zip";s:3:"iso";a:2:{i:1;s:2:"ka";i:2;s:3:"kat";}s:7:"strings";a:1:{s:8:"continue";s:30:"გაგრძელება";}}s:5:"ko_KR";a:8:{s:8:"language";s:5:"ko_KR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-24 00:12:01";s:12:"english_name";s:6:"Korean";s:11:"native_name";s:9:"한국어";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/ko_KR.zip";s:3:"iso";a:2:{i:1;s:2:"ko";i:2;s:3:"kor";}s:7:"strings";a:1:{s:8:"continue";s:6:"계속";}}s:5:"lt_LT";a:8:{s:8:"language";s:5:"lt_LT";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 20:07:24";s:12:"english_name";s:10:"Lithuanian";s:11:"native_name";s:15:"Lietuvių kalba";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/lt_LT.zip";s:3:"iso";a:2:{i:1;s:2:"lt";i:2;s:3:"lit";}s:7:"strings";a:1:{s:8:"continue";s:6:"Tęsti";}}s:5:"ms_MY";a:8:{s:8:"language";s:5:"ms_MY";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-28 05:41:39";s:12:"english_name";s:5:"Malay";s:11:"native_name";s:13:"Bahasa Melayu";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/ms_MY.zip";s:3:"iso";a:2:{i:1;s:2:"ms";i:2;s:3:"msa";}s:7:"strings";a:1:{s:8:"continue";s:8:"Teruskan";}}s:5:"my_MM";a:8:{s:8:"language";s:5:"my_MM";s:7:"version";s:6:"4.1.10";s:7:"updated";s:19:"2015-03-26 15:57:42";s:12:"english_name";s:17:"Myanmar (Burmese)";s:11:"native_name";s:15:"ဗမာစာ";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/4.1.10/my_MM.zip";s:3:"iso";a:2:{i:1;s:2:"my";i:2;s:3:"mya";}s:7:"strings";a:1:{s:8:"continue";s:54:"ဆက်လက်လုပ်ေဆာင်ပါ။";}}s:5:"nb_NO";a:8:{s:8:"language";s:5:"nb_NO";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-07 10:01:09";s:12:"english_name";s:19:"Norwegian (Bokmål)";s:11:"native_name";s:13:"Norsk bokmål";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/nb_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nb";i:2;s:3:"nob";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsett";}}s:12:"nl_NL_formal";a:8:{s:8:"language";s:12:"nl_NL_formal";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-20 13:35:50";s:12:"english_name";s:14:"Dutch (Formal)";s:11:"native_name";s:20:"Nederlands (Formeel)";s:7:"package";s:71:"https://downloads.wordpress.org/translation/core/4.4.2/nl_NL_formal.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"nl_NL";a:8:{s:8:"language";s:5:"nl_NL";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-23 18:59:13";s:12:"english_name";s:5:"Dutch";s:11:"native_name";s:10:"Nederlands";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/nl_NL.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"nn_NO";a:8:{s:8:"language";s:5:"nn_NO";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-14 12:19:44";s:12:"english_name";s:19:"Norwegian (Nynorsk)";s:11:"native_name";s:13:"Norsk nynorsk";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/nn_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nn";i:2;s:3:"nno";}s:7:"strings";a:1:{s:8:"continue";s:9:"Hald fram";}}s:3:"oci";a:8:{s:8:"language";s:3:"oci";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-08 16:21:37";s:12:"english_name";s:7:"Occitan";s:11:"native_name";s:7:"Occitan";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.4.2/oci.zip";s:3:"iso";a:2:{i:1;s:2:"oc";i:2;s:3:"oci";}s:7:"strings";a:1:{s:8:"continue";s:9:"Contunhar";}}s:5:"pl_PL";a:8:{s:8:"language";s:5:"pl_PL";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-26 19:07:19";s:12:"english_name";s:6:"Polish";s:11:"native_name";s:6:"Polski";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/pl_PL.zip";s:3:"iso";a:2:{i:1;s:2:"pl";i:2;s:3:"pol";}s:7:"strings";a:1:{s:8:"continue";s:9:"Kontynuuj";}}s:2:"ps";a:8:{s:8:"language";s:2:"ps";s:7:"version";s:6:"4.1.10";s:7:"updated";s:19:"2015-03-29 22:19:48";s:12:"english_name";s:6:"Pashto";s:11:"native_name";s:8:"پښتو";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1.10/ps.zip";s:3:"iso";a:2:{i:1;s:2:"ps";i:2;s:3:"pus";}s:7:"strings";a:1:{s:8:"continue";s:8:"دوام";}}s:5:"pt_BR";a:8:{s:8:"language";s:5:"pt_BR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-10 18:05:56";s:12:"english_name";s:19:"Portuguese (Brazil)";s:11:"native_name";s:20:"Português do Brasil";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/pt_BR.zip";s:3:"iso";a:2:{i:1;s:2:"pt";i:2;s:3:"por";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_PT";a:8:{s:8:"language";s:5:"pt_PT";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-25 13:02:32";s:12:"english_name";s:21:"Portuguese (Portugal)";s:11:"native_name";s:10:"Português";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/pt_PT.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"ro_RO";a:8:{s:8:"language";s:5:"ro_RO";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-24 11:09:36";s:12:"english_name";s:8:"Romanian";s:11:"native_name";s:8:"Română";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/ro_RO.zip";s:3:"iso";a:2:{i:1;s:2:"ro";i:2;s:3:"ron";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuă";}}s:5:"ru_RU";a:8:{s:8:"language";s:5:"ru_RU";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-02 00:04:31";s:12:"english_name";s:7:"Russian";s:11:"native_name";s:14:"Русский";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/ru_RU.zip";s:3:"iso";a:2:{i:1;s:2:"ru";i:2;s:3:"rus";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продолжить";}}s:5:"sk_SK";a:8:{s:8:"language";s:5:"sk_SK";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-26 11:29:13";s:12:"english_name";s:6:"Slovak";s:11:"native_name";s:11:"Slovenčina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/sk_SK.zip";s:3:"iso";a:2:{i:1;s:2:"sk";i:2;s:3:"slk";}s:7:"strings";a:1:{s:8:"continue";s:12:"Pokračovať";}}s:5:"sl_SI";a:8:{s:8:"language";s:5:"sl_SI";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-11-26 00:00:18";s:12:"english_name";s:9:"Slovenian";s:11:"native_name";s:13:"Slovenščina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/sl_SI.zip";s:3:"iso";a:2:{i:1;s:2:"sl";i:2;s:3:"slv";}s:7:"strings";a:1:{s:8:"continue";s:10:"Nadaljujte";}}s:2:"sq";a:8:{s:8:"language";s:2:"sq";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-23 10:30:30";s:12:"english_name";s:8:"Albanian";s:11:"native_name";s:5:"Shqip";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/sq.zip";s:3:"iso";a:2:{i:1;s:2:"sq";i:2;s:3:"sqi";}s:7:"strings";a:1:{s:8:"continue";s:6:"Vazhdo";}}s:5:"sr_RS";a:8:{s:8:"language";s:5:"sr_RS";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-09 09:09:51";s:12:"english_name";s:7:"Serbian";s:11:"native_name";s:23:"Српски језик";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/sr_RS.zip";s:3:"iso";a:2:{i:1;s:2:"sr";i:2;s:3:"srp";}s:7:"strings";a:1:{s:8:"continue";s:14:"Настави";}}s:5:"sv_SE";a:8:{s:8:"language";s:5:"sv_SE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 23:28:56";s:12:"english_name";s:7:"Swedish";s:11:"native_name";s:7:"Svenska";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/sv_SE.zip";s:3:"iso";a:2:{i:1;s:2:"sv";i:2;s:3:"swe";}s:7:"strings";a:1:{s:8:"continue";s:9:"Fortsätt";}}s:2:"th";a:8:{s:8:"language";s:2:"th";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 03:22:55";s:12:"english_name";s:4:"Thai";s:11:"native_name";s:9:"ไทย";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/th.zip";s:3:"iso";a:2:{i:1;s:2:"th";i:2;s:3:"tha";}s:7:"strings";a:1:{s:8:"continue";s:15:"ต่อไป";}}s:2:"tl";a:8:{s:8:"language";s:2:"tl";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-11-27 15:51:36";s:12:"english_name";s:7:"Tagalog";s:11:"native_name";s:7:"Tagalog";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/tl.zip";s:3:"iso";a:2:{i:1;s:2:"tl";i:2;s:3:"tgl";}s:7:"strings";a:1:{s:8:"continue";s:10:"Magpatuloy";}}s:5:"tr_TR";a:8:{s:8:"language";s:5:"tr_TR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-17 23:12:27";s:12:"english_name";s:7:"Turkish";s:11:"native_name";s:8:"Türkçe";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/tr_TR.zip";s:3:"iso";a:2:{i:1;s:2:"tr";i:2;s:3:"tur";}s:7:"strings";a:1:{s:8:"continue";s:5:"Devam";}}s:5:"ug_CN";a:8:{s:8:"language";s:5:"ug_CN";s:7:"version";s:6:"4.1.10";s:7:"updated";s:19:"2015-03-26 16:45:38";s:12:"english_name";s:6:"Uighur";s:11:"native_name";s:9:"Uyƣurqə";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/4.1.10/ug_CN.zip";s:3:"iso";a:2:{i:1;s:2:"ug";i:2;s:3:"uig";}s:7:"strings";a:1:{s:8:"continue";s:26:"داۋاملاشتۇرۇش";}}s:2:"uk";a:8:{s:8:"language";s:2:"uk";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-03 22:04:41";s:12:"english_name";s:9:"Ukrainian";s:11:"native_name";s:20:"Українська";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/uk.zip";s:3:"iso";a:2:{i:1;s:2:"uk";i:2;s:3:"ukr";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продовжити";}}s:2:"vi";a:8:{s:8:"language";s:2:"vi";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-09 01:01:25";s:12:"english_name";s:10:"Vietnamese";s:11:"native_name";s:14:"Tiếng Việt";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/vi.zip";s:3:"iso";a:2:{i:1;s:2:"vi";i:2;s:3:"vie";}s:7:"strings";a:1:{s:8:"continue";s:12:"Tiếp tục";}}s:5:"zh_TW";a:8:{s:8:"language";s:5:"zh_TW";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-11 18:51:41";s:12:"english_name";s:16:"Chinese (Taiwan)";s:11:"native_name";s:12:"繁體中文";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/zh_TW.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"繼續";}}s:5:"zh_CN";a:8:{s:8:"language";s:5:"zh_CN";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-12 22:55:08";s:12:"english_name";s:15:"Chinese (China)";s:11:"native_name";s:12:"简体中文";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/zh_CN.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"继续";}}}', 'yes'),
(844, 'widget_akismet_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(845, 'akismet_strictness', '0', 'yes'),
(846, 'akismet_show_user_comments_approved', '0', 'yes'),
(847, 'wordpress_api_key', 'b237da94c4ea', 'yes'),
(852, 'supercache_stats', 'a:3:{s:9:"generated";i:1457863384;s:10:"supercache";a:6:{s:7:"expired";i:0;s:12:"expired_list";a:0:{}s:6:"cached";i:1;s:11:"cached_list";a:0:{}s:2:"ts";i:1457863384;s:5:"fsize";i:23522;}s:7:"wpcache";a:3:{s:6:"cached";i:0;s:7:"expired";i:0;s:5:"fsize";s:3:"0KB";}}', 'yes'),
(4272, '_transient_timeout_wpcom_subscribers_total', '1458586895', 'no'),
(4273, '_transient_wpcom_subscribers_total', 'a:2:{s:6:"status";s:7:"success";s:5:"value";i:0;}', 'no'),
(4299, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1458596206', 'yes');
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(4300, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:100:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"5762";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"3580";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"3548";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"3046";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2757";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"2281";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"2190";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"2045";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1999";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1968";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1959";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1915";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1828";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:4:"1641";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1539";}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";s:4:"1532";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:4:"1509";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:4:"1338";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:4:"1281";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1276";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:4:"1178";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:4:"1080";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:4:"1055";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"996";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"950";}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";s:3:"922";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"907";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"892";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"889";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"878";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"878";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"822";}s:10:"responsive";a:3:{s:4:"name";s:10:"responsive";s:4:"slug";s:10:"responsive";s:5:"count";s:3:"784";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"778";}s:8:"security";a:3:{s:4:"name";s:8:"security";s:4:"slug";s:8:"security";s:5:"count";s:3:"759";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"743";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"737";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"736";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"735";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"732";}s:5:"share";a:3:{s:4:"name";s:5:"Share";s:4:"slug";s:5:"share";s:5:"count";s:3:"727";}s:10:"e-commerce";a:3:{s:4:"name";s:10:"e-commerce";s:4:"slug";s:10:"e-commerce";s:5:"count";s:3:"726";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"687";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"681";}s:4:"form";a:3:{s:4:"name";s:4:"form";s:4:"slug";s:4:"form";s:5:"count";s:3:"671";}s:9:"analytics";a:3:{s:4:"name";s:9:"analytics";s:4:"slug";s:9:"analytics";s:5:"count";s:3:"671";}s:5:"embed";a:3:{s:4:"name";s:5:"embed";s:4:"slug";s:5:"embed";s:5:"count";s:3:"670";}s:3:"css";a:3:{s:4:"name";s:3:"CSS";s:4:"slug";s:3:"css";s:5:"count";s:3:"661";}s:6:"search";a:3:{s:4:"name";s:6:"search";s:4:"slug";s:6:"search";s:5:"count";s:3:"648";}s:9:"slideshow";a:3:{s:4:"name";s:9:"slideshow";s:4:"slug";s:9:"slideshow";s:5:"count";s:3:"630";}s:6:"custom";a:3:{s:4:"name";s:6:"custom";s:4:"slug";s:6:"custom";s:5:"count";s:3:"629";}s:6:"slider";a:3:{s:4:"name";s:6:"slider";s:4:"slug";s:6:"slider";s:5:"count";s:3:"626";}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";s:3:"609";}s:6:"button";a:3:{s:4:"name";s:6:"button";s:4:"slug";s:6:"button";s:5:"count";s:3:"602";}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";s:3:"591";}s:4:"tags";a:3:{s:4:"name";s:4:"tags";s:4:"slug";s:4:"tags";s:5:"count";s:3:"585";}s:4:"menu";a:3:{s:4:"name";s:4:"menu";s:4:"slug";s:4:"menu";s:5:"count";s:3:"585";}s:5:"theme";a:3:{s:4:"name";s:5:"theme";s:4:"slug";s:5:"theme";s:5:"count";s:3:"585";}s:9:"dashboard";a:3:{s:4:"name";s:9:"dashboard";s:4:"slug";s:9:"dashboard";s:5:"count";s:3:"584";}s:10:"categories";a:3:{s:4:"name";s:10:"categories";s:4:"slug";s:10:"categories";s:5:"count";s:3:"570";}s:6:"mobile";a:3:{s:4:"name";s:6:"mobile";s:4:"slug";s:6:"mobile";s:5:"count";s:3:"562";}s:10:"statistics";a:3:{s:4:"name";s:10:"statistics";s:4:"slug";s:10:"statistics";s:5:"count";s:3:"558";}s:3:"ads";a:3:{s:4:"name";s:3:"ads";s:4:"slug";s:3:"ads";s:5:"count";s:3:"548";}s:4:"user";a:3:{s:4:"name";s:4:"user";s:4:"slug";s:4:"user";s:5:"count";s:3:"540";}s:6:"editor";a:3:{s:4:"name";s:6:"editor";s:4:"slug";s:6:"editor";s:5:"count";s:3:"537";}s:5:"users";a:3:{s:4:"name";s:5:"users";s:4:"slug";s:5:"users";s:5:"count";s:3:"526";}s:4:"list";a:3:{s:4:"name";s:4:"list";s:4:"slug";s:4:"list";s:5:"count";s:3:"517";}s:7:"picture";a:3:{s:4:"name";s:7:"picture";s:4:"slug";s:7:"picture";s:5:"count";s:3:"507";}s:9:"affiliate";a:3:{s:4:"name";s:9:"affiliate";s:4:"slug";s:9:"affiliate";s:5:"count";s:3:"502";}s:7:"plugins";a:3:{s:4:"name";s:7:"plugins";s:4:"slug";s:7:"plugins";s:5:"count";s:3:"501";}s:6:"simple";a:3:{s:4:"name";s:6:"simple";s:4:"slug";s:6:"simple";s:5:"count";s:3:"491";}s:9:"multisite";a:3:{s:4:"name";s:9:"multisite";s:4:"slug";s:9:"multisite";s:5:"count";s:3:"489";}s:12:"social-media";a:3:{s:4:"name";s:12:"social media";s:4:"slug";s:12:"social-media";s:5:"count";s:3:"486";}s:12:"contact-form";a:3:{s:4:"name";s:12:"contact form";s:4:"slug";s:12:"contact-form";s:5:"count";s:3:"484";}s:7:"contact";a:3:{s:4:"name";s:7:"contact";s:4:"slug";s:7:"contact";s:5:"count";s:3:"466";}s:8:"pictures";a:3:{s:4:"name";s:8:"pictures";s:4:"slug";s:8:"pictures";s:5:"count";s:3:"452";}s:4:"shop";a:3:{s:4:"name";s:4:"shop";s:4:"slug";s:4:"shop";s:5:"count";s:3:"438";}s:10:"navigation";a:3:{s:4:"name";s:10:"navigation";s:4:"slug";s:10:"navigation";s:5:"count";s:3:"436";}s:3:"url";a:3:{s:4:"name";s:3:"url";s:4:"slug";s:3:"url";s:5:"count";s:3:"436";}s:4:"html";a:3:{s:4:"name";s:4:"html";s:4:"slug";s:4:"html";s:5:"count";s:3:"435";}s:3:"api";a:3:{s:4:"name";s:3:"api";s:4:"slug";s:3:"api";s:5:"count";s:3:"434";}s:9:"marketing";a:3:{s:4:"name";s:9:"marketing";s:4:"slug";s:9:"marketing";s:5:"count";s:3:"428";}s:5:"flash";a:3:{s:4:"name";s:5:"flash";s:4:"slug";s:5:"flash";s:5:"count";s:3:"422";}s:10:"newsletter";a:3:{s:4:"name";s:10:"newsletter";s:4:"slug";s:10:"newsletter";s:5:"count";s:3:"419";}s:4:"meta";a:3:{s:4:"name";s:4:"meta";s:4:"slug";s:4:"meta";s:5:"count";s:3:"414";}s:4:"news";a:3:{s:4:"name";s:4:"News";s:4:"slug";s:4:"news";s:5:"count";s:3:"404";}s:3:"tag";a:3:{s:4:"name";s:3:"tag";s:4:"slug";s:3:"tag";s:5:"count";s:3:"404";}s:8:"calendar";a:3:{s:4:"name";s:8:"calendar";s:4:"slug";s:8:"calendar";s:5:"count";s:3:"402";}s:6:"events";a:3:{s:4:"name";s:6:"events";s:4:"slug";s:6:"events";s:5:"count";s:3:"402";}s:8:"tracking";a:3:{s:4:"name";s:8:"tracking";s:4:"slug";s:8:"tracking";s:5:"count";s:3:"398";}s:11:"advertising";a:3:{s:4:"name";s:11:"advertising";s:4:"slug";s:11:"advertising";s:5:"count";s:3:"397";}s:10:"shortcodes";a:3:{s:4:"name";s:10:"shortcodes";s:4:"slug";s:10:"shortcodes";s:5:"count";s:3:"394";}s:9:"thumbnail";a:3:{s:4:"name";s:9:"thumbnail";s:4:"slug";s:9:"thumbnail";s:5:"count";s:3:"390";}s:4:"text";a:3:{s:4:"name";s:4:"text";s:4:"slug";s:4:"text";s:5:"count";s:3:"388";}s:6:"upload";a:3:{s:4:"name";s:6:"upload";s:4:"slug";s:6:"upload";s:5:"count";s:3:"386";}s:7:"sharing";a:3:{s:4:"name";s:7:"sharing";s:4:"slug";s:7:"sharing";s:5:"count";s:3:"384";}s:4:"code";a:3:{s:4:"name";s:4:"code";s:4:"slug";s:4:"code";s:5:"count";s:3:"384";}s:12:"notification";a:3:{s:4:"name";s:12:"notification";s:4:"slug";s:12:"notification";s:5:"count";s:3:"384";}s:9:"automatic";a:3:{s:4:"name";s:9:"automatic";s:4:"slug";s:9:"automatic";s:5:"count";s:3:"381";}s:6:"paypal";a:3:{s:4:"name";s:6:"paypal";s:4:"slug";s:6:"paypal";s:5:"count";s:3:"381";}}', 'yes'),
(4303, 'intergeo_show_map_center', '1', 'yes'),
(4305, 'rewrite_rules', 'a:93:{s:11:"^wp-json/?$";s:22:"index.php?rest_route=/";s:14:"^wp-json/(.*)?";s:33:"index.php?rest_route=/$matches[1]";s:56:"articles/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:51:"articles/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:44:"articles/category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:26:"articles/category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:53:"articles/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:48:"articles/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:41:"articles/tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:23:"articles/tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:54:"articles/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:49:"articles/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:42:"articles/type/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?post_format=$matches[1]&paged=$matches[2]";s:24:"articles/type/([^/]+)/?$";s:33:"index.php?post_format=$matches[1]";s:45:"articles/intergeo/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:55:"articles/intergeo/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:75:"articles/intergeo/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:70:"articles/intergeo/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:70:"articles/intergeo/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:51:"articles/intergeo/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:34:"articles/intergeo/([^/]+)/embed/?$";s:41:"index.php?intergeo=$matches[1]&embed=true";s:38:"articles/intergeo/([^/]+)/trackback/?$";s:35:"index.php?intergeo=$matches[1]&tb=1";s:46:"articles/intergeo/([^/]+)/page/?([0-9]{1,})/?$";s:48:"index.php?intergeo=$matches[1]&paged=$matches[2]";s:53:"articles/intergeo/([^/]+)/comment-page-([0-9]{1,})/?$";s:48:"index.php?intergeo=$matches[1]&cpage=$matches[2]";s:42:"articles/intergeo/([^/]+)(?:/([0-9]+))?/?$";s:47:"index.php?intergeo=$matches[1]&page=$matches[2]";s:34:"articles/intergeo/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:44:"articles/intergeo/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:64:"articles/intergeo/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"articles/intergeo/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"articles/intergeo/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:40:"articles/intergeo/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:12:"robots\\.txt$";s:18:"index.php?robots=1";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:27:"comment-page-([0-9]{1,})/?$";s:38:"index.php?&page_id=2&cpage=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:56:"articles/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:51:"articles/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:44:"articles/author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:26:"articles/author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:78:"articles/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:73:"articles/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:66:"articles/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:48:"articles/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:65:"articles/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:60:"articles/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:53:"articles/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:35:"articles/([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:52:"articles/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:47:"articles/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:40:"articles/([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:22:"articles/([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:".?.+?/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:16:"(.?.+?)/embed/?$";s:41:"index.php?pagename=$matches[1]&embed=true";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:24:"(.?.+?)(?:/([0-9]+))?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";s:36:"articles/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:46:"articles/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:66:"articles/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:61:"articles/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:61:"articles/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:42:"articles/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:25:"articles/([^/]+)/embed/?$";s:37:"index.php?name=$matches[1]&embed=true";s:29:"articles/([^/]+)/trackback/?$";s:31:"index.php?name=$matches[1]&tb=1";s:49:"articles/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:44:"articles/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:37:"articles/([^/]+)/page/?([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&paged=$matches[2]";s:44:"articles/([^/]+)/comment-page-([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&cpage=$matches[2]";s:33:"articles/([^/]+)(?:/([0-9]+))?/?$";s:43:"index.php?name=$matches[1]&page=$matches[2]";s:25:"articles/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:35:"articles/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:55:"articles/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:50:"articles/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:50:"articles/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:31:"articles/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";}', 'yes'),
(4318, 'widget_gallery', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(6423, '_site_transient_timeout_browser_e3ae366e66d1c39ce6cf9f9706edbba9', '1459630665', 'yes'),
(6424, '_site_transient_browser_e3ae366e66d1c39ce6cf9f9706edbba9', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"48.0.2564.116";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'),
(6439, '_transient_timeout_plugin_slugs', '1459166788', 'no'),
(6440, '_transient_plugin_slugs', 'a:6:{i:0;s:19:"akismet/akismet.php";i:1;s:29:"pirate-forms/pirate-forms.php";i:2;s:9:"hello.php";i:3;s:23:"intergeo-maps/index.php";i:4;s:19:"jetpack/jetpack.php";i:5;s:45:"llorix-one-companion/llorix-one-companion.php";}', 'no'),
(6747, '_site_transient_timeout_browser_67bffb4457c7c00ae77275828881cb94', '1459685180', 'yes'),
(6748, '_site_transient_browser_67bffb4457c7c00ae77275828881cb94', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"49.0.2623.87";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(6749, '_transient_timeout_feed_66a70e9599b658d5cc038e8074597e7c', '1459123585', 'no');
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(6750, '_transient_feed_66a70e9599b658d5cc038e8074597e7c', '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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:21:"WordPress Francophone";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:27:"http://www.wordpress-fr.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:70:"La communauté francophone autour du CMS WordPress et son écosystème";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 11 Feb 2016 11:25:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"fr-FR";s: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:27:"http://wordpress.org/?v=4.3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:8:"WPFR 2.0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/jHn6JESKG5o/";s: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:57:"http://www.wordpress-fr.net/2015/12/21/wpfr-2-0/#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:"Mon, 21 Dec 2015 11:00:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:16:"Association WPFR";s: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:4:"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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=7516";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:422:"Une nouvelle ère s’ouvre pour l’association WordPress Francophone. Un nouveau bureau est en place avec à sa tête : Émilie Lebrun (trésorière), Benoît Catherineau (secrétaire) et moi-même, Aurélien Denis (président). Cette nouvelle aventure sera marquée par la « professionnalisation » de la communauté à tous les niveaux : refonte du site communautaire, mise à jour du 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:15:"Aurélien Denis";s: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:7431:"<div class="page" title="Page 1">\n<div class="section">\n<div class="layoutArea">\n<div class="column">\n<p>Une nouvelle ère s’ouvre pour l’association WordPress Francophone. Un nouveau bureau est en place avec à sa tête : Émilie Lebrun (trésorière), Benoît Catherineau (secrétaire) et moi-même, Aurélien Denis (président).</p>\n<p>Cette nouvelle aventure sera marquée par la « professionnalisation » de la communauté à tous les niveaux : refonte du site communautaire, mise à jour du site localisé de WordPress.org, réflexion sur la création de certifications et autres formations diplômantes, ouverture de l’association aux membres… sont autant de chantiers que nous avons d’ores et déjà lancés en interne.</p>\n<p>Nous avons fait le choix d’adopter une approche par projets qui devront être menés de front pour donner un nouveau visage à la communauté francophone dans les 6 prochains mois. La masse de travail est conséquente, nous en avons conscience et c’est pour cela que toutes les bonnes volontés seront les bienvenues pour nous épauler dans cette mission. Soyez acteur de votre communauté !</p>\n<p>Comment agir ? Cette question revient souvent lors des nombreux échanges que chacun d’entre nous peuvent avoir, aussi bien de manière virtuelle que réelle. Il me semble opportun de décliner les différents chantiers afin que chacun puisse se positionner sur l’un d’eux.</p>\n<h2>La refonte du site WPFR</h2>\n<p>Disons le clairement : les attentes sont fortes, très fortes ! Contenus dépassés, forum obsolète, absence de services communautaires… Parmi les changements à venir, nous pouvons retenir :</p>\n<ul>\n<li>Changement du nom de domaine pour se mettre en conformité avec les règles établies par Automattic ;</li>\n<li>Changement de serveur pour de meilleures performances ;</li>\n<li>Bascule progressive du blog, de la vitrine et du forum vers le site fr.wordpress.org ;</li>\n<li>Création d’une nouvelle charte graphique ;</li>\n<li>Refonte technique (responsive design, prise en charge des écrans HDPI, etc.) ;</li>\n<li>Remise à plat fonctionnelle pour répondre à la réalité des besoins de la communauté ;</li>\n<li>Nouvelle stratégie de référencement ;</li>\n</ul>\n<p>L’objectif majeur de cette nouvelle version est le suivant : faire en sorte que chaque membre de la communauté puisse accéder à des services qui le concerne : utilisateurs occasionnels ou passionnés, contributeurs actifs ou en quête de contribution, développeurs de thèmes ou d’extensions WordPress, animateurs d’associations locales… ce site sera le vôtre !</p>\n<h2>La mise à jour du site localisé fr.wordpress.org</h2>\n<p>Il s’agit du site officiel sur lequel vous téléchargez l’archive WordPress avec ses packs de traduction française. Pour les connaisseurs, on parle du site « Rosetta » qui fait référence au nom du thème installé sur ce dernier.</p>\n<p>WPFR a en charge la gestion de ce site et dispose d’une certaine latitude dans l’activation de nouvelles fonctionnalités. Vous aurez sans doute remarqué l’apparition des rubriques Thèmes et Extensions ou encore de contenus réécrits sur les différentes pages de présentation.</p>\n<p>Ce travail est en cours de réalisation par l’équipe de traducteurs bénévoles que sont François-Xavier Bénard, Xavier Borderie et Didier Demory.</p>\n</div>\n</div>\n</div>\n</div>\n<div class="page" title="Page 2">\n<div class="section">\n<div class="layoutArea">\n<div class="column">\n<p>A terme, le blog WPFR rejoindra ce site pour vous tenir informé sur les actualités en lien avec WordPress. De même, il est envisagé de migrer le forum sur cet outil pour se positionner au même niveau que le site WordPress.org dans sa version anglophone. Il sera donc possible d’utiliser votre compte WordPress.org sur les 2 sites. C’est là un chantier immense pour lequel il nous faut prendre des décisions qui auront un impact fort tant pour l’utilisateur que pour les administrateurs.</p>\n<h2>La délivrance de certifications / formations diplômantes</h2>\n<p>Un vaste sujet auquel la communauté francophone de WordPress peut répondre. A l’instar de ce que propose déjà d’autres communautés (SEO Camp) ou des acteurs majeurs du Web (Google, Microsoft, etc.), nous pensons qu’il nous faut délivrer des certifications pour les professionnels WordPress.</p>\n<p>Le but est là encore de professionnaliser les acteurs du Web en France afin de permettre une identification simple et efficace des entreprises compétentes sur le marché par les clients. C’est une demande récurrente de par le monde à laquelle Automattic ne peut répondre : le projet WordPress n’appartient pas à cette multinationale, elle ne fait que le soutenir et n’est donc pas légitime pour établir des certifications comme pourrait le faire Google pour ses services.</p>\n<p>En outre, comme le savent les formateurs WordPress, les réformes successives sur la formation professionnelle nécessitent qu’une formation délivre un diplôme. Maxime Bernard-Jacquet est volontaire pour porter les démarches et des synergies avec <a href="http://www.wp-next.fr/" target="_blank">l’association WP-Next</a> sont à élaborer.</p>\n<h2>L’ouverture des adhésions</h2>\n<p>Jusqu’à aujourd’hui l’association WPFR était fermée et non ouverte aux adhésions. Certains d’entre vous ont rempli un formulaire lors des WordCamps Paris et Lyon cette année. Rassurez-vous nous les avons bien conservés et vous serez contactés en priorité pour adhérer en ligne dès lors que le nouveau site sera disponible. Si vous ne l’avez pas encore fait, contactez-nous via notre formulaire de contact.</p>\n<p>Ouvrir une association nécessite de savoir où l’on va tous ensemble, de proposer des services… autant d’aspects qui restent encore à définir précisément.</p>\n<p>Vous l’aurez compris, les 6 prochains mois seront décisifs ! Vous avez désormais la parole dans les commentaires pour nous faire part de vos remarques, vous positionner sur un chantier pour nous aider ou suggérer de nouvelles idées.</p>\n<p>Enfin, je terminerai par remercier chaleureusement tous ceux qui ont porté l’association WPFR durant plus d’une décennie. Ils se reconnaîtront sans doute : merci !</p>\n<p>Amicalement,<br />\nLe Président.</p>\n</div>\n</div>\n</div>\n</div>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=jHn6JESKG5o:rN9c88LUGi4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=jHn6JESKG5o:rN9c88LUGi4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=jHn6JESKG5o:rN9c88LUGi4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=jHn6JESKG5o:rN9c88LUGi4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=jHn6JESKG5o:rN9c88LUGi4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=jHn6JESKG5o:rN9c88LUGi4:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/jHn6JESKG5o" height="1" width="1" alt=""/>";s: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:53:"http://www.wordpress-fr.net/2015/12/21/wpfr-2-0/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:2:"55";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:48:"http://www.wordpress-fr.net/2015/12/21/wpfr-2-0/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:40:"Sortie de WordPress 4.4 « Clifford »";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/tgW8c7dvWys/";s: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:81:"http://www.wordpress-fr.net/2015/12/09/sortie-de-wordpress-4-4-clifford/#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, 09 Dec 2015 19:22: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:8:"category";a:2:{i:0;a:5:{s:4:"data";s:4:"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:"";}i:1;a:5:{s:4:"data";s:9:"WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=7508";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:401:"La version 4.4 de WordPress, baptisée “Clifford” en honneur au trompettiste de jazz Clifford Brown, est disponible en téléchargement ou en mise à jour via votre tableau de bord WordPress. Les nouvelles fonctionnalités de la 4.4 vous donnent un site plus connecté et au design adaptatif. Clifford introduit également un nouveau thème par défaut : Twenty Sixteen. Présentation […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Xavier";s: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:6445:"<p>La version 4.4 de WordPress, baptisée “Clifford” en honneur au trompettiste de jazz Clifford Brown, est disponible en téléchargement ou en mise à jour via votre tableau de bord WordPress.</p>\n<p>Les nouvelles fonctionnalités de la 4.4 vous donnent un site plus connecté et au design adaptatif. Clifford introduit également un nouveau thème par défaut : Twenty Sixteen.</p>\n<p><iframe src="https://videopress.com/embed/J44FHXvg?hd=0" width="632" height="354.35838150289015" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>\n<hr />\n<h2>Présentation de Twenty Sixteen</h2>\n<p><img class="aligncenter size-large wp-image-7512" src="http://www.wordpress-fr.net/wp-content/uploads/2015/12/ipad-white-desktop-2x-1024x6941-500x339.png" alt="ipad-white-desktop-2x-1024x694" width="500" height="339" /></p>\n<p>Le nouveau thème par défaut, Twenty Sixteen, est une modernisation d’un thème de blog classique.</p>\n<p>Twenty Sixteen a été conçu pour être superbe sur tous les appareils. Avec son design en grille fluide, son en-tête flexible et ses jeux de couleurs joyeux, elle mettre en valeur votre contenu.</p>\n<hr />\n<h2>Images adaptatives</h2>\n<p><img class="aligncenter size-large wp-image-7511" src="http://www.wordpress-fr.net/wp-content/uploads/2015/12/responsive-devices-ipad-2x-500x229.png" alt="responsive-devices-ipad-2x" width="500" height="229" /></p>\n<p>WordPress approche désormais l’affichage des images de manières plus intelligente, utilisant à chaque fois la taille d’image la plus pertinente en fonction de l’appareil utilisé. Vous n’avez rien a changer à votre thème : ça fonctionne, c’est tout.</p>\n<hr />\n<h2>Intégrez votre contenu WordPress</h2>\n<div class="embed-container">\n<p>https://make.wordpress.org/core/2015/10/28/new-embeds-feature-in-wordpress-4-4/</p>\n<p>Vous pouvez désormais insérer vos articles dans d’autres sites, et même dans d’autres sites WordPress. Collez simplement l’adresse du contenu dans l’éditeur, et une prévisualisation s’affichera instantanément, avec titre, extrait, et l’image de Une si vous avez mise une. Vous y trouverez même l’icône de votre site et les liens pour commenter et partager.</p>\n</div>\n<p>En plus de l’insertion de contenu, WordPress 4.4 apporte la reconnaissance de cinq nouveaux fournisseurs oEmbed : Cloudup, Reddit Comments, ReverbNation, Speaker Deck et VideoPress.</p>\n<hr />\n<h2>Sous le capot</h2>\n<p><img class="aligncenter size-large wp-image-7513" src="http://www.wordpress-fr.net/wp-content/uploads/2015/12/banner-1544x500-500x162.jpg" alt="banner-1544x500" width="500" height="162" /></p>\n<h3>Infrastructure de l’API REST</h3>\n<p>L’infrastructure de l’API REST a été intégrée au coeur de WordPress, ouvrant ainsi une nouvelle ère pour le développement avec le logiciel. L’API REST a été conçue pour offrir aux développeurs une manière central de construire et étendre des API RESTful basées sur le socle WordPress.</p>\n<p>L’infrastructure est la première partie d’une mise en place en plusieurs étapes de l’API REST. L’inclusion des points d’accès est prévue pour une prochaine version. Pour avoir un aperçu des principaux points d’accès, et pour obtenir plus d’information sur la manière d’étendre l’API REST, découvrez l’extension officielle <a class="thickbox" href="http://xavier.borderie.net/blog/wp-admin/plugin-install.php?tab=plugin-information&plugin=rest-api&TB_iframe=1&width=600&height=550">WordPress REST API</a>.</p>\n<h3>Méta des termes</h3>\n<p>Les termes disposent désormais de métadonnées, tout comme les articles. Lisez la documentation de <a href="https://developer.wordpress.org/reference/functions/add_term_meta"><code>add_term_meta()</code></a>,<a href="https://developer.wordpress.org/reference/functions/get_term_meta"><code>get_term_meta()</code></a> et <a href="https://developer.wordpress.org/reference/functions/update_term_meta"><code>update_term_meta()</code></a>pour plus d’information.</p>\n<h3>Amélioration des requêtes de commentaires</h3>\n<p>Les requêtes de commentaires disposent désormais d’un gestionnaire de cache pour améliorer les performances. Les nouveaux arguments de <code>WP_Comment_Query</code> simplifient la mise en place de requêtes de commentaires robustes.</p>\n<div class="feature-section under-the-hood three-col">\n<div class="col">\n<h3>Objets pour les termes, commentaires et réseaux</h3>\n<p>Les nouveaux objets <code>WP_Term</code>, <code>WP_Comment</code>et <code>WP_Network</code> rendent la gestion par le code des termes, commentaires et réseaux plus prévisible et intuitive.</p>\n<h2>L’équipe</h2>\n<p><a class="alignleft" href="https://profiles.wordpress.org/wonderboymusic"><img id="grav-ed0f881acb9dc96bee53e4dc61b5558f-0" class="grav-hashed" src="https://www.gravatar.com/avatar/ed0f881acb9dc96bee53e4dc61b5558f?d=mm&s=180&r=G" alt="Scott Taylor" width="80" height="80" /></a>Cette version a été menée par <a href="http://scotty-t.com/">Scott Taylor</a>, avec l’aide de plus de 471 contributeurs — le plus grand nombre jamais vu pour une nouvelle version de WordPress. Parmi eux, on trouve quelques français : Mathieu Viet, Julio Potier, Nicolas Juen, et tous les traducteurs qui ont donné de leur temps pour s’assurer que cette version serait traduite dans les temps. Merci à tous !</p>\n</div>\n</div>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=tgW8c7dvWys:O5SMFkejhIY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=tgW8c7dvWys:O5SMFkejhIY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=tgW8c7dvWys:O5SMFkejhIY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=tgW8c7dvWys:O5SMFkejhIY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=tgW8c7dvWys:O5SMFkejhIY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=tgW8c7dvWys:O5SMFkejhIY:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/tgW8c7dvWys" height="1" width="1" alt=""/>";s: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:77:"http://www.wordpress-fr.net/2015/12/09/sortie-de-wordpress-4-4-clifford/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:"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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:72:"http://www.wordpress-fr.net/2015/12/09/sortie-de-wordpress-4-4-clifford/";s: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: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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress fait tourner 25% du web";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/WIL51xhSWSw/";s: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:81:"http://www.wordpress-fr.net/2015/11/09/wordpress-fait-tourner-25-du-web/#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:"Mon, 09 Nov 2015 12:15: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:8:"category";a:1:{i:0;a:5:{s:4:"data";s:9:"WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=7491";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:"Le nombre tant attendu a été atteint ce week-end : selon le site W3Techs, qui présente de nombreuses statistiques et études chiffrées sur les technologies du web, WordPress est aujourd’hui utilisé par 25% des sites web — et pas seulement 1/4 des sites qui ont utilisent un outil de gestion de contenu (CMS), non : […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Xavier";s: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:5162:"<p>Le nombre tant attendu a été atteint ce week-end : selon le site <a href="http://w3techs.com/">W3Techs</a>, qui présente de nombreuses statistiques et études chiffrées sur les technologies du web, <a href="http://w3techs.com/technologies/history_overview/content_management/all/y">WordPress est aujourd’hui utilisé par 25% des sites web</a> — et pas seulement 1/4 des sites qui ont utilisent un outil de gestion de contenu (CMS), non : 25% de TOUS les sites actuellement en ligne.</p>\n<p><img class="aligncenter wp-image-7492 size-full" src="http://www.wordpress-fr.net/wp-content/uploads/2015/11/wordpress-25pourcent-w3techs-tableau1.png" alt="wordpress-25pourcent-w3techs-tableau1" width="521" height="188" />Le site indique par ailleurs que WordPress a 58,7% de part de marché parmi les sites qui utilisent un CMS, avec l’ajout de plus de 1100 sites par jour (dans le top 10 millions des sites).</p>\n<p><img class="aligncenter wp-image-7493 size-full" src="http://www.wordpress-fr.net/wp-content/uploads/2015/11/wordpress-25pourcent-w3techs-tableau2.png" alt="wordpress-25pourcent-w3techs-tableau2" width="509" height="146" /></p>\n<p>C’est colossal, et c’est le résultat de plusieurs années d’amélioration d’un projet qui, <a href="http://ma.tt/2015/11/seventy-five-to-go/">comme le rappelle Matt Mullenweg</a>, a commencé <a href="http://zengun.org/weblog/archives/2001/06/post1958/">en juin 2001</a> sous le nom de <a href="http://cafelog.com/">b2/cafelog</a>, dans la chambre du français Michel Valdrighi, alors étudiant sur sa Corse natale (voir <a href="https://wordpress.tv/2012/02/27/les-origines-de-wordpress-la-naissance-de-b2cafelog/">sa conférence sur le sujet au WordCamp Paris 2011</a>).</p>\n<p><img class="aligncenter wp-image-7495 size-full" src="http://www.wordpress-fr.net/wp-content/uploads/2015/11/wordpress-25pourcent-w3techs-graphique1.png" alt="wordpress-25pourcent-w3techs-graphique1" width="765" height="506" /></p>\n<p>Ce qui a commencé comme un script blog personnel utilisé par quelques 3000 personnes au faîte de sa popularité, est aujourd’hui l’outil choisi par la grande majorité des individus et sociétés quand il s’agit de mettre leurs idées et contenus en ligne.</p>\n<p><img class="aligncenter wp-image-7494 size-full" src="http://www.wordpress-fr.net/wp-content/uploads/2015/11/wordpress-25pourcent-w3techs-tableau4.png" alt="wordpress-25pourcent-w3techs-tableau4" width="534" height="228" /></p>\n<p>Matt reprend ensuite : « Il reste une grosse opportunité à saisir avec les 57% de sites qui n’utilisent aucun CMS », ou en tout cas aucun d’identifiable — qui pourraient tout aussi bien être des WordPress ou Drupal dont le propriétaire a choisi de cacher son outil. « Je pense que c’est là où nous pouvons avoir une énorme croissance (et je soutiens également tous les autres CMS open-source). »</p>\n<p><img class="aligncenter size-full wp-image-7496" src="http://www.wordpress-fr.net/wp-content/uploads/2015/11/wordpress-25pourcent-w3techs-tableau3.png" alt="wordpress-25pourcent-w3techs-tableau3" width="469" height="321" /></p>\n<p>À suivre également, <a href="http://trends.builtwith.com/cms/WordPress">les statistiques proposées par Builtwith</a>.</p>\n<p>Ce 25% est un beau nouveau chiffre à ajouter à notre communauté en 2015, avec les 20 ans de PHP… et les 10 ans de l’association WordPress-Francophone (dont vous aurez bientôt des nouvelles, promis !).</p>\n<p>Merci à toutes la communauté de développeurs, de traducteurs, de créateurs d’extensions et de thèmes, d’accompagnateurs sur les forums, et tant d’autres !</p>\n<p>Rendez-vous aux prochains évènements WordPress français afin de fêter cela dignement, à commencer par le <a href="http://2015.wptech.fr/">WP Tech</a> à Nantes le 5 décembre, et le <a href="https://paris.wordcamp.org/2016/">WordCamp Paris</a> les 5 et 6 février 2016, ainsi que tous les autres évènements locaux, petits et grands, organisés par les membres de la grande famille WordPress !</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=WIL51xhSWSw:f1vr0WZxhp4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=WIL51xhSWSw:f1vr0WZxhp4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=WIL51xhSWSw:f1vr0WZxhp4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=WIL51xhSWSw:f1vr0WZxhp4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=WIL51xhSWSw:f1vr0WZxhp4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=WIL51xhSWSw:f1vr0WZxhp4:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/WIL51xhSWSw" height="1" width="1" alt=""/>";s: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:77:"http://www.wordpress-fr.net/2015/11/09/wordpress-fait-tourner-25-du-web/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:"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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:72:"http://www.wordpress-fr.net/2015/11/09/wordpress-fait-tourner-25-du-web/";s: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:54:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:46:"L’Hebdo WordPress n°263 du 10e anniversaire";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/ayO_P6QzZyY/";s: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:90:"http://www.wordpress-fr.net/2015/08/28/lhebdo-wordpress-n263-du-10e-anniversaire/#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, 28 Aug 2015 18:15: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:8:"category";a:5:{i:0;a:5:{s:4:"data";s:16:"Association WPFR";s: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:4:"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:"";}i:2;a:5:{s:4:"data";s:21:"WordPress Francophone";s: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:5:{s:4:"data";s:12:"anniversaire";s: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:5:{s:4:"data";s:5:"Hebdo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://www.wordpress-fr.net/?p=7471";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:348:"WPFR a 10 ans ! Il était une fois WordPress Francophone… Cette histoire a commencé il y a 10 ans par la volonté de quelques utilisateurs qui voulaient avoir un espace d’échange en français pour ne plus se faire rejeter des forums officiels allergiques aux non anglophones. Et un nouveau site wordpress-fr.net était né ! […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:12074:"<h3>WPFR a 10 ans !</h3>\n<p>Il était une fois WordPress Francophone… <a href="http://www.wordpress-fr.net/2005/08/24/le-depart/">Cette histoire a commencé il y a 10 ans</a> par la volonté de quelques utilisateurs qui voulaient avoir un espace d’échange en français pour ne plus se faire rejeter des forums officiels allergiques aux non anglophones. <a href="http://www.wordpress-fr.net/2005/08/25/wordpress-frnet/">Et un nouveau site wordpress-fr.net était né </a>!</p>\n<p>10 ans déjà de support en français avec <a href="http://www.wordpress-fr.net/support/">un forum</a> qui est aujourd’hui la pierre angulaire de notre communauté. Il représente 7 6741 inscrits pour près de 110 000 discussions ouvertes représentant 560 000 messages.</p>\n<p>WordPress Francophone et son site portail wordpress-fr.net c’est aujourd’hui une moyenne de près de 200 000 visites par mois pour environ 400 000 pages vues mensuelles.</p>\n<p>WPFR c’est aussi une présence sur <a href="https://twitter.com/wordpress_fr">Facebook</a>,<a href="https://twitter.com/wordpress_fr"> sur Twitter</a> et sur <a href="https://plus.google.com/u/0/b/112387028272126355329/112387028272126355329">Google+.</a></p>\n<p>Comme vous l’aurez constaté, notre site en général et le forum en particulier sont vieillissants… cela fait des années qu’une refonte est prévue. L’évolution de notre association en cours nous donne de bons espoirs pour cette fin d’année et le début de la suivante. Des annonces officielles vont suivre. Restez connectés !</p>\n<p>Des projets dans les cartons depuis longtemps devraient pouvoir se concrétiser enfin dans les mois à venir.</p>\n<p>Merci à toutes et tous pour votre fidélité, votre soutien, vos encouragements ou même parfois vos remarques et critiques… Rien n’est vain et WPFR avance, doucement mais surement et cela grâce à vous tous, grâce à la communauté !</p>\n<p><strong>Joyeux anniversaire WPFR</strong> ! 10 ans, c’est déjà presque l’adolescence ! Longue vie !</p>\n<hr />\n<p> </p>\n<p><span style="text-decoration: underline;"><strong>Place à l’hebdo WordPress n°263 :</strong></span></p>\n<h3>La roadmap pour WordPress 4.4</h3>\n<p>Le chantier se poursuit, pas de repos. <a href="https://make.wordpress.org/core/2015/08/27/taxonomy-roadmap-for-4-4-and-beyond/">Voici la feuille de route pour 4.4</a>. (en) … et on vous demande même votre avis sur <a href="https://make.wordpress.org/core/2015/08/19/wordpress-4-4-whats-on-your-wishlist/">ce que vous voulez voir arriver dans cette future version</a>. (en)</p>\n<h3>Le sondage WordPress 2015</h3>\n<p>Le sondage annuel de WordPress pour recueillir votre avis sur vos habitudes avec WordPress est disponible. <a href="http://wp-survey.polldaddy.com/s/wp-2015">N’hésitez pas à le remplir</a>. (en)</p>\n<h3>2016, le prochain thème par défaut</h3>\n<p><a href="https://make.wordpress.org/core/2015/08/25/introducing-twenty-sixteen/">2016 est d’ores et déjà mis en chantier</a>. (en)</p>\n<h3>BuddyPress 2.3.3</h3>\n<p>BuddyPress arrive dans sa <a href="https://buddypress.org/2015/08/buddypress-2-3-3/">version 2.3.3</a>. (en)</p>\n<h3>Les mots de passe sous WordPress 4.3</h3>\n<p>La dernière version en date de WordPress introduit <a href="https://make.wordpress.org/core/2015/07/28/passwords-strong-by-default/">une nouvelle gestion des mots de passe</a> (en).</p>\n<h3>Les nouveautés de WordPress 4.3</h3>\n<p>Si vous n’êtes pas encore <a href="http://wptavern.com/wordpress-4-3-billie-named-after-jazz-singer-billie-holiday-is-available-for-download">passés (en) </a>à <a href="https://poststatus.com/wordpress-4-3-billie-released/">WordPress 4.3 (en)</a>, <a href="http://www.lumieredelune.com/encrelune/nouveautes-wordpress-4-3,2015,08">voici ce que vous ratez</a> … quelques <a href="http://wptavern.com/text-patterns-and-the-quick-link-toolbar-in-wordpress-4-3">autres explications</a> (en) ! Mais attention… <a href="http://www.layerswp.com/2015/08/are-you-ready-for-wordpress-4-3/">soyez sûrs d’être prêts (en) </a>! Certains <a href="http://www.lumieredelune.com/encrelune/avertissement-widget-obsolete,2015,08">Widgets peuvent être obsolètes</a> notamment.</p>\n<h3>La check list essentielle pour la mise en place d’un site sous WordPress</h3>\n<p><a href="http://www.vingthuitzerotrois.fr/wordpress/la-check-list-essentielle-pour-la-mise-en-place-dun-site-sous-wordpress-15947/">LA checklist pour le moment fatidique (en) </a>où l’on doit mettre en place un site sous WordPress. Pour ne rien oublier !</p>\n<h3>Le BuddyCamp Brighton de iMath</h3>\n<p>Notre iMath national a participé au BuddyCamp de Brighton, <a href="http://imathi.eu/2015/08/10/buddycamp-brighton/">voici son compte rendu</a>.</p>\n<h3>Automattic recrute</h3>\n<p>Automattic <a href="http://ma.tt/2015/08/automattic-is-hiring-2/">recrute différents profils</a>. (en)</p>\n<h3>Désactiver les notifications de YOAST SEO</h3>\n<p>Les notifications intempestives de cette extension pour dérangent ? <a href="http://wpchannel.com/desactiver-notifications-yoast-seo/">voici la solution</a>.</p>\n<h3>Un nouvel événement dédié à REST API</h3>\n<p><a href="http://feelingrestful.com/">A day of Rest est le prochain événement (en) </a>dédié à cette API de WordPress.</p>\n<h3>Inclure l’extension REST API dans les thèmes du répertoire officiel ?</h3>\n<p>L’équipe en charge des thèmes du répertoire officiel ont voté l’autorisation d’<a href="http://wptavern.com/wordpress-theme-review-team-votes-to-allow-themes-to-use-the-rest-api-plugin">inclure l’extension REST API (en)</a> dans les thèmes du répertoire officiel.</p>\n<h3>Faciliter les invitations Slack</h3>\n<p>Slack est en constante augmentation de popularité. <a href="http://wptavern.com/new-wordpress-plugin-automates-slack-team-invitations">Voici une extension pour simplifier les invitations</a>. (en)</p>\n<h3>WordPress, on a un problème !</h3>\n<p>Ici ce n’est pas Houston, mais quand on a un problème avec WordPress que fait-on ? <a href="http://wpformation.com/wordpress-probleme/">Voici des conseils par WPFormation</a>.</p>\n<h3>Les nouveautés de WooCommerce 2.4</h3>\n<p><a href="http://www.absoluteweb.net/woocommerce-2-4-nouveautes/">Découvrez les nouveautés de WooCommerce 2.4 (en).</a></p>\n<h3>Interview de Sara Rosso</h3>\n<p>Sara Rosso de chez Automattic <a href="http://mymorningroutine.com/sara-rosso/">est interviewée par mymorningroutine.com</a>. Interview forcément décalée. ☕</p>\n<h3>Vous n’aimez pas les emojis ?</h3>\n<p><a href="http://www.hongkiat.com/blog/disable-wordpress-emoticons/">Désactivez-les !</a> (en)</p>\n<h3>Interview de Miriam Schwab de Illuminea.com</h3>\n<p>Retour d’expérience de <a href="http://wptavern.com/wpweekly-episode-205-interview-with-miriam-schwab">Miriam Schwab</a>. (en)</p>\n<h3>WooCommerce : Synchroniser adresses de livraison et de facturation</h3>\n<p>Absolute Web explique <a href="http://www.absoluteweb.net/woocommerce-synchroniser-pays-livraison-facturation/">comment synchroniser les adresses de facturation et de livraison </a>dans WooCommerce.</p>\n<h3>Comment optimiser WordPress ?</h3>\n<p>Korben donne des <a href="http://korben.info/comment-optimiser-un-vieux-wordpress-obese.html">conseils pour alléger et optimiser </a>un vieux WordPress obèse !</p>\n<h3>Quel futur pour WordPress ?</h3>\n<p>Quelques hypothèses pour <a href="http://torquemag.io/where-do-you-see-the-future-of-wordpress/">l’avenir de WordPress</a> (en).</p>\n<h3>Ajouter un portfolio</h3>\n<p>Comment ajouter un portflolio dans WordPress ? <a href="http://www.wpbeginner.com/plugins/how-to-add-a-portfolio-to-your-wordpress-site/">Suivez le guide</a>. (en)</p>\n<h3>Retours d’expérience</h3>\n<p><a href="http://www.wpelevation.com/2015/08/starting-a-wordpress-consulting-business/">Troy Dean raconte son expérience</a> (en) en tant que consultant WordPress depuis 8 ans. Et Becky Davis nous <a href="http://heropress.com/essays/doing-what-i-want/">raconte son parcours</a>. (en)</p>\n<h3>Interview de Nikolay Bachiyski, chez de la sécurité de WordPress.org</h3>\n<p><a href="http://wptavern.com/short-interview-with-nikolay-bachiyski-wordpress-security-czar">Nikolay est chef de la sécurité</a> de WorPress.org (en).</p>\n<h3>Comment installer une extension ?</h3>\n<p>Il est parfois intéressant de revenir aux bases, c’est pourquoi cet article devrait intéressant les <a href="http://yesweblog.fr/wordpress/comment-installer-extension-plugin-wordpress/">débutants qui souhaitent installer des extensions</a>.</p>\n<h3>Présentation de Elegant Themes</h3>\n<p>WP Marmite nous fait découvrir <a href="http://wpmarmite.com/elegant-themes/">Elegant Themes</a>.</p>\n<h3>La hiérarchie des templates</h3>\n<p>La hiérarchie des templates est très importantes dans WordPress. <a href="http://wphierarchy.com/">Voici comment s’en imprégner</a>. (en)</p>\n<h3>API personnalisé pour base de données</h3>\n<p>Voici le premier numéro d’<a href="https://pippinsplugins.com/custom-database-api-reasons-for-custom-tables-and-an-api/">un tuto sur la gestion des bases de données</a>.</p>\n<h3>Un glossaire pour débutants</h3>\n<p>WordPress vous parle en chinois, et ce malgré la langue sélectionnée avec soin ? Alors <a href="http://www.wpexplorer.com/wordpress-glossary-beginners/">ce guide peut être pour vous</a> ! (en)</p>\n<h3>Un guide pour créer son site e-commerce</h3>\n<p>Si vous voulez quelques idées pour créer votre site e-commerce avec WordPress, <a href="https://selfstartr.com/wordpress-ecommerce/">ce guide pourra vous donner des pistes</a>. (en)</p>\n<h3>25 raisons de passer à WordPress</h3>\n<p>Nelio donne <a href="http://neliosoftware.com/25-reasons-to-switch-to-wordpress/">25 raisons de migrer vers WordPress</a>. (en)</p>\n<h3>Au revoir Thèmes de France</h3>\n<p>Thèmes de France, la plateforme de thèmes WordPress lancées par Alex Bortolotti vient de <a href="https://www.themesdefrance.fr/">fermer définitivement ses portes</a>. Alex nous <a href="http://alexbortolotti.com/pourquoi-arret-themes-de-france/">explique les raisons</a>.</p>\n<h3>Ajouter un retour en haut</h3>\n<p>Thierry propose un bouton pour revenir en <a href="https://gist.github.com/thierrypigot/46a1f71af58c2c83a9a7">haut de page dans Genesis</a>.</p>\n<h3>Il était une fois Automattic…</h3>\n<p>Automattic c’est quoi ? <a href="http://www.elegantthemes.com/blog/editorial/a-history-of-automattics-acquisitions-from-gravatar-to-woothemes">voici une partie de la réponse</a>. (en)</p>\n<h3>Afficher le profil Facebook dans WordPress</h3>\n<p>Si vous souhaitez <a href="http://www.hongkiat.com/blog/facebook-author-tag-wordpress/">afficher le profil Facebook</a> de vos auteurs par exemple, voici comment faire.</p>\n<h3>Top 99 des influenceurs WordPress</h3>\n<p>Les <a href="http://99robots.com/top-99-wordpress-influencers-2015/">99 personnes</a> qui font WordPress ! (en)</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ayO_P6QzZyY:xNb17R3nBDQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ayO_P6QzZyY:xNb17R3nBDQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=ayO_P6QzZyY:xNb17R3nBDQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ayO_P6QzZyY:xNb17R3nBDQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ayO_P6QzZyY:xNb17R3nBDQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=ayO_P6QzZyY:xNb17R3nBDQ:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/ayO_P6QzZyY" height="1" width="1" alt=""/>";s: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:86:"http://www.wordpress-fr.net/2015/08/28/lhebdo-wordpress-n263-du-10e-anniversaire/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:"8";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:81:"http://www.wordpress-fr.net/2015/08/28/lhebdo-wordpress-n263-du-10e-anniversaire/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n\n\n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:6:{s:0:"";a:8:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:37:"Sortie de WordPress 4.3 « Billie »";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/KD2NWiu1sHU/";s: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:79:"http://www.wordpress-fr.net/2015/08/19/sortie-de-wordpress-4-3-billie/#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, 19 Aug 2015 06:35:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:14:"Développement";s: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:9:"WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=7463";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:391:"La version 4.3 de WordPress, baptisée « Billie » en l’honneur de la chanteuse de jazz Billie Holiday, est disponible en téléchargement ou en mise à jour via le tableau de bord de votre WordPress. Les nouvelles fonctionnalités de la version 4.3 simplifient grandement la mise en forme de votre contenu et la personnalisation de votre site. Les menus […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"enclosure";a:3:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"url";s:45:"http://s.w.org/images/core/4.3/formatting.mp4";s:6:"length";s:7:"1574782";s:4:"type";s:9:"video/mp4";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"url";s:45:"http://s.w.org/images/core/4.3/formatting.ogv";s:6:"length";s:7:"1939540";s:4:"type";s:9:"video/ogg";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"url";s:46:"http://s.w.org/images/core/4.3/formatting.webm";s:6:"length";s:6:"686435";s:4:"type";s:10:"video/webm";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Xavier";s: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:5597:"<p>La version 4.3 de WordPress, baptisée « Billie » en l’honneur de la chanteuse de jazz <a href="https://fr.wikipedia.org/wiki/Billie_Holiday">Billie Holiday</a>, est disponible en <a href="http://fr.wordpress.org/">téléchargement</a> ou en mise à jour via le tableau de bord de votre WordPress. Les nouvelles fonctionnalités de la version 4.3 simplifient grandement la mise en forme de votre contenu et la personnalisation de votre site.</p>\n<p><iframe width=\'555\' height=\'312\' src=\'https://videopress.com/embed/T54Iy7Tw?hd=1\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script></p>\n<h3>Les menus dans l’outil de personnalisation</h3>\n<p><img class="size-large wp-image-7464 alignnone" src="http://www.wordpress-fr.net/wp-content/uploads/2015/08/menu-customizer-500x281.png" alt="menu-customizer" width="500" height="281" /></p>\n<p>Créez votre menu, mettez-le à jour et placez-le, le tout en même temps que vous prévisualisez son apparence dans l’outil de personnalisation. Le design épuré de l’outil de personnalisation offre une interface accessible tant pour les appareils mobiles que pour les utilisateurs en situation de handicap. De version en version, il devient de plus en plus facile de donner à votre l’apparence que vous souhaitez.</p>\n<h3>Les raccourcis de mise en forme</h3>\n\n<p>Votre flux d’écriture va s’accélérer grâce aux nouveaux raccourcis de WordPress 4.3. Utilisez l’astérisque pour créer des listes, et le croisillon pour mettre en place un titre. Votre flux n’est plus ralenti par le mouvement de souris ; votre texte est plus clair grâce aux <code>*</code> et aux <code>#</code>.</p>\n<h3>Des icônes pour votre site</h3>\n<p><img class="size-large wp-image-7465 alignnone" src="http://www.wordpress-fr.net/wp-content/uploads/2015/08/site-icon-customizer-500x281.png" alt="site-icon-customizer" width="500" height="281" /></p>\n<p>Les icônes du site représentent votre site dans les onglets des navigateurs, dans les menus de favoris, et dans la page d’accueil des appareils mobiles. Ajoutez votre propre icône de site dans l’outil de personnalisation ; il restera même en place quand vous changerez de thème. Faites en sorte que tout votre site soit le reflet de votre marque.</p>\n<h3>De meilleurs mots de passe</h3>\n<p><img class="alignnone size-large wp-image-7466" src="http://www.wordpress-fr.net/wp-content/uploads/2015/08/better-passwords-500x281.png" alt="better-passwords" width="500" height="281" /></p>\n<p>Améliorez la sécurité de votre site grâce à la nouvelle gestion des mots de passe de WordPress. Au lieu de recevoir un mot de passe dans votre messagerie, vous recevrez un lien de réinitialisation. Et lorsque vous ajouterez de nouveaux utilisateurs à votre site, ou que vous modifierez le profil d’un utilisateur, WordPress génèrera automatiquement un mot de passe sécurisé.</p>\n<h3>D’autres améliorations</h3>\n<ul>\n<li><strong>Une utilisation de l’administration plus agréable </strong>— Des améliorations à l’affichage des listes sur l’ensemble des pages d’administration rendent WordPress plus accessible et plus facile à utiliser sur n’importe quel appareil.</li>\n<li><strong>Les commentaires sont désactivés sur les pages </strong>— Toutes les nouvelles pages que vous créerez auront les commentaires désactivés par défaut. Cela permet de limiter les conversations à votre blog, là où elle sont censées se dérouler.</li>\n<li><strong>Une personnalisation rapide de votre site </strong>— Où que vous soyez sur l’interface du site, vous pouvez cliquer sur le lien de personnalisation dans la barre d’outils pour apporter une modification rapide à votre site.</li>\n<li><strong>Feuille de route de la taxinomie </strong>— Les termes partagés par plusieurs taxinomies sont maintenant séparés en plusieurs termes distincts.</li>\n<li><strong>Hiérarchie des fichiers du thème </strong>— Le fichier <code>singular.php</code> a été ajouté en tant qu’alternative à <code>single.php</code> et <code>page.php</code>.</li>\n<li><strong><code>WP_List_Table</code></strong> — Les tableaux de listes peuvent et doivent désigner une colonne principale.</li>\n</ul>\n<p>Cette version a été menée par <a href="http://konstantin.obenland.it/">Konstantin Obenland</a>, avec l’aide 246 contributeurs, parmi lesquels on retrouve quelques français : Clement Biron, Julio Potier, Fabien Quatravaux et Mathieu Viet.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=KD2NWiu1sHU:oBCnwZX5Yj8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=KD2NWiu1sHU:oBCnwZX5Yj8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=KD2NWiu1sHU:oBCnwZX5Yj8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=KD2NWiu1sHU:oBCnwZX5Yj8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=KD2NWiu1sHU:oBCnwZX5Yj8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=KD2NWiu1sHU:oBCnwZX5Yj8:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/KD2NWiu1sHU" height="1" width="1" alt=""/>";s: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:75:"http://www.wordpress-fr.net/2015/08/19/sortie-de-wordpress-4-3-billie/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"11";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:70:"http://www.wordpress-fr.net/2015/08/19/sortie-de-wordpress-4-3-billie/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:51:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:81:"L’Hebdo WordPress n°262 : Communautés – Retours d’expérience – Astuces";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/NRscrl4Ddlw/";s: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:110:"http://www.wordpress-fr.net/2015/07/24/lhebdo-wordpress-n262-communautes-retours-dexperience-astuces/#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 Jul 2015 17:56: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:8:"category";a:4:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:7:"Brèves";s: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:12:"communautés";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:5:"Hebdo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://www.wordpress-fr.net/?p=7456";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:368:"WordPress 4.2.3 : mise à jour de sécurité Une 3e mise à jour mineure vient corriger une faille de sécurité détectée plus tôt. La communauté française grandie Jenny Beaumont a fait un résumé de l’histoire (en) de la communauté française de WordPress… et Émilie vous dit pourquoi en faire partie. 14e Podcast VFT : l’animation […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:8365:"<h3>WordPress 4.2.3 : mise à jour de sécurité</h3>\n<p>Une <a href="http://wptavern.com/wordpress-4-2-3-is-a-critical-security-release-fixes-an-xss-vulnerability">3e mise à jour mineure </a>vient <a href="https://wordpress.org/news/2015/07/wordpress-4-2-3/">corriger </a>une faille de sécurité détectée plus tôt.</p>\n<h3>La communauté française grandie</h3>\n<p>Jenny Beaumont a fait <a href="https://poststatus.com/growth-in-the-french-community/">un résumé de l’histoire (en)</a> de la communauté française de WordPress… et <a href="http://www.wp-pro.fr/pourquoi-rejoindre-la-communaute-wordpress/">Émilie vous dit pourquoi en faire partie</a>.</p>\n<h3>14e Podcast VFT : l’animation d’une communauté locale</h3>\n<p>Entourés de Valérie et Nicolas, l’équipe de VFT <a href="http://veryfrenchtrip.com/podcast/podcast-14-animation-locale-wordpress/">nous donne des pistes pour animer une communauté locale</a>.</p>\n<h3>Le WP Tech 2015 a une salle !</h3>\n<p>Le lieu du prochain WP Tech <a href="http://2015.wptech.fr/lieu/">est connu</a>, ce sera la faculté de Pharmacie en plein centre de Nantes.</p>\n<h3>Des retours du WPMX Day, des vrais (cette fois !)</h3>\n<p>J’avais fait une erreur dans mon dernier hebdo et confondu des liens… et je n’a pas fait la mise à jour… dont acte !</p>\n<ul>\n<li><a href="http://www.myleneb.fr/wpmx-day-2015-mes-impressions/">Mylène Boyrie</a></li>\n<li><a href="http://www.ohmyweb.fr/retour-sur-le-wpmx-day-du-6-juin-2/">Oh My Web</a></li>\n<li><a href="http://www.goodness.fr/2015/06/13/referencement-wordpress-wpmx-2015/">Goodness</a></li>\n<li><a href="http://www.inpixelitrust.fr/blog/faites-rentrer-votre-elephant-dans-une-smart-bonnes-pratiques-sur-mobiles-ma-conference-au-wpmx-day-2015/">Stéphanie Walter</a></li>\n</ul>\n<h3>Quelques nouvelles des WordCamps dans le monde</h3>\n<p>Les WordCamps français n’étant pas les seuls au monde, <a href="https://wordpress.org/news/2015/07/wordcamps-update/">voici du nouveau sur le reste du Monde</a> ! (en) … avec un clin d’œil à Fabrice Ducarme, bien connu de notre communauté… et le premier <a href="http://ma.tt/2015/07/wcus-philadelphia/">WordCamp US</a> aura lieu à Philadelphie…</p>\n<h3>WordPress 4.3 : revue de travaux</h3>\n<ul>\n<li><a href="http://wptavern.com/wordpress-4-3-adds-new-site-icons-feature-and-a-text-editor-to-press-this">Favicon et Press This</a> (en)</li>\n<li><a href="http://wptavern.com/wordpress-4-3-improves-user-search-and-turns-comments-off-on-pages-by-default">Fermeture de commentaire et recherche améliorée</a> (en)</li>\n</ul>\n<h3>Jetpack 3.6 débarque</h3>\n<p>Cette <a href="http://wptavern.com/jetpack-3-6-adds-the-ability-to-manage-your-connections-to-jetpack">nouvelle version</a> peut désormais gérer vos connexions aux réseaux sociaux. (en)</p>\n<h3>Focus sur le répertoire de thème officiel</h3>\n<p>L’équipe en charge du répertoire officiel de thème de WordPress se concentre sur l’amélioration du répertoire officiel de thèmes. <a href="http://wptavern.com/wordpress-theme-review-team-unanimously-approves-roadmap-to-improve-directory-and-review-process">Une réorganisation de l’équipe est en cours</a>. (en)</p>\n<h3>Le fichier htaccess avec WordPress</h3>\n<p>MaintPress explique le <a href="http://www.maintpress.com/blog/htaccess-wordpress/">fonctionnement et l’optimisation du fichier .htaccess</a> avec WordPress.</p>\n<h3>Rappel sur l’utilisation d’un domaine avec « wordpress »</h3>\n<p><a href="http://chrislema.com/this-is-why-you-dont-put-wordpress-in-a-domain-name/">Chris Lema rappelle quelques éléments</a> concernant l’utilisation du terme WordPress… et un <a href="http://thewordpresshelpers.com/wordpress-trademark-lawsuit">exemple d’un cas concret</a> (en).</p>\n<h3>Retour sur le WordCamp Europe 2015</h3>\n<p><a href="http://www.kirstencassidy.com/wordcamp-europe-2015-in-review-day-one/">Kirsten Cassidy</a> (en)</p>\n<h3>Des shortcodes générés par ACF</h3>\n<p>Si vous avez des shortcodes à gérer dans votre site web, ou si vous souhaitez vos y mettre, l’<a href="http://www.absoluteweb.net/generateur-shortcodes-acf/">extension ACF pourrait vous faciliter les choses</a>.</p>\n<h3>We are WP</h3>\n<p><a href="http://www.wearewp.pro/">We are WP</a>, c’est la nouvelle agence de conseils et d’expertise WordPress créée par Emilie Lebrun et Thierry Pigot, membres éminents de la communauté française.</p>\n<h3>Les parts de marché de WordPress dans le monde</h3>\n<p>Daniel présente les parts de marché mondiale de WordPress. <a href="http://www.seomix.fr/parts-de-marche-wordpress/">Un article très intéressant et instructif</a>.</p>\n<h3>Du nouveau avec REST API</h3>\n<p>Une <a href="http://wptavern.com/explore-the-wordpress-rest-api-with-the-new-interactive-console-plugin">console REST API </a>est maintenant disponible. (en)</p>\n<h3>WP Rocket, 2 ans après</h3>\n<p>Voici déjà 2 ans que la fusée WP Rocket a décollé. <a href="http://blog.wp-rocket.me/fr/2-ans-bilan-retour-experience/">A l’heure du bilan</a>, autant dire que l’optimisme est de rigueur. Une <a href="http://wptavern.com/wp-rocket-reports-355k-in-annual-revenue-after-2-years-in-business">belle aventure de startup à la française (en)</a>. (<a href="http://blog.wp-rocket.me/2-years-reports-feedbacks/">English version here</a>)</p>\n<h3>Puisqu’on vous dit d’utiliser un thème enfant !</h3>\n<p>On ne le répétera jamais assez… <a href="http://webdesignerhut.com/wordpress-child-themes/">utilisez un thème enfant</a> ! (en)</p>\n<h3>Gestion complète des menus</h3>\n<p>Grégoire propose un <a href="http://www.gregoirenoyelle.com/gestion-des-menus-depuis-wordpress-3/">tutoriel pour tout savoir des menus</a> dans WordPress.</p>\n<h3>L’extension pour les surveiller toutes</h3>\n<p>L’extension qui surveille les autres pour vous indiquer les failles de sécurité existe, il s’agit de<a href="http://wpformation.com/plugin-failles-securite/"> Plugin Security Scanner</a>.</p>\n<h3>Automattic, Matt Mullenweg et Thesis… histoire d’un conflit</h3>\n<p>La <a href="https://poststatus.com/thesis-automattic-and-wordpress/">longue histoire du conflit</a> qui oppose le thème Thesis à Automattic et Matt Mullenweg depuis 2010. (en)</p>\n<h3>Comment styliser les formulaires de Gravity Forms</h3>\n<p>La Marmite propose dans son menu de <a href="http://wpmarmite.com/gravity-forms-css/">styliser vos formulaires de Gravity Forms</a>.</p>\n<h3>Polylang et WooCommerce</h3>\n<p>Retour d’expérience de l’utilisation de <a href="http://www.absoluteweb.net/polylang-grosse-deception/">Polylang avec WooCommerce</a>.</p>\n<h3>Mise à jour du livre « optimiser son référencement WordPress »</h3>\n<p>Daniel Roch <a href="http://www.wp-referencement.fr/">indique la mise à jour du livre</a> qu’il a écrit concernant le référencement avec WordPress.</p>\n<h3>Chrome 44 et WordPress</h3>\n<p>Cette semaine, la <a href="http://www.imadarchid.com/un-bug-sur-chrome-44-beta-detruit-wordpress-et-dautres-logiciels/">mise à jour 44 de Chrome</a> a entrainé un <a href="https://github.com/IshYoBoy/aaa-ishyoboy-google-chrome-44-ssl-fix">problème avec WordPress</a>.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=NRscrl4Ddlw:tH6Ix9sW9-g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=NRscrl4Ddlw:tH6Ix9sW9-g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=NRscrl4Ddlw:tH6Ix9sW9-g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=NRscrl4Ddlw:tH6Ix9sW9-g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=NRscrl4Ddlw:tH6Ix9sW9-g:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=NRscrl4Ddlw:tH6Ix9sW9-g:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/NRscrl4Ddlw" height="1" width="1" alt=""/>";s: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:106:"http://www.wordpress-fr.net/2015/07/24/lhebdo-wordpress-n262-communautes-retours-dexperience-astuces/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:"6";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:101:"http://www.wordpress-fr.net/2015/07/24/lhebdo-wordpress-n262-communautes-retours-dexperience-astuces/";s: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:66:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"L’Hebdo WordPress n°261 : WordCamp et WPMX Day – e-barcamp – Communautés";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/ZSQgxX9WNpE/";s: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:113:"http://www.wordpress-fr.net/2015/06/23/lhebdo-wordpress-n261-wordcamp-et-wpmx-day-e-barcamp-communautes/#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:"Tue, 23 Jun 2015 05:26:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:9:{i:0;a:5:{s:4:"data";s:16:"Association WPFR";s: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:7:"Brèves";s: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:14:"Développement";s: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:5:{s:4:"data";s:11:"Evènements";s: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:5:{s:4:"data";s:10:"Podcasting";s: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: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:"";}i:6;a:5:{s:4:"data";s:21:"WordPress Francophone";s: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:5:{s:4:"data";s:12:"communautés";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:8;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:35:"http://www.wordpress-fr.net/?p=7448";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:336:"WordCamp Lyon 2015 J’ai eu la chance de participer au 1er WordCamp Lyon. Il s’est déroulé le 5 juin dernier sous le soleil du Rhône. Autant le dire tout de suite, c’était un grand événement ! UN belle réussite. Bravo aux organisateurs ! Voici quelques liens qui en parlent en des termes au moins aussi […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:6530:"<h3>WordCamp Lyon 2015</h3>\n<p>J’ai eu la chance de participer au 1er WordCamp Lyon. Il s’est déroulé le 5 juin dernier sous le soleil du Rhône. Autant le dire tout de suite, c’était un grand événement ! UN belle réussite. Bravo aux organisateurs !</p>\n<p>Voici quelques liens qui en parlent en des termes au moins aussi élogieux que moi si ce n’est plus :</p>\n<ul>\n<li><a href="http://eclozion360.com/wordcamp-lyon-2015/">Des photos</a></li>\n<li><a href="http://www.wp-spread.com/comment-travailler-en-equipe-autour-dun-projet-wordpress-wordcamp-lyon-2015/">Le retour de Maxime BJ</a></li>\n<li><a href="https://www.flickr.com/search/?text=WPLyon">D’autres photos</a></li>\n<li><a href="http://wordpress.tv/event/wordcamp-lyon-2015/">Déjà les conférences et ateliers sur WordPress.tv</a></li>\n<li><a href="http://wpmarmite.com/wordcamp-lyon-2015/">Une marmite qui déborde de retours</a></li>\n<li><a href="http://www.jennybeaumont.com/results-2015-wordpress-maintenance-survey/">Le sondage pre-WordCamp Lyon de Jenny</a></li>\n<li><a href="https://lyon.wordcamp.org/2015/les-photos/">Le site officiel dit merci !</a></li>\n<li><a href="https://twitter.com/search?q=%23wplyon&mode=news&src=tyah">#wplyon</a></li>\n</ul>\n<h3>WPMX Day 2015</h3>\n<p>Le lendemain du WordCamp Lyon se déroulait à quelques centaines de km de Lyon, plus près de la côte Atlantique, le <a href="http://wpmx.org/retour-wpmx-day-2015/">WPMX Day</a>.</p>\n<ul>\n<li><a href="http://www.lameleeadour.com/wpmx-day-6-juin-2015-a-biarritz-2/">Un retour de cette journée.</a></li>\n</ul>\n<h3>Le premier e-barcamp de France</h3>\n<p>L’équipe de VFT a mis en place fin mai un e-barcamp. L’objectif était d’appliquer le mode barcamp à un podcast. <a href="http://veryfrenchtrip.com/podcast/podcast-13-e-barcamp-1/">Le résultat est en ligne ici</a>. En attendant la prochaine édition, VFT revient bientôt pour son traditionnel podcast <a href="http://veryfrenchtrip.com/annonce-podcast-14-organiser-des-meetups-wordpress/">consacré cette fois aux meetups</a>. Restez connectés.</p>\n<h3>La communauté WPFR sur Slack</h3>\n<p>La communauté WordPress Francophone est sur Slack depuis un mois environ et ne cesse de grandir. <a href="http://boiteaweb.fr/wordpressfr-on-slack-8588.html">Si ce n’est pas encore faire venez nous rejoindre</a>.</p>\n<h3>Des meetups partout… encore et toujours !</h3>\n<p>La communauté est vivante et de plus en plus riche et active. Un nouveau groupe s’est <a href="http://www.meetup.com/fr/WordPress-Lorraine/">créé en Lorraine</a>.</p>\n<p>Et le prochain et dernier meetup niçois avant les vacances, <a href="http://www.meetup.com/wordpress-in-nice/events/223309511/?a=ra1_te">c’est le 30 juin</a> !</p>\n<h3>Glossaire des traductions françaises</h3>\n<p>FX, bien connu des traducteurs en français, a réalisé <a href="https://fxbenard.com/glossaire-des-traductions-francaises-de-wordpress/">un glossaire des traductions en français</a>. Un « <em>must have</em>« .</p>\n<h3>La mode est au Wapuu</h3>\n<p><a href="http://wptavern.com/introducing-the-wp-tavern-wapuu#comment-69209">WP Tavern a son wapuu</a>… et maintenant la <a href="http://boiteaweb.fr/welcome-to-marcel-le-wapuu-de-la-communaute-francaise-8598.html">France à le sien aussi</a> ! … Le<a href="http://wapuu.jp/about/"> Wapuu c’est ça au fait</a> !</p>\n<h3>Un sondage sur WordPress</h3>\n<p>Jenny Wong souhaite recueillir vos avis sur WordPress, <a href="https://docs.google.com/forms/d/1dkF1nbVCTawp7vq8pZd2SB8FIV2iwny01EtfbadnfoA/viewform?c=0&w=1">aidez-la (en)</a>.</p>\n<h3>Arrêter de s’arracher les cheveux en cherchant un thème</h3>\n<p>Un article qui vous donne<a href="http://www.webmarketing-com.com/2015/03/25/36361-comment-arreter-de-sarracher-les-cheveux-en-recherchant-un-theme-wordpress"> des pistes pour vos recherches de thèmes</a> !</p>\n<h3>Un guide pour les Custom Page Template</h3>\n<p>Apprenez à<a href="http://www.smashingmagazine.com/2015/06/19/wordpress-custom-page-templates/"> personnaliser vos pages dans WordPress</a> (en).</p>\n<h3>Theme Juice : Une configuration Vagrant pour les développeurs</h3>\n<p>Vous êtes développeurs et souhaitez une nouvelle plateforme de développement, <a href="http://wptavern.com/theme-juice-a-new-vagrant-configuration-for-wordpress-development">c’est ici que ça passe</a> (en).</p>\n<h3>Pas (que) du WordPress mais du PHP</h3>\n<p>PHP et WordPress sont étroitement liés, c’est pourquoi cet article peut vous intéresser : <a href="https://kinsta.com/blog/hhvm-vs-php-7/">HHVM vs PHP7 (en)</a>.</p>\n<h3>————————————-</h3>\n<h3>Appel à la communauté francophone</h3>\n<p>Vous avez déjà participé au développement du core de WordPress (vous savez, vous avez eu votre heure de gloire avec votre nom dans les crédits de WordPress ! :p ) ? Signalez-vous ici (ou sur le Slack), un recensement est en cours par Jenny Beaumont <img src="http://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>\n<h3>Association WPFR nouvelle génération</h3>\n<p>J’ai ouïe dire que <span style="text-decoration: underline;"><strong>les nouveaux statuts sont déposés en préfecture</strong></span> et validés ! <em>WPFR next gen, </em>c’est parti ! On vous en dit plus très très très très bientôt ! #wpfrstatuts</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ZSQgxX9WNpE:Tg583M62sFc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ZSQgxX9WNpE:Tg583M62sFc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=ZSQgxX9WNpE:Tg583M62sFc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ZSQgxX9WNpE:Tg583M62sFc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ZSQgxX9WNpE:Tg583M62sFc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=ZSQgxX9WNpE:Tg583M62sFc:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/ZSQgxX9WNpE" height="1" width="1" alt=""/>";s: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:109:"http://www.wordpress-fr.net/2015/06/23/lhebdo-wordpress-n261-wordcamp-et-wpmx-day-e-barcamp-communautes/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:"5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:104:"http://www.wordpress-fr.net/2015/06/23/lhebdo-wordpress-n261-wordcamp-et-wpmx-day-e-barcamp-communautes/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:61:"L’Hebdo WordPress n°260 : WooThemes – Slack – Insights";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/XyIbHAGFLdw/";s: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:95:"http://www.wordpress-fr.net/2015/06/03/lhebdo-wordpress-n260-woothemes-slack-insights/#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, 03 Jun 2015 05:27: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:8:"category";a:3:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:10:"automattic";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:9:"WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=7445";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:359:"Automattic acquiert WooThemes L’info de cette dernière quinzaine est sans aucun doute le rachat (en) de WooThemes (en) par Automattic (en). Le plus gros marchand de thèmes et le créateur du plus célèbre outil de e-commerce pour WordPress rejoint donc le giron de l’outil le plus puissant du web. 12e anniversaire de WordPress Que le […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:3694:"<h3>Automattic acquiert WooThemes</h3>\n<p>L’info de cette dernière quinzaine est sans aucun doute le <a href="https://poststatus.com/automattic-acquired-woocommerce-woothemes/">rachat (en) </a>de <a href="http://www.woothemes.com/2015/05/woothemes-joins-automattic/">WooThemes (en) </a>par <a href="http://ma.tt/2015/05/woomattic/">Automattic (en)</a>. Le plus gros marchand de thèmes et le créateur du plus célèbre outil de e-commerce pour WordPress <a href="http://wpchannel.com/woothemes-automattic-acquisition-e-commerce/">rejoint donc le giron</a> de l’outil le plus puissant du web.</p>\n<h3>12e anniversaire de WordPress</h3>\n<p>Que le temps passe vite ! <a href="https://matt.wordpress.com/2015/05/27/wordpress-12th-birthday-cake/">Déjà 12 ans </a>depuis le début du projet. (en) !</p>\n<h3>WordPress.com lance Insights</h3>\n<p>Il s’agit d’un <a href="http://wptavern.com/wordpress-com-launches-insights-better-stats-for-visualizing-publishing-trends">meilleur outil de statistiques</a> qui apporte un certain nombres de changement à l’interface actuelle.</p>\n<h3>Une communauté WordPress en français sur Slack</h3>\n<p>Un nouveau groupe a été créé sur la <a href="http://www.wp-spread.com/invitez-vous-sur-le-chat-wordpress-francophone-sur-slack/">plateforme Slack</a>. Rejoignez le groupe dès que vous pouvez !</p>\n<h3>Des tutos et ressources pour apprendre</h3>\n<p><a href="https://matt.wordpress.com/2015/05/27/wordpress-12th-birthday-cake/">Quelques tutoriels et ressources</a> diverses pour apprendre WordPress</p>\n<h3>Renommer automatiquement les fichiers accentués sous WordPress</h3>\n<p>Si vous avez des fichiers nommés <a href="http://wpchannel.com/renommer-automatiquement-fichiers-accentues-wordpress/">avec des accents et que vous en avez assez de les renommer sans cesse</a>, cette extension est pour vous.</p>\n<h3>La hiérarchie des templates</h3>\n<p>Avec WordPress il est souvent utile de connaitre<a href="http://4design.xyz/wordpress-visualisez-la-hierarchie-des-templates"> la hiérarchie des templates</a> pour travailler dans un thème notamment.</p>\n<h3>11 exemples de sites WordPress</h3>\n<p><a href="http://www.maintpress.com/blog/exemple-site-wordpress-bien-reussi/">Voici 11 sites WordPress</a> qui semblent intéressants selon MaintPress.</p>\n<h3>Connecter WordPress à OneNote de Microsoft</h3>\n<p>Voici la solution pour connecter <a href="http://blogs.office.com/2015/05/22/onenote-welcomes-three-new-partners-cloudhq-equil-and-wordpress/">un site WordPress avec un compte Microsoft OneNote (en)</a>.</p>\n<p><em>NB : A celles et ceux qui vont au WordCamp Lyon, je leur dit : « A vendredi ! »</em></p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=XyIbHAGFLdw:abkmUGnIo1g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=XyIbHAGFLdw:abkmUGnIo1g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=XyIbHAGFLdw:abkmUGnIo1g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=XyIbHAGFLdw:abkmUGnIo1g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=XyIbHAGFLdw:abkmUGnIo1g:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=XyIbHAGFLdw:abkmUGnIo1g:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/XyIbHAGFLdw" height="1" width="1" alt=""/>";s: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:91:"http://www.wordpress-fr.net/2015/06/03/lhebdo-wordpress-n260-woothemes-slack-insights/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:"6";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:86:"http://www.wordpress-fr.net/2015/06/03/lhebdo-wordpress-n260-woothemes-slack-insights/";s: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:54:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:88:"L’Hebdo WordPress n°259 : Des événements WordPress – WordPress 4.3 – BuddyPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/LYVelJJ-s4U/";s: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:120:"http://www.wordpress-fr.net/2015/05/19/lhebdo-wordpress-n259-des-evenements-wordpress-wordpress-4-3-buddypress/#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:"Tue, 19 May 2015 05:13:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:5:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:14:"Développement";s: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:11:"Evènements";s: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:5:{s:4:"data";s:10:"Extensions";s: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:5:{s:4:"data";s:13:"WordPress 4.3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=7441";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:323:"Juin démarre sous le signe de WordPress Le début du mois de juin s’annonce riche en événements WordPress : 3 juin : WordPress in Alps 5 juin : WordCamp Lyon –> Il reste des billets, attrapez-les tous ! (Au moment où j’écris ces lignes, il reste 2 places !!) 6 juin : WPMX Day WordPress […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:4370:"<h3>Juin démarre sous le signe de WordPress</h3>\n<p>Le début du mois de juin s’annonce riche en événements WordPress :</p>\n<ul>\n<li>3 juin : <a href="http://www.wp-spread.com/wordpress-in-alps-le-3-juin-ateliers-decouverte-wordpress/">WordPress in Alps</a></li>\n<li>5 juin : WordCamp Lyon –> Il reste des billets, <a href="https://lyon.wordcamp.org/2015/billetterie/">attrapez-les tous</a> ! (Au moment où j’écris ces lignes, il reste 2 places !!)</li>\n<li>6 juin : <a href="http://2015.wpmx.org/conferences/">WPMX Day</a></li>\n</ul>\n<h3>WordPress 4.3 poursuit son développement</h3>\n<p>L’<a href="https://make.wordpress.org/core/2015/05/11/weekly-core-ui-meetings-for-4-3/">interface utilisateur poursuit sa mue</a>… et le <a href="https://make.wordpress.org/core/2015/05/12/multisite-office-hours-recap-may-12-2015/">côté multi-utilisateurs</a> évolue encore. (en)</p>\n<h3>BuddyPress 2.3.0 beta 2</h3>\n<p><a href="https://buddypress.org/2015/05/buddypress-2-3-0-beta-2/">BuddyPress passe en 2e beta (en) </a>pour la version 2.3.0… et <a href="http://wptavern.com/buddypress-2-3-will-introduce-companion-stylesheets-for-wordpress-default-themes">quelques nouveautés sont attendues</a> (en).</p>\n<h3>WordPress c’est de la merde !</h3>\n<p><a href="http://www.seomix.fr/shitty-wordpress/">Un titre accrocheur pour une argumentation </a>haute en couleur !</p>\n<h3>Ajouter un menu de recherche par date ou taxonomie</h3>\n<p>Grégoire présente un tutoriel précis sur la démarche à suivre pour <a href="http://www.gregoirenoyelle.com/wordpress-ajouter-menus-recherche-date-taxonomie/">ajouter un menu de recherche par date ou taxonomie</a>.</p>\n<h3>Les vidéos de LoopConf</h3>\n<p>La chaine YouTube de LoopCon où l’on peut<a href="https://www.youtube.com/channel/UCAwOVsWiMdlz6snWRF2HdSQ"> retrouver toute leur vidéo relatives à WordPress</a>. (en)</p>\n<h3>Les chiffres de la Rocket en avril</h3>\n<p><a href="http://blog.wp-rocket.me/inside-wp-rocket-april-2015/">WP Rocket présente régulièrement ses statistiques</a>… voici pour le mois d’avril 2015. (en)</p>\n<h3>WordPress et Microsoft Azure</h3>\n<p>Microsoft Azure et WordPress, ça marche ! <a href="http://www.script-tutorials.com/scalable-wordpress-on-microsoft-azure/">La preuve ici.</a> (en)</p>\n<h3>Pourquoi paye-t-on pour WordPress 2e partie</h3>\n<p><a href="http://www.wp-pro.fr/pourquoi-paye-t-on-pour-wordpress-une-solution-gratuite-2eme-partie/">WP-Pro propose la 2e partie </a>de son analyse sur le fait que l’on peut payer « du WordPress » alors que l’application est gratuite.</p>\n<h3>7 extensions de supports clients</h3>\n<p>Si vous recherchiez de quoi gérer un support client, voici <a href="http://www.wpbeginner.com/plugins/6-best-help-desk-customer-support-plugins-for-wordpress/">7 extensions WordPress qui devrait vous plaire. (en)</a></p>\n<h3>Sécuriser WordPress</h3>\n<p>MaintPress nous donne des pistes sur la façon de <a href="http://www.maintpress.com/blog/securiser-wordpress-comment-renforcer-securite-site-wordpress/">mieux sécuriser WordPress</a>.</p>\n<h3>L’évolution de WordPress</h3>\n<p>WordPress évolue inlassablement depuis 10 ans, <a href="http://neliosoftware.com/some-stats-on-the-evolution-of-the-wordpress-codebase/">petite analyse de cette évolution (en)</a>.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=LYVelJJ-s4U:XQf-hBBVWTY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=LYVelJJ-s4U:XQf-hBBVWTY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=LYVelJJ-s4U:XQf-hBBVWTY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=LYVelJJ-s4U:XQf-hBBVWTY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=LYVelJJ-s4U:XQf-hBBVWTY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=LYVelJJ-s4U:XQf-hBBVWTY:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/LYVelJJ-s4U" height="1" width="1" alt=""/>";s: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:116:"http://www.wordpress-fr.net/2015/05/19/lhebdo-wordpress-n259-des-evenements-wordpress-wordpress-4-3-buddypress/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:"5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:111:"http://www.wordpress-fr.net/2015/05/19/lhebdo-wordpress-n259-des-evenements-wordpress-wordpress-4-3-buddypress/";s: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:54:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:77:"L’Hebdo WordPress n°258 : WordPress 4.3 – WordCamps & Evénements 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:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/kwe0XgYW1P0/";s: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:108:"http://www.wordpress-fr.net/2015/05/05/lhebdo-wordpress-n258-wordpress-4-3-wordcamps-evenements-wp/#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:"Tue, 05 May 2015 05:25: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:5:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:14:"Développement";s: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:11:"Evènements";s: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:5:{s:4:"data";s:10:"Podcasting";s: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: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:35:"http://www.wordpress-fr.net/?p=7437";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:395:"WordPress 4.3 est lancé Comme toujours, quelques jours après le déploiement d’une version majeur la suivante est aussitôt mise sur les rails. WordPress 4.3 est donc prévue pour le 18 août prochain et c’est Konstantin Obenland qui en prend les rênes. (en) Les premières pistes de réflexions sont ouvertes, notamment concernant l’éditeur. (en) WordPress 4.2.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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:3621:"<h3>WordPress 4.3 est lancé</h3>\n<p>Comme toujours, quelques jours après le déploiement d’une version majeur la suivante est aussitôt mise sur les rails. WordPress 4.3 est donc <a href="http://wp.me/p2AvED-3mD">prévue pour le 18 août prochain</a> et c’est Konstantin Obenland qui en prend les rênes. (en)</p>\n<p>Les premières pistes de réflexions sont ouvertes, <a href="https://make.wordpress.org/core/2015/05/01/editor-wish-list-for-4-3/">notamment concernant l’éditeur</a>. (en)</p>\n<h3>WordPress 4.2.1 : Première mise à jour mineure</h3>\n<p>Une faille de sécurité a été décelée rapidement après la sortie de WordPress 4.2, <a href="http://t.co/O3MDAj635H">le patch correctif </a>ne s’est donc pas fait attendre (en).</p>\n<h3>WordCamp Lyon : programme et surprises</h3>\n<p>Le WordCamp Lyon avance et se précise. <a href="https://lyon.wordcamp.org/2015/programme/">Le programme est connu</a> et on sait depuis peu qu’un <a href="https://lyon.wordcamp.org/2015/nightswapping-vous-offre-2-nuits-a-lyon-pour-le-wordcamp/">nouveau partenaire propose une surprise</a>.</p>\n<h3>WordCamp Europe : les orateurs se dévoilent</h3>\n<p>1ère surprise de taille, <a href="http://europe.wordcamp.org/2015/welcome-the-third-group-of-wceu-speakers/">Xavier (notre Xavier) fait partie des orateurs </a>du prochains WordCamp Europe.</p>\n<h3>WPMX Day</h3>\n<p>Rappelons également que le lendemain du WordCamp Lyon se tiendra le <a href="http://2015.wpmx.org/">WPMX Day</a>, événement majeur dans le Sud-Ouest de la France.</p>\n<h3>Le 11e Podcast de Very French Trip</h3>\n<p><a href="http://veryfrenchtrip.com/podcast/podcast-12-traduction-wordpress/">Pour cette 11e édition</a>, la traduction est à l’honneur avec des invités de marque que sont Xavier, Didier, François-Xavier, Mathieu et Grégoire.</p>\n<h3>Les principes de hiérarchie dans le design visuel</h3>\n<p>Un article qui parle de <a href="https://dailypost.wordpress.com/2015/04/29/the-principles-of-design-visual-hierarchy/">design des sites web</a> raconté par un Automatticien. (en)</p>\n<h3>WPRocket élue meilleure extension de cache</h3>\n<p>WPSiteCare a élu <a href="http://www.wpsitecare.com/best-wordpress-plugins/">WPRocket meilleure extension de cache de tous les temps</a> (en)… et retrouvez également le classement des autres meilleures extensions de tous les temps dans ce classement.</p>\n<h3>Les événements WordPress sur une carte</h3>\n<p>ManageWP.org a mis en ligne une <a href="https://managewp.org/events/">carte interactive avec les différents événements WordPress </a>de la Planète. (en)</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=kwe0XgYW1P0:5XuUlueSTRA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=kwe0XgYW1P0:5XuUlueSTRA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=kwe0XgYW1P0:5XuUlueSTRA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=kwe0XgYW1P0:5XuUlueSTRA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=kwe0XgYW1P0:5XuUlueSTRA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=kwe0XgYW1P0:5XuUlueSTRA:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/kwe0XgYW1P0" height="1" width="1" alt=""/>";s: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:104:"http://www.wordpress-fr.net/2015/05/05/lhebdo-wordpress-n258-wordpress-4-3-wordcamps-evenements-wp/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:"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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:99:"http://www.wordpress-fr.net/2015/05/05/lhebdo-wordpress-n258-wordpress-4-3-wordcamps-evenements-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: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:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:2:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";s:4:"href";s:48:"http://feeds.feedburner.com/WordpressFrancophone";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:3:"hub";s:4:"href";s:32:"http://pubsubhubbub.appspot.com/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:4:{s:4:"info";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:1:{s:3:"uri";s:20:"wordpressfrancophone";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:14:"emailServiceId";a:1:{i:0;a:5:{s:4:"data";s:20:"WordpressFrancophone";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:18:"feedburnerHostname";a:1:{i:0;a:5:{s:4:"data";s:29:"https://feedburner.google.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:9:"feedFlare";a:9:{i:0;a:5:{s:4:"data";s:24:"Subscribe with NewsGator";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:112:"http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:42:"http://www.newsgator.com/images/ngsub1.gif";}}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:24:"Subscribe with Bloglines";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:77:"http://www.bloglines.com/sub/http://feeds.feedburner.com/WordpressFrancophone";s:3:"src";s:48:"http://www.bloglines.com/images/sub_modern11.gif";}}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:23:"Subscribe with Netvibes";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:98:"http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:39:"//www.netvibes.com/img/add2netvibes.gif";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:21:"Subscribe with Google";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:93:"http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:51:"http://buttons.googlesyndication.com/fusion/add.gif";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:25:"Subscribe with Pageflakes";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:101:"http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:87:"http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&fileName=ATP_blu_91x17.gif";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:21:"Subscribe with Plusmo";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:86:"http://www.plusmo.com/add?url=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:43:"http://plusmo.com/res/graphics/fbplusmo.gif";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:6;a:5:{s:4:"data";s:23:"Subscribe with Live.com";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:81:"http://www.live.com/?add=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:141:"http://tkfiles.storage.msn.com/x1piYkpqHC_35nIp1gLE68-wvzLZO8iXl_JMledmJQXP-XTBOLfmQv4zhj4MhcWEJh_GtoBIiAl1Mjh-ndp9k47If7hTaFno0mxW9_i3p_5qQw";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:7;a:5:{s:4:"data";s:25:"Subscribe with Mon Yahoo!";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:99:"https://add.my.yahoo.com/content?lg=fr&url=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:60:"http://us.i1.yimg.com/us.yimg.com/i/us/my/bn/intatm_fr_1.gif";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:8;a:5:{s:4:"data";s:25:"Subscribe with Excite MIX";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:89:"http://mix.excite.eu/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:42:"http://image.excite.co.uk/mix/addtomix.gif";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:52:"http://backend.userland.com/creativeCommonsRssModule";a:1:{s:7:"license";a:1:{i:0;a:5:{s:4:"data";s:49:"http://creativecommons.org/licenses/by-nc-sa/3.0/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:4:"etag";s:27:"ttoxsqES3PNUYpxzINyxjER7faM";s:13:"last-modified";s:29:"Sun, 27 Mar 2016 11:42:40 GMT";s:16:"content-encoding";s:4:"gzip";s:4:"date";s:29:"Sun, 27 Mar 2016 12:06:12 GMT";s:7:"expires";s:29:"Sun, 27 Mar 2016 12:06:12 GMT";s:13:"cache-control";s:18:"private, max-age=0";s:22:"x-content-type-options";s:7:"nosniff";s:16:"x-xss-protection";s:13:"1; mode=block";s:6:"server";s:3:"GSE";}s:5:"build";s:14:"20130911040210";}', 'no');
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(6751, '_transient_timeout_feed_mod_66a70e9599b658d5cc038e8074597e7c', '1459123585', 'no'),
(6752, '_transient_feed_mod_66a70e9599b658d5cc038e8074597e7c', '1459080385', 'no'),
(6753, '_transient_timeout_feed_925a96b1918580ab3893979ca7a4a994', '1459123586', 'no');
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(6754, '_transient_feed_925a96b1918580ab3893979ca7a4a994', 'a:4:{s:5:"child";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:3:"RDF";a:1:{i:0;a:6:{s:4:"data";s:281:"\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:24:"http://purl.org/rss/1.0/";a:2:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:91:"\n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:35:"http://www.wordpress-fr.net/planet/";}}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:24:"http://purl.org/rss/1.0/";a:4:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"WordPress Francophone : 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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/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:5:"items";a:1:{i:0;a:6:{s:4:"data";s:18:"\n \n ";s:7:"attribs";a: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:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:3:"Seq";a:1:{i:0;a:6:{s:4:"data";s:749:"\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:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:2:"li";a:20:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:56:"http://www.echodesplugins.li-an.fr/plugins/front-end-pm/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:37:"http://wpmarmite.com/pat-episode-022/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:57:"https://wpchannel.com/obtenir-role-utilisateur-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:47:"http://www.echodesplugins.li-an.fr/plugins/amp/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:49:"http://wpformation.com/seo-multilingue-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:52:"http://wpmarmite.com/gestion-utilisateurs-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:6;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:69:"http://www.seomix.fr/creer-un-site-wordpress-les-cles-de-la-reussite/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:7;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:37:"http://wpmarmite.com/boutons-partage/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:8;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:65:"http://www.echodesplugins.li-an.fr/plugins/feature-a-page-widget/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:9;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:37:"http://wpformation.com/amp-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:10;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:67:"https://wpchannel.com/26-photos-libres-droits-promouvoir-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:11;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:59:"http://www.wp-spread.com/compte-rendu-de-wpia-6-a-grenoble/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:12;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:57:"http://www.echodesplugins.li-an.fr/plugins/asgaros-forum/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:13;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:55:"http://wpformation.com/opportunites-business-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:14;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:50:"https://wpchannel.com/think-wp-documentaire-video/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:15;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:91:"http://www.vingthuitzerotrois.fr/wordpress/faire-boutons-de-partage-plugin-wordpress-16043/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:16;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:85:"https://www.gregoirenoyelle.com/wordpress-utiliser-glisser-deposer-afficher-articles/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:17;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:98:"http://www.vingthuitzerotrois.fr/wordpress/supprimer-articles-dune-categorie-blog-wordpress-16031/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:18;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:49:"http://wpmarmite.com/compresser-images-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:19;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:75:"http://www.echodesplugins.li-an.fr/plugins/eyes-only-user-access-shortcode/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}s:32:"http://purl.org/dc/elements/1.1/";a:4:{s:8:"language";a:1:{i:0;a:5:{s:4:"data";s: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:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:6:"rights";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-27T13:47:49+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:22:"http://webns.net/mvcb/";a:1:{s:14:"generatorAgent";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:8:"resource";s:28:"http://moonmoon.inertie.org/";}}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:2:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rdf+xml";s:4:"href";s:45:"http://feeds.feedburner.com/wordpress-fr/RaoY";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:3:"hub";s:4:"href";s:32:"http://pubsubhubbub.appspot.com/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:4:"info";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:1:{s:3:"uri";s:17:"wordpress-fr/raoy";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:4:"item";a:20:{i:0;a:6:{s:4:"data";s:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:56:"http://www.echodesplugins.li-an.fr/plugins/front-end-pm/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:49:"L'écho des plugins WordPress : Front End PM";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/V2FXf1M_t2Y/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:62:"<div>Un système complet de messages privés</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-26T14:18:55+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"Li-An";s: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:166:"<div>Un système complet de messages privés</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/V2FXf1M_t2Y" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:56:"http://www.echodesplugins.li-an.fr/plugins/front-end-pm/";s: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:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:37:"http://wpmarmite.com/pat-episode-022/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:87:"WP Marmite : PAT022 – Emilie Lebrun et la professionnalisation de WordPress en France";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/GmEJAuhzt34/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1016:"<div>\n<p><img width="640" height="220" src="http://wpmarmite.com/wp-content/uploads/2016/03/emilie-lebrun.jpg" class="attachment-full size-full wp-post-image" alt="emilie-lebrun" srcset="http://wpmarmite.com/wp-content/uploads/2016/03/emilie-lebrun-300x103.jpg 300w, http://wpmarmite.com/wp-content/uploads/2016/03/emilie-lebrun.jpg 640w" sizes="(max-width: 640px) 100vw, 640px"></p>\n<p>Je ne vous apprends rien en vous disant que beaucoup de personnes pensent encore que « WordPress, ce n’est que pour faire des blogs ». Bien sûr, je ne parle pas de la...</p>\n<p><a rel="nofollow" href="http://wpmarmite.com/pat-episode-022/">PAT022 – Emilie Lebrun et la professionnalisation de WordPress en France</a> est un article de <a rel="nofollow" href="http://wpmarmite.com/">WP Marmite</a>, le blog qui vous aide à tirer le meilleur de WordPress.<br><a href="http://wpmarmite.com/newsletter">Abonnez-vous à la newsletter</a> pour recevoir les suivants.</p>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-24T07:18:44+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Alex";s: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:1120:"<div>\n<p><img width="640" height="220" src="http://wpmarmite.com/wp-content/uploads/2016/03/emilie-lebrun.jpg" class="attachment-full size-full wp-post-image" alt="emilie-lebrun" srcset="http://wpmarmite.com/wp-content/uploads/2016/03/emilie-lebrun-300x103.jpg 300w, http://wpmarmite.com/wp-content/uploads/2016/03/emilie-lebrun.jpg 640w" sizes="(max-width: 640px) 100vw, 640px"></p>\n<p>Je ne vous apprends rien en vous disant que beaucoup de personnes pensent encore que « WordPress, ce n’est que pour faire des blogs ». Bien sûr, je ne parle pas de la...</p>\n<p><a rel="nofollow" href="http://wpmarmite.com/pat-episode-022/">PAT022 – Emilie Lebrun et la professionnalisation de WordPress en France</a> est un article de <a rel="nofollow" href="http://wpmarmite.com/">WP Marmite</a>, le blog qui vous aide à tirer le meilleur de WordPress.<br><a href="http://wpmarmite.com/newsletter">Abonnez-vous à la newsletter</a> pour recevoir les suivants.</p>\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/GmEJAuhzt34" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:37:"http://wpmarmite.com/pat-episode-022/";s: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:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:57:"https://wpchannel.com/obtenir-role-utilisateur-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"WordPress Channel : Obtenir le rôle d’un utilisateur WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/2Tq_lLTnuf4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:910:"<div>\n<p>Un utilisateur WordPress est toujours associé à un rôle (abonné, contributeur, auteur, éditeur et administrateur) auquel sont associées des capacités (publier un contenu, modifier les réglages, etc.). Si vous souhaitez afficher sur votre site le rôle d’un utilisateur, quelques lignes de code seront nécessaires. Pour obtenir le rôle de l’utilisateur connecté, insérez ces quelques lignes là […]</p>\n<p><a rel="nofollow" href="https://wpchannel.com/author/aurelien-denis/">Aurélien Denis</a> - <a rel="nofollow" href="https://wpchannel.com/">WordPress Channel - Tutoriels, thèmes & plugins WordPress</a> - <a rel="nofollow" href="https://wpchannel.com/obtenir-role-utilisateur-wordpress/">Obtenir le rôle d’un utilisateur WordPress</a></p>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-22T08:00:38+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Aurélien Denis";s: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:1014:"<div>\n<p>Un utilisateur WordPress est toujours associé à un rôle (abonné, contributeur, auteur, éditeur et administrateur) auquel sont associées des capacités (publier un contenu, modifier les réglages, etc.). Si vous souhaitez afficher sur votre site le rôle d’un utilisateur, quelques lignes de code seront nécessaires. Pour obtenir le rôle de l’utilisateur connecté, insérez ces quelques lignes là […]</p>\n<p><a rel="nofollow" href="https://wpchannel.com/author/aurelien-denis/">Aurélien Denis</a> - <a rel="nofollow" href="https://wpchannel.com/">WordPress Channel - Tutoriels, thèmes & plugins WordPress</a> - <a rel="nofollow" href="https://wpchannel.com/obtenir-role-utilisateur-wordpress/">Obtenir le rôle d’un utilisateur WordPress</a></p>\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/2Tq_lLTnuf4" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:57:"https://wpchannel.com/obtenir-role-utilisateur-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:47:"http://www.echodesplugins.li-an.fr/plugins/amp/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:40:"L'écho des plugins WordPress : AMP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/-Sqy1seHDc8/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:30:"<div>L\'AMP pour les nuls</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-20T15:21:46+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"Li-An";s: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:134:"<div>L\'AMP pour les nuls</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/-Sqy1seHDc8" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:47:"http://www.echodesplugins.li-an.fr/plugins/amp/";s: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:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:49:"http://wpformation.com/seo-multilingue-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:47:"WP Formation : SEO et Multilingue sur WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/4hVRU8LWuM8/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1598:"<div>\n<p><img width="300" height="176" src="http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-300x176.jpg" class="attachment-medium size-medium wp-post-image" alt="multilingue-seo-wordpress" style="float: right; margin:0 0 10px 10px;" srcset="http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-300x176.jpg 300w, http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-768x451.jpg 768w, http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-600x353.jpg 600w, http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-610x359.jpg 610w, http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-810x476.jpg 810w, http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress.jpg 900w" sizes="(max-width: 300px) 100vw, 300px">Le but de cet article est de comprendre comment fonctionne le SEO multilingue et d’être capable de choisir une solution multilingue WordPress compatible avec les bonnes pratiques de Google.</p>\n<hr>\n<a rel="nofollow" href="http://wpformation.com/seo-multilingue-wordpress/">SEO et Multilingue sur WordPress</a> est un article de <a title="Formation WordPress Ecommerce" href="http://wpformation.com/">WP Formation</a><br><a href="http://wpformation.com/formation-wordpress/">Formation WordPress</a> & <a href="http://wpformation.com/formation-woocommerce-e-commerce/">WooCommerce</a> - Pour ne rien manquer : <a href="http://wpformation.com/abonnement-newsletter-wpf/">Abonnez-vous à la newsletter</a> !</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-18T09:30:16+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"Rémy";s: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:1702:"<div>\n<p><img width="300" height="176" src="http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-300x176.jpg" class="attachment-medium size-medium wp-post-image" alt="multilingue-seo-wordpress" style="float: right; margin:0 0 10px 10px;" srcset="http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-300x176.jpg 300w, http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-768x451.jpg 768w, http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-600x353.jpg 600w, http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-610x359.jpg 610w, http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress-810x476.jpg 810w, http://wpformation.com/wp-content/uploads/2016/03/multilingue-seo-wordpress.jpg 900w" sizes="(max-width: 300px) 100vw, 300px">Le but de cet article est de comprendre comment fonctionne le SEO multilingue et d’être capable de choisir une solution multilingue WordPress compatible avec les bonnes pratiques de Google.</p>\n<hr>\n<a rel="nofollow" href="http://wpformation.com/seo-multilingue-wordpress/">SEO et Multilingue sur WordPress</a> est un article de <a title="Formation WordPress Ecommerce" href="http://wpformation.com/">WP Formation</a><br><a href="http://wpformation.com/formation-wordpress/">Formation WordPress</a> & <a href="http://wpformation.com/formation-woocommerce-e-commerce/">WooCommerce</a> - Pour ne rien manquer : <a href="http://wpformation.com/abonnement-newsletter-wpf/">Abonnez-vous à la newsletter</a> !</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/4hVRU8LWuM8" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wpformation.com/seo-multilingue-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:52:"http://wpmarmite.com/gestion-utilisateurs-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:73:"WP Marmite : Comment gérer les utilisateurs et les rôles dans WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/fSdyA05XYIs/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1113:"<div>\n<p><img width="640" height="220" src="http://wpmarmite.com/wp-content/uploads/2016/03/utilisateurs-wordpress.jpg" class="attachment-full size-full wp-post-image" alt="utilisateurs-wordpress" srcset="http://wpmarmite.com/wp-content/uploads/2016/03/utilisateurs-wordpress-300x103.jpg 300w, http://wpmarmite.com/wp-content/uploads/2016/03/utilisateurs-wordpress.jpg 640w" sizes="(max-width: 640px) 100vw, 640px"></p>\n<p>Vous souvenez-vous du jour où vous avez installé WordPress ? Si oui, vous devez vous rappeler que votre compte a été créé automatiquement à ce moment là. Pour être plus précis, il...</p>\n<p><a rel="nofollow" href="http://wpmarmite.com/gestion-utilisateurs-wordpress/">Comment gérer les utilisateurs et les rôles dans WordPress</a> est un article de <a rel="nofollow" href="http://wpmarmite.com/">WP Marmite</a>, le blog qui vous aide à tirer le meilleur de WordPress.<br><a href="http://wpmarmite.com/newsletter">Abonnez-vous à la newsletter</a> pour recevoir les suivants.</p>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-18T07:53:23+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Alex";s: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:1217:"<div>\n<p><img width="640" height="220" src="http://wpmarmite.com/wp-content/uploads/2016/03/utilisateurs-wordpress.jpg" class="attachment-full size-full wp-post-image" alt="utilisateurs-wordpress" srcset="http://wpmarmite.com/wp-content/uploads/2016/03/utilisateurs-wordpress-300x103.jpg 300w, http://wpmarmite.com/wp-content/uploads/2016/03/utilisateurs-wordpress.jpg 640w" sizes="(max-width: 640px) 100vw, 640px"></p>\n<p>Vous souvenez-vous du jour où vous avez installé WordPress ? Si oui, vous devez vous rappeler que votre compte a été créé automatiquement à ce moment là. Pour être plus précis, il...</p>\n<p><a rel="nofollow" href="http://wpmarmite.com/gestion-utilisateurs-wordpress/">Comment gérer les utilisateurs et les rôles dans WordPress</a> est un article de <a rel="nofollow" href="http://wpmarmite.com/">WP Marmite</a>, le blog qui vous aide à tirer le meilleur de WordPress.<br><a href="http://wpmarmite.com/newsletter">Abonnez-vous à la newsletter</a> pour recevoir les suivants.</p>\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/fSdyA05XYIs" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:52:"http://wpmarmite.com/gestion-utilisateurs-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:69:"http://www.seomix.fr/creer-un-site-wordpress-les-cles-de-la-reussite/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:63:"SEOMix : Créer un site WordPress : les clés de la réussite !";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/4CLd-q5rivA/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2191:"<div>\n<div><img width="250" height="250" src="http://www.seomix.fr/wp-content/uploads/2016/03/Image2-250x250.png" class="attachment-thumb-250-250-true size-thumb-250-250-true wp-post-image" alt="Se former pour le web" srcset="http://www.seomix.fr/wp-content/uploads/2016/03/Image2-130x130.png 130w, http://www.seomix.fr/wp-content/uploads/2016/03/Image2-150x150.png 150w, http://www.seomix.fr/wp-content/uploads/2016/03/Image2-200x200.png 200w, http://www.seomix.fr/wp-content/uploads/2016/03/Image2-250x250.png 250w, http://www.seomix.fr/wp-content/uploads/2016/03/Image2-100x100.png 100w" sizes="(max-width: 250px) 100vw, 250px"></div>Apprenez à créer un site WordPress et à le transformer en véritable succès pour votre entreprise ! Pour cela, Daniel Roch donne son retour d\'expérience lors du WordCamp Paris 2016<p><strong>Accédez à l\'article original :</strong> <a href="http://www.seomix.fr/creer-un-site-wordpress-les-cles-de-la-reussite/">Créer un site WordPress : les clés de la réussite !</a>.</p>\n <p><strong>Voici le début du contenu :</strong> </p>\n<p>Chez SeoMix, nous sommes des spécialistes du CMS WordPress. On a tendance à conseiller son utilisation dans un grand nombre de projets de nos clients. Et pourtant, ce n’est pas la simple utilisation de cet outil open source qui va vous permettre de réussir notre site Internet.</p> <p>Lors du dernier WordCamp Paris, nous avons justement fait une conférence sur ce sujet (vous retrouvez les slides à la fin de l’article, et la vidéo dès qu’elle sera publiée).</p> <h2>Stratégie, objectifs et moyens dédiés à WordPress</h2> <p>C’est la base : si vous ne définissez pas une stratégie cohérente, impossible d’avoir un projet web qui réussit. Il faut donc d’abord poser les bases nécessaires au succès : définir correctement son projet WordPress (ou [...]</p>\n<hr>\n<img src="http://feeds.feedburner.com/~r/seomix-wordpress/~4/4CLd-q5rivA" height="1" width="1" alt="">\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-17T07:00:04+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"Daniel Roch";s: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:2295:"<div>\n<div><img width="250" height="250" src="http://www.seomix.fr/wp-content/uploads/2016/03/Image2-250x250.png" class="attachment-thumb-250-250-true size-thumb-250-250-true wp-post-image" alt="Se former pour le web" srcset="http://www.seomix.fr/wp-content/uploads/2016/03/Image2-130x130.png 130w, http://www.seomix.fr/wp-content/uploads/2016/03/Image2-150x150.png 150w, http://www.seomix.fr/wp-content/uploads/2016/03/Image2-200x200.png 200w, http://www.seomix.fr/wp-content/uploads/2016/03/Image2-250x250.png 250w, http://www.seomix.fr/wp-content/uploads/2016/03/Image2-100x100.png 100w" sizes="(max-width: 250px) 100vw, 250px"></div>Apprenez à créer un site WordPress et à le transformer en véritable succès pour votre entreprise ! Pour cela, Daniel Roch donne son retour d\'expérience lors du WordCamp Paris 2016<p><strong>Accédez à l\'article original :</strong> <a href="http://www.seomix.fr/creer-un-site-wordpress-les-cles-de-la-reussite/">Créer un site WordPress : les clés de la réussite !</a>.</p>\n <p><strong>Voici le début du contenu :</strong> </p>\n<p>Chez SeoMix, nous sommes des spécialistes du CMS WordPress. On a tendance à conseiller son utilisation dans un grand nombre de projets de nos clients. Et pourtant, ce n’est pas la simple utilisation de cet outil open source qui va vous permettre de réussir notre site Internet.</p> <p>Lors du dernier WordCamp Paris, nous avons justement fait une conférence sur ce sujet (vous retrouvez les slides à la fin de l’article, et la vidéo dès qu’elle sera publiée).</p> <h2>Stratégie, objectifs et moyens dédiés à WordPress</h2> <p>C’est la base : si vous ne définissez pas une stratégie cohérente, impossible d’avoir un projet web qui réussit. Il faut donc d’abord poser les bases nécessaires au succès : définir correctement son projet WordPress (ou [...]</p>\n<hr>\n<img src="http://feeds.feedburner.com/~r/seomix-wordpress/~4/4CLd-q5rivA" height="1" width="1" alt="">\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/4CLd-q5rivA" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:69:"http://www.seomix.fr/creer-un-site-wordpress-les-cles-de-la-reussite/";s: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:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:37:"http://wpmarmite.com/boutons-partage/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:79:"WP Marmite : La vérité sur les boutons de partage (et la meilleure extension)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/ljvDRKEUGnM/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1117:"<div>\n<p><img width="640" height="220" src="http://wpmarmite.com/wp-content/uploads/2016/03/partage-social-wordpress.jpg" class="attachment-full size-full wp-post-image" alt="partage-social-wordpress" srcset="http://wpmarmite.com/wp-content/uploads/2016/03/partage-social-wordpress-300x103.jpg 300w, http://wpmarmite.com/wp-content/uploads/2016/03/partage-social-wordpress.jpg 640w" sizes="(max-width: 640px) 100vw, 640px"></p>\n<p>Il existe des dizaines d’extensions de partage social pour WordPress. Devant un tel choix, il est difficile d’en choisir une plutôt qu’une autre… Jusqu’à aujourd’hui. Après des heures de recherches et...</p>\n<p><a rel="nofollow" href="http://wpmarmite.com/boutons-partage/">La vérité sur les boutons de partage (et la meilleure extension)</a> est un article de <a rel="nofollow" href="http://wpmarmite.com/">WP Marmite</a>, le blog qui vous aide à tirer le meilleur de WordPress.<br><a href="http://wpmarmite.com/newsletter">Abonnez-vous à la newsletter</a> pour recevoir les suivants.</p>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-15T07:24:57+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Nicolas Richer";s: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:1221:"<div>\n<p><img width="640" height="220" src="http://wpmarmite.com/wp-content/uploads/2016/03/partage-social-wordpress.jpg" class="attachment-full size-full wp-post-image" alt="partage-social-wordpress" srcset="http://wpmarmite.com/wp-content/uploads/2016/03/partage-social-wordpress-300x103.jpg 300w, http://wpmarmite.com/wp-content/uploads/2016/03/partage-social-wordpress.jpg 640w" sizes="(max-width: 640px) 100vw, 640px"></p>\n<p>Il existe des dizaines d’extensions de partage social pour WordPress. Devant un tel choix, il est difficile d’en choisir une plutôt qu’une autre… Jusqu’à aujourd’hui. Après des heures de recherches et...</p>\n<p><a rel="nofollow" href="http://wpmarmite.com/boutons-partage/">La vérité sur les boutons de partage (et la meilleure extension)</a> est un article de <a rel="nofollow" href="http://wpmarmite.com/">WP Marmite</a>, le blog qui vous aide à tirer le meilleur de WordPress.<br><a href="http://wpmarmite.com/newsletter">Abonnez-vous à la newsletter</a> pour recevoir les suivants.</p>\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/ljvDRKEUGnM" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:37:"http://wpmarmite.com/boutons-partage/";s: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:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:65:"http://www.echodesplugins.li-an.fr/plugins/feature-a-page-widget/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:58:"L'écho des plugins WordPress : Feature A Page Widget";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/tF34sl64lUM/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:51:"<div>Un widget pour mettre en avant des pages</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-14T17:10:51+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"Li-An";s: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:155:"<div>Un widget pour mettre en avant des pages</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/tF34sl64lUM" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:65:"http://www.echodesplugins.li-an.fr/plugins/feature-a-page-widget/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:37:"http://wpformation.com/amp-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"WP Formation : Pourquoi et comment installer AMP pour WordPress ?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/xfezuviohEg/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1884:"<div>\n<p><img width="300" height="145" src="http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-300x145.png" class="attachment-medium size-medium wp-post-image" alt="google-amp-project" style="float: right; margin:0 0 10px 10px;" srcset="http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-300x145.png 300w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-768x371.png 768w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-1024x495.png 1024w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-600x290.png 600w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-610x295.png 610w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-810x392.png 810w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-1140x551.png 1140w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project.png 1270w" sizes="(max-width: 300px) 100vw, 300px">Nous en entendons parler depuis un bon moment ! AMP par ci, AMP par là... Il faut l\'installer...ou pas ? Mais de quoi s\'agit-il exactement ? J\'ai donc décidé de me pencher sur cet acronyme étrange. Nous allons voir dans cet article ce qu\'est AMP, à quoi il sert, si il faut absolument l\'installer et comment, […]</p>\n<hr>\n<a rel="nofollow" href="http://wpformation.com/amp-wordpress/">Pourquoi et comment installer AMP pour WordPress ?</a> est un article de <a title="Formation WordPress Ecommerce" href="http://wpformation.com/">WP Formation</a><br><a href="http://wpformation.com/formation-wordpress/">Formation WordPress</a> & <a href="http://wpformation.com/formation-woocommerce-e-commerce/">WooCommerce</a> - Pour ne rien manquer : <a href="http://wpformation.com/abonnement-newsletter-wpf/">Abonnez-vous à la newsletter</a> !</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-14T09:01:27+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"WPFormation";s: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:1988:"<div>\n<p><img width="300" height="145" src="http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-300x145.png" class="attachment-medium size-medium wp-post-image" alt="google-amp-project" style="float: right; margin:0 0 10px 10px;" srcset="http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-300x145.png 300w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-768x371.png 768w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-1024x495.png 1024w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-600x290.png 600w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-610x295.png 610w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-810x392.png 810w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project-1140x551.png 1140w, http://wpformation.com/wp-content/uploads/2016/03/google-amp-project.png 1270w" sizes="(max-width: 300px) 100vw, 300px">Nous en entendons parler depuis un bon moment ! AMP par ci, AMP par là... Il faut l\'installer...ou pas ? Mais de quoi s\'agit-il exactement ? J\'ai donc décidé de me pencher sur cet acronyme étrange. Nous allons voir dans cet article ce qu\'est AMP, à quoi il sert, si il faut absolument l\'installer et comment, […]</p>\n<hr>\n<a rel="nofollow" href="http://wpformation.com/amp-wordpress/">Pourquoi et comment installer AMP pour WordPress ?</a> est un article de <a title="Formation WordPress Ecommerce" href="http://wpformation.com/">WP Formation</a><br><a href="http://wpformation.com/formation-wordpress/">Formation WordPress</a> & <a href="http://wpformation.com/formation-woocommerce-e-commerce/">WooCommerce</a> - Pour ne rien manquer : <a href="http://wpformation.com/abonnement-newsletter-wpf/">Abonnez-vous à la newsletter</a> !</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/xfezuviohEg" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:37:"http://wpformation.com/amp-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:67:"https://wpchannel.com/26-photos-libres-droits-promouvoir-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:72:"WordPress Channel : 26 photos libres de droits pour promouvoir WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/UT7TGIjvWg8/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:813:"<div>\n<p>Grâce aux nombreux goodies remis aux orateurs lors du WordCamp Paris 2016, je vous invite à télécharger sans modération une archive de 26 clichés haute définition à utiliser sur vos articles de blogs, vos profils de réseaux sociaux ou autre. L’album est également disponible sur Flickr ou à télécharger en direct :</p>\n<p><a rel="nofollow" href="https://wpchannel.com/author/aurelien-denis/">Aurélien Denis</a> - <a rel="nofollow" href="https://wpchannel.com/">WordPress Channel - Tutoriels, thèmes & plugins WordPress</a> - <a rel="nofollow" href="https://wpchannel.com/26-photos-libres-droits-promouvoir-wordpress/">26 photos libres de droits pour promouvoir WordPress</a></p>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-14T08:00:11+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Aurélien Denis";s: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:917:"<div>\n<p>Grâce aux nombreux goodies remis aux orateurs lors du WordCamp Paris 2016, je vous invite à télécharger sans modération une archive de 26 clichés haute définition à utiliser sur vos articles de blogs, vos profils de réseaux sociaux ou autre. L’album est également disponible sur Flickr ou à télécharger en direct :</p>\n<p><a rel="nofollow" href="https://wpchannel.com/author/aurelien-denis/">Aurélien Denis</a> - <a rel="nofollow" href="https://wpchannel.com/">WordPress Channel - Tutoriels, thèmes & plugins WordPress</a> - <a rel="nofollow" href="https://wpchannel.com/26-photos-libres-droits-promouvoir-wordpress/">26 photos libres de droits pour promouvoir WordPress</a></p>\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/UT7TGIjvWg8" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:67:"https://wpchannel.com/26-photos-libres-droits-promouvoir-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:59:"http://www.wp-spread.com/compte-rendu-de-wpia-6-a-grenoble/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:54:"WP Spread » Blog : Compte rendu de WPIA 6 à Grenoble";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/dUxr6QV29bk/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:650:"<div>\n<p>Plus de 70 personnes sont venues au meetup WordPress Grenoblois ce 9 mars pour suivre 2 conférences, une table ronde et un apéro dans la bonne humeur. Je commencerais par remercier tous les participants ! L’intérêt que vous avez montré pour WordPress est inspirant ! J’espère que les sujets abordés vous ont plu et que […]</p>\n<p>Cet article <a rel="nofollow" href="http://www.wp-spread.com/compte-rendu-de-wpia-6-a-grenoble/">Compte rendu de WPIA 6 à Grenoble</a> est apparu en premier sur <a rel="nofollow" href="http://www.wp-spread.com/">WP Spread</a>.</p>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-11T18:59:37+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"maximebj";s: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:754:"<div>\n<p>Plus de 70 personnes sont venues au meetup WordPress Grenoblois ce 9 mars pour suivre 2 conférences, une table ronde et un apéro dans la bonne humeur. Je commencerais par remercier tous les participants ! L’intérêt que vous avez montré pour WordPress est inspirant ! J’espère que les sujets abordés vous ont plu et que […]</p>\n<p>Cet article <a rel="nofollow" href="http://www.wp-spread.com/compte-rendu-de-wpia-6-a-grenoble/">Compte rendu de WPIA 6 à Grenoble</a> est apparu en premier sur <a rel="nofollow" href="http://www.wp-spread.com/">WP Spread</a>.</p>\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/dUxr6QV29bk" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:59:"http://www.wp-spread.com/compte-rendu-de-wpia-6-a-grenoble/";s: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:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:57:"http://www.echodesplugins.li-an.fr/plugins/asgaros-forum/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:50:"L'écho des plugins WordPress : Asgaros Forum";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/6KredOpPePE/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:46:"<div>Un forum tout simple pour Wordpress</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-08T09:49:30+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"Li-An";s: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:150:"<div>Un forum tout simple pour Wordpress</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/6KredOpPePE" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:57:"http://www.echodesplugins.li-an.fr/plugins/asgaros-forum/";s: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:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:55:"http://wpformation.com/opportunites-business-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:66:"WP Formation : Faire du business avec WordPress, c’est possible!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/FNumZ68h1hk/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1757:"<div>\n<p><img width="300" height="225" src="http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-300x225.jpg" class="attachment-medium size-medium wp-post-image" alt="business wordpress" style="float: right; margin:0 0 10px 10px;" srcset="http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-300x225.jpg 300w, http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-768x576.jpg 768w, http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-600x450.jpg 600w, http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-610x458.jpg 610w, http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-810x608.jpg 810w, http://wpformation.com/wp-content/uploads/2016/03/wordpress-business.jpg 900w" sizes="(max-width: 300px) 100vw, 300px">WordPress est à la mode! Ce n\'est pas un effet d\'annonce mais une réalité : 25% des sites à travers le monde sont propulsés par ce dernier. Les raisons de ce succès sont nombreuses, je ne vais pas les énumérer à nouveau mais vous pouvez aller (re)lire 50 bonnes raisons d\'utiliser WordPress si vous en doutez. […]</p>\n<hr>\n<a rel="nofollow" href="http://wpformation.com/opportunites-business-wordpress/">Faire du business avec WordPress, c’est possible!</a> est un article de <a title="Formation WordPress Ecommerce" href="http://wpformation.com/">WP Formation</a><br><a href="http://wpformation.com/formation-wordpress/">Formation WordPress</a> & <a href="http://wpformation.com/formation-woocommerce-e-commerce/">WooCommerce</a> - Pour ne rien manquer : <a href="http://wpformation.com/abonnement-newsletter-wpf/">Abonnez-vous à la newsletter</a> !</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-07T09:05:05+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"WPFormation";s: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:1861:"<div>\n<p><img width="300" height="225" src="http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-300x225.jpg" class="attachment-medium size-medium wp-post-image" alt="business wordpress" style="float: right; margin:0 0 10px 10px;" srcset="http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-300x225.jpg 300w, http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-768x576.jpg 768w, http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-600x450.jpg 600w, http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-610x458.jpg 610w, http://wpformation.com/wp-content/uploads/2016/03/wordpress-business-810x608.jpg 810w, http://wpformation.com/wp-content/uploads/2016/03/wordpress-business.jpg 900w" sizes="(max-width: 300px) 100vw, 300px">WordPress est à la mode! Ce n\'est pas un effet d\'annonce mais une réalité : 25% des sites à travers le monde sont propulsés par ce dernier. Les raisons de ce succès sont nombreuses, je ne vais pas les énumérer à nouveau mais vous pouvez aller (re)lire 50 bonnes raisons d\'utiliser WordPress si vous en doutez. […]</p>\n<hr>\n<a rel="nofollow" href="http://wpformation.com/opportunites-business-wordpress/">Faire du business avec WordPress, c’est possible!</a> est un article de <a title="Formation WordPress Ecommerce" href="http://wpformation.com/">WP Formation</a><br><a href="http://wpformation.com/formation-wordpress/">Formation WordPress</a> & <a href="http://wpformation.com/formation-woocommerce-e-commerce/">WooCommerce</a> - Pour ne rien manquer : <a href="http://wpformation.com/abonnement-newsletter-wpf/">Abonnez-vous à la newsletter</a> !</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/FNumZ68h1hk" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wpformation.com/opportunites-business-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:50:"https://wpchannel.com/think-wp-documentaire-video/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:84:"WordPress Channel : Think WP, le projet vidéo qui va changer l’image de WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/KATngPZBsZw/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:845:"<div>\n<p>Evangéliser le projet WordPress auprès du grand-public au travers d’un documentaire vidéo de 50 minutes : tel est le projet ambitieux porté par Déborah Donnier (ddesign) et Émilie Lebrun (Whodunit). Découvrez le projet Think WP dans cet interview vidéo. Aurélien : Bonjour à tous, je suis Aurélien Denis de WordPress Channel. Ravi de vous retrouver […]</p>\n<p><a rel="nofollow" href="https://wpchannel.com/author/aurelien-denis/">Aurélien Denis</a> - <a rel="nofollow" href="https://wpchannel.com/">WordPress Channel - Tutoriels, thèmes & plugins WordPress</a> - <a rel="nofollow" href="https://wpchannel.com/think-wp-documentaire-video/">Think WP, le projet vidéo qui va changer l’image de WordPress</a></p>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-07T08:45:55+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Aurélien Denis";s: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:949:"<div>\n<p>Evangéliser le projet WordPress auprès du grand-public au travers d’un documentaire vidéo de 50 minutes : tel est le projet ambitieux porté par Déborah Donnier (ddesign) et Émilie Lebrun (Whodunit). Découvrez le projet Think WP dans cet interview vidéo. Aurélien : Bonjour à tous, je suis Aurélien Denis de WordPress Channel. Ravi de vous retrouver […]</p>\n<p><a rel="nofollow" href="https://wpchannel.com/author/aurelien-denis/">Aurélien Denis</a> - <a rel="nofollow" href="https://wpchannel.com/">WordPress Channel - Tutoriels, thèmes & plugins WordPress</a> - <a rel="nofollow" href="https://wpchannel.com/think-wp-documentaire-video/">Think WP, le projet vidéo qui va changer l’image de WordPress</a></p>\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/KATngPZBsZw" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:50:"https://wpchannel.com/think-wp-documentaire-video/";s: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:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:91:"http://www.vingthuitzerotrois.fr/wordpress/faire-boutons-de-partage-plugin-wordpress-16043/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:71:"VingtHuitZeroTrois : Faire des boutons de partage sans plugin wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/ECXzF4vL2aI/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5923:"<div>\n<p>Quelle galère ces boutons de partage… Personnellement ils ont toujours été une source de problème car moches ou bien fortement consommateur de ressources sur le blog notamment à cause des plugins qui font des appels dans tous les sens.</p>\n<p>Bref depuis que twitter ne permet plus d’afficher le total des partages (même si en cherchant il y a une solution avec newsharecounts) l’affichage des totaux n’est plus si important. Je suis donc parti sur une solution sans plugin et très simple mais sans que cela soit moche non plus! Voici le moyen pour avoir ces boutons de partage sur votre blog!</p>\n<p><img src="http://images.2803.fr/uploads/2016/03/boutons-partage-wordpress-1.png" alt="" width="535" height="82" class="aligncenter size-full wp-image-16045"></p>\n<p><span id="more-16043"></span></p>\n<p>Le code à coller dans votre fichier functions.php du thème de votre blog wordpress est le suivant :</p>\n<pre class="brush: php; title: ; notranslate">\nfunction share_button_2803($content) {\n if ( is_single() ) {\n global $post;\n \n $share_URL = get_permalink();\n $share_title = str_replace( \' \', \'%20\', get_the_title());\n $share_thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), \'full\' );\n $share_excerpt = strip_tags(get_the_content());\n \n $twitterURL = \'https://twitter.com/intent/tweet?text=\'.$share_title.\'&amp;url=\'.$share_URL.\'&amp;via=henrilabarre\';\n $facebookURL = \'https://www.facebook.com/sharer/sharer.php?u=\'.$share_URL;\n $googleURL = \'https://plus.google.com/share?url=\'.$share_URL;\n $pinterestURL = \'https://pinterest.com/pin/create/button/?url=\'.$share_URL.\'&amp;media=\'.$share_thumbnail[0].\'&amp;description=\'.$share_excerpt;\n $linkedinURL = \'https://www.linkedin.com/shareArticle?mini=true&url=\'.$share_URL.\'/&title=\'.$share_title.\'&summary=&source=\';\n \n $content .= \'<!-- Facebook Share Button -->\n <div class="sharebuttons"> \n <a class="btnz share facebook" href="\'.$facebookURL.\'"><i class="fa fa-facebook"></i> Partager</a>\n <!-- Twitter Share Button -->\n <a class="btnz share twitter" href="\'.$twitterURL.\'"><i class="fa fa-twitter"></i> Tweeter</a>\n <!-- LinkedIn Share Button -->\n <a class="btnz share linkedin" href="\'.$linkedinURL.\'"><i class="fa fa-linkedin"></i> LinkedIn</a>\n <!-- Google+ Share Button -->\n <a class="btnz share gplus" href="\'.$googleURL.\'"><i class="fa fa-google-plus"></i> Publier</a>\n <!-- Pinterest Share Button -->\n <a class="btnz share pinterest" href="\'.$pinterestURL.\'"><i class="fa fa-pinterest"></i> Pin it</a>\n </div>\n <div class="clear"></div>\';\n }\n return $content;\n}\nadd_action(\'the_content\',\'share_button_2803\');\n</pre>\n<p>Si vous n’utilisez pas déjà les icônes de Fontawesome il faudra aussi ajouter cela dans le fichier functions.php :</p>\n<pre class="brush: php; title: ; notranslate">\nadd_action( \'wp_enqueue_scripts\', \'codium_dn_enqueue_awesome\' );\n function codium_dn_enqueue_awesome() {\n wp_enqueue_style( \'prefix-font-awesome\', \'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css\', array(), \'4.4.0\' );\n }\n</pre>\n<p>Le code à copier dans votre feuille de style style.css de votre thème est le suivant :</p>\n<pre class="brush: php; title: ; notranslate">\n/*share button*/\n.sharebuttons {padding: 10px 0 60px 0;}\n.btnz {\n display: block;\n float: left;\n padding: 10px 15px;\n border:none;\n background-color: #ececec;\n text-decoration: none;\n font-size: 18px;\n color: #FFF !important;\n}\n.btnz:hover {\n color: #444 !important;\n}\n\n.facebook {\n background-color: #3b5998;\n}\n.gplus {\n background-color: #dd4b39;\n}\n.twitter {\n background-color: #55acee;\n}\n.pinterest {\n background-color: #cc2127;\n}\n.linkedin {\n background-color: #0077b5;\n}\n</pre>\n<p>Et si vous voulez ouvrir une popup au lieu d’un nouvel onglet coller ce code javascript dans le fichier footer.php du thème :</p>\n<pre class="brush: php; title: ; notranslate">\n<script>\njQuery(document).ready(function() {\n jQuery(\'.share\').click(function(e) {\n e.preventDefault();\n window.open(jQuery(this).attr(\'href\'), \'fbShareWindow\', \'height=450, width=550, top=\' + (jQuery(window).height() / 2 - 275) + \', left=\' + (jQuery(window).width() / 2 - 225) + \', toolbar=0, location=0, menubar=0, directories=0, scrollbars=0\');\n return false;\n });\n}); \n</script>\n</pre>\n<p>Et voilà c’est fini vous avez des boutons pour facebook, twitter, linkedin, google plus et pinterest, vous pouvez partager cet article pour tester !</p>\n<hr>\n<strong>Vous venez de lire la version freemium de l\'article, la version premium (avec les liens) est ici : </strong><a href="http://www.vingthuitzerotrois.fr/wordpress/faire-boutons-de-partage-plugin-wordpress-16043/">Faire des boutons de partage sans plugin wordpress</a><br>N\'hésitez pas à suivre le compte <a href="http://twitter.com/henrilabarre">Twitter</a> et la page <a href="http://www.facebook.com/vingt.huit.zero.trois">Facebook</a><br>\n\nCopyright © 2005-2016 <strong><a href="http://www.2803media.fr/">2803 MEDIA</a></strong><br><hr>\n<p>Cet article <a rel="nofollow" href="http://www.vingthuitzerotrois.fr/wordpress/faire-boutons-de-partage-plugin-wordpress-16043/">Faire des boutons de partage sans plugin wordpress</a> est apparu en premier sur <a rel="nofollow" href="http://www.vingthuitzerotrois.fr/">2803, le blog web 2.0, Internet et technologies</a>.</p>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-04T15:19:31+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"henri";s: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:6027:"<div>\n<p>Quelle galère ces boutons de partage… Personnellement ils ont toujours été une source de problème car moches ou bien fortement consommateur de ressources sur le blog notamment à cause des plugins qui font des appels dans tous les sens.</p>\n<p>Bref depuis que twitter ne permet plus d’afficher le total des partages (même si en cherchant il y a une solution avec newsharecounts) l’affichage des totaux n’est plus si important. Je suis donc parti sur une solution sans plugin et très simple mais sans que cela soit moche non plus! Voici le moyen pour avoir ces boutons de partage sur votre blog!</p>\n<p><img src="http://images.2803.fr/uploads/2016/03/boutons-partage-wordpress-1.png" alt="" width="535" height="82" class="aligncenter size-full wp-image-16045"></p>\n<p><span id="more-16043"></span></p>\n<p>Le code à coller dans votre fichier functions.php du thème de votre blog wordpress est le suivant :</p>\n<pre class="brush: php; title: ; notranslate">\nfunction share_button_2803($content) {\n if ( is_single() ) {\n global $post;\n \n $share_URL = get_permalink();\n $share_title = str_replace( \' \', \'%20\', get_the_title());\n $share_thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), \'full\' );\n $share_excerpt = strip_tags(get_the_content());\n \n $twitterURL = \'https://twitter.com/intent/tweet?text=\'.$share_title.\'&amp;url=\'.$share_URL.\'&amp;via=henrilabarre\';\n $facebookURL = \'https://www.facebook.com/sharer/sharer.php?u=\'.$share_URL;\n $googleURL = \'https://plus.google.com/share?url=\'.$share_URL;\n $pinterestURL = \'https://pinterest.com/pin/create/button/?url=\'.$share_URL.\'&amp;media=\'.$share_thumbnail[0].\'&amp;description=\'.$share_excerpt;\n $linkedinURL = \'https://www.linkedin.com/shareArticle?mini=true&url=\'.$share_URL.\'/&title=\'.$share_title.\'&summary=&source=\';\n \n $content .= \'<!-- Facebook Share Button -->\n <div class="sharebuttons"> \n <a class="btnz share facebook" href="\'.$facebookURL.\'"><i class="fa fa-facebook"></i> Partager</a>\n <!-- Twitter Share Button -->\n <a class="btnz share twitter" href="\'.$twitterURL.\'"><i class="fa fa-twitter"></i> Tweeter</a>\n <!-- LinkedIn Share Button -->\n <a class="btnz share linkedin" href="\'.$linkedinURL.\'"><i class="fa fa-linkedin"></i> LinkedIn</a>\n <!-- Google+ Share Button -->\n <a class="btnz share gplus" href="\'.$googleURL.\'"><i class="fa fa-google-plus"></i> Publier</a>\n <!-- Pinterest Share Button -->\n <a class="btnz share pinterest" href="\'.$pinterestURL.\'"><i class="fa fa-pinterest"></i> Pin it</a>\n </div>\n <div class="clear"></div>\';\n }\n return $content;\n}\nadd_action(\'the_content\',\'share_button_2803\');\n</pre>\n<p>Si vous n’utilisez pas déjà les icônes de Fontawesome il faudra aussi ajouter cela dans le fichier functions.php :</p>\n<pre class="brush: php; title: ; notranslate">\nadd_action( \'wp_enqueue_scripts\', \'codium_dn_enqueue_awesome\' );\n function codium_dn_enqueue_awesome() {\n wp_enqueue_style( \'prefix-font-awesome\', \'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css\', array(), \'4.4.0\' );\n }\n</pre>\n<p>Le code à copier dans votre feuille de style style.css de votre thème est le suivant :</p>\n<pre class="brush: php; title: ; notranslate">\n/*share button*/\n.sharebuttons {padding: 10px 0 60px 0;}\n.btnz {\n display: block;\n float: left;\n padding: 10px 15px;\n border:none;\n background-color: #ececec;\n text-decoration: none;\n font-size: 18px;\n color: #FFF !important;\n}\n.btnz:hover {\n color: #444 !important;\n}\n\n.facebook {\n background-color: #3b5998;\n}\n.gplus {\n background-color: #dd4b39;\n}\n.twitter {\n background-color: #55acee;\n}\n.pinterest {\n background-color: #cc2127;\n}\n.linkedin {\n background-color: #0077b5;\n}\n</pre>\n<p>Et si vous voulez ouvrir une popup au lieu d’un nouvel onglet coller ce code javascript dans le fichier footer.php du thème :</p>\n<pre class="brush: php; title: ; notranslate">\n<script>\njQuery(document).ready(function() {\n jQuery(\'.share\').click(function(e) {\n e.preventDefault();\n window.open(jQuery(this).attr(\'href\'), \'fbShareWindow\', \'height=450, width=550, top=\' + (jQuery(window).height() / 2 - 275) + \', left=\' + (jQuery(window).width() / 2 - 225) + \', toolbar=0, location=0, menubar=0, directories=0, scrollbars=0\');\n return false;\n });\n}); \n</script>\n</pre>\n<p>Et voilà c’est fini vous avez des boutons pour facebook, twitter, linkedin, google plus et pinterest, vous pouvez partager cet article pour tester !</p>\n<hr>\n<strong>Vous venez de lire la version freemium de l\'article, la version premium (avec les liens) est ici : </strong><a href="http://www.vingthuitzerotrois.fr/wordpress/faire-boutons-de-partage-plugin-wordpress-16043/">Faire des boutons de partage sans plugin wordpress</a><br>N\'hésitez pas à suivre le compte <a href="http://twitter.com/henrilabarre">Twitter</a> et la page <a href="http://www.facebook.com/vingt.huit.zero.trois">Facebook</a><br>\n\nCopyright © 2005-2016 <strong><a href="http://www.2803media.fr/">2803 MEDIA</a></strong><br><hr>\n<p>Cet article <a rel="nofollow" href="http://www.vingthuitzerotrois.fr/wordpress/faire-boutons-de-partage-plugin-wordpress-16043/">Faire des boutons de partage sans plugin wordpress</a> est apparu en premier sur <a rel="nofollow" href="http://www.vingthuitzerotrois.fr/">2803, le blog web 2.0, Internet et technologies</a>.</p>\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/ECXzF4vL2aI" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:91:"http://www.vingthuitzerotrois.fr/wordpress/faire-boutons-de-partage-plugin-wordpress-16043/";s: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:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:85:"https://www.gregoirenoyelle.com/wordpress-utiliser-glisser-deposer-afficher-articles/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:88:"Grégoire Noyelle : WordPress :: Utiliser le glisser-déposer pour afficher vos articles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/1z5FZBIXFi4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:784:"<div>Dans ce tutoriel nous verrons comment changer en glisser-déposer l\'ordre d\'affichage des articles dans les archives de votre site WordPress. La première étape est d\'ajouter un attribut de page au type de contenu articles (post en anglais) de notre site. Nous allons placer ce code dans une extension dédiée ou plus facilement dans le fichier de votre thème: functions.php.<p>Cet article a été publié le 4 mars 2016 par <a href="https://www.gregoirenoyelle.com/">Grégoire Noyelle</a>. Pour le lire en ligne, suivre le lien: <a href="https://www.gregoirenoyelle.com/wordpress-utiliser-glisser-deposer-afficher-articles/">WordPress :: Utiliser le glisser-déposer pour afficher vos articles</a>.</p>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-04T07:45:29+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"Grégoire Noyelle";s: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:888:"<div>Dans ce tutoriel nous verrons comment changer en glisser-déposer l\'ordre d\'affichage des articles dans les archives de votre site WordPress. La première étape est d\'ajouter un attribut de page au type de contenu articles (post en anglais) de notre site. Nous allons placer ce code dans une extension dédiée ou plus facilement dans le fichier de votre thème: functions.php.<p>Cet article a été publié le 4 mars 2016 par <a href="https://www.gregoirenoyelle.com/">Grégoire Noyelle</a>. Pour le lire en ligne, suivre le lien: <a href="https://www.gregoirenoyelle.com/wordpress-utiliser-glisser-deposer-afficher-articles/">WordPress :: Utiliser le glisser-déposer pour afficher vos articles</a>.</p>\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/1z5FZBIXFi4" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:85:"https://www.gregoirenoyelle.com/wordpress-utiliser-glisser-deposer-afficher-articles/";s: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:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:98:"http://www.vingthuitzerotrois.fr/wordpress/supprimer-articles-dune-categorie-blog-wordpress-16031/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:89:"VingtHuitZeroTrois : Supprimer tous les articles d’une catégorie sur un blog WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/TFqe0rhSpqI/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2992:"<div>\n<p>Parfois on a besoin de faire un peu le ménage et ainsi supprimer tous les articles d’une catégorie qui ne correspondraient plus à la ligne éditoriale du blog. Si vous avez une dizaine d’articles vous pouvez toujours les supprimer à la main dans l’interface de gestion du blog mais en revanche si vous avez plus de 500 articles la chose se complexifie !</p>\n<p>Après quelques tests et recherches le plus simple est donc de les supprimer directement dans la base de données Mysql du blog grâce à cette requête Mysql :</p>\n<pre class="brush: php; title: ; notranslate">DELETE a,b,c,d\nFROM wp_posts a\nLEFT JOIN wp_term_relationships b ON ( a.ID = b.object_id )\nLEFT JOIN wp_postmeta c ON ( a.ID = c.post_id )\nLEFT JOIN wp_term_taxonomy d ON ( d.term_taxonomy_id = b.term_taxonomy_id )\nLEFT JOIN wp_terms e ON ( e.term_id = d.term_id )\nWHERE e.term_id =XXXX</pre>\n<p><img src="http://images.2803.fr/uploads/2016/03/mysql-900x142.png" alt="" width="900" height="142" class="aligncenter size-medium wp-image-16032" srcset="http://images.2803.fr/uploads/2016/03/mysql-900x142.png 900w, http://images.2803.fr/uploads/2016/03/mysql-768x121.png 768w, http://images.2803.fr/uploads/2016/03/mysql-1024x161.png 1024w, http://images.2803.fr/uploads/2016/03/mysql-300x47.png 300w, http://images.2803.fr/uploads/2016/03/mysql.png 1264w" sizes="(max-width: 900px) 100vw, 900px"></p>\n<p>XXXX est donc le numéro de la catégorie à supprimer! Si vous n’êtes pas certain faite cette requêtes mysql pour vérifier que ce sont les bons articles à supprimer :</p>\n<pre class="brush: php; title: ; notranslate">SELECT *\nFROM wp_posts a\nLEFT JOIN wp_term_relationships b ON ( a.ID = b.object_id )\nLEFT JOIN wp_postmeta c ON ( a.ID = c.post_id )\nLEFT JOIN wp_term_taxonomy d ON ( d.term_taxonomy_id = b.term_taxonomy_id )\nLEFT JOIN wp_terms e ON ( e.term_id = d.term_id )\nWHERE e.term_id =XXXX</pre>\n<hr>\n<strong>Vous venez de lire la version freemium de l\'article, la version premium (avec les liens) est ici : </strong><a href="http://www.vingthuitzerotrois.fr/wordpress/supprimer-articles-dune-categorie-blog-wordpress-16031/">Supprimer tous les articles d’une catégorie sur un blog WordPress</a><br>N\'hésitez pas à suivre le compte <a href="http://twitter.com/henrilabarre">Twitter</a> et la page <a href="http://www.facebook.com/vingt.huit.zero.trois">Facebook</a><br>\n\nCopyright © 2005-2016 <strong><a href="http://www.2803media.fr/">2803 MEDIA</a></strong><br><hr>\n<p>Cet article <a rel="nofollow" href="http://www.vingthuitzerotrois.fr/wordpress/supprimer-articles-dune-categorie-blog-wordpress-16031/">Supprimer tous les articles d’une catégorie sur un blog WordPress</a> est apparu en premier sur <a rel="nofollow" href="http://www.vingthuitzerotrois.fr/">2803, le blog web 2.0, Internet et technologies</a>.</p>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-03-03T15:02:58+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"henri";s: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:3096:"<div>\n<p>Parfois on a besoin de faire un peu le ménage et ainsi supprimer tous les articles d’une catégorie qui ne correspondraient plus à la ligne éditoriale du blog. Si vous avez une dizaine d’articles vous pouvez toujours les supprimer à la main dans l’interface de gestion du blog mais en revanche si vous avez plus de 500 articles la chose se complexifie !</p>\n<p>Après quelques tests et recherches le plus simple est donc de les supprimer directement dans la base de données Mysql du blog grâce à cette requête Mysql :</p>\n<pre class="brush: php; title: ; notranslate">DELETE a,b,c,d\nFROM wp_posts a\nLEFT JOIN wp_term_relationships b ON ( a.ID = b.object_id )\nLEFT JOIN wp_postmeta c ON ( a.ID = c.post_id )\nLEFT JOIN wp_term_taxonomy d ON ( d.term_taxonomy_id = b.term_taxonomy_id )\nLEFT JOIN wp_terms e ON ( e.term_id = d.term_id )\nWHERE e.term_id =XXXX</pre>\n<p><img src="http://images.2803.fr/uploads/2016/03/mysql-900x142.png" alt="" width="900" height="142" class="aligncenter size-medium wp-image-16032" srcset="http://images.2803.fr/uploads/2016/03/mysql-900x142.png 900w, http://images.2803.fr/uploads/2016/03/mysql-768x121.png 768w, http://images.2803.fr/uploads/2016/03/mysql-1024x161.png 1024w, http://images.2803.fr/uploads/2016/03/mysql-300x47.png 300w, http://images.2803.fr/uploads/2016/03/mysql.png 1264w" sizes="(max-width: 900px) 100vw, 900px"></p>\n<p>XXXX est donc le numéro de la catégorie à supprimer! Si vous n’êtes pas certain faite cette requêtes mysql pour vérifier que ce sont les bons articles à supprimer :</p>\n<pre class="brush: php; title: ; notranslate">SELECT *\nFROM wp_posts a\nLEFT JOIN wp_term_relationships b ON ( a.ID = b.object_id )\nLEFT JOIN wp_postmeta c ON ( a.ID = c.post_id )\nLEFT JOIN wp_term_taxonomy d ON ( d.term_taxonomy_id = b.term_taxonomy_id )\nLEFT JOIN wp_terms e ON ( e.term_id = d.term_id )\nWHERE e.term_id =XXXX</pre>\n<hr>\n<strong>Vous venez de lire la version freemium de l\'article, la version premium (avec les liens) est ici : </strong><a href="http://www.vingthuitzerotrois.fr/wordpress/supprimer-articles-dune-categorie-blog-wordpress-16031/">Supprimer tous les articles d’une catégorie sur un blog WordPress</a><br>N\'hésitez pas à suivre le compte <a href="http://twitter.com/henrilabarre">Twitter</a> et la page <a href="http://www.facebook.com/vingt.huit.zero.trois">Facebook</a><br>\n\nCopyright © 2005-2016 <strong><a href="http://www.2803media.fr/">2803 MEDIA</a></strong><br><hr>\n<p>Cet article <a rel="nofollow" href="http://www.vingthuitzerotrois.fr/wordpress/supprimer-articles-dune-categorie-blog-wordpress-16031/">Supprimer tous les articles d’une catégorie sur un blog WordPress</a> est apparu en premier sur <a rel="nofollow" href="http://www.vingthuitzerotrois.fr/">2803, le blog web 2.0, Internet et technologies</a>.</p>\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/TFqe0rhSpqI" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:98:"http://www.vingthuitzerotrois.fr/wordpress/supprimer-articles-dune-categorie-blog-wordpress-16031/";s: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:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:49:"http://wpmarmite.com/compresser-images-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:74:"WP Marmite : Imagify : Faites maigrir votre site en compressant ses images";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/syGG-HRTkf8/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1244:"<div>\n<p><img width="640" height="220" src="http://wpmarmite.com/wp-content/uploads/2016/02/compresser-image-wordpress.jpg" class="attachment-full size-full wp-post-image" alt="Compresser les images dans WordPress" srcset="http://wpmarmite.com/wp-content/uploads/2016/02/compresser-image-wordpress-300x103.jpg 300w, http://wpmarmite.com/wp-content/uploads/2016/02/compresser-image-wordpress-600x206.jpg 600w, http://wpmarmite.com/wp-content/uploads/2016/02/compresser-image-wordpress-327x112.jpg 327w, http://wpmarmite.com/wp-content/uploads/2016/02/compresser-image-wordpress.jpg 640w" sizes="(max-width: 640px) 100vw, 640px"></p>\n<p>Savez-vous ce qui le plus long à charger sur une page ? Ce ne sont ni les fichiers CSS, ni les fichiers Javascript. Ce sont les images. On cherche souvent à optimiser...</p>\n<p><a rel="nofollow" href="http://wpmarmite.com/compresser-images-wordpress/">Imagify : Faites maigrir votre site en compressant ses images</a> est un article de <a rel="nofollow" href="http://wpmarmite.com/">WP Marmite</a>, le blog qui vous aide à tirer le meilleur de WordPress.<br><a href="http://wpmarmite.com/newsletter">Abonnez-vous à la newsletter</a> pour recevoir les suivants.</p>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-02-29T06:57:47+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Alex";s: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:1348:"<div>\n<p><img width="640" height="220" src="http://wpmarmite.com/wp-content/uploads/2016/02/compresser-image-wordpress.jpg" class="attachment-full size-full wp-post-image" alt="Compresser les images dans WordPress" srcset="http://wpmarmite.com/wp-content/uploads/2016/02/compresser-image-wordpress-300x103.jpg 300w, http://wpmarmite.com/wp-content/uploads/2016/02/compresser-image-wordpress-600x206.jpg 600w, http://wpmarmite.com/wp-content/uploads/2016/02/compresser-image-wordpress-327x112.jpg 327w, http://wpmarmite.com/wp-content/uploads/2016/02/compresser-image-wordpress.jpg 640w" sizes="(max-width: 640px) 100vw, 640px"></p>\n<p>Savez-vous ce qui le plus long à charger sur une page ? Ce ne sont ni les fichiers CSS, ni les fichiers Javascript. Ce sont les images. On cherche souvent à optimiser...</p>\n<p><a rel="nofollow" href="http://wpmarmite.com/compresser-images-wordpress/">Imagify : Faites maigrir votre site en compressant ses images</a> est un article de <a rel="nofollow" href="http://wpmarmite.com/">WP Marmite</a>, le blog qui vous aide à tirer le meilleur de WordPress.<br><a href="http://wpmarmite.com/newsletter">Abonnez-vous à la newsletter</a> pour recevoir les suivants.</p>\n</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/syGG-HRTkf8" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wpmarmite.com/compresser-images-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:19;a:6:{s:4:"data";s:59:"\n \n \n \n \n \n \n ";s:7:"attribs";a:1:{s:43:"http://www.w3.org/1999/02/22-rdf-syntax-ns#";a:1:{s:5:"about";s:75:"http://www.echodesplugins.li-an.fr/plugins/eyes-only-user-access-shortcode/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:24:"http://purl.org/rss/1.0/";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:68:"L'écho des plugins WordPress : Eyes Only User Access Shortcode";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/EzHGedx6NKg/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:80:"<div>Afficher ou cacher du contenu suivant le rôle de votre visiteur</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:2:{s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:25:"2016-02-25T21:18:38+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"Li-An";s: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:184:"<div>Afficher ou cacher du contenu suivant le rôle de votre visiteur</div><img src="http://feeds.feedburner.com/~r/wordpress-fr/RaoY/~4/EzHGedx6NKg" height="1" width="1" alt=""/>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:75:"http://www.echodesplugins.li-an.fr/plugins/eyes-only-user-access-shortcode/";s:7:"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:64;s:7:"headers";a:10:{s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:4:"etag";s:27:"TlWj7svJus+avaBfCP/MMS51WpU";s:13:"last-modified";s:29:"Sun, 27 Mar 2016 11:47:50 GMT";s:16:"content-encoding";s:4:"gzip";s:4:"date";s:29:"Sun, 27 Mar 2016 12:06:13 GMT";s:7:"expires";s:29:"Sun, 27 Mar 2016 12:06:13 GMT";s:13:"cache-control";s:18:"private, max-age=0";s:22:"x-content-type-options";s:7:"nosniff";s:16:"x-xss-protection";s:13:"1; mode=block";s:6:"server";s:3:"GSE";}s:5:"build";s:14:"20130911040210";}', 'no');
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(6755, '_transient_timeout_feed_mod_925a96b1918580ab3893979ca7a4a994', '1459123586', 'no'),
(6756, '_transient_feed_mod_925a96b1918580ab3893979ca7a4a994', '1459080386', 'no'),
(6757, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1459123588', 'no'),
(6758, '_transient_feed_b9388c83948825c1edaef0d856b7b109', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:117:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"WordPress Plugins » View: Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"https://wordpress.org/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:34:"WordPress Plugins » View: Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 27 Mar 2016 11:35: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:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:25:"http://bbpress.org/?v=1.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:30:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"TinyMCE Advanced";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"https://wordpress.org/plugins/tinymce-advanced/#post-2082";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Jun 2007 15:00:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2082@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:71:"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Andrew Ozz";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:"WP Super Cache";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"https://wordpress.org/plugins/wp-super-cache/#post-2572";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Nov 2007 11:40:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2572@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:73:"A very fast caching engine for WordPress that produces static html files.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Donncha O Caoimh";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:11:"WooCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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: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:11:"WP-PageNavi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/plugins/wp-pagenavi/#post-363";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 23:17:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"363@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:49:"Adds a more advanced paging navigation interface.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"Lester Chan";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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: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: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: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:9:"Yoast SEO";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"https://wordpress.org/plugins/wordpress-seo/#post-8321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jan 2009 20:34:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s: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:114:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast SEO plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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 14 million downloads.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Alex Rabe";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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:107:"Increase your traffic, view your stats, speed up your site, and protect yourself from hackers with Jetpack.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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: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:14:"Duplicate Post";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"https://wordpress.org/plugins/duplicate-post/#post-2646";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 05 Dec 2007 17:40:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2646@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:22:"Clone posts and pages.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Lopo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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:150:"The most downloaded plugin for WordPress (almost 30 million downloads). Use All in One SEO Pack to automatically optimize your site for Search Engines";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:11;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"Contact Form 7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"https://wordpress.org/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s: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: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:21:"Regenerate Thumbnails";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 23 Aug 2008 14:38:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"6743@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:76:"Allows you to regenerate your thumbnails after changing the thumbnail sizes.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:25:"Alex Mills (Viper007Bond)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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: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:11:"Hello Dolly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"https://wordpress.org/plugins/hello-dolly/#post-5790";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 29 May 2008 22:11:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"5790@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:150:"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:15;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"W3 Total Cache";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/plugins/w3-total-cache/#post-12073";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Jul 2009 18:46:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"12073@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:"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Frederick Townes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:16;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s: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:138:"The Wordfence WordPress security plugin provides free enterprise-class WordPress security, protecting your website from hacks and malware.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Wordfence";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:17;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s: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:18;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s: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:19;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:21:"Really Simple CAPTCHA";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"https://wordpress.org/plugins/really-simple-captcha/#post-9542";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Mar 2009 02:17:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"9542@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:138:"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:20;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s: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:21;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"Disable Comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wordpress.org/plugins/disable-comments/#post-26907";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 27 May 2011 04:42:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"26907@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:134:"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Samir Shah";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:22;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"WP Multibyte Patch";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 14 Jul 2011 12:22:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"28395@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:71:"Multibyte functionality enhancement for the WordPress Japanese package.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"plugin-master";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:23;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"Black Studio TinyMCE Widget";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Nov 2011 15:06:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"31973@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:39:"The visual editor widget for Wordpress.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Marco Chiesi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:24;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s: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:127:"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Alin Marcu";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:25;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:46:"iThemes Security (formerly Better WP Security)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/plugins/better-wp-security/#post-21738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 22 Oct 2010 22:06:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"21738@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:150:"Protect your WordPress site by hiding vital areas of your site, protecting access to important files, preventing brute-force login attempts, detecting";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"iThemes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:26;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"Clef Two-Factor Authentication";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://wordpress.org/plugins/wpclef/#post-47509";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 27 Dec 2012 01:25:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"47509@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:138:"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical user 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:9:"Dave Ross";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:27;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"UpdraftPlus Backup and Restoration";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"https://wordpress.org/plugins/updraftplus/#post-38058";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 21 May 2012 15:14:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"38058@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:"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"David Anderson";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:28;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:10:"Duplicator";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"https://wordpress.org/plugins/duplicator/#post-26607";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 16 May 2011 12:15:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"26607@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:88:"Duplicate, clone, backup, move and transfer an entire site from one location to another.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Cory Lamle";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:29;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:11:"Meta Slider";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/plugins/ml-slider/#post-49521";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 14 Feb 2013 16:56:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"49521@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:145:"Easy to use WordPress slider plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"Matcha Labs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}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:12:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sun, 27 Mar 2016 12:06:15 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:25:"strict-transport-security";s:11:"max-age=360";s:7:"expires";s:29:"Sun, 27 Mar 2016 12:10:00 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Sun, 27 Mar 2016 11:35:00 +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'),
(6759, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1459123589', 'no'),
(6760, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1459080389', 'no'),
(6761, '_transient_timeout_dash_bd94b8f41e74bae2f4dc72e9bd8379af', '1459123591', 'no'),
(6762, '_transient_dash_bd94b8f41e74bae2f4dc72e9bd8379af', '<div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/WordpressFrancophone/~3/jHn6JESKG5o/\'>WPFR 2.0</a> <span class="rss-date">21/12/2015</span><div class="rssSummary">Une nouvelle ère s’ouvre pour l’association WordPress Francophone. Un nouveau bureau est en place avec à sa tête : Émilie Lebrun (trésorière), Benoît Catherineau (secrétaire) et moi-même, Aurélien Denis (président). Cette nouvelle aventure sera marquée par la « professionnalisation » de la communauté à tous les niveaux : refonte du site communautaire, mise à jour du site […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/V2FXf1M_t2Y/\'>L'écho des plugins WordPress : Front End PM</a></li><li><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/GmEJAuhzt34/\'>WP Marmite : PAT022 – Emilie Lebrun et la professionnalisation de WordPress en France</a></li><li><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/wordpress-fr/RaoY/~3/2Tq_lLTnuf4/\'>WordPress Channel : Obtenir le rôle d’un utilisateur WordPress</a></li></ul></div><div class="rss-widget"><ul><li class=\'dashboard-news-plugin\'><span>Extensions populaires:</span> <a href=\'https://wordpress.org/plugins/updraftplus/\' class=\'dashboard-news-plugin-link\'>UpdraftPlus Backup and Restoration</a> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=updraftplus&_wpnonce=d657a36fba&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'UpdraftPlus Backup and Restoration\'>Installer</a>)</span></li></ul></div>', 'no'),
(6891, '_transient_is_multi_author', '0', 'yes'),
(6892, '_transient_llorix_one_lite_categories', '2', 'yes'),
(15104, 'jetpack_protect_blocked_attempts', '36', 'yes'),
(23297, 'auto_core_update_notified', 'a:4:{s:4:"type";s:6:"manual";s:5:"email";s:18:"[email protected]";s:7:"version";s:5:"4.5.3";s:9:"timestamp";i:1466633951;}', 'yes'),
(53601, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:3:{i:0;O:8:"stdClass":10:{s:8:"response";s:7:"upgrade";s:8:"download";s:65:"https://downloads.wordpress.org/release/fr_FR/wordpress-4.5.3.zip";s:6:"locale";s:5:"fr_FR";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:65:"https://downloads.wordpress.org/release/fr_FR/wordpress-4.5.3.zip";s:10:"no_content";b:0;s:11:"new_bundled";b:0;s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"4.5.3";s:7:"version";s:5:"4.5.3";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.4";s:15:"partial_version";s:0:"";}i:1;O:8:"stdClass":10:{s:8:"response";s:7:"upgrade";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-4.5.3.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-4.5.3.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-4.5.3-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-4.5.3-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"4.5.3";s:7:"version";s:5:"4.5.3";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.4";s:15:"partial_version";s:0:"";}i:2;O:8:"stdClass":12:{s:8:"response";s:10:"autoupdate";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-4.5.3.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-4.5.3.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-4.5.3-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-4.5.3-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"4.5.3";s:7:"version";s:5:"4.5.3";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.4";s:15:"partial_version";s:0:"";s:12:"notify_email";s:1:"1";s:9:"new_files";s:1:"1";}}s:12:"last_checked";i:1470867606;s:15:"version_checked";s:5:"4.4.4";s:12:"translations";a:0:{}}', 'yes'),
(60148, '_transient_timeout_jetpack_sitemap', '1470570716', 'no');
INSERT INTO `blog_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(60149, '_transient_jetpack_sitemap', '<?xml version="1.0" encoding="UTF-8"?>\n<?xml-stylesheet type="text/xsl" href="http://blog.matiboux.com/sitemap.xsl"?>\n<!-- generator="jetpack-3.9.7" -->\n<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"><url><loc>http://blog.matiboux.com/articles/mise-a-jour-manager-1-3/</loc><mobile:mobile/><lastmod>2016-03-27T19:32:58+00:00</lastmod><changefreq>monthly</changefreq></url><url><loc>http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/</loc><mobile:mobile/><lastmod>2016-03-26T22:11:57+00:00</lastmod><changefreq>monthly</changefreq></url><url><loc>http://blog.matiboux.com/articles/mise-a-jour-natrox-cloud-1-2/</loc><mobile:mobile/><lastmod>2016-03-26T22:08:39+00:00</lastmod><changefreq>monthly</changefreq></url><url><loc>http://blog.matiboux.com/articles/mise-a-jour-imgshot-4-4/</loc><mobile:mobile/><lastmod>2016-03-26T22:08:30+00:00</lastmod><changefreq>monthly</changefreq></url><url><loc>http://blog.matiboux.com/articles/mise-a-jour-keygen-3-4/</loc><mobile:mobile/><lastmod>2016-03-26T22:08:06+00:00</lastmod><changefreq>monthly</changefreq></url><url><loc>http://blog.matiboux.com/articles/mise-a-jour-keygen-3-3/</loc><mobile:mobile/><lastmod>2016-03-22T21:23:32+00:00</lastmod><changefreq>monthly</changefreq></url><url><loc>http://blog.matiboux.com/articles/mise-a-jour-imgshot-4-3/</loc><mobile:mobile/><lastmod>2016-03-21T19:25:41+00:00</lastmod><changefreq>monthly</changefreq></url><url><loc>http://blog.matiboux.com/articles/finalisation-natrox-cloud/</loc><mobile:mobile/><lastmod>2016-03-18T12:26:17+00:00</lastmod><changefreq>monthly</changefreq></url><url><loc>http://blog.matiboux.com/articles/hello-world/</loc><mobile:mobile/><lastmod>2016-03-13T09:50:04+00:00</lastmod><changefreq>monthly</changefreq></url><url><loc>http://blog.matiboux.com/about/</loc><mobile:mobile/><lastmod>2016-03-12T19:48:04+00:00</lastmod><changefreq>weekly</changefreq><priority>0.6</priority></url><url><loc>http://blog.matiboux.com/projects/natrox-cloud/</loc><mobile:mobile/><lastmod>2016-03-12T15:29:10+00:00</lastmod><changefreq>weekly</changefreq><priority>0.6</priority></url><url><loc>http://blog.matiboux.com/projects/oli-framework/</loc><mobile:mobile/><lastmod>2016-03-12T15:29:05+00:00</lastmod><changefreq>weekly</changefreq><priority>0.6</priority></url><url><loc>http://blog.matiboux.com/projects/manager/</loc><mobile:mobile/><lastmod>2016-03-12T15:07:41+00:00</lastmod><changefreq>weekly</changefreq><priority>0.6</priority></url><url><loc>http://blog.matiboux.com/projects/keygen/</loc><mobile:mobile/><lastmod>2016-03-12T15:07:24+00:00</lastmod><changefreq>weekly</changefreq><priority>0.6</priority></url><url><loc>http://blog.matiboux.com/projects/imgshot/</loc><mobile:mobile/><lastmod>2016-03-12T15:06:19+00:00</lastmod><changefreq>weekly</changefreq><priority>0.6</priority></url><url><loc>http://blog.matiboux.com/projects/</loc><mobile:mobile/><lastmod>2016-03-12T15:05:42+00:00</lastmod><changefreq>weekly</changefreq><priority>0.6</priority></url><url><loc>http://blog.matiboux.com/articles/</loc><mobile:mobile/><lastmod>2016-03-12T14:45:15+00:00</lastmod><changefreq>weekly</changefreq><priority>0.6</priority></url><url><loc>http://blog.matiboux.com</loc><changefreq>daily</changefreq><priority>1.0</priority><lastmod>2016-03-27T19:32:58+00:00</lastmod></url></urlset>\n', 'no'),
(61295, '_transient_timeout_jetpack_news_sitemap', '1470835791', 'no'),
(61296, '_transient_jetpack_news_sitemap', '<?xml version="1.0" encoding="UTF-8"?>\n<?xml-stylesheet type="text/xsl" href="http://blog.matiboux.com/news-sitemap.xsl"?>\n<!-- generator="jetpack-3.9.7" -->\n <!-- generator="jetpack" -->\n <urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\n xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"\n xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"\n xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"\n xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"\n >\n </urlset>\n ', 'no'),
(61849, '_site_transient_timeout_theme_roots', '1470869407', 'yes'),
(61850, '_site_transient_theme_roots', 'a:5:{s:8:"bizlight";s:7:"/themes";s:15:"llorix-one-lite";s:7:"/themes";s:13:"twentyfifteen";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";s:13:"twentysixteen";s:7:"/themes";}', 'yes'),
(61851, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1470867611;s:7:"checked";a:5:{s:8:"bizlight";s:5:"1.0.6";s:15:"llorix-one-lite";s:6:"0.1.11";s:13:"twentyfifteen";s:3:"1.4";s:14:"twentyfourteen";s:3:"1.6";s:13:"twentysixteen";s:3:"1.1";}s:8:"response";a:5:{s:8:"bizlight";a:4:{s:5:"theme";s:8:"bizlight";s:11:"new_version";s:5:"1.1.1";s:3:"url";s:38:"https://wordpress.org/themes/bizlight/";s:7:"package";s:56:"https://downloads.wordpress.org/theme/bizlight.1.1.1.zip";}s:15:"llorix-one-lite";a:4:{s:5:"theme";s:15:"llorix-one-lite";s:11:"new_version";s:6:"0.1.17";s:3:"url";s:45:"https://wordpress.org/themes/llorix-one-lite/";s:7:"package";s:64:"https://downloads.wordpress.org/theme/llorix-one-lite.0.1.17.zip";}s:13:"twentyfifteen";a:4:{s:5:"theme";s:13:"twentyfifteen";s:11:"new_version";s:3:"1.5";s:3:"url";s:43:"https://wordpress.org/themes/twentyfifteen/";s:7:"package";s:59:"https://downloads.wordpress.org/theme/twentyfifteen.1.5.zip";}s:14:"twentyfourteen";a:4:{s:5:"theme";s:14:"twentyfourteen";s:11:"new_version";s:3:"1.7";s:3:"url";s:44:"https://wordpress.org/themes/twentyfourteen/";s:7:"package";s:60:"https://downloads.wordpress.org/theme/twentyfourteen.1.7.zip";}s:13:"twentysixteen";a:4:{s:5:"theme";s:13:"twentysixteen";s:11:"new_version";s:3:"1.2";s:3:"url";s:43:"https://wordpress.org/themes/twentysixteen/";s:7:"package";s:59:"https://downloads.wordpress.org/theme/twentysixteen.1.2.zip";}}s:12:"translations";a:0:{}}', 'yes'),
(61852, '_site_transient_update_plugins', 'O:8:"stdClass":4:{s:12:"last_checked";i:1470867609;s:8:"response";a:5:{s:19:"akismet/akismet.php";O:8:"stdClass":8:{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:6:"3.1.11";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:57:"https://downloads.wordpress.org/plugin/akismet.3.1.11.zip";s:6:"tested";s:5:"4.5.3";s:13:"compatibility";b:0;}s:29:"pirate-forms/pirate-forms.php";O:8:"stdClass":8:{s:2:"id";s:5:"64539";s:4:"slug";s:12:"pirate-forms";s:6:"plugin";s:29:"pirate-forms/pirate-forms.php";s:11:"new_version";s:6:"1.0.17";s:3:"url";s:43:"https://wordpress.org/plugins/pirate-forms/";s:7:"package";s:55:"https://downloads.wordpress.org/plugin/pirate-forms.zip";s:6:"tested";s:5:"4.5.3";s:13:"compatibility";b:0;}s:23:"intergeo-maps/index.php";O:8:"stdClass":8:{s:2:"id";s:5:"45107";s:4:"slug";s:13:"intergeo-maps";s:6:"plugin";s:23:"intergeo-maps/index.php";s:11:"new_version";s:5:"1.0.6";s:3:"url";s:44:"https://wordpress.org/plugins/intergeo-maps/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/intergeo-maps.zip";s:6:"tested";s:5:"4.5.3";s:13:"compatibility";b:0;}s:19:"jetpack/jetpack.php";O:8:"stdClass":8:{s:2:"id";s:5:"20101";s:4:"slug";s:7:"jetpack";s:6:"plugin";s:19:"jetpack/jetpack.php";s:11:"new_version";s:5:"4.1.1";s:3:"url";s:38:"https://wordpress.org/plugins/jetpack/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/jetpack.4.1.1.zip";s:6:"tested";s:5:"4.5.3";s:13:"compatibility";b:0;}s:45:"llorix-one-companion/llorix-one-companion.php";O:8:"stdClass":8:{s:2:"id";s:5:"69251";s:4:"slug";s:20:"llorix-one-companion";s:6:"plugin";s:45:"llorix-one-companion/llorix-one-companion.php";s:11:"new_version";s:5:"1.0.6";s:3:"url";s:51:"https://wordpress.org/plugins/llorix-one-companion/";s:7:"package";s:63:"https://downloads.wordpress.org/plugin/llorix-one-companion.zip";s:6:"tested";s:3:"4.6";s:13:"compatibility";b:0;}}s:12:"translations";a:0:{}s:9:"no_update";a:1:{s:9:"hello.php";O:8:"stdClass":6:{s:2:"id";s:4:"3564";s:4:"slug";s:11:"hello-dolly";s:6:"plugin";s:9:"hello.php";s:11:"new_version";s:3:"1.6";s:3:"url";s:42:"https://wordpress.org/plugins/hello-dolly/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip";}}}', 'yes'),
(62002, '_transient_timeout_jetpack_https_test', '1470985993', 'no'),
(62003, '_transient_jetpack_https_test', '1', 'no'),
(62004, '_transient_timeout_jpp_li_8a5ac55f9220372fbd837c930b6ba7a7', '1470902586', 'no'),
(62005, '_transient_jpp_li_8a5ac55f9220372fbd837c930b6ba7a7', 'a:5:{s:6:"status";s:12:"blocked-hard";s:3:"msg";s:45:"This IP is currently blocked (46.165.251.157)";s:17:"seconds_remaining";i:2992;s:16:"blocked_attempts";s:2:"36";s:6:"expire";i:1470902586;}', 'no'),
(62045, '_site_transient_timeout_security_report_performed_recently', '1470909310', 'yes'),
(62046, '_site_transient_security_report_performed_recently', '1', 'yes');
-- --------------------------------------------------------
--
-- Structure de la table `blog_postmeta`
--
CREATE TABLE `blog_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Contenu de la table `blog_postmeta`
--
INSERT INTO `blog_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'template-frontpage.php'),
(2, 4, '_wpas_done_all', '1'),
(3, 4, '_menu_item_type', 'custom'),
(4, 4, '_menu_item_menu_item_parent', '0'),
(5, 4, '_menu_item_object_id', '4'),
(6, 4, '_menu_item_object', 'custom'),
(7, 4, '_menu_item_target', '_blank'),
(8, 4, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(9, 4, '_menu_item_xfn', ''),
(10, 4, '_menu_item_url', 'https://twitter.com/Matiboux'),
(11, 5, '_menu_item_type', 'post_type'),
(12, 5, '_menu_item_menu_item_parent', '0'),
(13, 5, '_menu_item_object_id', '2'),
(14, 5, '_menu_item_object', 'page'),
(15, 5, '_menu_item_target', ''),
(16, 5, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(17, 5, '_menu_item_xfn', ''),
(18, 5, '_menu_item_url', ''),
(19, 5, '_menu_item_orphaned', '1457781360'),
(27, 2, '_edit_lock', '1457795117:1'),
(28, 2, '_edit_last', '1'),
(39, 15, '_wp_attached_file', '2016/03/Logo-M.png'),
(40, 15, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:18:"2016/03/Logo-M.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Logo-M-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:18:"Logo-M-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:34:"llorix-one-lite-post-thumbnail-big";a:4:{s:4:"file";s:18:"Logo-M-400x340.png";s:5:"width";i:400;s:6:"height";i:340;s:9:"mime-type";s:9:"image/png";}s:37:"llorix-one-lite-post-thumbnail-mobile";a:4:{s:4:"file";s:18:"Logo-M-400x233.png";s:5:"width";i:400;s:6:"height";i:233;s:9:"mime-type";s:9:"image/png";}s:42:"llorix-one-lite-post-thumbnail-latest-news";a:4:{s:4:"file";s:18:"Logo-M-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(41, 16, '_wp_attached_file', '2016/03/furry.jpg'),
(42, 16, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:640;s:4:"file";s:17:"2016/03/furry.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"furry-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:17:"furry-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:34:"llorix-one-lite-post-thumbnail-big";a:4:{s:4:"file";s:17:"furry-640x340.jpg";s:5:"width";i:640;s:6:"height";i:340;s:9:"mime-type";s:10:"image/jpeg";}s:37:"llorix-one-lite-post-thumbnail-mobile";a:4:{s:4:"file";s:17:"furry-500x233.jpg";s:5:"width";i:500;s:6:"height";i:233;s:9:"mime-type";s:10:"image/jpeg";}s:42:"llorix-one-lite-post-thumbnail-latest-news";a:4:{s:4:"file";s:17:"furry-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(43, 17, '_edit_last', '1'),
(44, 17, '_edit_lock', '1457793870:1'),
(45, 17, '_wp_page_template', 'default'),
(46, 17, '_wpas_done_all', '1'),
(47, 20, '_edit_last', '1'),
(48, 20, '_edit_lock', '1457811944:1'),
(49, 20, '_wp_page_template', 'template-contact.php'),
(50, 20, '_wpas_done_all', '1'),
(51, 20, '_g_feedback_shortcode', '[contact-field label=\'Nom\' type=\'name\' required=\'1\'/][contact-field label=\'E-mail\' type=\'email\' required=\'1\'/][contact-field label=\'Site Web\' type=\'select\' required=\'1\' options=\'Général,Suggestion,Proposition,Demande\'/][contact-field label=\'Commentaire\' type=\'textarea\' required=\'1\'/]'),
(52, 27, '_edit_last', '1'),
(53, 27, '_edit_lock', '1457795003:1'),
(54, 27, '_wp_page_template', 'default'),
(55, 27, '_wpas_done_all', '1'),
(56, 29, '_edit_last', '1'),
(57, 29, '_edit_lock', '1457863390:1'),
(58, 29, '_wp_page_template', 'default'),
(59, 29, '_wpas_done_all', '1'),
(60, 31, '_edit_last', '1'),
(61, 31, '_edit_lock', '1457863397:1'),
(62, 31, '_wp_page_template', 'default'),
(63, 31, '_wpas_done_all', '1'),
(64, 33, '_edit_last', '1'),
(65, 33, '_edit_lock', '1457795129:1'),
(66, 33, '_wp_page_template', 'default'),
(67, 33, '_wpas_done_all', '1'),
(68, 37, '_menu_item_type', 'post_type'),
(69, 37, '_menu_item_menu_item_parent', '0'),
(70, 37, '_menu_item_object_id', '27'),
(71, 37, '_menu_item_object', 'page'),
(72, 37, '_menu_item_target', ''),
(73, 37, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(74, 37, '_menu_item_xfn', ''),
(75, 37, '_menu_item_url', ''),
(77, 38, '_menu_item_type', 'post_type'),
(78, 38, '_menu_item_menu_item_parent', '0'),
(79, 38, '_menu_item_object_id', '20'),
(80, 38, '_menu_item_object', 'page'),
(81, 38, '_menu_item_target', ''),
(82, 38, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(83, 38, '_menu_item_xfn', ''),
(84, 38, '_menu_item_url', ''),
(86, 39, '_menu_item_type', 'post_type'),
(87, 39, '_menu_item_menu_item_parent', '0'),
(88, 39, '_menu_item_object_id', '17'),
(89, 39, '_menu_item_object', 'page'),
(90, 39, '_menu_item_target', ''),
(91, 39, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(92, 39, '_menu_item_xfn', ''),
(93, 39, '_menu_item_url', ''),
(95, 40, '_menu_item_type', 'post_type'),
(96, 40, '_menu_item_menu_item_parent', '0'),
(97, 40, '_menu_item_object_id', '2'),
(98, 40, '_menu_item_object', 'page'),
(99, 40, '_menu_item_target', ''),
(100, 40, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(101, 40, '_menu_item_xfn', ''),
(102, 40, '_menu_item_url', ''),
(104, 41, '_menu_item_type', 'post_type'),
(105, 41, '_menu_item_menu_item_parent', '37'),
(106, 41, '_menu_item_object_id', '33'),
(107, 41, '_menu_item_object', 'page'),
(108, 41, '_menu_item_target', ''),
(109, 41, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(110, 41, '_menu_item_xfn', ''),
(111, 41, '_menu_item_url', ''),
(113, 42, '_menu_item_type', 'post_type'),
(114, 42, '_menu_item_menu_item_parent', '37'),
(115, 42, '_menu_item_object_id', '31'),
(116, 42, '_menu_item_object', 'page'),
(117, 42, '_menu_item_target', ''),
(118, 42, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(119, 42, '_menu_item_xfn', ''),
(120, 42, '_menu_item_url', ''),
(122, 43, '_menu_item_type', 'post_type'),
(123, 43, '_menu_item_menu_item_parent', '37'),
(124, 43, '_menu_item_object_id', '29'),
(125, 43, '_menu_item_object', 'page'),
(126, 43, '_menu_item_target', ''),
(127, 43, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(128, 43, '_menu_item_xfn', ''),
(129, 43, '_menu_item_url', ''),
(131, 40, '_wpas_done_all', '1'),
(132, 39, '_wpas_done_all', '1'),
(133, 37, '_wpas_done_all', '1'),
(134, 43, '_wpas_done_all', '1'),
(135, 42, '_wpas_done_all', '1'),
(136, 41, '_wpas_done_all', '1'),
(137, 38, '_wpas_done_all', '1'),
(138, 44, '_edit_last', '1'),
(139, 44, '_edit_lock', '1457863403:1'),
(140, 44, '_wp_page_template', 'default'),
(141, 44, '_wpas_done_all', '1'),
(142, 46, '_edit_last', '1'),
(143, 46, '_edit_lock', '1457796545:1'),
(144, 46, '_wp_page_template', 'default'),
(145, 46, '_wpas_done_all', '1'),
(146, 48, '_menu_item_type', 'post_type'),
(147, 48, '_menu_item_menu_item_parent', '37'),
(148, 48, '_menu_item_object_id', '46'),
(149, 48, '_menu_item_object', 'page'),
(150, 48, '_menu_item_target', ''),
(151, 48, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(152, 48, '_menu_item_xfn', ''),
(153, 48, '_menu_item_url', ''),
(155, 49, '_menu_item_type', 'post_type'),
(156, 49, '_menu_item_menu_item_parent', '37'),
(157, 49, '_menu_item_object_id', '44'),
(158, 49, '_menu_item_object', 'page'),
(159, 49, '_menu_item_target', ''),
(160, 49, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(161, 49, '_menu_item_xfn', ''),
(162, 49, '_menu_item_url', ''),
(164, 49, '_wpas_done_all', '1'),
(165, 48, '_wpas_done_all', '1'),
(213, 63, '_edit_last', '1'),
(214, 63, '_edit_lock', '1457862469:1'),
(215, 63, '_wpas_done_all', '1'),
(218, 63, '_wpas_mess', 'Hello World!'),
(219, 63, '_publicize_twitter_user', '@Matiboux'),
(220, 63, '_jetpack_related_posts_cache', 'a:1:{s:32:"8f6677c9d6b0f903e98ad32ec61f8deb";a:2:{s:7:"expires";i:1469459430;s:7:"payload";a:3:{i:0;a:1:{s:2:"id";i:101;}i:1;a:1:{s:2:"id";i:72;}i:2;a:1:{s:2:"id";i:93;}}}}'),
(223, 63, '_wpas_skip_9114014', '1'),
(224, 63, '_wpas_skip_9114005', '1'),
(225, 70, '_edit_last', '1'),
(226, 70, '_edit_lock', '1458667777:1'),
(227, 70, '_publicize_twitter_user', '@Matiboux'),
(228, 72, '_edit_last', '1'),
(229, 72, '_edit_lock', '1458303993:1'),
(230, 72, '_publicize_twitter_user', '@Matiboux'),
(231, 70, '_wpas_done_all', '1'),
(234, 72, '_wpas_done_all', '1'),
(237, 72, '_jetpack_related_posts_cache', 'a:1:{s:32:"8f6677c9d6b0f903e98ad32ec61f8deb";a:2:{s:7:"expires";i:1463582252;s:7:"payload";a:3:{i:0;a:1:{s:2:"id";i:70;}i:1;a:1:{s:2:"id";i:93;}i:2;a:1:{s:2:"id";i:101;}}}}'),
(238, 70, '_jetpack_related_posts_cache', 'a:1:{s:32:"8f6677c9d6b0f903e98ad32ec61f8deb";a:2:{s:7:"expires";i:1463567771;s:7:"payload";a:3:{i:0;a:1:{s:2:"id";i:93;}i:1;a:1:{s:2:"id";i:72;}i:2;a:1:{s:2:"id";i:115;}}}}'),
(241, 72, '_wpas_skip_9114005', '1'),
(244, 70, '_wpas_skip_9114005', '1'),
(247, 79, '_edit_last', '1'),
(248, 79, '_edit_lock', '1458681680:1'),
(249, 79, '_publicize_twitter_user', '@Matiboux'),
(250, 79, '_jetpack_related_posts_cache', 'a:1:{s:32:"8f6677c9d6b0f903e98ad32ec61f8deb";a:2:{s:7:"expires";i:1459465385;s:7:"payload";a:3:{i:0;a:1:{s:2:"id";i:95;}i:1;a:1:{s:2:"id";i:115;}i:2;a:1:{s:2:"id";i:98;}}}}'),
(251, 79, '_wpas_done_all', '1'),
(273, 79, '_wpas_skip_9114005', '1'),
(274, 93, '_edit_last', '1'),
(275, 93, '_edit_lock', '1459030192:1'),
(276, 93, '_publicize_twitter_user', '@Matiboux'),
(277, 95, '_edit_last', '1'),
(278, 95, '_edit_lock', '1459030058:1'),
(279, 95, '_publicize_twitter_user', '@Matiboux'),
(280, 98, '_edit_last', '1'),
(281, 98, '_edit_lock', '1459030060:1'),
(282, 98, '_publicize_twitter_user', '@Matiboux'),
(283, 101, '_edit_last', '1'),
(284, 101, '_edit_lock', '1459107071:1'),
(285, 101, '_publicize_twitter_user', '@Matiboux'),
(286, 93, '_wpas_done_all', '1'),
(289, 93, '_jetpack_related_posts_cache', 'a:1:{s:32:"8f6677c9d6b0f903e98ad32ec61f8deb";a:2:{s:7:"expires";i:1470688310;s:7:"payload";a:3:{i:0;a:1:{s:2:"id";i:70;}i:1;a:1:{s:2:"id";i:115;}i:2;a:1:{s:2:"id";i:98;}}}}'),
(292, 93, '_wpas_skip_9114005', '1'),
(293, 95, '_wpas_done_all', '1'),
(296, 98, '_wpas_done_all', '1'),
(299, 101, '_wpas_done_all', '1'),
(302, 95, '_jetpack_related_posts_cache', 'a:1:{s:32:"8f6677c9d6b0f903e98ad32ec61f8deb";a:2:{s:7:"expires";i:1459465368;s:7:"payload";a:3:{i:0;a:1:{s:2:"id";i:115;}i:1;a:1:{s:2:"id";i:98;}i:2;a:1:{s:2:"id";i:101;}}}}'),
(303, 98, '_jetpack_related_posts_cache', 'a:1:{s:32:"8f6677c9d6b0f903e98ad32ec61f8deb";a:2:{s:7:"expires";i:1465595813;s:7:"payload";a:3:{i:0;a:1:{s:2:"id";i:115;}i:1;a:1:{s:2:"id";i:95;}i:2;a:1:{s:2:"id";i:101;}}}}'),
(304, 101, '_jetpack_related_posts_cache', 'a:1:{s:32:"8f6677c9d6b0f903e98ad32ec61f8deb";a:2:{s:7:"expires";i:1470159846;s:7:"payload";a:3:{i:0;a:1:{s:2:"id";i:95;}i:1;a:1:{s:2:"id";i:98;}i:2;a:1:{s:2:"id";i:115;}}}}'),
(307, 101, '_wpas_skip_9114005', '1'),
(310, 98, '_wpas_skip_9114005', '1'),
(313, 95, '_wpas_skip_9114005', '1'),
(326, 115, '_edit_last', '1'),
(327, 115, '_edit_lock', '1459107050:1'),
(328, 115, '_wpas_done_all', '1'),
(331, 115, '_publicize_twitter_user', '@Matiboux'),
(332, 115, '_jetpack_related_posts_cache', 'a:1:{s:32:"8f6677c9d6b0f903e98ad32ec61f8deb";a:2:{s:7:"expires";i:1470065912;s:7:"payload";a:3:{i:0;a:1:{s:2:"id";i:101;}i:1;a:1:{s:2:"id";i:98;}i:2;a:1:{s:2:"id";i:95;}}}}');
-- --------------------------------------------------------
--
-- Structure de la table `blog_posts`
--
CREATE TABLE `blog_posts` (
`ID` bigint(20) UNSIGNED NOT NULL,
`post_author` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Contenu de la table `blog_posts`
--
INSERT INTO `blog_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
(2, 1, '2016-03-12 10:18:15', '2016-03-12 09:18:15', '', 'Accueil', '', 'publish', 'closed', 'closed', '', 'sample-page', '', '', '2016-03-12 16:05:17', '2016-03-12 15:05:17', '', 0, 'http://blog.matiboux.com/?page_id=2', 0, 'page', '', 0),
(4, 1, '2016-03-12 11:14:40', '2016-03-12 11:14:40', '', 'Twitter', '', 'publish', 'closed', 'closed', '', 'twitter', '', '', '2016-03-12 11:14:40', '2016-03-12 11:14:40', '', 0, 'http://blog.matiboux.com/2016/03/12/twitter/', 1, 'nav_menu_item', '', 0),
(5, 1, '2016-03-12 11:15:59', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-03-12 11:15:59', '0000-00-00 00:00:00', '', 0, 'http://blog.matiboux.com/?p=5', 1, 'nav_menu_item', '', 0),
(11, 1, '2016-03-12 12:32:11', '2016-03-12 11:32:11', 'It is home.', 'Accueil', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2016-03-12 12:32:11', '2016-03-12 11:32:11', '', 2, 'http://blog.matiboux.com/2-revision-v1/', 0, 'revision', '', 0),
(15, 1, '2016-03-12 12:53:37', '2016-03-12 11:53:37', '', 'Avatar Flat Matiboux', '', 'inherit', 'open', 'closed', '', 'logo-m', '', '', '2016-03-12 15:41:06', '2016-03-12 14:41:06', '', 0, 'http://blog.matiboux.com/wp-content/uploads/2016/03/Logo-M.png', 0, 'attachment', 'image/png', 0),
(16, 1, '2016-03-12 15:40:51', '2016-03-12 14:40:51', '', 'Avatar Furry Matiboux', '', 'inherit', 'open', 'closed', '', 'furry', '', '', '2016-03-12 15:41:03', '2016-03-12 14:41:03', '', 0, 'http://blog.matiboux.com/wp-content/uploads/2016/03/furry.jpg', 0, 'attachment', 'image/jpeg', 0),
(17, 1, '2016-03-12 15:45:15', '2016-03-12 14:45:15', '', 'Articles', '', 'publish', 'closed', 'closed', '', 'articles', '', '', '2016-03-12 15:45:15', '2016-03-12 14:45:15', '', 0, 'http://blog.matiboux.com/?page_id=17', 0, 'page', '', 0),
(18, 1, '2016-03-12 15:45:15', '2016-03-12 14:45:15', '', 'Articles', '', 'inherit', 'closed', 'closed', '', '17-revision-v1', '', '', '2016-03-12 15:45:15', '2016-03-12 14:45:15', '', 17, 'http://blog.matiboux.com/17-revision-v1/', 0, 'revision', '', 0),
(19, 1, '2016-03-12 15:47:13', '2016-03-12 14:47:13', '', 'Accueil', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2016-03-12 15:47:13', '2016-03-12 14:47:13', '', 2, 'http://blog.matiboux.com/2-revision-v1/', 0, 'revision', '', 0),
(20, 1, '2016-03-12 15:47:25', '2016-03-12 14:47:25', '<h2>A propos de moi.</h2>\r\nJe m\'appelle Mathieu, alias Matiboux ou Mati, et je suis un jeune développeur web.\r\nJe gribouille des dessins sur du papier et je joue aux jeux vidéos sur mon temps libre.\r\n\r\nJoueur PC depuis longtemps, j\'ai commencé à développer en langage C. Rapidement, je suis passé aux langages du web car ceux-ci me permettait une approche plus rapide et intuitive ; mes création prenait vie plus rapidement et de manière plus propre.\r\n\r\nAujourd\'hui, en plus de mes bases en C, je sais développer en HTML/CSS ainsi qu\'en PHP et en JavaScript.\r\nMis à part mon blog (sur Wordpress), la plupart de mes projets fonctionnent, ensemble, sur mon propre framework PHP baptisé Oli.\r\n<h2>Me contacter.</h2>\r\nDirectement sur les réseaux sociaux, ou à l\'aide du formulaire de contact ci-dessous :\r\n\r\n[contact-form][contact-field label=\'Nom\' type=\'name\' required=\'1\'/][contact-field label=\'E-mail\' type=\'email\' required=\'1\'/][contact-field label=\'Site Web\' type=\'select\' required=\'1\' options=\'Général,Suggestion,Proposition,Demande\'/][contact-field label=\'Commentaire\' type=\'textarea\' required=\'1\'/][/contact-form] ', 'A propos', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2016-03-12 20:48:04', '2016-03-12 19:48:04', '', 0, 'http://blog.matiboux.com/?page_id=20', 0, 'page', '', 0),
(21, 1, '2016-03-12 15:47:25', '2016-03-12 14:47:25', '', 'Contact', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2016-03-12 15:47:25', '2016-03-12 14:47:25', '', 20, 'http://blog.matiboux.com/20-revision-v1/', 0, 'revision', '', 0),
(22, 1, '2016-03-12 16:13:18', '2016-03-12 15:13:18', '<h2>A propos de moi.</h2>\nJe m\'appelle Mathieu, alias Matiboux ou Mati, et je suis un jeune développeur web.\nJe gribouille des dessins sur du papier et je joue aux jeux vidéos sur mon temps libre.\n\nJoueur PC depuis longtemps, j\'ai commencé à développer en langage C. Rapidement, je suis passé aux langages du web car ceux-ci me permettait une approche plus rapide et intuitive ; mes création prenait vie plus rapidement et de manière plus propre.\n\nAujourd\'hui, en plus de mes bases en C, je sais développer en HTML/CSS ainsi qu\'en PHP et en JavaScript.\nMis à part mon blog (sur Wordpress), la plupart de mes projets fonctionnent, ensemble, sur mon propre framework PHP baptisé Oli.\n<h2>Me contacter.</h2>\nDirectement sur les réseaux sociaux, ou à l\'aide du formulaire de contact ci-dessous :\n\n[pirate_forms]', 'A propos', '', 'inherit', 'closed', 'closed', '', '20-autosave-v1', '', '', '2016-03-12 16:13:18', '2016-03-12 15:13:18', '', 20, 'http://blog.matiboux.com/20-autosave-v1/', 0, 'revision', '', 0),
(23, 1, '2016-03-12 15:51:29', '2016-03-12 14:51:29', '<h2>A propos de moi.</h2>\r\nJe suis Matiboux, un jeune développeur web.\r\n<h2>Me contacter.</h2>\r\nDirectement sur les réseaux sociaux, ou à l\'aide du formulaire de contact ci-dessous :\r\n\r\n[contact-form][contact-field label=\'Nom\' type=\'name\' required=\'1\'/][contact-field label=\'Email\' type=\'email\' required=\'1\'/][contact-field label=\'Sujet\' type=\'checkbox-multiple\' options=\'Demande générale,Suggestion,Proposition\'/][contact-field label=\'Message\' type=\'textarea\' required=\'1\'/][/contact-form]', 'A propos', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2016-03-12 15:51:29', '2016-03-12 14:51:29', '', 20, 'http://blog.matiboux.com/20-revision-v1/', 0, 'revision', '', 0),
(24, 1, '2016-03-12 15:52:13', '2016-03-12 14:52:13', '<h2>A propos de moi.</h2>\r\nJe suis Matiboux, un jeune développeur web.\r\n<h2>Me contacter.</h2>\r\nDirectement sur les réseaux sociaux, ou à l\'aide du formulaire de contact ci-dessous :\r\n\r\n[contact-form][contact-field label=\'Nom\' type=\'name\' required=\'1\'/][contact-field label=\'Email\' type=\'email\' required=\'1\'/][contact-field label=\'Sujet\' type=\'radio\' options=\'Demande générale,Suggestion,Proposition\'/][contact-field label=\'Message\' type=\'textarea\' required=\'1\'/][/contact-form]', 'A propos', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2016-03-12 15:52:13', '2016-03-12 14:52:13', '', 20, 'http://blog.matiboux.com/20-revision-v1/', 0, 'revision', '', 0),
(25, 1, '2016-03-12 15:53:22', '2016-03-12 14:53:22', '<h2>A propos de moi.</h2>\r\nJe suis Matiboux, un jeune développeur web.\r\n<h2>Me contacter.</h2>\r\nDirectement sur les réseaux sociaux, ou à l\'aide du formulaire de contact ci-dessous :\r\n\r\n[contact-form][contact-field label=\'Nom\' type=\'name\' required=\'1\'/][contact-field label=\'Email\' type=\'email\' required=\'1\'/][contact-field label=\'Sujet\' type=\'select\' required=\'1\' options=\'Demande générale,Suggestion / Idée,Proposition / Offre\'/][contact-field label=\'Message\' type=\'textarea\' required=\'1\'/][/contact-form]', 'A propos', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2016-03-12 15:53:22', '2016-03-12 14:53:22', '', 20, 'http://blog.matiboux.com/20-revision-v1/', 0, 'revision', '', 0),
(26, 1, '2016-03-12 16:04:32', '2016-03-12 15:04:32', '<h2>A propos de moi.</h2>\r\nJe m\'appelle Mathieu, alias Matiboux ou Mati, et je suis un jeune développeur web.\r\nJe gribouille des dessins sur du papier et je joue aux jeux vidéos sur mon temps libre.\r\n\r\nJoueur PC depuis longtemps, j\'ai commencé à développer en langage C. Rapidement, je suis passé aux langages du web car ceux-ci me permettait une approche plus rapide et intuitive ; mes création prenait vie plus rapidement et de manière plus propre.\r\n\r\nAujourd\'hui, en plus de mes bases en C, je sais développer en HTML/CSS ainsi qu\'en PHP et en JavaScript.\r\nMis à part mon blog (sur Wordpress), la plupart de mes projets fonctionnent, ensemble, sur mon propre framework PHP baptisé Oli.\r\n<h2>Me contacter.</h2>\r\nDirectement sur les réseaux sociaux, ou à l\'aide du formulaire de contact ci-dessous :\r\n\r\n[contact-form][contact-field label=\'Nom\' type=\'name\' required=\'1\'/][contact-field label=\'Email\' type=\'email\' required=\'1\'/][contact-field label=\'Sujet\' type=\'select\' required=\'1\' options=\'Demande générale,Suggestion / Idée,Proposition / Offre\'/][contact-field label=\'Message\' type=\'textarea\' required=\'1\'/][/contact-form]', 'A propos', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2016-03-12 16:04:32', '2016-03-12 15:04:32', '', 20, 'http://blog.matiboux.com/20-revision-v1/', 0, 'revision', '', 0),
(27, 1, '2016-03-12 16:05:42', '2016-03-12 15:05:42', '', 'Projects', '', 'publish', 'closed', 'closed', '', 'projects', '', '', '2016-03-12 16:05:42', '2016-03-12 15:05:42', '', 0, 'http://blog.matiboux.com/?page_id=27', 0, 'page', '', 0),
(28, 1, '2016-03-12 16:05:42', '2016-03-12 15:05:42', '', 'Projects', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2016-03-12 16:05:42', '2016-03-12 15:05:42', '', 27, 'http://blog.matiboux.com/27-revision-v1/', 0, 'revision', '', 0),
(29, 1, '2016-03-12 16:06:19', '2016-03-12 15:06:19', '', 'ImgShot', '', 'publish', 'closed', 'closed', '', 'imgshot', '', '', '2016-03-12 16:06:19', '2016-03-12 15:06:19', '', 27, 'http://blog.matiboux.com/?page_id=29', 0, 'page', '', 0),
(30, 1, '2016-03-12 16:06:19', '2016-03-12 15:06:19', '', 'ImgShot', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2016-03-12 16:06:19', '2016-03-12 15:06:19', '', 29, 'http://blog.matiboux.com/29-revision-v1/', 0, 'revision', '', 0),
(31, 1, '2016-03-12 16:07:24', '2016-03-12 15:07:24', '', 'KeyGen', '', 'publish', 'closed', 'closed', '', 'keygen', '', '', '2016-03-12 16:07:24', '2016-03-12 15:07:24', '', 27, 'http://blog.matiboux.com/?page_id=31', 0, 'page', '', 0),
(32, 1, '2016-03-12 16:07:24', '2016-03-12 15:07:24', '', 'KeyGen', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2016-03-12 16:07:24', '2016-03-12 15:07:24', '', 31, 'http://blog.matiboux.com/31-revision-v1/', 0, 'revision', '', 0),
(33, 1, '2016-03-12 16:07:41', '2016-03-12 15:07:41', '', 'Manager', '', 'publish', 'closed', 'closed', '', 'manager', '', '', '2016-03-12 16:07:41', '2016-03-12 15:07:41', '', 27, 'http://blog.matiboux.com/?page_id=33', 0, 'page', '', 0),
(34, 1, '2016-03-12 16:07:41', '2016-03-12 15:07:41', '', 'Manager', '', 'inherit', 'closed', 'closed', '', '33-revision-v1', '', '', '2016-03-12 16:07:41', '2016-03-12 15:07:41', '', 33, 'http://blog.matiboux.com/33-revision-v1/', 0, 'revision', '', 0),
(36, 1, '2016-03-12 16:14:57', '2016-03-12 15:14:57', '<h2>A propos de moi.</h2>\r\nJe m\'appelle Mathieu, alias Matiboux ou Mati, et je suis un jeune développeur web.\r\nJe gribouille des dessins sur du papier et je joue aux jeux vidéos sur mon temps libre.\r\n\r\nJoueur PC depuis longtemps, j\'ai commencé à développer en langage C. Rapidement, je suis passé aux langages du web car ceux-ci me permettait une approche plus rapide et intuitive ; mes création prenait vie plus rapidement et de manière plus propre.\r\n\r\nAujourd\'hui, en plus de mes bases en C, je sais développer en HTML/CSS ainsi qu\'en PHP et en JavaScript.\r\nMis à part mon blog (sur Wordpress), la plupart de mes projets fonctionnent, ensemble, sur mon propre framework PHP baptisé Oli.\r\n<h2>Me contacter.</h2>\r\nDirectement sur les réseaux sociaux, ou à l\'aide du formulaire de contact ci-dessous :\r\n\r\n[pirate_forms]', 'A propos', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2016-03-12 16:14:57', '2016-03-12 15:14:57', '', 20, 'http://blog.matiboux.com/20-revision-v1/', 0, 'revision', '', 0),
(37, 1, '2016-03-12 16:26:36', '2016-03-12 15:26:36', ' ', '', '', 'publish', 'closed', 'closed', '', '37', '', '', '2016-03-12 16:28:34', '2016-03-12 15:28:34', '', 0, 'http://blog.matiboux.com/?p=37', 3, 'nav_menu_item', '', 0),
(38, 1, '2016-03-12 16:26:38', '2016-03-12 15:26:38', ' ', '', '', 'publish', 'closed', 'closed', '', '38', '', '', '2016-03-12 16:28:35', '2016-03-12 15:28:35', '', 0, 'http://blog.matiboux.com/?p=38', 9, 'nav_menu_item', '', 0),
(39, 1, '2016-03-12 16:26:35', '2016-03-12 15:26:35', ' ', '', '', 'publish', 'closed', 'closed', '', '39', '', '', '2016-03-12 16:28:34', '2016-03-12 15:28:34', '', 0, 'http://blog.matiboux.com/?p=39', 2, 'nav_menu_item', '', 0),
(40, 1, '2016-03-12 16:26:35', '2016-03-12 15:26:35', ' ', '', '', 'publish', 'closed', 'closed', '', '40', '', '', '2016-03-12 16:28:34', '2016-03-12 15:28:34', '', 0, 'http://blog.matiboux.com/?p=40', 1, 'nav_menu_item', '', 0),
(41, 1, '2016-03-12 16:26:38', '2016-03-12 15:26:38', ' ', '', '', 'publish', 'closed', 'closed', '', '41', '', '', '2016-03-12 16:28:35', '2016-03-12 15:28:35', '', 27, 'http://blog.matiboux.com/?p=41', 8, 'nav_menu_item', '', 0),
(42, 1, '2016-03-12 16:26:37', '2016-03-12 15:26:37', ' ', '', '', 'publish', 'closed', 'closed', '', '42', '', '', '2016-03-12 16:28:34', '2016-03-12 15:28:34', '', 27, 'http://blog.matiboux.com/?p=42', 5, 'nav_menu_item', '', 0),
(43, 1, '2016-03-12 16:26:37', '2016-03-12 15:26:37', ' ', '', '', 'publish', 'closed', 'closed', '', '43', '', '', '2016-03-12 16:28:34', '2016-03-12 15:28:34', '', 27, 'http://blog.matiboux.com/?p=43', 4, 'nav_menu_item', '', 0),
(44, 1, '2016-03-12 16:26:55', '2016-03-12 15:26:55', '', 'Natrox Cloud', '', 'publish', 'closed', 'closed', '', 'natrox-cloud', '', '', '2016-03-12 16:29:10', '2016-03-12 15:29:10', '', 27, 'http://blog.matiboux.com/?page_id=44', 0, 'page', '', 0),
(45, 1, '2016-03-12 16:26:55', '2016-03-12 15:26:55', '', 'Natrox Cloud', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2016-03-12 16:26:55', '2016-03-12 15:26:55', '', 44, 'http://blog.matiboux.com/44-revision-v1/', 0, 'revision', '', 0),
(46, 1, '2016-03-12 16:27:26', '2016-03-12 15:27:26', '', 'Oli PHP Framework', '', 'publish', 'closed', 'closed', '', 'oli-framework', '', '', '2016-03-12 16:29:05', '2016-03-12 15:29:05', '', 27, 'http://blog.matiboux.com/?page_id=46', 0, 'page', '', 0),
(47, 1, '2016-03-12 16:27:26', '2016-03-12 15:27:26', '', 'Oli PHP Framework', '', 'inherit', 'closed', 'closed', '', '46-revision-v1', '', '', '2016-03-12 16:27:26', '2016-03-12 15:27:26', '', 46, 'http://blog.matiboux.com/46-revision-v1/', 0, 'revision', '', 0),
(48, 1, '2016-03-12 16:28:35', '2016-03-12 15:28:35', '', 'Oli Framework', '', 'publish', 'closed', 'closed', '', 'oli-framework', '', '', '2016-03-12 16:28:35', '2016-03-12 15:28:35', '', 0, 'http://blog.matiboux.com/?p=48', 7, 'nav_menu_item', '', 0),
(49, 1, '2016-03-12 16:28:34', '2016-03-12 15:28:34', ' ', '', '', 'publish', 'closed', 'closed', '', '49', '', '', '2016-03-12 16:28:34', '2016-03-12 15:28:34', '', 0, 'http://blog.matiboux.com/?p=49', 6, 'nav_menu_item', '', 0),
(53, 1, '2016-03-12 20:47:07', '2016-03-12 19:47:07', '<h2>A propos de moi.</h2>\r\nJe m\'appelle Mathieu, alias Matiboux ou Mati, et je suis un jeune développeur web.\r\nJe gribouille des dessins sur du papier et je joue aux jeux vidéos sur mon temps libre.\r\n\r\nJoueur PC depuis longtemps, j\'ai commencé à développer en langage C. Rapidement, je suis passé aux langages du web car ceux-ci me permettait une approche plus rapide et intuitive ; mes création prenait vie plus rapidement et de manière plus propre.\r\n\r\nAujourd\'hui, en plus de mes bases en C, je sais développer en HTML/CSS ainsi qu\'en PHP et en JavaScript.\r\nMis à part mon blog (sur Wordpress), la plupart de mes projets fonctionnent, ensemble, sur mon propre framework PHP baptisé Oli.\r\n<h2>Me contacter.</h2>\r\nDirectement sur les réseaux sociaux, ou à l\'aide du formulaire de contact ci-dessous :\r\n\r\n[contact-form][contact-field label=\'Nom\' type=\'name\' required=\'1\'/][contact-field label=\'E-mail\' type=\'email\' required=\'1\'/][contact-field label=\'Sujet\' type=\'radio\' required=\'1\' options=\'Général,Suggestion,Proposition,Demande\'/][contact-field label=\'Commentaire\' type=\'textarea\' required=\'1\'/][/contact-form] ', 'A propos', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2016-03-12 20:47:07', '2016-03-12 19:47:07', '', 20, 'http://blog.matiboux.com/20-revision-v1/', 0, 'revision', '', 0),
(54, 1, '2016-03-12 20:47:24', '2016-03-12 19:47:24', '<h2>A propos de moi.</h2>\r\nJe m\'appelle Mathieu, alias Matiboux ou Mati, et je suis un jeune développeur web.\r\nJe gribouille des dessins sur du papier et je joue aux jeux vidéos sur mon temps libre.\r\n\r\nJoueur PC depuis longtemps, j\'ai commencé à développer en langage C. Rapidement, je suis passé aux langages du web car ceux-ci me permettait une approche plus rapide et intuitive ; mes création prenait vie plus rapidement et de manière plus propre.\r\n\r\nAujourd\'hui, en plus de mes bases en C, je sais développer en HTML/CSS ainsi qu\'en PHP et en JavaScript.\r\nMis à part mon blog (sur Wordpress), la plupart de mes projets fonctionnent, ensemble, sur mon propre framework PHP baptisé Oli.\r\n<h2>Me contacter.</h2>\r\nDirectement sur les réseaux sociaux, ou à l\'aide du formulaire de contact ci-dessous :\r\n\r\n[pirate_forms]', 'A propos', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2016-03-12 20:47:24', '2016-03-12 19:47:24', '', 20, 'http://blog.matiboux.com/20-revision-v1/', 0, 'revision', '', 0),
(55, 1, '2016-03-12 20:48:04', '2016-03-12 19:48:04', '<h2>A propos de moi.</h2>\r\nJe m\'appelle Mathieu, alias Matiboux ou Mati, et je suis un jeune développeur web.\r\nJe gribouille des dessins sur du papier et je joue aux jeux vidéos sur mon temps libre.\r\n\r\nJoueur PC depuis longtemps, j\'ai commencé à développer en langage C. Rapidement, je suis passé aux langages du web car ceux-ci me permettait une approche plus rapide et intuitive ; mes création prenait vie plus rapidement et de manière plus propre.\r\n\r\nAujourd\'hui, en plus de mes bases en C, je sais développer en HTML/CSS ainsi qu\'en PHP et en JavaScript.\r\nMis à part mon blog (sur Wordpress), la plupart de mes projets fonctionnent, ensemble, sur mon propre framework PHP baptisé Oli.\r\n<h2>Me contacter.</h2>\r\nDirectement sur les réseaux sociaux, ou à l\'aide du formulaire de contact ci-dessous :\r\n\r\n[contact-form][contact-field label=\'Nom\' type=\'name\' required=\'1\'/][contact-field label=\'E-mail\' type=\'email\' required=\'1\'/][contact-field label=\'Site Web\' type=\'select\' required=\'1\' options=\'Général,Suggestion,Proposition,Demande\'/][contact-field label=\'Commentaire\' type=\'textarea\' required=\'1\'/][/contact-form] ', 'A propos', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2016-03-12 20:48:04', '2016-03-12 19:48:04', '', 20, 'http://blog.matiboux.com/20-revision-v1/', 0, 'revision', '', 0),
(63, 1, '2016-03-13 00:35:00', '2016-03-12 23:35:00', '<h2>Création de mon blog WordPress !</h2>\r\nYay, mon blog est enfin là !\r\n<strong>C’est ici que sera diffusé, maintenant, la plupart des informations à propos de moi et de mes projets.</strong><!--more-->\r\n\r\nAinsi, les mises à jours des projets et les annonces seront affichées ici-même, sous forme d\'articles tel que celui-ci.\r\nJe précise que <em>ce blog ne se limite pas à l\'actualité de mes projets sur le web</em> mais aussi à propos de mes loisirs (tel que le dessin) ou encore à propos de mes créations en tant que vidéaste puisque je compte éventuellement reprendre du service sur YouTube.\r\n<blockquote><strong>Restez à l\'écoute, du nouveau se prépare !</strong></blockquote>', 'Hello World!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2016-03-13 10:50:04', '2016-03-13 09:50:04', '', 0, 'http://blog.matiboux.com/?p=63', 0, 'post', '', 0),
(64, 1, '2016-03-13 00:35:00', '2016-03-12 23:35:00', '<h2>Création de mon blog WordPress !</h2>\r\nYay, mon blog est enfin là !\r\n<strong>C’est ici que sera diffusé, maintenant, la plupart des informations à propos de moi et de mes projets.</strong>\r\n\r\nAinsi, les mises à jours des projets et les annonces seront affichées ici-même, sous forme d\'articles tel que celui-ci.\r\nJe précise que <em>ce blog ne se limite pas à l\'actualité de mes projets sur le web</em> mais aussi à propos de mes loisirs (tel que le dessin) ou encore à propos de mes créations en tant que vidéaste puisque je compte éventuellement reprendre du service sur YouTube.\r\n<blockquote><strong>Restez à l\'écoute, du nouveau se prépare !</strong></blockquote>', 'Hello World!', '', 'inherit', 'closed', 'closed', '', '63-revision-v1', '', '', '2016-03-13 00:35:00', '2016-03-12 23:35:00', '', 63, 'http://blog.matiboux.com/articles/63-revision-v1/', 0, 'revision', '', 0),
(65, 1, '2016-03-13 10:50:04', '2016-03-13 09:50:04', '<h2>Création de mon blog WordPress !</h2>\r\nYay, mon blog est enfin là !\r\n<strong>C’est ici que sera diffusé, maintenant, la plupart des informations à propos de moi et de mes projets.</strong><!--more-->\r\n\r\nAinsi, les mises à jours des projets et les annonces seront affichées ici-même, sous forme d\'articles tel que celui-ci.\r\nJe précise que <em>ce blog ne se limite pas à l\'actualité de mes projets sur le web</em> mais aussi à propos de mes loisirs (tel que le dessin) ou encore à propos de mes créations en tant que vidéaste puisque je compte éventuellement reprendre du service sur YouTube.\r\n<blockquote><strong>Restez à l\'écoute, du nouveau se prépare !</strong></blockquote>', 'Hello World!', '', 'inherit', 'closed', 'closed', '', '63-revision-v1', '', '', '2016-03-13 10:50:04', '2016-03-13 09:50:04', '', 63, 'http://blog.matiboux.com/articles/63-revision-v1/', 0, 'revision', '', 0),
(70, 1, '2016-03-17 22:50:51', '2016-03-17 21:50:51', 'La version 4.3 de mon projet ImgShot est sortie !\r\nPas mal d\'optimisations et de révisions de code, peu d\'ajouts.<!--more-->\r\n\r\nCelle-ci apporte :\r\n<ul>\r\n <li>La résolution d\'un bug empêchant la mise en ligne de vos image.</li>\r\n <li>L\'optimisation du script PHP de mise en ligne des images et de mise à jour des paramètres.</li>\r\n <li>L\'amélioration du script PHP de mise à jour des informations de vos fichier.</li>\r\n <li>La révision de la mise en page et la rédaction de quasiment toutes les pages, notamment celle de prévisualisation d\'une image et celle de gestion de vos images.</li>\r\n</ul>\r\nJe vais énoncer <em>les principaux changement</em> relatif à ce dernier point :\r\n<ul>\r\n <li>Les catégories des formulaires ont été réécrites (par exemple "Nominatif" modifié en "Confidentialité").</li>\r\n <li>L\'affichage de messages de mise en garde sur la page de mise en ligne aux utilisateurs.</li>\r\n <li>Sur la page de gestion de vos fichiers, la liste affiche maintenant les plus récents en premier.</li>\r\n <li>Sur cette même page, la présentation du tableau a été révisée de façon à rendre la lecture intuitive et à empêcher l\'affichage des éléments du tableau sur plusieurs lignes.</li>\r\n</ul>', 'Mise à jour ImgShot 4.3', '', 'publish', 'open', 'open', '', 'mise-a-jour-imgshot-4-3', '', 'http://blog.matiboux.com/articles/mise-a-jour-keygen-3-3/\nhttp://blog.matiboux.com/articles/mise-a-jour-keygen-3-3/embed/', '2016-03-21 20:25:41', '2016-03-21 19:25:41', '', 0, 'http://blog.matiboux.com/?p=70', 0, 'post', '', 0),
(71, 1, '2016-03-17 22:08:54', '2016-03-17 21:08:54', 'La version 4.3 de mon projet ImgShot est sortie !\r\n\r\nCelle-ci apporte :\r\n<ul>\r\n <li>La résolution d\'un bug empêchant la mise en ligne de vos image.</li>\r\n <li>L\'optimisation du scripts PHP de mise en ligne des images et de mise à jour des paramètres.</li>\r\n <li>L\'amélioration du script PHP de mise à jour des informations de vos fichier.</li>\r\n <li>La révision de la mise en page et la rédaction de quasiment toutes les pages, notamment celle de prévisualisation d\'une image et celle de gestion de vos images.</li>\r\n</ul>\r\nJe vais énoncer <em>les principaux changement</em> relatif à ce dernier point :\r\n<ul>\r\n <li>Les catégories des formulaires ont été réécrites (par exemple "Nominatif" modifié en "Confidentialité").</li>\r\n <li>L\'affichage de messages de mise en garde sur la page de mise en ligne aux utilisateurs.</li>\r\n <li>Sur la page de gestion de vos fichiers, la liste affiche maintenant les plus récent en premier.</li>\r\n <li>Sur cette même page, la présentation du tableau a été révisée de façon à rendre la lecture intuitive et à empêcher l\'affichage des éléments du tableau sur plusieurs ligne.</li>\r\n</ul>\r\n<h2></h2>', 'Mise à jour ImgShot 4.3', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2016-03-17 22:08:54', '2016-03-17 21:08:54', '', 70, 'http://blog.matiboux.com/articles/70-revision-v1/', 0, 'revision', '', 0),
(72, 1, '2016-03-17 22:50:58', '2016-03-17 21:50:58', 'Vous connaissez ImgShot, mon projet de mise en ligne d\'images ?\r\n\r\nDécouvrez aujourd\'hui mon nouveau projet : Natrox Cloud.\r\nSon développement avait déjà été rapidement mentionné sur mon compte Twitter et le site était disponible de manière libre.\r\n<strong>Maintenant, le service est - presque - prêt,</strong> mais j\'y reviendrai plus tard.<!--more-->\r\n\r\nLe site se présente d\'une manière très similaire à ImgShot et utilise la même interface utilisateur que la plupart de mes projets. Il fonctionne avec Oli, mon framework PHP, ainsi qu\'accompagné de l\'extension Upload Manager (également utilisée par ImgShot).\r\n\r\nSi vous mettez en ligne des fichiers textes, les images et les pages web (HTML), ils pourront bénéficier de l\'affichage de leur contenu sur la page de prévisualisation.\r\n\r\nNatrox Cloud se différenciera de ImgShot par 3 points :\r\n<ul>\r\n <li><strong>N\'importe quel type de fichier</strong> peut être mis en ligne à l\'aide de ce service.</li>\r\n <li><strong>Seul les utilisateurs connectés</strong> auront accès au service de mise en ligne. Seul la page "A propos" et celle de prévisualisation autorise l\'accès aux utilisateurs déconnectés.</li>\r\n <li>Par la suite, les fichiers de chaque utilisateur seront placés dans le dossier attribué à son propriétaire.</li>\r\n</ul>\r\nVoilà, c\'est tout, mais des mises à jour sont déjà prévues.\r\nNotamment pour un point, celui qui m\'a fait dire que <strong>le service était presque prêt</strong> : l\'ajout du téléchargement des documents. Cette fonctionnalité devrait arriver vite, je travaille dessus.\r\n\r\nEn attendant, mettez en ligne des documents prévisualisables, ou profitez des autres projets.', 'Finalisation du projet Natrox Cloud', '', 'publish', 'open', 'open', '', 'finalisation-natrox-cloud', '', '', '2016-03-18 13:26:17', '2016-03-18 12:26:17', '', 0, 'http://blog.matiboux.com/?p=72', 0, 'post', '', 0),
(73, 1, '2016-03-17 22:50:18', '2016-03-17 21:50:18', 'Vous connaissez ImgShot, mon projet de mise en ligne d\'images ?\r\n\r\nDécouvrez aujourd\'hui mon nouveau projet : Natrox Cloud.\r\nSon développement avait déjà été rapidement mentionné sur mon compte Twitter et le site était disponible de manière libre.\r\n<strong>Maintenant, le service est - presque - prêt,</strong> mais j\'y reviendrai plus tard.\r\n\r\nLe site se présente d\'une manière très similaire à ImgShot et utilise la même interface utilisateur que la plupart de mes projets. Il fonctionne avec Oli, mon framework PHP, ainsi qu\'accompagné de l\'extension Upload Manager (également utilisée par ImgShot).\r\n\r\nSi vous mettez en ligne des fichiers textes, les images et les pages web (HTML), il pourront bénéficier de l\'affichage de leur contenu sur la page de prévisualisation.\r\n\r\nNatrox Cloud se différenciera de ImgShot par 3 points :\r\n<ul>\r\n <li><strong>N\'importe quel type de fichier</strong> peut être mis en ligne à l\'aide de ce service.</li>\r\n <li><strong>Seul les utilisateurs connectés</strong> auront accès au service de mise en ligne. Seul la page "A propos" et celle de prévisualisation autorise l\'accès aux utilisateurs déconnectés.</li>\r\n <li>Par la suite, les fichiers de chaque utilisateur seront placés dans le dossier attribué à son propriétaire.</li>\r\n</ul>\r\nVoilà, c\'est tout, mais des mises à jour sont déjà prévues.\r\nNotamment pour un point, celui qui m\'a fait dire que <strong>le service était presque prêt</strong> : l\'ajout du téléchargement des documents. Cette fonctionnalité devrait arriver vite, je travaille dessus.\r\n\r\nEn attendant, mettez en ligne des document prévisualisable, ou profitez des autres projets.', 'Finalisation du projet Natrox Cloud', '', 'inherit', 'closed', 'closed', '', '72-revision-v1', '', '', '2016-03-17 22:50:18', '2016-03-17 21:50:18', '', 72, 'http://blog.matiboux.com/articles/72-revision-v1/', 0, 'revision', '', 0),
(74, 1, '2016-03-18 13:25:49', '2016-03-18 12:25:49', 'Vous connaissez ImgShot, mon projet de mise en ligne d\'images ?\n\nDécouvrez aujourd\'hui mon nouveau projet : Natrox Cloud.\nSon développement avait déjà été rapidement mentionné sur mon compte Twitter et le site était disponible de manière libre.\n<strong>Maintenant, le service est - presque - prêt,</strong> mais j\'y reviendrai plus tard.<!--more-->\n\nLe site se présente d\'une manière très similaire à ImgShot et utilise la même interface utilisateur que la plupart de mes projets. Il fonctionne avec Oli, mon framework PHP, ainsi qu\'accompagné de l\'extension Upload Manager (également utilisée par ImgShot).\n\nSi vous mettez en ligne des fichiers textes, les images et les pages web (HTML), ils pourront bénéficier de l\'affichage de leur contenu sur la page de prévisualisation.\n\nNatrox Cloud se différenciera de ImgShot par 3 points :\n<ul>\n <li><strong>N\'importe quel type de fichier</strong> peut être mis en ligne à l\'aide de ce service.</li>\n <li><strong>Seul les utilisateurs connectés</strong> auront accès au service de mise en ligne. Seul la page "A propos" et celle de prévisualisation autorise l\'accès aux utilisateurs déconnectés.</li>\n <li>Par la suite, les fichiers de chaque utilisateur seront placés dans le dossier attribué à son propriétaire.</li>\n</ul>\nVoilà, c\'est tout, mais des mises à jour sont déjà prévues.\nNotamment pour un point, celui qui m\'a fait dire que <strong>le service était presque prêt</strong> : l\'ajout du téléchargement des documents. Cette fonctionnalité devrait arriver vite, je travaille dessus.\n\nEn attendant, mettez en ligne des documents prévisualisable, ou profitez des autres projets.', 'Finalisation du projet Natrox Cloud', '', 'inherit', 'closed', 'closed', '', '72-autosave-v1', '', '', '2016-03-18 13:25:49', '2016-03-18 12:25:49', '', 72, 'http://blog.matiboux.com/articles/72-autosave-v1/', 0, 'revision', '', 0),
(75, 1, '2016-03-18 13:26:17', '2016-03-18 12:26:17', 'Vous connaissez ImgShot, mon projet de mise en ligne d\'images ?\r\n\r\nDécouvrez aujourd\'hui mon nouveau projet : Natrox Cloud.\r\nSon développement avait déjà été rapidement mentionné sur mon compte Twitter et le site était disponible de manière libre.\r\n<strong>Maintenant, le service est - presque - prêt,</strong> mais j\'y reviendrai plus tard.<!--more-->\r\n\r\nLe site se présente d\'une manière très similaire à ImgShot et utilise la même interface utilisateur que la plupart de mes projets. Il fonctionne avec Oli, mon framework PHP, ainsi qu\'accompagné de l\'extension Upload Manager (également utilisée par ImgShot).\r\n\r\nSi vous mettez en ligne des fichiers textes, les images et les pages web (HTML), ils pourront bénéficier de l\'affichage de leur contenu sur la page de prévisualisation.\r\n\r\nNatrox Cloud se différenciera de ImgShot par 3 points :\r\n<ul>\r\n <li><strong>N\'importe quel type de fichier</strong> peut être mis en ligne à l\'aide de ce service.</li>\r\n <li><strong>Seul les utilisateurs connectés</strong> auront accès au service de mise en ligne. Seul la page "A propos" et celle de prévisualisation autorise l\'accès aux utilisateurs déconnectés.</li>\r\n <li>Par la suite, les fichiers de chaque utilisateur seront placés dans le dossier attribué à son propriétaire.</li>\r\n</ul>\r\nVoilà, c\'est tout, mais des mises à jour sont déjà prévues.\r\nNotamment pour un point, celui qui m\'a fait dire que <strong>le service était presque prêt</strong> : l\'ajout du téléchargement des documents. Cette fonctionnalité devrait arriver vite, je travaille dessus.\r\n\r\nEn attendant, mettez en ligne des documents prévisualisables, ou profitez des autres projets.', 'Finalisation du projet Natrox Cloud', '', 'inherit', 'closed', 'closed', '', '72-revision-v1', '', '', '2016-03-18 13:26:17', '2016-03-18 12:26:17', '', 72, 'http://blog.matiboux.com/articles/72-revision-v1/', 0, 'revision', '', 0),
(76, 1, '2016-03-21 20:25:36', '2016-03-21 19:25:36', 'La version 4.3 de mon projet ImgShot est sortie !\nPas mal d\'optimisations et de révisions de code, peu d\'ajouts.<!--more-->\n\nCelle-ci apporte :\n<ul>\n <li>La résolution d\'un bug empêchant la mise en ligne de vos image.</li>\n <li>L\'optimisation du script PHP de mise en ligne des images et de mise à jour des paramètres.</li>\n <li>L\'amélioration du script PHP de mise à jour des informations de vos fichier.</li>\n <li>La révision de la mise en page et la rédaction de quasiment toutes les pages, notamment celle de prévisualisation d\'une image et celle de gestion de vos images.</li>\n</ul>\nJe vais énoncer <em>les principaux changement</em> relatif à ce dernier point :\n<ul>\n <li>Les catégories des formulaires ont été réécrites (par exemple "Nominatif" modifié en "Confidentialité").</li>\n <li>L\'affichage de messages de mise en garde sur la page de mise en ligne aux utilisateurs.</li>\n <li>Sur la page de gestion de vos fichiers, la liste affiche maintenant les plus récents en premier.</li>\n <li>Sur cette même page, la présentation du tableau a été révisée de façon à rendre la lecture intuitive et à empêcher l\'affichage des éléments du tableau sur plusieurs lignes.</li>\n</ul>', 'Mise à jour ImgShot 4.3', '', 'inherit', 'closed', 'closed', '', '70-autosave-v1', '', '', '2016-03-21 20:25:36', '2016-03-21 19:25:36', '', 70, 'http://blog.matiboux.com/articles/70-autosave-v1/', 0, 'revision', '', 0),
(77, 1, '2016-03-18 13:28:49', '2016-03-18 12:28:49', 'La version 4.3 de mon projet ImgShot est sortie !\r\nPas mal d\'optimisations et de révisions de code, peu d\'ajouts.<!--more-->\r\n\r\nCelle-ci apporte :\r\n<ul>\r\n <li>La résolution d\'un bug empêchant la mise en ligne de vos image.</li>\r\n <li>L\'optimisation du script PHP de mise en ligne des images et de mise à jour des paramètres.</li>\r\n <li>L\'amélioration du script PHP de mise à jour des informations de vos fichier.</li>\r\n <li>La révision de la mise en page et la rédaction de quasiment toutes les pages, notamment celle de prévisualisation d\'une image et celle de gestion de vos images.</li>\r\n</ul>\r\nJe vais énoncer <em>les principaux changement</em> relatif à ce dernier point :\r\n<ul>\r\n <li>Les catégories des formulaires ont été réécrites (par exemple "Nominatif" modifié en "Confidentialité").</li>\r\n <li>L\'affichage de messages de mise en garde sur la page de mise en ligne aux utilisateurs.</li>\r\n <li>Sur la page de gestion de vos fichiers, la liste affiche maintenant les plus récents en premier.</li>\r\n <li>Sur cette même page, la présentation du tableau a été révisée de façon à rendre la lecture intuitive et à empêcher l\'affichage des éléments du tableau sur plusieurs lignes.</li>\r\n</ul>\r\n<h2></h2>', 'Mise à jour ImgShot 4.3', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2016-03-18 13:28:49', '2016-03-18 12:28:49', '', 70, 'http://blog.matiboux.com/articles/70-revision-v1/', 0, 'revision', '', 0),
(79, 1, '2016-03-20 20:25:46', '2016-03-20 19:25:46', 'La version 3.3 de mon projet KeyGen est sortie !\r\nAu programme, la sécurité de vos keygens et de votre historique !<span id="more-70"></span>\r\n\r\nL\'arrivée de l\'historique m\'a fait me poser quelques questions quant à la sécurité des keygens : au début, ces derniers étaient stockés directement dans mes bases de données.\r\nPour répondre à ce problème, je suis allé chercher des librairies PHP de cryptage AES.<!--more-->\r\n\r\n<strong>Génération d\'un keygen :</strong>\r\nSi l\'historique est activé, le mot de passe de l\'utilisateur sera demandé dans le formulaire. Le champ reste tout de même facultatif : ne pas le remplir empêchera la sauvegarde du keygen dans l\'historique.\r\nLe mot de passe de l\'utilisateur sera ensuite utilisé pour crypter le keygen avant enregistrement.\r\n\r\n<strong>Affichage de l\'historique :</strong>\r\nSi l\'historique n\'est pas vide, le mot de passe de l\'utilisateur lui sera demandé afin de pouvoir décrypter ses keygens sauvegardés.\r\nPour éviter d\'avoir à lui demander à nouveau son mot de passe après qu\'il ait rechargé la page, le mot de passe sera crypté et conservé pendant 24 minutes dans un cookie, sur le navigateur de l\'utilisateur et non sur nos serveurs.\r\nDe ce fait, à chaque rafraîchissement de page, le mot de passe conservé sera récupéré, décrypté et utilisé pour, à nouveau, décrypter les éléments de l\'historique.\r\n\r\n<em>Votre mot de passe n\'est jamais conservé en clair.</em>\r\n\r\n<strong>Edit </strong>(22/03/2016)\r\nVous avez maintenant la possibilité de lier à votre keygen un label personnalisé depuis la page d\'affichage de l\'historique.\r\nCe label, crypté de la même façon que "son keygen", vous permettra de savoir à quoi celui-ci correspond ; il est facile de se perdre après en avoir enregistré plusieurs.', 'Mise à jour KeyGen 3.3', '', 'publish', 'open', 'open', '', 'mise-a-jour-keygen-3-3', '', '', '2016-03-22 22:23:32', '2016-03-22 21:23:32', '', 0, 'http://blog.matiboux.com/?p=79', 0, 'post', '', 0),
(80, 1, '2016-03-20 18:22:48', '2016-03-20 17:22:48', 'La version 4.3 de mon projet ImgShot est sortie !\r\nPas mal d’optimisations et de révisions de code, peu d’ajouts.<span id="more-70"></span>\r\n\r\nCelle-ci apporte :\r\n<ul>\r\n <li>La résolution d’un bug empêchant la mise en ligne de vos image.</li>\r\n <li>L’optimisation du script PHP de mise en ligne des images et de mise à jour des paramètres.</li>\r\n <li>L’amélioration du script PHP de mise à jour des informations de vos fichier.</li>\r\n <li>La révision de la mise en page et la rédaction de quasiment toutes les pages, notamment celle de prévisualisation d’une image et celle de gestion de vos images.</li>\r\n</ul>\r\nJe vais énoncer <em>les principaux changement</em> relatif à ce dernier point :\r\n<ul>\r\n <li>Les catégories des formulaires ont été réécrites (par exemple « Nominatif » modifié en « Confidentialité »).</li>\r\n <li>L’affichage de messages de mise en garde sur la page de mise en ligne aux utilisateurs.</li>\r\n <li>Sur la page de gestion de vos fichiers, la liste affiche maintenant les plus récents en premier.</li>\r\n <li>Sur cette même page, la présentation du tableau a été révisée de façon à rendre la lecture intuitive et à empêcher l’affichage des éléments du tableau sur plusieurs lignes.</li>\r\n</ul>', 'Mise à jour KeyGen 3.3', '', 'inherit', 'closed', 'closed', '', '79-revision-v1', '', '', '2016-03-20 18:22:48', '2016-03-20 17:22:48', '', 79, 'http://blog.matiboux.com/articles/79-revision-v1/', 0, 'revision', '', 0),
(81, 1, '2016-03-20 19:21:52', '2016-03-20 18:21:52', 'La version 3.3 de mon projet KeyGen est sortie !\r\nAu programme, la sécurité de vos keygens et de votre historique !<span id="more-70"></span>\r\n\r\nL\'arrivée de l\'historique m\'a fait me poser quelques questions tant qu\'à la sécurité des keygens : au début, ces derniers était stockés directement dans mes bases de données.\r\nPour répondre à ce problème, je suis allé cherché des librairies PHP de cryptage en AES.<!--more-->\r\n\r\n<strong>Génération d\'un keygen :</strong>\r\nSi l\'historique est activé, le mot de passe de l\'utilisateur sera demandé dans le formulaire. Le champ reste tout de même facultatif : ne pas le remplir empêchera la sauvegarde du keygen dans l\'historique.\r\nLe mot de passe de l\'utilisateur sera ensuite utilisé pour crypter le keygen avant enregistrement.\r\n\r\n<strong>Affichage de l\'historique :</strong>\r\nSi l\'historique n\'est pas vide, le mot de passe de l\'utilisateur lui sera demandé afin de pouvoir décrypter ses keygens sauvegardés.\r\nPour éviter d\'avoir à lui demander à nouveau son mot de passe après qu\'il ait rechargé la page, le mot de passe sera crypté et conservé pendant 24 minutes dans un cookie, sur le navigateur de l\'utilisateur et non sur nos serveurs.\r\nDe ce fait, à chaque rechargement, le mot de passe conservé sera récupéré, décrypté et utilisé pour décrypter à nouveau les éléments de l\'historique.\r\n\r\n<em>Votre mot de passe n\'est jamais conservé en clair sur nos serveurs.</em>', 'Mise à jour KeyGen 3.3', '', 'inherit', 'closed', 'closed', '', '79-revision-v1', '', '', '2016-03-20 19:21:52', '2016-03-20 18:21:52', '', 79, 'http://blog.matiboux.com/articles/79-revision-v1/', 0, 'revision', '', 0),
(82, 1, '2016-03-20 20:25:46', '2016-03-20 19:25:46', 'La version 3.3 de mon projet KeyGen est sortie !\r\nAu programme, la sécurité de vos keygens et de votre historique !<span id="more-70"></span>\r\n\r\nL\'arrivée de l\'historique m\'a fait me poser quelques questions quant à la sécurité des keygens : au début, ces derniers étaient stockés directement dans mes bases de données.\r\nPour répondre à ce problème, je suis allé chercher des librairies PHP de cryptage AES.<!--more-->\r\n\r\n<strong>Génération d\'un keygen :</strong>\r\nSi l\'historique est activé, le mot de passe de l\'utilisateur sera demandé dans le formulaire. Le champ reste tout de même facultatif : ne pas le remplir empêchera la sauvegarde du keygen dans l\'historique.\r\nLe mot de passe de l\'utilisateur sera ensuite utilisé pour crypter le keygen avant enregistrement.\r\n\r\n<strong>Affichage de l\'historique :</strong>\r\nSi l\'historique n\'est pas vide, le mot de passe de l\'utilisateur lui sera demandé afin de pouvoir décrypter ses keygens sauvegardés.\r\nPour éviter d\'avoir à lui demander à nouveau son mot de passe après qu\'il ait rechargé la page, le mot de passe sera crypté et conservé pendant 24 minutes dans un cookie, sur le navigateur de l\'utilisateur et non sur nos serveurs.\r\nDe ce fait, à chaque rechargement, le mot de passe conservé sera récupéré, décrypté et utilisé pour, à nouveau, décrypter les éléments de l\'historique.\r\n\r\n<em>Votre mot de passe n\'est jamais conservé en clair.</em>', 'Mise à jour KeyGen 3.3', '', 'inherit', 'closed', 'closed', '', '79-revision-v1', '', '', '2016-03-20 20:25:46', '2016-03-20 19:25:46', '', 79, 'http://blog.matiboux.com/articles/79-revision-v1/', 0, 'revision', '', 0),
(87, 1, '2016-03-21 20:21:18', '2016-03-21 19:21:18', 'La version 4.3 de mon projet ImgShot est sortie !\r\nPas mal d\'optimisations et de révisions de code, peu d\'ajouts.<!--more-->\r\n\r\nCelle-ci apporte :\r\n<ul>\r\n <li>La résolution d\'un bug empêchant la mise en ligne de vos image.</li>\r\n <li>L\'optimisation du script PHP de mise en ligne des images et de mise à jour des paramètres.</li>\r\n <li>L\'amélioration du script PHP de mise à jour des informations de vos fichier.</li>\r\n <li>La révision de la mise en page et la rédaction de quasiment toutes les pages, notamment celle de prévisualisation d\'une image et celle de gestion de vos images.</li>\r\n</ul>\r\nJe vais énoncer <em>les principaux changement</em> relatif à ce dernier point :\r\n<ul>\r\n <li>Les catégories des formulaires ont été réécrites (par exemple "Nominatif" modifié en "Confidentialité").</li>\r\n <li>L\'affichage de messages de mise en garde sur la page de mise en ligne aux utilisateurs.</li>\r\n <li>Sur la page de gestion de vos fichiers, la liste affiche maintenant les plus récents en premier.</li>\r\n <li>Sur cette même page, la présentation du tableau a été révisée de façon à rendre la lecture intuitive et à empêcher l\'affichage des éléments du tableau sur plusieurs lignes.</li>\r\n</ul>\r\n<span id="sample-permalink"><a href="http://blog.matiboux.com/articles/mise-a-jour-keygen-3-3/">http://blog.matiboux.com/articles/<span id="editable-post-name">mise-a-jour-keygen-3-3</span>/</a></span> \r\n<h2></h2>', 'Mise à jour ImgShot 4.3', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2016-03-21 20:21:18', '2016-03-21 19:21:18', '', 70, 'http://blog.matiboux.com/articles/70-revision-v1/', 0, 'revision', '', 0),
(88, 1, '2016-03-21 20:23:49', '2016-03-21 19:23:49', 'La version 4.3 de mon projet ImgShot est sortie !\r\nPas mal d\'optimisations et de révisions de code, peu d\'ajouts.<!--more-->\r\n\r\nCelle-ci apporte :\r\n<ul>\r\n <li>La résolution d\'un bug empêchant la mise en ligne de vos image.</li>\r\n <li>L\'optimisation du script PHP de mise en ligne des images et de mise à jour des paramètres.</li>\r\n <li>L\'amélioration du script PHP de mise à jour des informations de vos fichier.</li>\r\n <li>La révision de la mise en page et la rédaction de quasiment toutes les pages, notamment celle de prévisualisation d\'une image et celle de gestion de vos images.</li>\r\n</ul>\r\nJe vais énoncer <em>les principaux changement</em> relatif à ce dernier point :\r\n<ul>\r\n <li>Les catégories des formulaires ont été réécrites (par exemple "Nominatif" modifié en "Confidentialité").</li>\r\n <li>L\'affichage de messages de mise en garde sur la page de mise en ligne aux utilisateurs.</li>\r\n <li>Sur la page de gestion de vos fichiers, la liste affiche maintenant les plus récents en premier.</li>\r\n <li>Sur cette même page, la présentation du tableau a été révisée de façon à rendre la lecture intuitive et à empêcher l\'affichage des éléments du tableau sur plusieurs lignes.</li>\r\n</ul>\r\n\r\n<blockquote class="wp-embedded-content"><a href="http://blog.matiboux.com/articles/mise-a-jour-keygen-3-3/">KeyGen 3.3</a></blockquote>\r\n<script type=\'text/javascript\'>\r\n<!--//--><![CDATA[//><!--\r\n !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll(\'iframe[data-secret="\'+d.secret+\'"]\'),k=b.querySelectorAll(\'blockquote[data-secret="\'+d.secret+\'"]\');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document);\r\n//--><!]]>\r\n</script><iframe sandbox="allow-scripts" security="restricted" src="http://blog.matiboux.com/articles/mise-a-jour-keygen-3-3/embed/" width="600" height="400" title="KeyGen 3.3" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe>', 'Mise à jour ImgShot 4.3', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2016-03-21 20:23:49', '2016-03-21 19:23:49', '', 70, 'http://blog.matiboux.com/articles/70-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `blog_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
(89, 1, '2016-03-21 20:25:41', '2016-03-21 19:25:41', 'La version 4.3 de mon projet ImgShot est sortie !\r\nPas mal d\'optimisations et de révisions de code, peu d\'ajouts.<!--more-->\r\n\r\nCelle-ci apporte :\r\n<ul>\r\n <li>La résolution d\'un bug empêchant la mise en ligne de vos image.</li>\r\n <li>L\'optimisation du script PHP de mise en ligne des images et de mise à jour des paramètres.</li>\r\n <li>L\'amélioration du script PHP de mise à jour des informations de vos fichier.</li>\r\n <li>La révision de la mise en page et la rédaction de quasiment toutes les pages, notamment celle de prévisualisation d\'une image et celle de gestion de vos images.</li>\r\n</ul>\r\nJe vais énoncer <em>les principaux changement</em> relatif à ce dernier point :\r\n<ul>\r\n <li>Les catégories des formulaires ont été réécrites (par exemple "Nominatif" modifié en "Confidentialité").</li>\r\n <li>L\'affichage de messages de mise en garde sur la page de mise en ligne aux utilisateurs.</li>\r\n <li>Sur la page de gestion de vos fichiers, la liste affiche maintenant les plus récents en premier.</li>\r\n <li>Sur cette même page, la présentation du tableau a été révisée de façon à rendre la lecture intuitive et à empêcher l\'affichage des éléments du tableau sur plusieurs lignes.</li>\r\n</ul>', 'Mise à jour ImgShot 4.3', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2016-03-21 20:25:41', '2016-03-21 19:25:41', '', 70, 'http://blog.matiboux.com/articles/70-revision-v1/', 0, 'revision', '', 0),
(90, 1, '2016-03-22 22:22:45', '2016-03-22 21:22:45', 'La version 3.3 de mon projet KeyGen est sortie !\nAu programme, la sécurité de vos keygens et de votre historique !<span id="more-70"></span>\n\nL\'arrivée de l\'historique m\'a fait me poser quelques questions quant à la sécurité des keygens : au début, ces derniers étaient stockés directement dans mes bases de données.\nPour répondre à ce problème, je suis allé chercher des librairies PHP de cryptage AES.<!--more-->\n\n<strong>Génération d\'un keygen :</strong>\nSi l\'historique est activé, le mot de passe de l\'utilisateur sera demandé dans le formulaire. Le champ reste tout de même facultatif : ne pas le remplir empêchera la sauvegarde du keygen dans l\'historique.\nLe mot de passe de l\'utilisateur sera ensuite utilisé pour crypter le keygen avant enregistrement.\n\n<strong>Affichage de l\'historique :</strong>\nSi l\'historique n\'est pas vide, le mot de passe de l\'utilisateur lui sera demandé afin de pouvoir décrypter ses keygens sauvegardés.\nPour éviter d\'avoir à lui demander à nouveau son mot de passe après qu\'il ait rechargé la page, le mot de passe sera crypté et conservé pendant 24 minutes dans un cookie, sur le navigateur de l\'utilisateur et non sur nos serveurs.\nDe ce fait, à chaque rechargement, le mot de passe conservé sera récupéré, décrypté et utilisé pour, à nouveau, décrypter les éléments de l\'historique.\n\n<em>Votre mot de passe n\'est jamais conservé en clair.</em>\n\n<strong>Edit </strong>(22/03/2016)\nVous avez maintenant la possibilité de lier à votre keygen un label personnalisé depuis la page d\'affichage de l\'historique.\nCe label, crypté de la même façon que "son keygen", vous permettra de savoir à quoi celui-ci correspond ; il est facile de se perdre après en avoir enregistré plusieurs.', 'Mise à jour KeyGen 3.3', '', 'inherit', 'closed', 'closed', '', '79-autosave-v1', '', '', '2016-03-22 22:22:45', '2016-03-22 21:22:45', '', 79, 'http://blog.matiboux.com/articles/79-autosave-v1/', 0, 'revision', '', 0),
(91, 1, '2016-03-22 22:23:32', '2016-03-22 21:23:32', 'La version 3.3 de mon projet KeyGen est sortie !\r\nAu programme, la sécurité de vos keygens et de votre historique !<span id="more-70"></span>\r\n\r\nL\'arrivée de l\'historique m\'a fait me poser quelques questions quant à la sécurité des keygens : au début, ces derniers étaient stockés directement dans mes bases de données.\r\nPour répondre à ce problème, je suis allé chercher des librairies PHP de cryptage AES.<!--more-->\r\n\r\n<strong>Génération d\'un keygen :</strong>\r\nSi l\'historique est activé, le mot de passe de l\'utilisateur sera demandé dans le formulaire. Le champ reste tout de même facultatif : ne pas le remplir empêchera la sauvegarde du keygen dans l\'historique.\r\nLe mot de passe de l\'utilisateur sera ensuite utilisé pour crypter le keygen avant enregistrement.\r\n\r\n<strong>Affichage de l\'historique :</strong>\r\nSi l\'historique n\'est pas vide, le mot de passe de l\'utilisateur lui sera demandé afin de pouvoir décrypter ses keygens sauvegardés.\r\nPour éviter d\'avoir à lui demander à nouveau son mot de passe après qu\'il ait rechargé la page, le mot de passe sera crypté et conservé pendant 24 minutes dans un cookie, sur le navigateur de l\'utilisateur et non sur nos serveurs.\r\nDe ce fait, à chaque rafraîchissement de page, le mot de passe conservé sera récupéré, décrypté et utilisé pour, à nouveau, décrypter les éléments de l\'historique.\r\n\r\n<em>Votre mot de passe n\'est jamais conservé en clair.</em>\r\n\r\n<strong>Edit </strong>(22/03/2016)\r\nVous avez maintenant la possibilité de lier à votre keygen un label personnalisé depuis la page d\'affichage de l\'historique.\r\nCe label, crypté de la même façon que "son keygen", vous permettra de savoir à quoi celui-ci correspond ; il est facile de se perdre après en avoir enregistré plusieurs.', 'Mise à jour KeyGen 3.3', '', 'inherit', 'closed', 'closed', '', '79-revision-v1', '', '', '2016-03-22 22:23:32', '2016-03-22 21:23:32', '', 79, 'http://blog.matiboux.com/articles/79-revision-v1/', 0, 'revision', '', 0),
(93, 1, '2016-03-26 22:57:06', '2016-03-26 21:57:06', 'Url Shortener, le projet de raccourcissement de liens a été mis à jour !\r\n\r\nUtilisé en tant que "cobaye", il m\'a permis de développer un système de sélection afin de pouvoir effectuer des actions sur plusieurs éléments d\'un seul clic.<!--more-->\r\n\r\nTrès rapidement, voilà le système :\r\n<strong>Une case à cocher</strong> est présente à côté de chaque ligne (ou élément), c\'est ce qui marquera la sélection. En bas du tableau, on trouve <strong>un bouton pour sélectionner</strong> toutes les lignes et <strong>un autre pour </strong>toutes<strong> les désélectionner</strong>. Enfin, sous la colonne des boutons de suppression se trouve un bouton pour supprimer tous les éléments sélectionnés.\r\n\r\nEvidemment, le code HTML de <strong>la page a été quelque peu révisé</strong> et des scripts PHP ont été ajoutés (en plus des scripts JS pour la gestion du système de sélection).\r\n\r\nUne nouvelle mise à jour complémentaire à celle-ci est déjà prévue !\r\nEn plus de nouvelles optimisations, elle apportera <strong>de nouvelles actions groupées</strong> telles que la possibilité de changer l\'indication "Choquant" sur un lien d\'un seul clic, à la manière de ce qui a été fait pour la suppression.\r\n\r\n ', 'Mise à jour Url Shortener 1.1', '', 'publish', 'open', 'open', '', 'mise-a-jour-url-shortener-1-1', '', '', '2016-03-26 23:11:57', '2016-03-26 22:11:57', '', 0, 'http://blog.matiboux.com/?p=93', 0, 'post', '', 0),
(94, 1, '2016-03-26 22:27:05', '2016-03-26 21:27:05', 'Url Shortener, le projet de raccourcissement de liens a été mis à jour !\r\n\r\nUtilisé en tant que "cobaye", il m\'a permit de développer un système de sélection afin de pouvoir effectuer des actions sur plusieurs éléments d\'un seul clic.<!--more-->\r\n\r\nTrès rapidement, voilà le système :\r\nUne case à cocher est présente à côté de chaque ligne (ou élément), c\'est ce qui marquera la sélection. En bas du tableau, on trouve un bouton pour sélectionner toutes les lignes et un autre pour toutes les désélectionner. Enfin, sous la colonne des bouton de suppression se trouve un bouton pour supprimer tous les éléments sélectionnés.\r\n\r\nEvidemment, le code HTML de la page a été quelque peu révisé et des scripts PHP ont été ajoutés (en plus des scripts JS pour la gestion du système de sélection).\r\n\r\nUne nouvelle mise à jour complémentaire de celle-ci est déjà prévue !\r\nElle apportera de nouvelles actions groupées, ainsi qu\'une nouvelle révision des scripts PHP.\r\n\r\n ', 'Mise à jour Url Shortener 1.1', '', 'inherit', 'closed', 'closed', '', '93-revision-v1', '', '', '2016-03-26 22:27:05', '2016-03-26 21:27:05', '', 93, 'http://blog.matiboux.com/articles/93-revision-v1/', 0, 'revision', '', 0),
(95, 1, '2016-03-26 23:00:27', '2016-03-26 22:00:27', 'KeyGen, a été à nouveau mis à jour !\r\nToujours à propos du système de sélection et d\'optimisation !\r\nAprès tout, Url Shortener n\'est pas le seul à pouvoir bénéficier d\'une telle fonctionnalité<!--more-->\r\n\r\nEt justement, pour éviter d\'avoir à me répéter, je vous met le lien vers <strong>l\'article de la mise à jour 1.1 d\'Url Shortener pour lire les détails de la mise à jour</strong> (c\'est à peu près la même chose) :\r\n\r\n<script type="text/javascript">// <![CDATA[\r\n//--><![CDATA[//><!--\r\n !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll(\'iframe[data-secret="\'+d.secret+\'"]\'),k=b.querySelectorAll(\'blockquote[data-secret="\'+d.secret+\'"]\');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document);\r\n//--><!\r\n// ]]></script><iframe class="wp-embedded-content" title="Mise à jour Url Shortener 1.1" src="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/embed/" width="600" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" sandbox="allow-scripts"></iframe>\r\n\r\nCe sera bien le seul projet n\'a ne pas avoir de mise à jour prévue à la suite de celle-ci tiens.', 'Mise à jour KeyGen 3.4', '', 'publish', 'open', 'open', '', 'mise-a-jour-keygen-3-4', '', '', '2016-03-26 23:08:06', '2016-03-26 22:08:06', '', 0, 'http://blog.matiboux.com/?p=95', 0, 'post', '', 0),
(96, 1, '2016-03-26 22:36:55', '2016-03-26 21:36:55', 'Url Shortener, le projet de raccourcissement de liens a été mis à jour !\r\n\r\nUtilisé en tant que "cobaye", il m\'a permis de développer un système de sélection afin de pouvoir effectuer des actions sur plusieurs éléments d\'un seul clic.<!--more-->\r\n\r\nTrès rapidement, voilà le système :\r\nUne case à cocher est présente à côté de chaque ligne (ou élément), c\'est ce qui marquera la sélection. En bas du tableau, on trouve un bouton pour sélectionner toutes les lignes et un autre pour toutes les désélectionner. Enfin, sous la colonne des boutons de suppression se trouve un bouton pour supprimer tous les éléments sélectionnés.\r\n\r\nEvidemment, le code HTML de la page a été quelque peu révisé et des scripts PHP ont été ajoutés (en plus des scripts JS pour la gestion du système de sélection).\r\n\r\nUne nouvelle mise à jour complémentaire de celle-ci est déjà prévue !\r\nEn plus de nouvelles optimisations, elle apportera de nouvelles actions groupées telles que la possibilité de changer l\'indication "Choquant" sur un lien d\'un seul clic, à la manière de ce qui a été fait pour la suppression.\r\n\r\n ', 'Mise à jour Url Shortener 1.1', '', 'inherit', 'closed', 'closed', '', '93-revision-v1', '', '', '2016-03-26 22:36:55', '2016-03-26 21:36:55', '', 93, 'http://blog.matiboux.com/articles/93-revision-v1/', 0, 'revision', '', 0),
(97, 1, '2016-03-26 22:36:56', '2016-03-26 21:36:56', 'KeyGen, a été à nouveau mis à jour !\r\nToujours à propos du système de sélection et d\'optimisation !\r\nAprès tout, Url Shortener n\'est pas le seul à pouvoir bénéficier d\'une telle fonctionnalité<!--more-->\r\n\r\nEt justement, pour éviter à avoir me répéter, je vous met le lien vers l\'article de la mise à jour 1.1 d\'Url Shortener pour lire les détails de la mise à jour (c\'est à peu près la même chose).\r\n\r\nCe sera bien le seul projet n\'a ne pas avoir de mise à jour prévue à la suite de celle-ci tiens.', 'Mise à jour KeyGen 3.4', '', 'inherit', 'closed', 'closed', '', '95-revision-v1', '', '', '2016-03-26 22:36:56', '2016-03-26 21:36:56', '', 95, 'http://blog.matiboux.com/articles/95-revision-v1/', 0, 'revision', '', 0),
(98, 1, '2016-03-26 23:01:08', '2016-03-26 22:01:08', 'C\'est au tour d\'ImgShot de bénéficier de sa mise à jour !\r\nElle est évidemment à propos du système de sélection et de l\'optimisation puisque :\r\n<blockquote>"On ne change pas une équipe qui gagne."</blockquote>\r\n<!--more-->\r\n\r\nPour éviter d\'avoir à me répéter, je vous invite à aller lire <strong>l\'article de la mise à jour 1.1 d\'Url Shortener</strong> si ce n\'est déjà fait : y est détaillé les changements de cette mise à jour "commune".\r\n\r\n<script type="text/javascript">// <![CDATA[\r\n//--><![CDATA[//><!--\r\n !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll(\'iframe[data-secret="\'+d.secret+\'"]\'),k=b.querySelectorAll(\'blockquote[data-secret="\'+d.secret+\'"]\');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document);\r\n//--><!\r\n// ]]></script><iframe class="wp-embedded-content" title="Mise à jour Url Shortener 1.1" src="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/embed/" width="600" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" sandbox="allow-scripts"></iframe>\r\n\r\nD\'ailleurs, une nouvelle mise à jour est déjà prévue, elle complétera celle-ci.\r\nEn plus de nouvelles optimisations, elle apportera <strong>de nouvelles actions groupées</strong> : par exemple, vous pourrez marquer plusieurs images comme choquantes, et ce d\'un seul clic.', 'Mise à jour ImgShot 4.4', '', 'publish', 'open', 'open', '', 'mise-a-jour-imgshot-4-4', '', '', '2016-03-26 23:08:30', '2016-03-26 22:08:30', '', 0, 'http://blog.matiboux.com/?p=98', 0, 'post', '', 0),
(99, 1, '2016-03-26 22:44:21', '2016-03-26 21:44:21', 'Url Shortener, le projet de raccourcissement de liens a été mis à jour !\r\n\r\nUtilisé en tant que "cobaye", il m\'a permis de développer un système de sélection afin de pouvoir effectuer des actions sur plusieurs éléments d\'un seul clic.<!--more-->\r\n\r\nTrès rapidement, voilà le système :\r\nUne case à cocher est présente à côté de chaque ligne (ou élément), c\'est ce qui marquera la sélection. En bas du tableau, on trouve un bouton pour sélectionner toutes les lignes et un autre pour toutes les désélectionner. Enfin, sous la colonne des boutons de suppression se trouve un bouton pour supprimer tous les éléments sélectionnés.\r\n\r\nEvidemment, le code HTML de la page a été quelque peu révisé et des scripts PHP ont été ajoutés (en plus des scripts JS pour la gestion du système de sélection).\r\n\r\nUne nouvelle mise à jour complémentaire à celle-ci est déjà prévue !\r\nEn plus de nouvelles optimisations, elle apportera de nouvelles actions groupées telles que la possibilité de changer l\'indication "Choquant" sur un lien d\'un seul clic, à la manière de ce qui a été fait pour la suppression.\r\n\r\n ', 'Mise à jour Url Shortener 1.1', '', 'inherit', 'closed', 'closed', '', '93-revision-v1', '', '', '2016-03-26 22:44:21', '2016-03-26 21:44:21', '', 93, 'http://blog.matiboux.com/articles/93-revision-v1/', 0, 'revision', '', 0),
(100, 1, '2016-03-26 22:46:36', '2016-03-26 21:46:36', 'C\'est au tour d\'ImgShot de bénéficier de sa mise à jour !\r\nElle est évidemment à propos du système de sélection et de l\'optimisation puisque :\r\n<blockquote>"On ne change pas une équipe qui gagne."</blockquote>\r\n<!--more-->\r\n\r\nPour éviter d\'avoir à me répéter, je vous invite à aller lire l\'article de la mise à jour 1.1 d\'Url Shortener si ce n\'est déjà fait : y est détaillé les changements de cette mise à jour "commune".\r\n\r\nD\'ailleurs, une nouvelle mise à jour est déjà prévue, elle complétera celle-ci.\r\nEn plus de nouvelles optimisations, elle apportera de nouvelles actions groupées : par exemple, vous pourrez marquer plusieurs images comme choquantes, et ce d\'un seul clic.', 'Mise à jour ImgShot 4.4', '', 'inherit', 'closed', 'closed', '', '98-revision-v1', '', '', '2016-03-26 22:46:36', '2016-03-26 21:46:36', '', 98, 'http://blog.matiboux.com/articles/98-revision-v1/', 0, 'revision', '', 0),
(101, 1, '2016-03-26 23:02:10', '2016-03-26 22:02:10', 'Ah, Natrox Cloud.\r\nIl reste un de mes projets personnels, et à ce titre, je ne vois pas pourquoi il n\'aurait pas - lui aussi - le droit à sa mise à jour !\r\nCelle-ci est bien sûr à propos du fameux système de sélection et à propos d\'optimisation.\r\n(c\'est jamais que le quatrième à recevoir cette mise à jour mais bon)...\r\n<blockquote>"On ne change pas une équipe qui gagne."</blockquote>\r\n<!--more-->\r\n\r\nLa mise à jour a déjà été expliquée, vous pouvez retrouver <strong>l\'article détaillé sur la mise à jour 1.1 d\'Url Shortener</strong> ci-dessous. Cette mise à jour est son thème principal et le projet concerné a été <em>le premier à la recevoir</em>.\r\n\r\n<script type="text/javascript">// <![CDATA[\r\n//--><![CDATA[//><!--\r\n !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll(\'iframe[data-secret="\'+d.secret+\'"]\'),k=b.querySelectorAll(\'blockquote[data-secret="\'+d.secret+\'"]\');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document);\r\n//--><!\r\n// ]]></script><iframe class="wp-embedded-content" title="Mise à jour Url Shortener 1.1" src="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/embed/" width="600" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" sandbox="allow-scripts"></iframe>\r\n\r\nConcernant Natrox Cloud, une prochaine mise à jour est planifiée en complément à celle-ci.\r\nEn plus de nouvelles optimisations, elle apportera <strong>de nouvelles actions groupées</strong> : vous pourrez par exemple changer le statut "Téléchargeable", "Nominatif" ou encore sa visibilité d\'un seul clic !', 'Mise à jour Natrox Cloud 1.2', '', 'publish', 'open', 'open', '', 'mise-a-jour-natrox-cloud-1-2', '', '', '2016-03-26 23:08:39', '2016-03-26 22:08:39', '', 0, 'http://blog.matiboux.com/?p=101', 0, 'post', '', 0),
(102, 1, '2016-03-26 22:54:08', '2016-03-26 21:54:08', 'KeyGen, a été à nouveau mis à jour !\r\nToujours à propos du système de sélection et d\'optimisation !\r\nAprès tout, Url Shortener n\'est pas le seul à pouvoir bénéficier d\'une telle fonctionnalité<!--more-->\r\n\r\nEt justement, pour éviter d\'avoir à me répéter, je vous met le lien vers l\'article de la mise à jour 1.1 d\'Url Shortener pour lire les détails de la mise à jour (c\'est à peu près la même chose).\r\n\r\nCe sera bien le seul projet n\'a ne pas avoir de mise à jour prévue à la suite de celle-ci tiens.', 'Mise à jour KeyGen 3.4', '', 'inherit', 'closed', 'closed', '', '95-revision-v1', '', '', '2016-03-26 22:54:08', '2016-03-26 21:54:08', '', 95, 'http://blog.matiboux.com/articles/95-revision-v1/', 0, 'revision', '', 0),
(103, 1, '2016-03-26 22:54:11', '2016-03-26 21:54:11', 'Ahhh, Natrox Cloud.\r\nIl reste un de mes projets personnels, et à ce titre, je ne vois pas pourquoi il n\'aurait pas - lui aussi - le droit à sa mise à jour !\r\nCelle-ci est bien sûr à propos du fameux système de sélection et à propos d\'optimisation.\r\n(c\'est jamais que le quatrième à recevoir cette mise à jour mais bon)...\r\n<blockquote>"On ne change pas une équipe qui gagne."</blockquote>\r\n<!--more-->\r\n\r\nLa mise à jour a déjà été expliquée, vous pouvez retrouver l\'article détaillé sur la mise à jour 1.1 d\'Url Shortener. Cette mise à jour est son thème principal et le projet concerné a été le premier à la recevoir.\r\n\r\nConcernant Natrox Cloud, une prochaine mise à jour est planifiée en complément à celle-ci.\r\nEn plus de nouvelles optimisations, elle apportera de nouvelles actions groupées : vous pourrez par exemple changer le statut "Téléchargeable", "Nominatif" ou encore sa visibilité d\'un seul clic !', 'Mise à jour Natrox Cloud 1.2', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2016-03-26 22:54:11', '2016-03-26 21:54:11', '', 101, 'http://blog.matiboux.com/articles/101-revision-v1/', 0, 'revision', '', 0),
(104, 1, '2016-03-26 22:57:15', '2016-03-26 21:57:15', 'Ah, Natrox Cloud.\r\nIl reste un de mes projets personnels, et à ce titre, je ne vois pas pourquoi il n\'aurait pas - lui aussi - le droit à sa mise à jour !\r\nCelle-ci est bien sûr à propos du fameux système de sélection et à propos d\'optimisation.\r\n(c\'est jamais que le quatrième à recevoir cette mise à jour mais bon)...\r\n<blockquote>"On ne change pas une équipe qui gagne."</blockquote>\r\n<!--more-->\r\n\r\nLa mise à jour a déjà été expliquée, vous pouvez retrouver l\'article détaillé sur la mise à jour 1.1 d\'Url Shortener. Cette mise à jour est son thème principal et le projet concerné a été le premier à la recevoir.\r\n\r\nConcernant Natrox Cloud, une prochaine mise à jour est planifiée en complément à celle-ci.\r\nEn plus de nouvelles optimisations, elle apportera de nouvelles actions groupées : vous pourrez par exemple changer le statut "Téléchargeable", "Nominatif" ou encore sa visibilité d\'un seul clic !', 'Mise à jour Natrox Cloud 1.2', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2016-03-26 22:57:15', '2016-03-26 21:57:15', '', 101, 'http://blog.matiboux.com/articles/101-revision-v1/', 0, 'revision', '', 0),
(105, 1, '2016-03-26 22:58:14', '2016-03-26 21:58:14', 'Url Shortener, le projet de raccourcissement de liens a été mis à jour !\n\nUtilisé en tant que "cobaye", il m\'a permis de développer un système de sélection afin de pouvoir effectuer des actions sur plusieurs éléments d\'un seul clic.<!--more-->\n\nTrès rapidement, voilà le système :\n<strong>Une case à cocher</strong> est présente à côté de chaque ligne (ou élément), c\'est ce qui marquera la sélection. En bas du tableau, on trouve <strong>un bouton pour sélectionner</strong> toutes les lignes et un autre pour toutes les désélectionner. Enfin, sous la colonne des boutons de suppression se trouve un bouton pour supprimer tous les éléments sélectionnés.\n\nEvidemment, le code HTML de la page a été quelque peu révisé et des scripts PHP ont été ajoutés (en plus des scripts JS pour la gestion du système de sélection).\n\nUne nouvelle mise à jour complémentaire à celle-ci est déjà prévue !\nEn plus de nouvelles optimisations, elle apportera de nouvelles actions groupées telles que la possibilité de changer l\'indication "Choquant" sur un lien d\'un seul clic, à la manière de ce qui a été fait pour la suppression.\n\n ', 'Mise à jour Url Shortener 1.1', '', 'inherit', 'closed', 'closed', '', '93-autosave-v1', '', '', '2016-03-26 22:58:14', '2016-03-26 21:58:14', '', 93, 'http://blog.matiboux.com/articles/93-autosave-v1/', 0, 'revision', '', 0),
(106, 1, '2016-03-26 22:59:00', '2016-03-26 21:59:00', 'Url Shortener, le projet de raccourcissement de liens a été mis à jour !\r\n\r\nUtilisé en tant que "cobaye", il m\'a permis de développer un système de sélection afin de pouvoir effectuer des actions sur plusieurs éléments d\'un seul clic.<!--more-->\r\n\r\nTrès rapidement, voilà le système :\r\n<strong>Une case à cocher</strong> est présente à côté de chaque ligne (ou élément), c\'est ce qui marquera la sélection. En bas du tableau, on trouve <strong>un bouton pour sélectionner</strong> toutes les lignes et <strong>un autre pour </strong>toutes<strong> les désélectionner</strong>. Enfin, sous la colonne des boutons de suppression se trouve un bouton pour supprimer tous les éléments sélectionnés.\r\n\r\nEvidemment, le code HTML de <strong>la page a été quelque peu révisé</strong> et des scripts PHP ont été ajoutés (en plus des scripts JS pour la gestion du système de sélection).\r\n\r\nUne nouvelle mise à jour complémentaire à celle-ci est déjà prévue !\r\nEn plus de nouvelles optimisations, elle apportera <strong>de nouvelles actions groupées</strong> telles que la possibilité de changer l\'indication "Choquant" sur un lien d\'un seul clic, à la manière de ce qui a été fait pour la suppression.\r\n\r\n ', 'Mise à jour Url Shortener 1.1', '', 'inherit', 'closed', 'closed', '', '93-revision-v1', '', '', '2016-03-26 22:59:00', '2016-03-26 21:59:00', '', 93, 'http://blog.matiboux.com/articles/93-revision-v1/', 0, 'revision', '', 0),
(107, 1, '2016-03-26 23:00:27', '2016-03-26 22:00:27', 'KeyGen, a été à nouveau mis à jour !\r\nToujours à propos du système de sélection et d\'optimisation !\r\nAprès tout, Url Shortener n\'est pas le seul à pouvoir bénéficier d\'une telle fonctionnalité<!--more-->\r\n\r\nEt justement, pour éviter d\'avoir à me répéter, je vous met le lien vers <strong>l\'article de la mise à jour 1.1 d\'Url Shortener pour lire les détails de la mise à jour</strong> (c\'est à peu près la même chose) :\r\n<a href="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/">http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/</a>\r\n\r\nCe sera bien le seul projet n\'a ne pas avoir de mise à jour prévue à la suite de celle-ci tiens.', 'Mise à jour KeyGen 3.4', '', 'inherit', 'closed', 'closed', '', '95-revision-v1', '', '', '2016-03-26 23:00:27', '2016-03-26 22:00:27', '', 95, 'http://blog.matiboux.com/articles/95-revision-v1/', 0, 'revision', '', 0),
(108, 1, '2016-03-26 23:01:08', '2016-03-26 22:01:08', 'C\'est au tour d\'ImgShot de bénéficier de sa mise à jour !\r\nElle est évidemment à propos du système de sélection et de l\'optimisation puisque :\r\n<blockquote>"On ne change pas une équipe qui gagne."</blockquote>\r\n<!--more-->\r\n\r\nPour éviter d\'avoir à me répéter, je vous invite à aller lire <strong>l\'article de la mise à jour 1.1 d\'Url Shortener</strong> si ce n\'est déjà fait : y est détaillé les changements de cette mise à jour "commune".\r\n<a href="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/">http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/</a>\r\n\r\nD\'ailleurs, une nouvelle mise à jour est déjà prévue, elle complétera celle-ci.\r\nEn plus de nouvelles optimisations, elle apportera <strong>de nouvelles actions groupées</strong> : par exemple, vous pourrez marquer plusieurs images comme choquantes, et ce d\'un seul clic.', 'Mise à jour ImgShot 4.4', '', 'inherit', 'closed', 'closed', '', '98-revision-v1', '', '', '2016-03-26 23:01:08', '2016-03-26 22:01:08', '', 98, 'http://blog.matiboux.com/articles/98-revision-v1/', 0, 'revision', '', 0),
(109, 1, '2016-03-26 23:02:10', '2016-03-26 22:02:10', 'Ah, Natrox Cloud.\r\nIl reste un de mes projets personnels, et à ce titre, je ne vois pas pourquoi il n\'aurait pas - lui aussi - le droit à sa mise à jour !\r\nCelle-ci est bien sûr à propos du fameux système de sélection et à propos d\'optimisation.\r\n(c\'est jamais que le quatrième à recevoir cette mise à jour mais bon)...\r\n<blockquote>"On ne change pas une équipe qui gagne."</blockquote>\r\n<!--more-->\r\n\r\nLa mise à jour a déjà été expliquée, vous pouvez retrouver <strong>l\'article détaillé sur la mise à jour 1.1 d\'Url Shortener</strong> ci-dessous. Cette mise à jour est son thème principal et le projet concerné a été <em>le premier à la recevoir</em>.\r\n<a href="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/">http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/</a>\r\n\r\nConcernant Natrox Cloud, une prochaine mise à jour est planifiée en complément à celle-ci.\r\nEn plus de nouvelles optimisations, elle apportera <strong>de nouvelles actions groupées</strong> : vous pourrez par exemple changer le statut "Téléchargeable", "Nominatif" ou encore sa visibilité d\'un seul clic !', 'Mise à jour Natrox Cloud 1.2', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2016-03-26 23:02:10', '2016-03-26 22:02:10', '', 101, 'http://blog.matiboux.com/articles/101-revision-v1/', 0, 'revision', '', 0),
(110, 1, '2016-03-26 23:06:05', '2016-03-26 22:06:05', 'KeyGen, a été à nouveau mis à jour !\nToujours à propos du système de sélection et d\'optimisation !\nAprès tout, Url Shortener n\'est pas le seul à pouvoir bénéficier d\'une telle fonctionnalité<!--more-->\n\nEt justement, pour éviter d\'avoir à me répéter, je vous met le lien vers <strong>l\'article de la mise à jour 1.1 d\'Url Shortener pour lire les détails de la mise à jour</strong> (c\'est à peu près la même chose) :\n<a href="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/">http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/</a>\n<script type=\'text/javascript\'>\n<!--//--><![CDATA[//><!--\n !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll(\'iframe[data-secret="\'+d.secret+\'"]\'),k=b.querySelectorAll(\'blockquote[data-secret="\'+d.secret+\'"]\');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document);\n//--><!]]>\n</script><iframe sandbox="allow-scripts" security="restricted" src="https://wordpress.org/news/2015/12/clifford/embed/" width="600" height="400" title="“WordPress 4.4 “Clifford”” — WordPress News" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe>\n\nCe sera bien le seul projet n\'a ne pas avoir de mise à jour prévue à la suite de celle-ci tiens.', 'Mise à jour KeyGen 3.4', '', 'inherit', 'closed', 'closed', '', '95-autosave-v1', '', '', '2016-03-26 23:06:05', '2016-03-26 22:06:05', '', 95, 'http://blog.matiboux.com/articles/95-autosave-v1/', 0, 'revision', '', 0),
(111, 1, '2016-03-26 23:07:01', '2016-03-26 22:07:01', 'KeyGen, a été à nouveau mis à jour !\r\nToujours à propos du système de sélection et d\'optimisation !\r\nAprès tout, Url Shortener n\'est pas le seul à pouvoir bénéficier d\'une telle fonctionnalité<!--more-->\r\n\r\nEt justement, pour éviter d\'avoir à me répéter, je vous met le lien vers <strong>l\'article de la mise à jour 1.1 d\'Url Shortener pour lire les détails de la mise à jour</strong> (c\'est à peu près la même chose) :\r\n<script type=\'text/javascript\'>\r\n<!--//--><![CDATA[//><!--\r\n !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll(\'iframe[data-secret="\'+d.secret+\'"]\'),k=b.querySelectorAll(\'blockquote[data-secret="\'+d.secret+\'"]\');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document);\r\n//--><!]]>\r\n</script><iframe sandbox="allow-scripts" security="restricted" src="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/embed/" width="600" height="400" title="Mise à jour Url Shortener 1.1" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe>\r\n\r\nCe sera bien le seul projet n\'a ne pas avoir de mise à jour prévue à la suite de celle-ci tiens.', 'Mise à jour KeyGen 3.4', '', 'inherit', 'closed', 'closed', '', '95-revision-v1', '', '', '2016-03-26 23:07:01', '2016-03-26 22:07:01', '', 95, 'http://blog.matiboux.com/articles/95-revision-v1/', 0, 'revision', '', 0),
(112, 1, '2016-03-26 23:08:06', '2016-03-26 22:08:06', 'KeyGen, a été à nouveau mis à jour !\r\nToujours à propos du système de sélection et d\'optimisation !\r\nAprès tout, Url Shortener n\'est pas le seul à pouvoir bénéficier d\'une telle fonctionnalité<!--more-->\r\n\r\nEt justement, pour éviter d\'avoir à me répéter, je vous met le lien vers <strong>l\'article de la mise à jour 1.1 d\'Url Shortener pour lire les détails de la mise à jour</strong> (c\'est à peu près la même chose) :\r\n\r\n<script type="text/javascript">// <![CDATA[\r\n//--><![CDATA[//><!--\r\n !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll(\'iframe[data-secret="\'+d.secret+\'"]\'),k=b.querySelectorAll(\'blockquote[data-secret="\'+d.secret+\'"]\');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document);\r\n//--><!\r\n// ]]></script><iframe class="wp-embedded-content" title="Mise à jour Url Shortener 1.1" src="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/embed/" width="600" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" sandbox="allow-scripts"></iframe>\r\n\r\nCe sera bien le seul projet n\'a ne pas avoir de mise à jour prévue à la suite de celle-ci tiens.', 'Mise à jour KeyGen 3.4', '', 'inherit', 'closed', 'closed', '', '95-revision-v1', '', '', '2016-03-26 23:08:06', '2016-03-26 22:08:06', '', 95, 'http://blog.matiboux.com/articles/95-revision-v1/', 0, 'revision', '', 0),
(113, 1, '2016-03-26 23:08:30', '2016-03-26 22:08:30', 'C\'est au tour d\'ImgShot de bénéficier de sa mise à jour !\r\nElle est évidemment à propos du système de sélection et de l\'optimisation puisque :\r\n<blockquote>"On ne change pas une équipe qui gagne."</blockquote>\r\n<!--more-->\r\n\r\nPour éviter d\'avoir à me répéter, je vous invite à aller lire <strong>l\'article de la mise à jour 1.1 d\'Url Shortener</strong> si ce n\'est déjà fait : y est détaillé les changements de cette mise à jour "commune".\r\n\r\n<script type="text/javascript">// <![CDATA[\r\n//--><![CDATA[//><!--\r\n !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll(\'iframe[data-secret="\'+d.secret+\'"]\'),k=b.querySelectorAll(\'blockquote[data-secret="\'+d.secret+\'"]\');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document);\r\n//--><!\r\n// ]]></script><iframe class="wp-embedded-content" title="Mise à jour Url Shortener 1.1" src="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/embed/" width="600" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" sandbox="allow-scripts"></iframe>\r\n\r\nD\'ailleurs, une nouvelle mise à jour est déjà prévue, elle complétera celle-ci.\r\nEn plus de nouvelles optimisations, elle apportera <strong>de nouvelles actions groupées</strong> : par exemple, vous pourrez marquer plusieurs images comme choquantes, et ce d\'un seul clic.', 'Mise à jour ImgShot 4.4', '', 'inherit', 'closed', 'closed', '', '98-revision-v1', '', '', '2016-03-26 23:08:30', '2016-03-26 22:08:30', '', 98, 'http://blog.matiboux.com/articles/98-revision-v1/', 0, 'revision', '', 0),
(114, 1, '2016-03-26 23:08:39', '2016-03-26 22:08:39', 'Ah, Natrox Cloud.\r\nIl reste un de mes projets personnels, et à ce titre, je ne vois pas pourquoi il n\'aurait pas - lui aussi - le droit à sa mise à jour !\r\nCelle-ci est bien sûr à propos du fameux système de sélection et à propos d\'optimisation.\r\n(c\'est jamais que le quatrième à recevoir cette mise à jour mais bon)...\r\n<blockquote>"On ne change pas une équipe qui gagne."</blockquote>\r\n<!--more-->\r\n\r\nLa mise à jour a déjà été expliquée, vous pouvez retrouver <strong>l\'article détaillé sur la mise à jour 1.1 d\'Url Shortener</strong> ci-dessous. Cette mise à jour est son thème principal et le projet concerné a été <em>le premier à la recevoir</em>.\r\n\r\n<script type="text/javascript">// <![CDATA[\r\n//--><![CDATA[//><!--\r\n !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll(\'iframe[data-secret="\'+d.secret+\'"]\'),k=b.querySelectorAll(\'blockquote[data-secret="\'+d.secret+\'"]\');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document);\r\n//--><!\r\n// ]]></script><iframe class="wp-embedded-content" title="Mise à jour Url Shortener 1.1" src="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/embed/" width="600" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" sandbox="allow-scripts"></iframe>\r\n\r\nConcernant Natrox Cloud, une prochaine mise à jour est planifiée en complément à celle-ci.\r\nEn plus de nouvelles optimisations, elle apportera <strong>de nouvelles actions groupées</strong> : vous pourrez par exemple changer le statut "Téléchargeable", "Nominatif" ou encore sa visibilité d\'un seul clic !', 'Mise à jour Natrox Cloud 1.2', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2016-03-26 23:08:39', '2016-03-26 22:08:39', '', 101, 'http://blog.matiboux.com/articles/101-revision-v1/', 0, 'revision', '', 0),
(115, 1, '2016-03-27 20:32:58', '2016-03-27 19:32:58', 'Au tour du Manager d\'être mis à jour.\r\nA priori, ce sera le dernier de la vague d\'ailleurs c:\r\nToujours dans le thème du système de sélection et des optimisations.\r\n\r\n<!--more-->\r\n\r\nLa mise à jour a déjà été expliquée, vous pouvez retrouver les <strong>détails de la mise à jour sur l\'article de la mise à jour 1.1 d\'Url Shortener</strong> ci-dessous.\r\nPour le Manager, la mise à jour s\'applique sur deux page : celle de gestion des requêtes en cours et celle de gestion des sessions.\r\n\r\n<script type="text/javascript">// <![CDATA[\r\n//--><![CDATA[//><!--\r\n !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll(\'iframe[data-secret="\'+d.secret+\'"]\'),k=b.querySelectorAll(\'blockquote[data-secret="\'+d.secret+\'"]\');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document);\r\n//--><!\r\n// ]]></script><iframe class="wp-embedded-content" title="Mise à jour Url Shortener 1.1" src="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/embed/" width="600" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" sandbox="allow-scripts"></iframe>\r\n\r\nPas de mise à jour prévue pour le moment. On verra par la suite si il y en a besoin d\'une !', 'Mise à jour Manager 1.3', '', 'publish', 'open', 'open', '', 'mise-a-jour-manager-1-3', '', '', '2016-03-27 20:32:58', '2016-03-27 19:32:58', '', 0, 'http://blog.matiboux.com/?p=115', 0, 'post', '', 0);
INSERT INTO `blog_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
(116, 1, '2016-03-27 20:32:58', '2016-03-27 19:32:58', 'Au tour du Manager d\'être mis à jour.\r\nA priori, ce sera le dernier de la vague d\'ailleurs c:\r\nToujours dans le thème du système de sélection et des optimisations.\r\n\r\n<!--more-->\r\n\r\nLa mise à jour a déjà été expliquée, vous pouvez retrouver les <strong>détails de la mise à jour sur l\'article de la mise à jour 1.1 d\'Url Shortener</strong> ci-dessous.\r\nPour le Manager, la mise à jour s\'applique sur deux page : celle de gestion des requêtes en cours et celle de gestion des sessions.\r\n\r\n<script type="text/javascript">// <![CDATA[\r\n//--><![CDATA[//><!--\r\n !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll(\'iframe[data-secret="\'+d.secret+\'"]\'),k=b.querySelectorAll(\'blockquote[data-secret="\'+d.secret+\'"]\');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document);\r\n//--><!\r\n// ]]></script><iframe class="wp-embedded-content" title="Mise à jour Url Shortener 1.1" src="http://blog.matiboux.com/articles/mise-a-jour-url-shortener-1-1/embed/" width="600" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" sandbox="allow-scripts"></iframe>\r\n\r\nPas de mise à jour prévue pour le moment. On verra par la suite si il y en a besoin d\'une !', 'Mise à jour Manager 1.3', '', 'inherit', 'closed', 'closed', '', '115-revision-v1', '', '', '2016-03-27 20:32:58', '2016-03-27 19:32:58', '', 115, 'http://blog.matiboux.com/articles/115-revision-v1/', 0, 'revision', '', 0);
-- --------------------------------------------------------
--
-- Structure de la table `blog_termmeta`
--
CREATE TABLE `blog_termmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `blog_terms`
--
CREATE TABLE `blog_terms` (
`term_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Contenu de la table `blog_terms`
--
INSERT INTO `blog_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Non classé', 'uncategorized', 0),
(2, 'Social', 'social', 0),
(3, 'Menu', 'menu', 0),
(4, 'Général', 'general', 0),
(5, 'Mise à jour', 'update', 0),
(6, 'Annonce', 'announcement', 0),
(7, 'Projet', 'project', 0),
(8, 'post-format-aside', 'post-format-aside', 0),
(9, 'post-format-quote', 'post-format-quote', 0);
-- --------------------------------------------------------
--
-- Structure de la table `blog_term_relationships`
--
CREATE TABLE `blog_term_relationships` (
`object_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Contenu de la table `blog_term_relationships`
--
INSERT INTO `blog_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(4, 2, 0),
(37, 3, 0),
(38, 3, 0),
(39, 3, 0),
(40, 3, 0),
(41, 3, 0),
(42, 3, 0),
(43, 3, 0),
(48, 3, 0),
(49, 3, 0),
(63, 4, 0),
(70, 5, 0),
(72, 6, 0),
(79, 5, 0),
(93, 5, 0),
(95, 5, 0),
(98, 5, 0),
(101, 5, 0),
(115, 5, 0);
-- --------------------------------------------------------
--
-- Structure de la table `blog_term_taxonomy`
--
CREATE TABLE `blog_term_taxonomy` (
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Contenu de la table `blog_term_taxonomy`
--
INSERT INTO `blog_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 0),
(2, 2, 'nav_menu', '', 0, 1),
(3, 3, 'nav_menu', '', 0, 9),
(4, 4, 'category', '', 0, 1),
(5, 5, 'category', '', 7, 7),
(6, 6, 'category', '', 7, 1),
(7, 7, 'category', '', 0, 0),
(8, 8, 'post_format', '', 0, 0),
(9, 9, 'post_format', '', 0, 0);
-- --------------------------------------------------------
--
-- Structure de la table `blog_usermeta`
--
CREATE TABLE `blog_usermeta` (
`umeta_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Contenu de la table `blog_usermeta`
--
INSERT INTO `blog_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'Mati'),