-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdixeed_db.sql
2581 lines (2307 loc) · 617 KB
/
dixeed_db.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 5.1.1
-- https://www.phpmyadmin.net/
--
-- Hôte : 127.0.0.1
-- Généré le : ven. 07 jan. 2022 à 14:11
-- Version du serveur : 10.4.21-MariaDB
-- Version de PHP : 8.0.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
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 : `dixeed_db`
--
-- --------------------------------------------------------
--
-- Structure de la table `wp_actionscheduler_actions`
--
DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
CREATE TABLE `wp_actionscheduler_actions` (
`action_id` bigint(20) UNSIGNED NOT NULL,
`hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
`args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`schedule` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`group_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`attempts` int(11) NOT NULL DEFAULT 0,
`last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
`claim_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`extended_args` varchar(8000) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `wp_actionscheduler_actions`
--
INSERT INTO `wp_actionscheduler_actions` (`action_id`, `hook`, `status`, `scheduled_date_gmt`, `scheduled_date_local`, `args`, `schedule`, `group_id`, `attempts`, `last_attempt_gmt`, `last_attempt_local`, `claim_id`, `extended_args`) VALUES
(6, 'action_scheduler/migration_hook', 'complete', '2021-12-26 13:47:40', '2021-12-26 14:47:40', '[]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640526460;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640526460;}', 1, 1, '2021-12-26 13:47:50', '2021-12-26 14:47:50', 0, NULL),
(7, 'woocommerce_admin/stored_state_setup_for_products/async/run_remote_notifications', 'complete', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '[]', 'O:28:\"ActionScheduler_NullSchedule\":0:{}', 0, 1, '2021-12-26 14:29:50', '2021-12-26 15:29:50', 0, NULL),
(8, 'adjust_download_permissions', 'complete', '2021-12-26 15:01:11', '2021-12-26 16:01:11', '[16]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640530871;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640530871;}', 0, 1, '2021-12-26 15:01:16', '2021-12-26 16:01:16', 0, NULL),
(9, 'adjust_download_permissions', 'complete', '2021-12-26 15:02:26', '2021-12-26 16:02:26', '[16]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640530946;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640530946;}', 0, 1, '2021-12-26 15:03:14', '2021-12-26 16:03:14', 0, NULL),
(10, 'adjust_download_permissions', 'complete', '2021-12-26 15:03:32', '2021-12-26 16:03:32', '[16]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531012;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531012;}', 0, 1, '2021-12-26 15:04:14', '2021-12-26 16:04:14', 0, NULL),
(11, 'adjust_download_permissions', 'complete', '2021-12-26 15:05:18', '2021-12-26 16:05:18', '[16]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531118;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531118;}', 0, 1, '2021-12-26 15:05:27', '2021-12-26 16:05:27', 0, NULL),
(12, 'adjust_download_permissions', 'complete', '2021-12-26 15:06:28', '2021-12-26 16:06:28', '[16]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531188;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531188;}', 0, 1, '2021-12-26 15:06:29', '2021-12-26 16:06:29', 0, NULL),
(13, 'adjust_download_permissions', 'complete', '2021-12-26 15:06:33', '2021-12-26 16:06:33', '[16]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531193;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531193;}', 0, 1, '2021-12-26 15:06:36', '2021-12-26 16:06:36', 0, NULL),
(14, 'adjust_download_permissions', 'complete', '2021-12-26 15:07:04', '2021-12-26 16:07:04', '[16]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531224;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531224;}', 0, 1, '2021-12-26 15:07:05', '2021-12-26 16:07:05', 0, NULL),
(15, 'adjust_download_permissions', 'complete', '2021-12-26 15:07:10', '2021-12-26 16:07:10', '[16]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531230;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531230;}', 0, 1, '2021-12-26 15:07:36', '2021-12-26 16:07:36', 0, NULL),
(16, 'adjust_download_permissions', 'complete', '2021-12-26 15:07:54', '2021-12-26 16:07:54', '[16]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531274;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531274;}', 0, 1, '2021-12-26 15:08:07', '2021-12-26 16:08:07', 0, NULL),
(17, 'adjust_download_permissions', 'complete', '2021-12-26 15:08:28', '2021-12-26 16:08:28', '[16]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531308;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531308;}', 0, 1, '2021-12-26 15:08:46', '2021-12-26 16:08:46', 0, NULL),
(18, 'adjust_download_permissions', 'complete', '2021-12-26 15:13:08', '2021-12-26 16:13:08', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531588;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531588;}', 0, 1, '2021-12-26 15:13:11', '2021-12-26 16:13:11', 0, NULL),
(19, 'adjust_download_permissions', 'complete', '2021-12-26 15:14:27', '2021-12-26 16:14:27', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531667;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531667;}', 0, 1, '2021-12-26 15:14:29', '2021-12-26 16:14:29', 0, NULL),
(20, 'adjust_download_permissions', 'complete', '2021-12-26 15:14:59', '2021-12-26 16:14:59', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531699;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531699;}', 0, 1, '2021-12-26 15:15:06', '2021-12-26 16:15:06', 0, NULL),
(21, 'adjust_download_permissions', 'complete', '2021-12-26 15:15:14', '2021-12-26 16:15:14', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640531714;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640531714;}', 0, 1, '2021-12-26 15:16:19', '2021-12-26 16:16:19', 0, NULL),
(22, 'adjust_download_permissions', 'complete', '2021-12-26 15:20:08', '2021-12-26 16:20:08', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640532008;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640532008;}', 0, 1, '2021-12-26 15:20:09', '2021-12-26 16:20:09', 0, NULL),
(23, 'adjust_download_permissions', 'complete', '2021-12-26 15:20:37', '2021-12-26 16:20:37', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640532037;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640532037;}', 0, 1, '2021-12-26 15:21:12', '2021-12-26 16:21:12', 0, NULL),
(24, 'adjust_download_permissions', 'complete', '2021-12-26 15:21:22', '2021-12-26 16:21:22', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640532082;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640532082;}', 0, 1, '2021-12-26 15:23:02', '2021-12-26 16:23:02', 0, NULL),
(25, 'adjust_download_permissions', 'complete', '2021-12-26 15:28:30', '2021-12-26 16:28:30', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640532510;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640532510;}', 0, 1, '2021-12-26 15:29:18', '2021-12-26 16:29:18', 0, NULL),
(26, 'adjust_download_permissions', 'complete', '2021-12-26 15:30:10', '2021-12-26 16:30:10', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640532610;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640532610;}', 0, 1, '2021-12-26 15:30:21', '2021-12-26 16:30:21', 0, NULL),
(27, 'adjust_download_permissions', 'complete', '2021-12-26 15:31:02', '2021-12-26 16:31:02', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640532662;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640532662;}', 0, 1, '2021-12-26 15:31:05', '2021-12-26 16:31:05', 0, NULL),
(28, 'adjust_download_permissions', 'complete', '2021-12-26 15:31:08', '2021-12-26 16:31:08', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640532668;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640532668;}', 0, 1, '2021-12-26 15:32:11', '2021-12-26 16:32:11', 0, NULL),
(29, 'adjust_download_permissions', 'complete', '2021-12-26 15:45:41', '2021-12-26 16:45:41', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640533541;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640533541;}', 0, 1, '2021-12-26 15:46:08', '2021-12-26 16:46:08', 0, NULL),
(30, 'adjust_download_permissions', 'complete', '2021-12-26 15:46:10', '2021-12-26 16:46:10', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640533570;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640533570;}', 0, 1, '2021-12-26 15:47:14', '2021-12-26 16:47:14', 0, NULL),
(31, 'wc-admin_import_customers', 'complete', '2021-12-28 11:54:47', '2021-12-28 12:54:47', '[1]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640692487;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640692487;}', 2, 1, '2021-12-28 11:55:46', '2021-12-28 12:55:46', 0, NULL),
(32, 'adjust_download_permissions', 'complete', '2021-12-28 11:55:32', '2021-12-28 12:55:32', '[28]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640692532;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640692532;}', 0, 1, '2021-12-28 11:55:47', '2021-12-28 12:55:47', 0, NULL),
(33, 'wc-admin_import_customers', 'complete', '2021-12-29 14:46:30', '2021-12-29 15:46:30', '[1]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1640789190;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1640789190;}', 2, 1, '2022-01-01 22:53:10', '2022-01-01 23:53:10', 0, NULL),
(34, 'wc-admin_import_customers', 'complete', '2022-01-01 22:53:23', '2022-01-01 23:53:23', '[1]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1641077603;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1641077603;}', 2, 1, '2022-01-01 22:53:27', '2022-01-01 23:53:27', 0, NULL),
(35, 'wc-admin_import_customers', 'complete', '2022-01-02 00:01:29', '2022-01-02 01:01:29', '[1]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1641081689;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1641081689;}', 2, 1, '2022-01-02 00:02:13', '2022-01-02 01:02:13', 0, NULL),
(36, 'wc-admin_import_customers', 'complete', '2022-01-02 20:34:05', '2022-01-02 21:34:05', '[2]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1641155645;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1641155645;}', 2, 1, '2022-01-02 20:34:11', '2022-01-02 21:34:11', 0, NULL),
(37, 'wc-admin_import_customers', 'complete', '2022-01-07 12:39:55', '2022-01-07 13:39:55', '[1]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1641559195;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1641559195;}', 2, 1, '2022-01-07 12:43:42', '2022-01-07 13:43:42', 0, NULL);
-- --------------------------------------------------------
--
-- Structure de la table `wp_actionscheduler_claims`
--
DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
CREATE TABLE `wp_actionscheduler_claims` (
`claim_id` bigint(20) UNSIGNED NOT NULL,
`date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `wp_actionscheduler_groups`
--
DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
CREATE TABLE `wp_actionscheduler_groups` (
`group_id` bigint(20) UNSIGNED NOT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `wp_actionscheduler_groups`
--
INSERT INTO `wp_actionscheduler_groups` (`group_id`, `slug`) VALUES
(1, 'action-scheduler-migration'),
(2, 'wc-admin-data');
-- --------------------------------------------------------
--
-- Structure de la table `wp_actionscheduler_logs`
--
DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
CREATE TABLE `wp_actionscheduler_logs` (
`log_id` bigint(20) UNSIGNED NOT NULL,
`action_id` bigint(20) UNSIGNED NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`log_date_local` datetime DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `wp_actionscheduler_logs`
--
INSERT INTO `wp_actionscheduler_logs` (`log_id`, `action_id`, `message`, `log_date_gmt`, `log_date_local`) VALUES
(1, 6, 'action created', '2021-12-26 13:46:40', '2021-12-26 14:46:40'),
(2, 6, 'action started via WP Cron', '2021-12-26 13:47:50', '2021-12-26 14:47:50'),
(3, 6, 'action complete via WP Cron', '2021-12-26 13:47:50', '2021-12-26 14:47:50'),
(4, 7, 'action created', '2021-12-26 14:28:46', '2021-12-26 15:28:46'),
(5, 7, 'action started via WP Cron', '2021-12-26 14:29:50', '2021-12-26 15:29:50'),
(6, 7, 'action complete via WP Cron', '2021-12-26 14:29:50', '2021-12-26 15:29:50'),
(7, 8, 'action created', '2021-12-26 15:01:10', '2021-12-26 16:01:10'),
(8, 8, 'action started via Async Request', '2021-12-26 15:01:16', '2021-12-26 16:01:16'),
(9, 8, 'action complete via Async Request', '2021-12-26 15:01:16', '2021-12-26 16:01:16'),
(10, 9, 'action created', '2021-12-26 15:02:25', '2021-12-26 16:02:25'),
(11, 9, 'action started via WP Cron', '2021-12-26 15:03:14', '2021-12-26 16:03:14'),
(12, 9, 'action complete via WP Cron', '2021-12-26 15:03:14', '2021-12-26 16:03:14'),
(13, 10, 'action created', '2021-12-26 15:03:31', '2021-12-26 16:03:31'),
(14, 10, 'action started via WP Cron', '2021-12-26 15:04:13', '2021-12-26 16:04:13'),
(15, 10, 'action complete via WP Cron', '2021-12-26 15:04:14', '2021-12-26 16:04:14'),
(16, 11, 'action created', '2021-12-26 15:05:17', '2021-12-26 16:05:17'),
(17, 11, 'action started via Async Request', '2021-12-26 15:05:27', '2021-12-26 16:05:27'),
(18, 11, 'action complete via Async Request', '2021-12-26 15:05:27', '2021-12-26 16:05:27'),
(19, 12, 'action created', '2021-12-26 15:06:27', '2021-12-26 16:06:27'),
(20, 12, 'action started via Async Request', '2021-12-26 15:06:29', '2021-12-26 16:06:29'),
(21, 12, 'action complete via Async Request', '2021-12-26 15:06:29', '2021-12-26 16:06:29'),
(22, 13, 'action created', '2021-12-26 15:06:32', '2021-12-26 16:06:32'),
(23, 13, 'action started via Async Request', '2021-12-26 15:06:35', '2021-12-26 16:06:35'),
(24, 13, 'action complete via Async Request', '2021-12-26 15:06:36', '2021-12-26 16:06:36'),
(25, 14, 'action created', '2021-12-26 15:07:03', '2021-12-26 16:07:03'),
(26, 14, 'action started via WP Cron', '2021-12-26 15:07:05', '2021-12-26 16:07:05'),
(27, 14, 'action complete via WP Cron', '2021-12-26 15:07:05', '2021-12-26 16:07:05'),
(28, 15, 'action created', '2021-12-26 15:07:09', '2021-12-26 16:07:09'),
(29, 15, 'action started via Async Request', '2021-12-26 15:07:35', '2021-12-26 16:07:35'),
(30, 15, 'action complete via Async Request', '2021-12-26 15:07:36', '2021-12-26 16:07:36'),
(31, 16, 'action created', '2021-12-26 15:07:53', '2021-12-26 16:07:53'),
(32, 16, 'action started via WP Cron', '2021-12-26 15:08:07', '2021-12-26 16:08:07'),
(33, 16, 'action complete via WP Cron', '2021-12-26 15:08:07', '2021-12-26 16:08:07'),
(34, 17, 'action created', '2021-12-26 15:08:27', '2021-12-26 16:08:27'),
(35, 17, 'action started via Async Request', '2021-12-26 15:08:46', '2021-12-26 16:08:46'),
(36, 17, 'action complete via Async Request', '2021-12-26 15:08:46', '2021-12-26 16:08:46'),
(37, 18, 'action created', '2021-12-26 15:13:07', '2021-12-26 16:13:07'),
(38, 18, 'action started via WP Cron', '2021-12-26 15:13:10', '2021-12-26 16:13:10'),
(39, 18, 'action complete via WP Cron', '2021-12-26 15:13:11', '2021-12-26 16:13:11'),
(40, 19, 'action created', '2021-12-26 15:14:26', '2021-12-26 16:14:26'),
(41, 19, 'action started via Async Request', '2021-12-26 15:14:29', '2021-12-26 16:14:29'),
(42, 19, 'action complete via Async Request', '2021-12-26 15:14:29', '2021-12-26 16:14:29'),
(43, 20, 'action created', '2021-12-26 15:14:58', '2021-12-26 16:14:58'),
(44, 20, 'action started via WP Cron', '2021-12-26 15:15:06', '2021-12-26 16:15:06'),
(45, 20, 'action complete via WP Cron', '2021-12-26 15:15:06', '2021-12-26 16:15:06'),
(46, 21, 'action created', '2021-12-26 15:15:13', '2021-12-26 16:15:13'),
(47, 21, 'action started via WP Cron', '2021-12-26 15:16:19', '2021-12-26 16:16:19'),
(48, 21, 'action complete via WP Cron', '2021-12-26 15:16:19', '2021-12-26 16:16:19'),
(49, 22, 'action created', '2021-12-26 15:20:08', '2021-12-26 16:20:08'),
(50, 22, 'action started via Async Request', '2021-12-26 15:20:09', '2021-12-26 16:20:09'),
(51, 22, 'action complete via Async Request', '2021-12-26 15:20:09', '2021-12-26 16:20:09'),
(52, 23, 'action created', '2021-12-26 15:20:36', '2021-12-26 16:20:36'),
(53, 23, 'action started via WP Cron', '2021-12-26 15:21:12', '2021-12-26 16:21:12'),
(54, 23, 'action complete via WP Cron', '2021-12-26 15:21:12', '2021-12-26 16:21:12'),
(55, 24, 'action created', '2021-12-26 15:21:21', '2021-12-26 16:21:21'),
(56, 24, 'action started via WP Cron', '2021-12-26 15:23:02', '2021-12-26 16:23:02'),
(57, 24, 'action complete via WP Cron', '2021-12-26 15:23:02', '2021-12-26 16:23:02'),
(58, 25, 'action created', '2021-12-26 15:28:29', '2021-12-26 16:28:29'),
(59, 25, 'action started via WP Cron', '2021-12-26 15:29:17', '2021-12-26 16:29:17'),
(60, 25, 'action complete via WP Cron', '2021-12-26 15:29:18', '2021-12-26 16:29:18'),
(61, 26, 'action created', '2021-12-26 15:30:09', '2021-12-26 16:30:09'),
(62, 26, 'action started via Async Request', '2021-12-26 15:30:21', '2021-12-26 16:30:21'),
(63, 26, 'action complete via Async Request', '2021-12-26 15:30:21', '2021-12-26 16:30:21'),
(64, 27, 'action created', '2021-12-26 15:31:01', '2021-12-26 16:31:01'),
(65, 27, 'action started via WP Cron', '2021-12-26 15:31:05', '2021-12-26 16:31:05'),
(66, 27, 'action complete via WP Cron', '2021-12-26 15:31:05', '2021-12-26 16:31:05'),
(67, 28, 'action created', '2021-12-26 15:31:07', '2021-12-26 16:31:07'),
(68, 28, 'action started via WP Cron', '2021-12-26 15:32:11', '2021-12-26 16:32:11'),
(69, 28, 'action complete via WP Cron', '2021-12-26 15:32:11', '2021-12-26 16:32:11'),
(70, 29, 'action created', '2021-12-26 15:45:40', '2021-12-26 16:45:40'),
(71, 29, 'action started via WP Cron', '2021-12-26 15:46:07', '2021-12-26 16:46:07'),
(72, 29, 'action complete via WP Cron', '2021-12-26 15:46:08', '2021-12-26 16:46:08'),
(73, 30, 'action created', '2021-12-26 15:46:09', '2021-12-26 16:46:09'),
(74, 30, 'action started via WP Cron', '2021-12-26 15:47:14', '2021-12-26 16:47:14'),
(75, 30, 'action complete via WP Cron', '2021-12-26 15:47:14', '2021-12-26 16:47:14'),
(76, 31, 'action created', '2021-12-28 11:54:43', '2021-12-28 12:54:43'),
(77, 32, 'action created', '2021-12-28 11:55:31', '2021-12-28 12:55:31'),
(78, 31, 'action started via WP Cron', '2021-12-28 11:55:46', '2021-12-28 12:55:46'),
(79, 31, 'action complete via WP Cron', '2021-12-28 11:55:46', '2021-12-28 12:55:46'),
(80, 32, 'action started via WP Cron', '2021-12-28 11:55:46', '2021-12-28 12:55:46'),
(81, 32, 'action complete via WP Cron', '2021-12-28 11:55:47', '2021-12-28 12:55:47'),
(82, 33, 'action created', '2021-12-29 14:46:25', '2021-12-29 15:46:25'),
(83, 33, 'action started via WP Cron', '2022-01-01 22:53:10', '2022-01-01 23:53:10'),
(84, 33, 'action complete via WP Cron', '2022-01-01 22:53:10', '2022-01-01 23:53:10'),
(85, 34, 'action created', '2022-01-01 22:53:19', '2022-01-01 23:53:19'),
(86, 34, 'action started via Async Request', '2022-01-01 22:53:27', '2022-01-01 23:53:27'),
(87, 34, 'action complete via Async Request', '2022-01-01 22:53:27', '2022-01-01 23:53:27'),
(88, 35, 'action created', '2022-01-02 00:01:24', '2022-01-02 01:01:24'),
(89, 35, 'action started via WP Cron', '2022-01-02 00:02:13', '2022-01-02 01:02:13'),
(90, 35, 'action complete via WP Cron', '2022-01-02 00:02:13', '2022-01-02 01:02:13'),
(91, 36, 'action created', '2022-01-02 20:34:01', '2022-01-02 21:34:01'),
(92, 36, 'action started via WP Cron', '2022-01-02 20:34:11', '2022-01-02 21:34:11'),
(93, 36, 'action complete via WP Cron', '2022-01-02 20:34:11', '2022-01-02 21:34:11'),
(94, 37, 'action created', '2022-01-07 12:39:50', '2022-01-07 13:39:50'),
(95, 37, 'action started via WP Cron', '2022-01-07 12:43:41', '2022-01-07 13:43:41'),
(96, 37, 'action complete via WP Cron', '2022-01-07 12:43:42', '2022-01-07 13:43:42');
-- --------------------------------------------------------
--
-- Structure de la table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL,
`comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`comment_author` tinytext COLLATE utf8mb4_unicode_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',
`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;
--
-- Déchargement des données de la table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Un commentateur WordPress', '[email protected]', 'https://wordpress.org/', '', '2021-12-22 17:44:34', '2021-12-22 16:44:34', 'Bonjour, ceci est un commentaire.\nPour débuter avec la modération, la modification et la suppression de commentaires, veuillez visiter l’écran des Commentaires dans le Tableau de bord.\nLes avatars des personnes qui commentent arrivent depuis <a href=\"https://gravatar.com\">Gravatar</a>.', 0, '1', '', 'comment', 0, 0);
-- --------------------------------------------------------
--
-- Structure de la table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
CREATE TABLE `wp_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 `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
CREATE TABLE `wp_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;
--
-- Déchargement des données de la table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost/dixeed_site', 'yes'),
(2, 'home', 'http://localhost/dixeed_site', 'yes'),
(3, 'blogname', 'Dixeed_ECommerce', 'yes'),
(4, 'blogdescription', 'Un site utilisant WordPress', 'yes'),
(5, 'users_can_register', '1', 'yes'),
(6, 'admin_email', '[email protected]', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '[email protected]', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '0', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'j F Y', 'yes'),
(24, 'time_format', 'G\\hi', 'yes'),
(25, 'links_updated_date_format', 'd F Y G\\hi', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:164:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:32:\"(.?.+?)/edit-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&edit-password=$matches[3]\";s:31:\"(.?.+?)/edit-profile(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-profile=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:30:\"(.?.+?)/user-logout(/(.*))?/?$\";s:54:\"index.php?pagename=$matches[1]&user-logout=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:5:{i:0;s:33:\"appearing-text-dashboard/main.php\";i:1;s:33:\"fake-pay-for-woocommerce/main.php\";i:2;s:39:\"user-registration/user-registration.php\";i:3;s:49:\"woo-variation-swatches/woo-variation-swatches.php\";i:4;s:27:\"woocommerce/woocommerce.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', 'a:5:{i:0;s:70:\"D:\\Xampp\\htdocs\\dixeed_site/wp-content/themes/storefront/functions.php\";i:1;s:66:\"D:\\Xampp\\htdocs\\dixeed_site/wp-content/themes/storefront/style.css\";i:3;s:67:\"D:\\Xampp\\htdocs\\dixeed_site/wp-content/themes/storefront/style.scss\";i:4;s:70:\"D:\\Xampp\\htdocs\\dixeed_site/wp-content/themes/storefront/style-rtl.css\";i:5;s:0:\"\";}', 'no'),
(40, 'template', 'storefront', 'yes'),
(41, 'stylesheet', 'storefront', 'yes'),
(42, 'comment_registration', '0', 'yes'),
(43, 'html_type', 'text/html', 'yes'),
(44, 'use_trackback', '0', 'yes'),
(45, 'default_role', 'customer', 'yes'),
(46, 'db_version', '49752', 'yes'),
(47, 'uploads_use_yearmonth_folders', '1', 'yes'),
(48, 'upload_path', '', 'yes'),
(49, 'blog_public', '0', 'yes'),
(50, 'default_link_category', '2', 'yes'),
(51, 'show_on_front', 'posts', 'yes'),
(52, 'tag_base', '', 'yes'),
(53, 'show_avatars', '1', 'yes'),
(54, 'avatar_rating', 'G', 'yes'),
(55, 'upload_url_path', '', 'yes'),
(56, 'thumbnail_size_w', '150', 'yes'),
(57, 'thumbnail_size_h', '150', 'yes'),
(58, 'thumbnail_crop', '1', 'yes'),
(59, 'medium_size_w', '300', 'yes'),
(60, 'medium_size_h', '300', 'yes'),
(61, 'avatar_default', 'mystery', 'yes'),
(62, 'large_size_w', '1024', 'yes'),
(63, 'large_size_h', '1024', 'yes'),
(64, 'image_default_link_type', 'none', 'yes'),
(65, 'image_default_size', '', 'yes'),
(66, 'image_default_align', '', 'yes'),
(67, 'close_comments_for_old_posts', '0', 'yes'),
(68, 'close_comments_days_old', '14', 'yes'),
(69, 'thread_comments', '1', 'yes'),
(70, 'thread_comments_depth', '5', 'yes'),
(71, 'page_comments', '0', 'yes'),
(72, 'comments_per_page', '50', 'yes'),
(73, 'default_comments_page', 'newest', 'yes'),
(74, 'comment_order', 'asc', 'yes'),
(75, 'sticky_posts', 'a:0:{}', 'yes'),
(76, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(77, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(78, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(79, 'uninstall_plugins', 'a:0:{}', 'no'),
(80, 'timezone_string', 'Europe/Paris', 'yes'),
(81, 'page_for_posts', '0', 'yes'),
(82, 'page_on_front', '0', 'yes'),
(83, 'default_post_format', '0', 'yes'),
(84, 'link_manager_enabled', '0', 'yes'),
(85, 'finished_splitting_shared_terms', '1', 'yes'),
(86, 'site_icon', '0', 'yes'),
(87, 'medium_large_size_w', '768', 'yes'),
(88, 'medium_large_size_h', '0', 'yes'),
(89, 'wp_page_for_privacy_policy', '3', 'yes'),
(90, 'show_comments_cookies_opt_in', '1', 'yes'),
(91, 'admin_email_lifespan', '1655743469', 'yes'),
(92, 'disallowed_keys', '', 'no'),
(93, 'comment_previously_approved', '1', 'yes'),
(94, 'auto_plugin_theme_update_emails', 'a:0:{}', 'no'),
(95, 'auto_update_core_dev', 'enabled', 'yes'),
(96, 'auto_update_core_minor', 'enabled', 'yes'),
(97, 'auto_update_core_major', 'enabled', 'yes'),
(98, 'wp_force_deactivated_plugins', 'a:0:{}', 'yes'),
(99, 'initial_db_version', '49752', 'yes'),
(100, 'wp_user_roles', 'a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:132:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:24:\"manage_user_registration\";b:1;s:22:\"edit_user_registration\";b:1;s:22:\"read_user_registration\";b:1;s:24:\"delete_user_registration\";b:1;s:23:\"edit_user_registrations\";b:1;s:30:\"edit_others_user_registrations\";b:1;s:26:\"publish_user_registrations\";b:1;s:31:\"read_private_user_registrations\";b:1;s:25:\"delete_user_registrations\";b:1;s:33:\"delete_private_user_registrations\";b:1;s:35:\"delete_published_user_registrations\";b:1;s:32:\"delete_others_user_registrations\";b:1;s:31:\"edit_private_user_registrations\";b:1;s:33:\"edit_published_user_registrations\";b:1;s:30:\"manage_user_registration_terms\";b:1;s:28:\"edit_user_registration_terms\";b:1;s:30:\"delete_user_registration_terms\";b:1;s:30:\"assign_user_registration_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}', 'yes'),
(101, 'fresh_site', '0', 'yes'),
(102, 'WPLANG', 'fr_FR', 'yes'),
(103, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:159:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Articles récents</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:233:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Commentaires récents</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:151:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Catégories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(104, 'sidebars_widgets', 'a:8:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:9:\"sidebar-1\";a:0:{}s:8:\"header-1\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}', 'yes'),
(105, 'cron', 'a:17:{i:1641561064;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1641562778;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1641563076;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1641563192;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1641563195;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1641563197;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1641563214;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1641573875;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1641573876;a:4:{s:18:\"wp_https_detection\";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_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:1641573987;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1641577366;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1641577368;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:1641584787;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1641596400;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1641822447;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1642092275;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}', 'yes'),
(106, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(113, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(114, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(115, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(116, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(117, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(119, 'recovery_keys', 'a:0:{}', 'yes'),
(120, 'theme_mods_twentytwentyone', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1640195056;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}', 'yes'),
(121, 'https_detection_errors', 'a:1:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:32:\"La vérification SSL a échoué.\";}}', 'yes'),
(139, 'can_compress_scripts', '1', 'no'),
(155, 'finished_updating_comment_type', '1', 'yes'),
(157, 'current_theme', 'Storefront', 'yes'),
(158, 'theme_mods_storefront', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:40;}', 'yes'),
(159, 'theme_switched', '', 'yes'),
(160, 'storefront_nux_fresh_site', '1', 'yes'),
(161, 'storefront_cleared_widgets', '1', 'yes'),
(175, '_transient_health-check-site-status-result', '{\"good\":12,\"recommended\":4,\"critical\":3}', 'yes'),
(188, 'recently_activated', 'a:0:{}', 'yes'),
(194, 'action_scheduler_hybrid_store_demarkation', '5', 'yes'),
(195, 'schema-ActionScheduler_StoreSchema', '5.0.1640526364', 'yes'),
(196, 'schema-ActionScheduler_LoggerSchema', '3.0.1640526364', 'yes'),
(199, 'woocommerce_schema_version', '430', 'yes'),
(200, 'woocommerce_store_address', '28 rue Imbert-Colomes', 'yes'),
(201, 'woocommerce_store_address_2', '', 'yes'),
(202, 'woocommerce_store_city', 'Lyon', 'yes'),
(203, 'woocommerce_default_country', 'FR', 'yes'),
(204, 'woocommerce_store_postcode', '699001', 'yes'),
(205, 'woocommerce_allowed_countries', 'specific', 'yes'),
(206, 'woocommerce_all_except_countries', 'a:0:{}', 'yes'),
(207, 'woocommerce_specific_allowed_countries', 'a:1:{i:0;s:2:\"FR\";}', 'yes'),
(208, 'woocommerce_ship_to_countries', '', 'yes'),
(209, 'woocommerce_specific_ship_to_countries', 'a:0:{}', 'yes'),
(210, 'woocommerce_default_customer_address', 'base', 'yes'),
(211, 'woocommerce_calc_taxes', 'no', 'yes'),
(212, 'woocommerce_enable_coupons', 'yes', 'yes'),
(213, 'woocommerce_calc_discounts_sequentially', 'no', 'no'),
(214, 'woocommerce_currency', 'EUR', 'yes'),
(215, 'woocommerce_currency_pos', 'right', 'yes'),
(216, 'woocommerce_price_thousand_sep', ',', 'yes'),
(217, 'woocommerce_price_decimal_sep', '.', 'yes'),
(218, 'woocommerce_price_num_decimals', '2', 'yes'),
(219, 'woocommerce_shop_page_id', '6', 'yes'),
(220, 'woocommerce_cart_redirect_after_add', 'no', 'yes'),
(221, 'woocommerce_enable_ajax_add_to_cart', 'yes', 'yes'),
(222, 'woocommerce_placeholder_image', '5', 'yes'),
(223, 'woocommerce_weight_unit', 'kg', 'yes'),
(224, 'woocommerce_dimension_unit', 'cm', 'yes'),
(225, 'woocommerce_enable_reviews', 'yes', 'yes'),
(226, 'woocommerce_review_rating_verification_label', 'yes', 'no'),
(227, 'woocommerce_review_rating_verification_required', 'no', 'no'),
(228, 'woocommerce_enable_review_rating', 'yes', 'yes'),
(229, 'woocommerce_review_rating_required', 'yes', 'no'),
(230, 'woocommerce_manage_stock', 'yes', 'yes'),
(231, 'woocommerce_hold_stock_minutes', '60', 'no'),
(232, 'woocommerce_notify_low_stock', 'yes', 'no'),
(233, 'woocommerce_notify_no_stock', 'yes', 'no'),
(234, 'woocommerce_stock_email_recipient', '[email protected]', 'no'),
(235, 'woocommerce_notify_low_stock_amount', '2', 'no'),
(236, 'woocommerce_notify_no_stock_amount', '0', 'yes'),
(237, 'woocommerce_hide_out_of_stock_items', 'no', 'yes'),
(238, 'woocommerce_stock_format', '', 'yes'),
(239, 'woocommerce_file_download_method', 'force', 'no'),
(240, 'woocommerce_downloads_redirect_fallback_allowed', 'no', 'no'),
(241, 'woocommerce_downloads_require_login', 'no', 'no'),
(242, 'woocommerce_downloads_grant_access_after_payment', 'yes', 'no'),
(243, 'woocommerce_downloads_add_hash_to_filename', 'yes', 'yes'),
(244, 'woocommerce_prices_include_tax', 'no', 'yes'),
(245, 'woocommerce_tax_based_on', 'shipping', 'yes'),
(246, 'woocommerce_shipping_tax_class', 'inherit', 'yes'),
(247, 'woocommerce_tax_round_at_subtotal', 'no', 'yes'),
(248, 'woocommerce_tax_classes', '', 'yes'),
(249, 'woocommerce_tax_display_shop', 'excl', 'yes'),
(250, 'woocommerce_tax_display_cart', 'excl', 'yes'),
(251, 'woocommerce_price_display_suffix', '', 'yes'),
(252, 'woocommerce_tax_total_display', 'itemized', 'no'),
(253, 'woocommerce_enable_shipping_calc', 'yes', 'no'),
(254, 'woocommerce_shipping_cost_requires_address', 'no', 'yes'),
(255, 'woocommerce_ship_to_destination', 'billing', 'no'),
(256, 'woocommerce_shipping_debug_mode', 'no', 'yes'),
(257, 'woocommerce_enable_guest_checkout', 'yes', 'no'),
(258, 'woocommerce_enable_checkout_login_reminder', 'no', 'no'),
(259, 'woocommerce_enable_signup_and_login_from_checkout', 'no', 'no'),
(260, 'woocommerce_enable_myaccount_registration', 'no', 'no'),
(261, 'woocommerce_registration_generate_username', 'yes', 'no'),
(262, 'woocommerce_registration_generate_password', 'yes', 'no'),
(263, 'woocommerce_erasure_request_removes_order_data', 'no', 'no'),
(264, 'woocommerce_erasure_request_removes_download_data', 'no', 'no'),
(265, 'woocommerce_allow_bulk_remove_personal_data', 'no', 'no'),
(266, 'woocommerce_registration_privacy_policy_text', 'Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].', 'yes'),
(267, 'woocommerce_checkout_privacy_policy_text', 'Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].', 'yes'),
(268, 'woocommerce_delete_inactive_accounts', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(269, 'woocommerce_trash_pending_orders', '', 'no'),
(270, 'woocommerce_trash_failed_orders', '', 'no'),
(271, 'woocommerce_trash_cancelled_orders', '', 'no'),
(272, 'woocommerce_anonymize_completed_orders', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(273, 'woocommerce_email_from_name', 'Dixeed_ECommerce', 'no'),
(274, 'woocommerce_email_from_address', '[email protected]', 'no'),
(275, 'woocommerce_email_header_image', '', 'no'),
(276, 'woocommerce_email_footer_text', '{site_title} — Built with {WooCommerce}', 'no'),
(277, 'woocommerce_email_base_color', '#96588a', 'no'),
(278, 'woocommerce_email_background_color', '#f7f7f7', 'no'),
(279, 'woocommerce_email_body_background_color', '#ffffff', 'no'),
(280, 'woocommerce_email_text_color', '#3c3c3c', 'no'),
(281, 'woocommerce_merchant_email_notifications', 'no', 'no'),
(282, 'woocommerce_cart_page_id', '7', 'no'),
(283, 'woocommerce_checkout_page_id', '8', 'no'),
(284, 'woocommerce_myaccount_page_id', '9', 'no'),
(285, 'woocommerce_terms_page_id', '', 'no'),
(286, 'woocommerce_force_ssl_checkout', 'no', 'yes'),
(287, 'woocommerce_unforce_ssl_checkout', 'no', 'yes'),
(288, 'woocommerce_checkout_pay_endpoint', 'order-pay', 'yes'),
(289, 'woocommerce_checkout_order_received_endpoint', 'order-received', 'yes'),
(290, 'woocommerce_myaccount_add_payment_method_endpoint', 'add-payment-method', 'yes'),
(291, 'woocommerce_myaccount_delete_payment_method_endpoint', 'delete-payment-method', 'yes'),
(292, 'woocommerce_myaccount_set_default_payment_method_endpoint', 'set-default-payment-method', 'yes'),
(293, 'woocommerce_myaccount_orders_endpoint', 'orders', 'yes'),
(294, 'woocommerce_myaccount_view_order_endpoint', 'view-order', 'yes'),
(295, 'woocommerce_myaccount_downloads_endpoint', 'downloads', 'yes'),
(296, 'woocommerce_myaccount_edit_account_endpoint', 'edit-account', 'yes'),
(297, 'woocommerce_myaccount_edit_address_endpoint', 'edit-address', 'yes'),
(298, 'woocommerce_myaccount_payment_methods_endpoint', 'payment-methods', 'yes'),
(299, 'woocommerce_myaccount_lost_password_endpoint', 'lost-password', 'yes'),
(300, 'woocommerce_logout_endpoint', 'customer-logout', 'yes'),
(301, 'woocommerce_api_enabled', 'no', 'yes'),
(302, 'woocommerce_allow_tracking', 'no', 'no'),
(303, 'woocommerce_show_marketplace_suggestions', 'no', 'no'),
(304, 'woocommerce_single_image_width', '600', 'yes'),
(305, 'woocommerce_thumbnail_image_width', '300', 'yes'),
(306, 'woocommerce_checkout_highlight_required_fields', 'yes', 'yes'),
(307, 'woocommerce_demo_store', 'no', 'no'),
(309, 'woocommerce_permalinks', 'a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}', 'yes'),
(310, 'current_theme_supports_woocommerce', 'yes', 'yes'),
(311, 'woocommerce_queue_flush_rewrite_rules', 'no', 'yes'),
(314, 'default_product_cat', '15', 'yes'),
(316, 'woocommerce_refund_returns_page_id', '10', 'yes'),
(319, 'woocommerce_paypal_settings', 'a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:21:\"[email protected]\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:21:\"[email protected]\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}', 'yes'),
(320, 'woocommerce_version', '6.0.0', 'yes'),
(321, 'woocommerce_db_version', '6.0.0', 'yes'),
(322, 'woocommerce_inbox_variant_assignment', '4', 'yes'),
(326, '_transient_jetpack_autoloader_plugin_paths', 'a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}', 'yes'),
(327, 'action_scheduler_lock_async-request-runner', '1641561104', 'yes'),
(328, 'woocommerce_admin_notices', 'a:0:{}', 'yes'),
(329, 'woocommerce_maxmind_geolocation_settings', 'a:1:{s:15:\"database_prefix\";s:32:\"DcI2Zd03QRWjsBWMRsUKOS0hIWb3LhB3\";}', 'yes'),
(330, '_transient_woocommerce_webhook_ids_status_active', 'a:0:{}', 'yes'),
(331, 'widget_woocommerce_widget_cart', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(332, 'widget_woocommerce_layered_nav_filters', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(333, 'widget_woocommerce_layered_nav', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(334, 'widget_woocommerce_price_filter', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(335, 'widget_woocommerce_product_categories', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(336, 'widget_woocommerce_product_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(337, 'widget_woocommerce_product_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(338, 'widget_woocommerce_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(339, 'widget_woocommerce_recently_viewed_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(340, 'widget_woocommerce_top_rated_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(341, 'widget_woocommerce_recent_reviews', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(342, 'widget_woocommerce_rating_filter', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(345, 'woocommerce_admin_version', '2.9.4', 'yes'),
(346, 'woocommerce_admin_install_timestamp', '1640526395', 'yes'),
(347, 'wc_remote_inbox_notifications_wca_updated', '', 'no'),
(350, 'wc_remote_inbox_notifications_stored_state', 'O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}', 'no'),
(354, '_transient_wc_count_comments', 'O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}', 'yes'),
(355, 'wc_blocks_surface_cart_checkout_probability', '14', 'yes'),
(356, 'wc_blocks_db_schema_version', '260', 'yes'),
(357, 'woocommerce_meta_box_errors', 'a:0:{}', 'yes'),
(360, '_transient_woocommerce_reports-transient-version', '1640526406', 'yes'),
(370, 'woocommerce_task_list_completed_lists', 'a:1:{i:0;s:8:\"extended\";}', 'yes'),
(374, 'action_scheduler_migration_status', 'complete', 'yes'),
(391, 'product_cat_children', 'a:0:{}', 'yes'),
(402, '_transient_product_query-transient-version', '1641077691', 'yes'),
(403, '_transient_product-transient-version', '1640692531', 'yes'),
(426, '_transient_shipping-transient-version', '1640693150', 'yes'),
(427, '_transient_timeout_wc_shipping_method_count_legacy', '1643669600', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(428, '_transient_wc_shipping_method_count_legacy', 'a:2:{s:7:\"version\";s:10:\"1640693150\";s:5:\"value\";i:2;}', 'no'),
(446, '_transient_wvs_template-transient-version', '1640692531', 'yes'),
(447, '_transient_wvs_attribute_taxonomy-transient-version', '1640692531', 'yes'),
(448, '_transient_wvs_archive_template-transient-version', '1640692531', 'yes'),
(449, '_transient_wvs_variation_attribute_options_html-transient-version', '1640692531', 'yes'),
(453, '_transient_wvs_attribute_taxonomy_pa_color', 'a:2:{s:7:\"version\";s:10:\"1640531891\";s:5:\"value\";O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"4\";s:14:\"attribute_name\";s:5:\"color\";s:15:\"attribute_label\";s:5:\"Color\";s:14:\"attribute_type\";s:5:\"color\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}}', 'yes'),
(463, '_transient_timeout_wc_var_prices_13', '1643123342', 'no'),
(464, '_transient_wc_var_prices_13', '{\"version\":\"1640531325\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":[],\"regular_price\":[],\"sale_price\":[]}}', 'no'),
(466, '_transient_wvs_attribute_taxonomy_pa_image_attribute', 'a:2:{s:7:\"version\";s:10:\"1640530631\";s:5:\"value\";O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"2\";s:14:\"attribute_name\";s:15:\"image_attribute\";s:15:\"attribute_label\";s:5:\"Image\";s:14:\"attribute_type\";s:5:\"image\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}}', 'yes'),
(535, '_transient_wvs_attribute_taxonomy_pa_color_attribute', 'a:2:{s:7:\"version\";s:10:\"1640532667\";s:5:\"value\";O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"3\";s:14:\"attribute_name\";s:15:\"color_attribute\";s:15:\"attribute_label\";s:5:\"Color\";s:14:\"attribute_type\";s:5:\"image\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}}', 'yes'),
(599, '_transient_timeout_wc_var_prices_16', '1643123329', 'no'),
(600, '_transient_wc_var_prices_16', '{\"version\":\"1640531325\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"25\":\"29.99\",\"26\":\"29.99\",\"27\":\"29.99\"},\"regular_price\":{\"25\":\"29.99\",\"26\":\"29.99\",\"27\":\"29.99\"},\"sale_price\":{\"25\":\"29.99\",\"26\":\"29.99\",\"27\":\"29.99\"}}}', 'no'),
(647, '_transient_wc_attribute_taxonomies', 'a:2:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"4\";s:14:\"attribute_name\";s:5:\"color\";s:15:\"attribute_label\";s:5:\"Color\";s:14:\"attribute_type\";s:5:\"color\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:1;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"3\";s:14:\"attribute_name\";s:15:\"color_attribute\";s:15:\"attribute_label\";s:5:\"Color\";s:14:\"attribute_type\";s:5:\"image\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}}', 'yes'),
(909, '_transient_timeout_wc_term_counts', '1644150363', 'no'),
(910, '_transient_wc_term_counts', 'a:3:{i:16;s:1:\"1\";i:17;s:1:\"1\";i:15;s:1:\"0\";}', 'no'),
(911, '_transient_timeout_wc_product_children_28', '1643284546', 'no'),
(912, '_transient_wc_product_children_28', 'a:2:{s:3:\"all\";a:3:{i:0;i:29;i:1;i:30;i:2;i:31;}s:7:\"visible\";a:3:{i:0;i:29;i:1;i:30;i:2;i:31;}}', 'no'),
(914, '_transient_timeout_wc_var_prices_28', '1643284547', 'no'),
(915, '_transient_wc_var_prices_28', '{\"version\":\"1640692531\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"29\":\"29.99\",\"30\":\"29.99\",\"31\":\"29.99\"},\"regular_price\":{\"29\":\"29.99\",\"30\":\"29.99\",\"31\":\"29.99\"},\"sale_price\":{\"29\":\"29.99\",\"30\":\"29.99\",\"31\":\"29.99\"}}}', 'no'),
(921, '_transient_timeout_wc_shipping_method_count', '1643284867', 'no'),
(922, '_transient_wc_shipping_method_count', 'a:2:{s:7:\"version\";s:10:\"1640529526\";s:5:\"value\";i:0;}', 'no'),
(931, 'storefront_nux_guided_tour', '1', 'yes'),
(932, 'widget_recent-posts', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(934, 'widget_recent-comments', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(940, 'woocommerce_maybe_regenerate_images_hash', '27acde77266b4d2a3491118955cb3f66', 'yes'),
(1009, '_site_transient_timeout_php_check_bbe0b0d516d9a70a0e1aa1834ea07179', '1641682405', 'no'),
(1010, '_site_transient_php_check_bbe0b0d516d9a70a0e1aa1834ea07179', 'a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'no'),
(1015, '_site_transient_timeout_browser_d44bfba7ec2b67d9eb9e6c1eea55c253', '1641682489', 'no'),
(1016, '_site_transient_browser_d44bfba7ec2b67d9eb9e6c1eea55c253', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"96.0.4664.110\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(1032, 'new_admin_email', '[email protected]', 'yes'),
(1053, 'user_registration_default_form_page_id', '51', 'yes'),
(1056, 'user_registration_version', '2.1.1', 'yes'),
(1057, 'user_registration_db_version', '2.1.1', 'yes'),
(1058, 'user_registration_activated', '2022-01-02', 'yes'),
(1059, 'user_registration_admin_notices', 'a:0:{}', 'yes'),
(1060, 'user_registration_users_listing_viewed', '2022-01-02 00:27:31', 'yes'),
(1061, 'user_registration_myaccount_page_id', '52', 'yes'),
(1062, 'user_registration_registration_page_id', '53', 'yes'),
(1064, 'user_registration_general_setting_login_options', 'auto_login', 'yes'),
(1065, 'user_registration_general_setting_disabled_user_roles', 'a:5:{i:0;s:6:\"editor\";i:1;s:6:\"author\";i:2;s:11:\"contributor\";i:3;s:10:\"subscriber\";i:4;s:8:\"customer\";}', 'yes'),
(1066, 'user_registration_login_option_hide_show_password', 'yes', 'yes'),
(1067, 'user_registration_general_setting_uninstall_option', 'no', 'yes'),
(1068, 'user_registration_ajax_form_submission_on_edit_profile', 'no', 'yes'),
(1069, 'user_registration_disable_profile_picture', 'no', 'yes'),
(1070, 'user_registration_disable_logout_confirmation', 'no', 'yes'),
(1071, 'user_registration_my_account_layout', 'horizontal', 'yes'),
(1072, 'user_registration_myaccount_edit_profile_endpoint', 'edit-profile', 'yes'),
(1073, 'user_registration_myaccount_change_password_endpoint', 'edit-password', 'yes'),
(1074, 'user_registration_myaccount_lost_password_endpoint', 'lost-password', 'yes'),
(1075, 'user_registration_logout_endpoint', 'user-logout', 'yes'),
(1077, '_transient_is_multi_author', '0', 'yes'),
(1205, '_transient_timeout_wc_featured_products', '1644150362', 'no'),
(1206, '_transient_wc_featured_products', 'a:0:{}', 'no'),
(1207, '_transient_timeout_wc_products_onsale', '1644150362', 'no'),
(1208, '_transient_wc_products_onsale', 'a:0:{}', 'no'),
(1209, '_transient_timeout_wc_product_loop_6147550c3f3af9236789687d89ed040c', '1644150362', 'no'),
(1210, '_transient_wc_product_loop_6147550c3f3af9236789687d89ed040c', 'a:2:{s:7:\"version\";s:10:\"1641077691\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:2:{i:0;i:37;i:1;i:28;}s:5:\"total\";i:2;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:2;s:12:\"current_page\";i:1;}}', 'no'),
(1211, '_transient_timeout_wc_product_loop_cd4ceb08a6a3e9bac7f4260a4e03a47f', '1644150363', 'no'),
(1212, '_transient_wc_product_loop_cd4ceb08a6a3e9bac7f4260a4e03a47f', 'a:2:{s:7:\"version\";s:10:\"1641077691\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:2:{i:0;i:28;i:1;i:37;}s:5:\"total\";i:2;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}}', 'no'),
(1216, '_site_transient_timeout_theme_roots', '1641560981', 'no'),
(1217, '_site_transient_theme_roots', 'a:4:{s:10:\"storefront\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}', 'no'),
(1218, '_transient_timeout__woocommerce_helper_updates', '1641602381', 'no'),
(1219, '_transient__woocommerce_helper_updates', 'a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1641559181;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}', 'no'),
(1221, '_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-5.8.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-5.8.3.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.8.3\";s:7:\"version\";s:5:\"5.8.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";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-5.8.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-5.8.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.3-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.8.3-partial-2.zip\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.8.3\";s:7:\"version\";s:5:\"5.8.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:5:\"5.8.2\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.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-5.8.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.3-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.8.3-partial-2.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.3-rollback-2.zip\";}s:7:\"current\";s:5:\"5.8.3\";s:7:\"version\";s:5:\"5.8.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:5:\"5.8.2\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1641559183;s:15:\"version_checked\";s:5:\"5.8.2\";s:12:\"translations\";a:1:{i:0;a:7:{s:4:\"type\";s:4:\"core\";s:4:\"slug\";s:7:\"default\";s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-25 12:20:46\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/fr_FR.zip\";s:10:\"autoupdate\";b:1;}}}', 'no'),
(1222, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1641559183;s:7:\"checked\";a:4:{s:10:\"storefront\";s:5:\"3.9.1\";s:14:\"twentynineteen\";s:3:\"2.1\";s:12:\"twentytwenty\";s:3:\"1.8\";s:15:\"twentytwentyone\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:4:{s:10:\"storefront\";a:6:{s:5:\"theme\";s:10:\"storefront\";s:11:\"new_version\";s:5:\"3.9.1\";s:3:\"url\";s:40:\"https://wordpress.org/themes/storefront/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/storefront.3.9.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.6.0\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.1.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:1:{i:0;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:10:\"storefront\";s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:19:\"2021-01-11 10:21:20\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/translation/theme/storefront/3.9.1/fr_FR.zip\";s:10:\"autoupdate\";b:1;}}}', 'no'),
(1223, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1641559184;s:8:\"response\";a:1:{s:39:\"user-registration/user-registration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/user-registration\";s:4:\"slug\";s:17:\"user-registration\";s:6:\"plugin\";s:39:\"user-registration/user-registration.php\";s:11:\"new_version\";s:5:\"2.1.2\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/user-registration/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/user-registration.2.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/user-registration/assets/icon-256x256.png?rev=2141788\";s:2:\"1x\";s:70:\"https://ps.w.org/user-registration/assets/icon-128x128.png?rev=2141788\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/user-registration/assets/banner-772x250.png?rev=2141793\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.8.3\";s:12:\"requires_php\";s:3:\"5.3\";}}s:12:\"translations\";a:2:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:22:\"woo-variation-swatches\";s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:6:\"1.1.19\";s:7:\"updated\";s:19:\"2021-11-08 11:18:52\";s:7:\"package\";s:90:\"https://downloads.wordpress.org/translation/plugin/woo-variation-swatches/1.1.19/fr_FR.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.0.0\";s:7:\"updated\";s:19:\"2021-12-21 15:54:09\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/woocommerce/6.0.0/fr_FR.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:3:{s:33:\"fake-pay-for-woocommerce/main.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/fake-pay-for-woocommerce\";s:4:\"slug\";s:24:\"fake-pay-for-woocommerce\";s:6:\"plugin\";s:33:\"fake-pay-for-woocommerce/main.php\";s:11:\"new_version\";s:5:\"1.0.1\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/fake-pay-for-woocommerce/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/fake-pay-for-woocommerce.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/fake-pay-for-woocommerce/assets/icon-256x256.png?rev=1891754\";s:2:\"1x\";s:77:\"https://ps.w.org/fake-pay-for-woocommerce/assets/icon-128x128.png?rev=1891754\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:49:\"woo-variation-swatches/woo-variation-swatches.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/woo-variation-swatches\";s:4:\"slug\";s:22:\"woo-variation-swatches\";s:6:\"plugin\";s:49:\"woo-variation-swatches/woo-variation-swatches.php\";s:11:\"new_version\";s:6:\"1.1.19\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/woo-variation-swatches/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/woo-variation-swatches.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/woo-variation-swatches/assets/icon-128x128.png?rev=1864242\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/woo-variation-swatches/assets/banner-1544x500.png?rev=2462963\";s:2:\"1x\";s:77:\"https://ps.w.org/woo-variation-swatches/assets/banner-772x250.png?rev=2305235\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"6.0.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";}}s:7:\"checked\";a:5:{s:33:\"appearing-text-dashboard/main.php\";s:0:\"\";s:33:\"fake-pay-for-woocommerce/main.php\";s:5:\"1.0.1\";s:39:\"user-registration/user-registration.php\";s:5:\"2.1.1\";s:49:\"woo-variation-swatches/woo-variation-swatches.php\";s:6:\"1.1.19\";s:27:\"woocommerce/woocommerce.php\";s:5:\"6.0.0\";}}', 'no'),
(1228, '_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e', '1641604086', 'no'),
(1229, '_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e', 'a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:21:\"WordCamp Genève 2022\";s:3:\"url\";s:33:\"https://geneve.wordcamp.org/2022/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2022-04-09 00:00:00\";s:8:\"end_date\";s:19:\"2022-04-09 00:00:00\";s:20:\"start_unix_timestamp\";i:1649455200;s:18:\"end_unix_timestamp\";i:1649455200;s:8:\"location\";a:4:{s:8:\"location\";s:15:\"Genève, Suisse\";s:7:\"country\";s:2:\"CH\";s:8:\"latitude\";d:46.2206685;s:9:\"longitude\";d:6.0985835;}}}}', 'no'),
(1230, '_transient_timeout_feed_0d2db5fea5a8633b56992c916819b198', '1641602417', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1231, '_transient_feed_0d2db5fea5a8633b56992c916819b198', '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:20:\"Blog | 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://fr.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s: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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Dec 2021 21:53:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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:40:\"https://wordpress.org/?v=6.0-alpha-52536\";s:7:\"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:73:\"\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:103:\"« State of the Word 2021 », le bilan annuel du projet WordPress en vidéo sous-titrée en français\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"https://fr.wordpress.org/2021/12/22/state-of-the-word-2021-le-bilan-annuel-du-projet-wordpress-en-video-sous-titree-en-francais/\";s: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:136:\"https://fr.wordpress.org/2021/12/22/state-of-the-word-2021-le-bilan-annuel-du-projet-wordpress-en-video-sous-titree-en-francais/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Dec 2021 20:23: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2239\";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:380:\"Le « State of the Word » est la conférence annuelle du cofondateur de WordPress Matt Mullenweg. Cette année, elle s’est déroulée le 14 décembre 2021 à New York devant une petite audience de personnes. Une diffusion vidéo était également proposée pour que tout le monde puisse suivre cette conférence en direct. Il s’agit toujours d’un moment […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Jb Audras\";s: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:5869:\"\n<p>Le « State of the Word » est la conférence annuelle du cofondateur de WordPress Matt Mullenweg. Cette année, elle s’est déroulée le 14 décembre 2021 à New York devant une petite audience de personnes. Une diffusion vidéo était également proposée pour que tout le monde puisse suivre cette conférence en direct. Il s’agit toujours d’un moment important pour la communauté. Plus de 30 communautés locales ont même réuni en tout plus de 300 personnes lors de meetups locaux pour assister ensemble à la conférence, comme à Séville en Espagne.</p>\n\n\n\n<p>Vous pouvez voir ou revoir cette conférence en utilisant le lecteur ci-dessous ou <a href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-2021-state-of-the-word/\">en vous rendant sur WordPress.tv</a>.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-videopress wp-block-embed-videopress wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"Matt Mullenweg: 2021 State of the Word\" width=\'612\' height=\'344\' src=\'https://video.wordpress.com/embed/Io14KzZ3?hd=1&cover=1\' frameborder=\'0\' allowfullscreen ></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1633526814\'></script>\n</div></figure>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignright size-full is-resized\"><a href=\"https://fr.wordpress.org/files/2021/12/video-subtitles-sotw-wordpress.png\"><img loading=\"lazy\" src=\"https://fr.wordpress.org/files/2021/12/video-subtitles-sotw-wordpress.png\" alt=\"\" class=\"wp-image-2241\" width=\"108\" height=\"97\" srcset=\"https://fr.wordpress.org/files/2021/12/video-subtitles-sotw-wordpress.png 433w, https://fr.wordpress.org/files/2021/12/video-subtitles-sotw-wordpress-300x268.png 300w\" sizes=\"(max-width: 108px) 100vw, 108px\" /></a></figure></div>\n\n\n\n<p>Pour activer les sous-titres en français, lancez la vidéo puis sélectionnez sur le troisième bouton à droite, cliquez sur « Subtitles : On/Off » et sélectionnez « Français ».</p>\n\n\n\n<p>Comme d’habitude, Matt a couvert un grand nombre de sujets. Le passé, le présent et le futur de WordPress ont été abordés, en soulignant notamment l’augmentation du nombre de contributeurs et contributrices, de traductions de WP dans d’autres langues que l’anglais, les différents jalons atteints par les dernières versions de WordPress, ou encore les initiatives en matière de contenus d’apprentissage et de documentation.</p>\n\n\n\n<p>Des démonstrations des nouvelles fonctionnalités qui arrivent avec la prochaine version majeure 5.9 ont été présentées : édition complète du site, compositions de blocs, options de styles globaux, contrôles d’images avancés…</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-fonctionnalites.png\"><img loading=\"lazy\" width=\"1024\" height=\"575\" src=\"https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-fonctionnalites-1024x575.png\" alt=\"\" class=\"wp-image-2246\" srcset=\"https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-fonctionnalites-1024x575.png 1024w, https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-fonctionnalites-300x168.png 300w, https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-fonctionnalites-768x431.png 768w, https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-fonctionnalites-1536x862.png 1536w, https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-fonctionnalites-2048x1149.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p>Matt en a profité pour féliciter la communauté d’avoir permis à WordPress de dépasser les 43 % de parts de marché des CMS en décembre 2021, et pour remercier toutes les personnes qui ont déjà contribué à WordPress 5.9. Il a également rappelé que les entreprises qui bâtissent leur économie sur le CMS sont invitées à participer au programme « Five for the Future », c’est à dire à donner 5% de leur temps à la contribution à WordPress. Cela permet de garantir la pérennité du CMS sur le long terme, de continuer à évoluer et de maintenir ses parts de marché sur le web.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-contributeurs.png\"><img loading=\"lazy\" width=\"1024\" height=\"590\" src=\"https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-contributeurs-1024x590.png\" alt=\"\" class=\"wp-image-2249\" srcset=\"https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-contributeurs-1024x590.png 1024w, https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-contributeurs-300x173.png 300w, https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-contributeurs-768x442.png 768w, https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-contributeurs-1536x884.png 1536w, https://fr.wordpress.org/files/2021/12/sotw-2021-WP59-contributeurs.png 1980w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a><figcaption><small>Ci-dessus, la liste des personnes ayant contribué à WordPress 5.9 au 14 décembre 2021</small></figcaption></figure>\n\n\n\n<p>Matt a aussi rappelé la feuille de route du projet WordPress, qui comprend l’édition collaborative en temps réel pour 2023, puis la gestion multilingue native.</p>\n\n\n\n<p>Il a enfin évoqué des sujets plus généraux, comme le « web3 », les différentes acquisitions et fusions au sein de l’écosystème, ainsi que la poursuite du développement de l’open-source dans le web.</p>\n\n\n\n<p>S’en est suivi une <a href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-state-of-the-word-2021-qa/\">séance de questions-réponses</a> pendant laquelle il a pu répondre a plusieurs questions de l’assistance.</p>\n\n\n\n<p>N’hésitez pas à rejoindre la discussion sur Twitter, avec le mot-dièse <a href=\"https://twitter.com/hashtag/ILoveWP\">#ILoveWP</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"https://fr.wordpress.org/2021/12/22/state-of-the-word-2021-le-bilan-annuel-du-projet-wordpress-en-video-sous-titree-en-francais/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:79:\"\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:80:\"Déposer et gérer une extension sur WordPress.org : documentation en français\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://fr.wordpress.org/2021/10/24/deposer-et-gerer-une-extension-sur-wordpress-org-documentation-en-francais/\";s: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:119:\"https://fr.wordpress.org/2021/10/24/deposer-et-gerer-une-extension-sur-wordpress-org-documentation-en-francais/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 24 Oct 2021 16:32:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:10:\"Contribuer\";s: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:13:\"Documentation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2208\";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:\"Proposer une extension sur le répertoire WordPress.org, c’est une belle façon de faire profiter la communauté de ce que vous avez développé pour vos propres besoins, et de rendre la pareille à cette communauté tout en vous y faisant connaître. Ça tombe bien, l’équipe de documentation de WordPress en français vient de publier un guide […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Jb Audras\";s: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:3558:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\" style=\"grid-template-columns:auto 40%\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" width=\"1024\" height=\"701\" src=\"https://fr.wordpress.org/files/2021/10/wordpress-documentation-fr-1024x701.png\" alt=\"\" class=\"wp-image-2210 size-full\" srcset=\"https://fr.wordpress.org/files/2021/10/wordpress-documentation-fr-1024x701.png 1024w, https://fr.wordpress.org/files/2021/10/wordpress-documentation-fr-300x205.png 300w, https://fr.wordpress.org/files/2021/10/wordpress-documentation-fr-768x525.png 768w, https://fr.wordpress.org/files/2021/10/wordpress-documentation-fr.png 1450w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<p>Proposer une extension sur le répertoire WordPress.org, c’est une belle façon de faire profiter la communauté de ce que vous avez développé pour vos propres besoins, et de rendre la pareille à cette communauté tout en vous y faisant connaître.</p>\n</div></div>\n\n\n\n<p>Ça tombe bien, l’équipe de documentation de WordPress en français vient de publier un guide pour apprendre aux développeurs et développeuses d’extensions comment déposer et gérer dans la durée leurs extensions WordPress sur le <a href=\"https://fr.wordpress.org/plugins\">répertoire officiel des extensions WordPress.org</a>.</p>\n\n\n\n<p>Ce guide est accessible sur la <a href=\"https://fr.wordpress.org/support\">page d’accueil de la documentation de WordPress en français</a>, rubrique « Développement ». Vous pouvez également y accéder en suivant ce lien :</p>\n\n\n\n<div class=\"wp-container-61d83233790d2 wp-block-buttons is-content-justification-center\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-cyan-blue-background-color has-background\" href=\"https://fr.wordpress.org/support/article/deposer-et-gerer-son-extension-sur-le-repertoire-wordpress-org/\">Déposer et gérer mon extension sur le répertoire WP.org</a></div>\n</div>\n\n\n\n<p>Vous y retrouverez les pré-requis nécessaires avant de déposer votre extension, de l’aide concernant les bonnes pratiques de développement, et les instructions concernant le versionnement de votre extension.</p>\n\n\n\n<p>En effet, si GIT est bien connu aujourd’hui, SVN reste relativement obscur pour beaucoup de développeurs et de développeuses alors qu’il ne s’agit que de 4 ou 5 commandes à connaître.</p>\n\n\n\n<p>Ce point est d’ailleurs celui qui a justifié la mise en œuvre de ce travail de documentation car l’utilisation de SVN pose parfois des difficultés à la communauté.</p>\n\n\n\n<p>Bref, vous retrouverez tout ce qu’il faut savoir concernant le dépôt et la gestion de votre extension sur le répertoire WordPress.org sur <a href=\"https://fr.wordpress.org/support/article/deposer-et-gerer-son-extension-sur-le-repertoire-wordpress-org/\">cette documentation dédiée</a>.</p>\n\n\n\n<p>Nous prévoyons prochainement de proposer plusieurs nouveaux guides liés à la contribution open source : dépôt d’un thème sur le répertoire officiel, création d’un meetup WordPress local officiel pris en charge par la communauté, etc. Si ce travail de documentation vous intéresse, n’hésitez pas à <a href=\"https://fr.wordpress.org/team/handbook/traduire-la-documentation-de-wordpress-en-francais/rejoindre-lequipe-de-traduction-de-la-documentation/\">rejoindre l’équipe de documentation de WordPress en français</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://fr.wordpress.org/2021/10/24/deposer-et-gerer-une-extension-sur-wordpress-org-documentation-en-francais/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:79:\"\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:69:\"Rendez-vous le 24 septembre 2021 pour le WordPress Translation Day !\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://fr.wordpress.org/2021/09/06/rejoignez-nous-le-24-septembre-pour-le-wordpress-translation-day-2021/\";s: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:114:\"https://fr.wordpress.org/2021/09/06/rejoignez-nous-le-24-septembre-pour-le-wordpress-translation-day-2021/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Sep 2021 13:53:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Évènement\";s: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:\"Contribuer\";s: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:10:\"Traduction\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2186\";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:371:\"Cette année encore, c’est le retour du WordPress Translation Day, un évènement mondial dédié à la traduction de WordPress et de son écosystème. Cet évènement réunit toutes les communautés de traductrices et de traducteurs à travers le monde afin de contribuer ensemble à la traduction de notre CMS favori. Cette année, le WP Translation Day […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Jb Audras\";s: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:3486:\"\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2021/09/wptranslationday-fr-2021.png\"><img loading=\"lazy\" width=\"1024\" height=\"553\" src=\"https://fr.wordpress.org/files/2021/09/wptranslationday-fr-2021-1024x553.png\" alt=\"\" class=\"wp-image-2187\" srcset=\"https://fr.wordpress.org/files/2021/09/wptranslationday-fr-2021-1024x553.png 1024w, https://fr.wordpress.org/files/2021/09/wptranslationday-fr-2021-300x162.png 300w, https://fr.wordpress.org/files/2021/09/wptranslationday-fr-2021-768x415.png 768w, https://fr.wordpress.org/files/2021/09/wptranslationday-fr-2021-1536x830.png 1536w, https://fr.wordpress.org/files/2021/09/wptranslationday-fr-2021-2048x1107.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p>Cette année encore, c’est le retour du WordPress Translation Day, un évènement mondial dédié à la traduction de WordPress et de son écosystème.</p>\n\n\n\n<p>Cet évènement réunit toutes les communautés de traductrices et de traducteurs à travers le monde afin de contribuer ensemble à la traduction de notre CMS favori. Cette année, le WP Translation Day se déroulera durant tout le mois de septembre, pour permettre à chaque communauté locale de pouvoir organiser ses évènements locaux comme elle l’entend.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img loading=\"lazy\" src=\"https://fr.wordpress.org/files/2021/09/Polyglots-Wapuu-WPTD2021.png\" alt=\"\" class=\"wp-image-2190\" width=\"129\" height=\"121\" /></figure></div>\n\n\n\n<p class=\"has-text-color has-medium-font-size\" style=\"color:#c91e68\">L’équipe de traduction de WordPress en français a le plaisir de vous convier à son évènement local en ligne, le vendredi 24 septembre 2021 de 14h à 19h !</p>\n\n\n\n<h2 id=\"comment-participer\">Comment participer ?</h2>\n\n\n\n<p>C’est très simple : rendez-vous à partir de 14 heures sur le canal <code>#traductions</code> du <a href=\"https://wpfr.net/slack\">Slack WordPress FR (inscrivez-vous gratuitement ici)</a>. Si vous ne pouvez pas vous libérer dès 14 heures, n’hésitez pas à nous rejoindre en cours de route ! Un lien de visioconférence sera alors partagé, mais vous pourrez aussi suivre l’évènement depuis Slack.</p>\n\n\n\n<p>Durant cette après-midi les 4 GTE (<em>General Translation Editors</em>) seront présents pour vous aider (<a href=\"https://profile.wordpress.org/jdy68\">Jenny Dupuy</a>, <a href=\"https://profile.wordpress.org/fxbenard\">FX Bénard</a>, <a href=\"https://profile.wordpress.org/wolforg\">Didier Demory</a> et <a href=\"https://profile.wordpress.org/audrasjb\">Jb Audras</a>) ainsi que les responsables de la documentation de WordPress en français (<a href=\"https://profile.wordpress.org/chaton666\">Marie Comet</a> et <a href=\"https://profile.wordpress.org/jdy68\">Jenny Dupuy</a>).</p>\n\n\n\n<p>L’objectif est d’accueillir, orienter et accompagner un maximum de nouvelles personnes pour les initier à la traduction du cœur de WordPress, mais aussi des thèmes, des extensions et de la documentation du CMS.</p>\n\n\n\n<p>On vous réservera aussi quelques petites surprises, avec notamment un petit jeu/quiz <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f31f.png\" alt=\"🌟\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>N’hésitez pas à partager cet article sur vos réseaux, on se retrouve vendredi 24 septembre !</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://fr.wordpress.org/2021/09/06/rejoignez-nous-le-24-septembre-pour-le-wordpress-translation-day-2021/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:73:\"\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:27:\"WordPress 5.8 « Tatum »\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://fr.wordpress.org/2021/07/20/wordpress-5-8-tatum/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://fr.wordpress.org/2021/07/20/wordpress-5-8-tatum/#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, 20 Jul 2021 17:44:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Nouvelles versions 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2168\";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:382:\"Trois changements d’ampleur Gestion des widgets à l’aide des blocs Après des mois de travail acharné, la puissance des blocs a enfin atteint l’éditeur de widgets et l’outil de personnalisation. Vous pouvez maintenant ajouter des blocs dans tous les emplacements de widgets de votre site et même les prévisualiser en direct dans l’outil de personnalisation. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Jb Audras\";s: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:50680:\"\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img src=\"https://wordpress.org/news/files/2021/07/5x8-Album-1-1024x683.jpg\" alt=\"\" class=\"wp-image-11042\" /></figure>\n\n\n\n<div class=\"wp-block-cover has-background-dim\"><img loading=\"lazy\" width=\"1978\" height=\"1254\" class=\"wp-block-cover__image-background wp-image-2126\" alt=\"\" src=\"https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover.png\" data-object-fit=\"cover\" srcset=\"https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover.png 1978w, https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover-300x190.png 300w, https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover-1024x649.png 1024w, https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover-768x487.png 768w, https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover-1536x974.png 1536w\" sizes=\"(max-width: 1978px) 100vw, 1978px\" /><div class=\"wp-block-cover__inner-container\">\n<h2>WordPress 5.8 « Tatum »</h2>\n\n\n\n<p>Nous vous présentons WordPress 5.8 « Tatum », nommée en l’honneur de Art Tatum, le pianiste de Jazz légendaire. Sa technique exceptionnelle et sa volonté de repousser les limites ont inspiré des milliers de musiciens.</p>\n\n\n\n<p>Lancez donc un de ses meilleurs morceaux – comme <em>« Tea for Two »</em>, <em>« Tiger Rag »</em>, <em>« Begin the Beguine»</em> ou encore <em>« Night and Day »</em> et découvrez les nouveautés de la dernière version de WordPress.</p>\n</div></div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<span id=\"more-2168\"></span>\n\n\n\n<h2 class=\"has-text-align-center\">Trois changements d’ampleur</h2>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://wordpress.org/news/files/2021/07/about-widgets-blocks-1024x768.png\" alt=\"\" data-id=\"10985\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-widgets-blocks.png\" data-link=\"https://wordpress.org/news/?attachment_id=10985\" class=\"wp-image-10985\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://wordpress.org/news/files/2021/07/about-query-loop-1024x811.png\" alt=\"\" data-id=\"10986\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-query-loop.png\" data-link=\"https://wordpress.org/news/?attachment_id=10986\" class=\"wp-image-10986\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://wordpress.org/news/files/2021/07/about-template-1024x666.png\" alt=\"\" data-id=\"10987\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-template.png\" data-link=\"https://wordpress.org/news/?attachment_id=10987\" class=\"wp-image-10987\" /></figure></li></ul></figure>\n\n\n\n<h3>Gestion des widgets à l’aide des blocs</h3>\n\n\n\n<p>Après des mois de travail acharné, la puissance des blocs a enfin atteint l’éditeur de widgets et l’outil de personnalisation. Vous pouvez maintenant ajouter des blocs dans tous les emplacements de widgets de votre site et même les prévisualiser en direct dans l’outil de personnalisation. Cela ouvre de nouvelles possibilités pour créer du contenu : des mises en page sans coder, des présentations avancées à l’aide des blocs fournis par le cœur de WordPress ou par les extensions tierces… tout est possible. Les développeurs et les développeuses trouveront plus d’informations dans la <a href=\"https://make.wordpress.org/core/2021/06/29/block-based-widgets-editor-in-wordpress-5-8/\">note de développement dédiée</a>.</p>\n\n\n\n<h3>De nouveaux blocs et compositions pour vos publications</h3>\n\n\n\n<p>Le bloc de boucle de requête permet d’afficher une liste de publications basée sur des paramètres définis, exactement comme une boucle PHP mais sans avoir à écrire la moindre ligne de code. Cela vous permet très facilement d’afficher les articles appartenant à une catégorie spécifique, de créer un portfolio ou encore une page présentant vos meilleures recettes de cuisine. C’est un peu comme le bloc « Derniers articles », mais en bien plus puissant ! De plus, les suggestions de compositions rendent très facile la gestion de l’affichage de ces listes.</p>\n\n\n\n<h3>Modification des modèles de publications</h3>\n\n\n\n<p>Vous pouvez maintenant utiliser l’éditeur de blocs pour modifier les modèles qui permettent l’affichage de votre contenu. Il vous faut pour cela disposer d’un thème conçu sur la base des blocs, ou qui a intégré la prise en charge de cette fonctionnalité. Vous pourrez basculer de l’éditeur de publication vers l’éditeur de modèles et inversement, tout en restant dans l’interface de l’éditeur de blocs. Il y a plus de 20 nouveaux blocs dédiés à l’édition des modèles. Vous pourrez en apprendre davantage sur cette fonctionnalité en lisant le guide disponible en bas de cette page.</p>\n\n\n\n<div style=\"height:32px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-center\">Trois nouveautés utiles au quotidien</h2>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://wordpress.org/news/files/2021/07/about-list-view-1024x803.png\" alt=\"\" data-id=\"10988\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-list-view.png\" data-link=\"https://wordpress.org/news/?attachment_id=10988\" class=\"wp-image-10988\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://wordpress.org/news/files/2021/07/about-pattern-suggestions-1024x555.png\" alt=\"\" data-id=\"10989\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-pattern-suggestions.png\" data-link=\"https://wordpress.org/news/?attachment_id=10989\" class=\"wp-image-10989\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://wordpress.org/news/files/2021/07/about-duotone-1024x837.png\" alt=\"\" data-id=\"10990\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-duotone.png\" data-link=\"https://wordpress.org/news/?attachment_id=10990\" class=\"wp-image-10990\" /></figure></li></ul></figure>\n\n\n\n<h3>Vue d’ensemble de la structure des pages</h3>\n\n\n\n<p>Parfois vous n’avez besoin que d’une mise en page simple. Mais il arrive aussi d’avoir besoin de quelque chose de plus complexe. À mesure que la quantité de blocs et de compositions disponibles s’étoffe dans l’éditeur, les options de création de contenu deviennent plus nombreuses. La vue sous forme de liste vous permet d’avoir une vue d’ensemble du contenu de l’éditeur et de naviguer rapidement d’un bloc à l’autre. Vous pouvez décider de l’afficher constamment ou au contraire de le masquer, à votre guise.</p>\n\n\n\n<h3>Des suggestions de compositions de blocs</h3>\n\n\n\n<p>À partir de cette version, l’outil de transformation des blocs vous suggérera des compositions de blocs basées sur les blocs utilisés sur la sélection courante. Dès maintenant, vous pouvez l’essayer avec le bloc « boucle de requête » ou le bloc « icônes de réseaux sociaux ». Au fur et à mesure de l’ajout de nouvelles compositions, vous pourrez obtenir davantage de suggestions de mises en page sans même quitter l’éditeur !</p>\n\n\n\n<h3>Style et colorisation des images</h3>\n\n\n\n<p>Colorisez vos images et blocs bannières avec des filtres duotones ! Cela vous permet de rendre vos images (et même vos vidéos !) bicolores pour qu’elles s’intègrent mieux au design de votre site. Bien entendu, le filtre duotone le plus utilisé est sans doute le noir et blanc, mais de nombreuses autres combinaisons sont également disponibles et vous pouvez même créer vos propres combinaisons en suivant la documentation technique de la fonctionnalité.</p>\n\n\n\n<div style=\"height:32px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-center\">Pour les développeurs et les développeuses</h2>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img src=\"https://wordpress.org/news/files/2021/07/about-theme-json-2x-1024x613.png\" alt=\"\" class=\"wp-image-10992\" /></figure>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Un nouveau fichier theme.json</h3>\n\n\n\n<p>WordPress 5.8 dévoile une nouvelle API dédiée aux styles et réglages globaux de votre site. Cette API vous permet de contrôler les réglages de l’éditeur, les outils de personnalisation disponibles pour chaque bloc, les styles disponibles pour chaque bloc, le tout dans un simple fichier theme.json déclaré dans votre thème. Ce fichier de configuration permet d’activer ou de désactiver les fonctionnalités de l’éditeur, et de mettre en place des styles par défaut pour l’ensemble de votre site et pour chaque bloc indépendamment. Si vous développez des thèmes, vous pouvez expérimenter cette nouvelle fonctionnalité dès maintenant. Pour en savoir davantage sur cette API, <a href=\"https://make.wordpress.org/core/2021/06/25/introducing-theme-json-in-wordpress-5-8/\">lisez la note de développement dédiée</a>.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h3>Fin de la prise en charge d’IE 11</h3>\n\n\n\n<p>La prise en charge d’Internet Explorer 11 est abandonnée à partir de WordPress 5.8. Cela signifie que les bogues découverts sur ce navigateur ne seront plus corrigés à l’avenir. Si vous utilisez actuellement IE 11, nous vous recommandons fortement de <a href=\"https://browsehappy.com/\">basculer vers un navigateur plus moderne</a>.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h3>Prise en charge du format WebP</h3>\n\n\n\n<p>WebP est un format d’image moderne qui fournit une meilleure compression d’image sur le web, avec un poids bien plus léger. Les images WebP sont en moyenne 30 % plus légères que leurs équivalents PNG ou JPEG, ce qui a pour résultat de rendre vos sites plus performants.</p>\n</div>\n</div>\n\n\n\n<h3>Nouvelles fonctionnalités liées aux blocs</h3>\n\n\n\n<p>À la suite des fonctionnalités introduites dans les versions <a href=\"https://make.wordpress.org/core/2020/11/18/block-supports-in-wordpress-5-6/\">5.6</a> et <a href=\"https://make.wordpress.org/core/2021/02/24/changes-to-block-editor-components-and-blocks/\">5.7</a>, WordPress 5.8 ajoute plusieurs nouvelles fonctionnalités liées aux blocs, afin de plus simplement les déclarer ou les personnaliser. Pour en savoir plus, lisez la <a href=\"https://make.wordpress.org/core/2021/06/25/block-supports-api-updates-for-wordpress-5-8/\">note de développement dédiée</a>.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Consultez le guide de la version pour en savoir plus !</h3>\n\n\n\n<p>Consultez le <a href=\"https://fr.wordpress.org/2021/07/04/guide-des-changements-techniques-a-venir-sur-wordpress-5-8/\" data-type=\"post\" data-id=\"2124\">guide des changements techniques de WordPress 5.8</a>. Il met en avant les notes de développement pour chaque modification que vous souhaiteriez approfondir.</p>\n\n\n\n<h2>Contributrices et contributeurs</h2>\n\n\n\n<p>WordPress 5.8 était dirigée par <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> ainsi que l’équipe suivante :</p>\n\n\n\n<ul><li><strong>Coordinateurs :</strong> Jeffrey Paul (<a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>) et Jonathan Desrosiers (<a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>)</li><li><strong>Responsable technique de l’éditeur :</strong> Riad Benguella (<a href=\'https://profiles.wordpress.org/youknowriad/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>youknowriad</a>)</li><li><strong>Responsable du marketing et de la communication :</strong> Josepha Haden Chomphosy (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>)</li><li><strong>Responsable de la documentation :</strong> Milana Cap (<a href=\'https://profiles.wordpress.org/milana_cap/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>milana_cap</a>)</li><li><strong>Responsable des tests :</strong> Piotrek Boniu (<a href=\'https://profiles.wordpress.org/boniu91/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>boniu91</a>)</li><li><strong>Responsable du support : </strong>Mary Job (<a href=\'https://profiles.wordpress.org/mariaojob/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mariaojob</a>)</li></ul>\n\n\n\n<p>Cette version est le résultat du travail de 530 contributrices et contributeurs qui ont travaillé sur plus de <a href=\"https://core.trac.wordpress.org/query?milestone=5.8&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">320 tickets sur Trac</a> et sur plus de <a href=\"https://github.com/wordpress/gutenberg/compare/v10.0.0...v10.7.0\">1 500 pull requests sur GitHub</a> :</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/5ubliminal/\">5ubliminal</a>, <a href=\"https://profiles.wordpress.org/ninetyninew/\">99w</a>, <a href=\"https://profiles.wordpress.org/9primus/\">9primus</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/abderrahman/\">abderrahman</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas/\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/achbed/\">achbed</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">alanjacobmathew</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/aleperez92/\">Alejandro Perez</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a>, <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a>, <a href=\"https://profiles.wordpress.org/amarinediary/\">amarinediary</a>, <a href=\"https://profiles.wordpress.org/gadgetroid/\">Amogh Harish</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey « Rarst » Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">André Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/andy/\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/annalamprou/\">annalamprou</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/anotherdave/\">anotherdave</a>, <a href=\"https://profiles.wordpress.org/anotia/\">anotia</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"https://profiles.wordpress.org/vanyukov/\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"https://profiles.wordpress.org/apokalyptik/\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/arena/\">arena</a>, <a href=\"https://profiles.wordpress.org/lephleg/\">Argyris Margaritis</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ariskataoka/\">ariskataoka</a>, <a href=\"https://profiles.wordpress.org/arkrs/\">arkrs</a>, <a href=\"https://profiles.wordpress.org/aruphi/\">Armand</a>, <a href=\"https://profiles.wordpress.org/arnaudban/\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a>, <a href=\"https://profiles.wordpress.org/arunsathiya/\">Arun a11n</a>, <a href=\"https://profiles.wordpress.org/aspexi/\">Aspexi</a>, <a href=\"https://profiles.wordpress.org/atjn/\">atjn</a>, <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a>, <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/barry/\">Barry</a>, <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/pixolin/\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/utz119/\">Benachi</a>, <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a>, <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bmcculley/\">bmcculley</a>, <a href=\"https://profiles.wordpress.org/boblinthorst/\">Bob Linthorst</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/bogdanpreda/\">Bogdan Preda</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bradt/\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brechtvds/\">Brecht</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brettshumaker/\">Brett Shumaker</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cameronjonesweb/\">Cameron Jones</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/carlalexander/\">Carl Alexander</a>, <a href=\"https://profiles.wordpress.org/carlomanf/\">carlomanf</a>, <a href=\"https://profiles.wordpress.org/carlosgprim/\">carlosgprim</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/caseymilne/\">Casey Milne</a>, <a href=\"https://profiles.wordpress.org/cenay/\">Cenay Nailor</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">Ceyhun Ozugur</a>, <a href=\"https://profiles.wordpress.org/nhuja/\">Chandra M</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/ryno267/\">Chuck Reynolds</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a>, <a href=\"https://profiles.wordpress.org/design_dolphin/\">CodePoet</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a>, <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Engle Robertson</a>, <a href=\"https://profiles.wordpress.org/crazycoders/\">crazycoders</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">critterverse</a>, <a href=\"https://profiles.wordpress.org/czapla/\">czapla</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">Dávid Szabó</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/damonganto/\">damonganto</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/vetyst/\">Danny</a>, <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dartiss/\">David Artiss</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidkryzaniak/\">David Kryzaniak</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/devle/\">devfle</a>, <a href=\"https://profiles.wordpress.org/devrekli/\">devrekli</a>, <a href=\"https://profiles.wordpress.org/dhruvkb/\">dhruvkb</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/dingdang/\">dingdang</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/djbu/\">djbu</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/donnapep/\">Donna Peplinskie</a>, <a href=\"https://profiles.wordpress.org/dougwollison/\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/dpik/\">dpik</a>, <a href=\"https://profiles.wordpress.org/dragongate/\">dragongate</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/eatsleepcode/\">eatsleepcode</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/itsjusteileen/\">Eileen Violini</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/aliveic/\">Emil E</a>, <a href=\"https://profiles.wordpress.org/emarticor/\">Emilio Martinez</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a>, <a href=\"https://profiles.wordpress.org/empatogen/\">empatogen</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/fabianpimminger/\">Fabian Pimminger</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/felixbaumgaertner/\">felixbaumgaertner</a>, <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/fijisunshine/\">fijisunshine</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann/\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/bueltge/\">Frank Bueltge</a>, <a href=\"https://profiles.wordpress.org/frosso1/\">frosso1 (a11n)</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/gab81/\">gab81</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</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/geekpress/\">GeekPress</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/geoffrey1963/\">Geoffrey</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/gregorlove/\">gRegor Morrill</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/hannahmalcolm/\">Hannah Malcolm</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">happiryu</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">hedgefield</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/hermpheus/\">Herm Martini</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/herrvigg/\">herrvigg</a>, <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/icopydoc/\">icopydoc</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/dragunoff/\">Ivaylo Draganov</a>, <a href=\"https://profiles.wordpress.org/wphound/\">Ivete Tecedor</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jacklenox/\">Jack Lenox</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jamesbonham/\">James Bonham</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/pondermatic/\">James Richards</a>, <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"https://profiles.wordpress.org/jamil95/\">jamil95</a>, <a href=\"https://profiles.wordpress.org/janak007/\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/janwoostendorp/\">janw.oostendorp</a>, <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a>, <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jeffikus/\">Jeffrey Pearce</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeremy80/\">jeremy80</a>, <a href=\"https://profiles.wordpress.org/jeroenreumkens/\">JeroenReumkens</a>, <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a>, <a href=\"https://profiles.wordpress.org/jillebehm/\">jillebehm</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/sephsekla/\">Joe Bailey-Roberts</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/jonkastonka/\">Johan Jonk Stenström</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/bhwebworks/\">John Sundberg</a>, <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</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/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/joseeyoast/\">Josee Wouters</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/dkampdesign/\">JoshuaDoshua</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/k3nsai/\">k3nsai</a>, <a href=\"https://profiles.wordpress.org/kaavyaiyer/\">kaavyaiyer</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/vyskoczilova/\">Karolina Vyskocilova</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kittmedia/\">KittMedia</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/klevyke/\">klevyke</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/vdwijngaert/\">Koen Van den Wijngaert</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/devnel/\">Kyle Nel</a>, <a href=\"https://profiles.wordpress.org/lakrisgubben/\">lakrisgubben</a>, <a href=\"https://profiles.wordpress.org/notlaura/\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/lmurillom/\">Larissa Murillo</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/lewiscowles/\">LewisCowles</a>, <a href=\"https://profiles.wordpress.org/lifeforceinst/\">lifeforceinst</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a>, <a href=\"https://profiles.wordpress.org/displaynone/\">Luis Sacristán</a>, <a href=\"https://profiles.wordpress.org/infolu/\">Luiz Araújo</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/m0ze/\">m0ze</a>, <a href=\"https://profiles.wordpress.org/maedahbatool/\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/travel_girl/\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/m-e-h/\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/mariaojob/\">Mary Job</a>, <a href=\"https://profiles.wordpress.org/marylauc/\">marylauc</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/mblach/\">mblach</a>, <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/meloniq/\">meloniq</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</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/mike_cowobo/\">Mike Martel</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">Mikhail Kobzarev</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/mkdgs/\">mkdgs</a>, <a href=\"https://profiles.wordpress.org/mmuyskens/\">mmuyskens</a>, <a href=\"https://profiles.wordpress.org/mmxxi/\">mmxxi</a>, <a href=\"https://profiles.wordpress.org/daddou/\">Mohamed El Amine DADDOU</a>, <a href=\"https://profiles.wordpress.org/mohamedfaragallah/\">Mohammed Faragallah</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/m_uysl/\">Mustafa Uysal</a>, <a href=\"https://profiles.wordpress.org/mweichert/\">mweichert</a>, <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/naoki0h/\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nayanchamp7/\">Nazrul Islam Nayan</a>, <a href=\"https://profiles.wordpress.org/dway/\">nderambure</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/nicegamer7/\">nicegamer7</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/ninanmnm/\">ninanmnm</a>, <a href=\"https://profiles.wordpress.org/pianist787/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/nvartolomei/\">nvartolomei</a>, <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a>, <a href=\"https://profiles.wordpress.org/olafklejnstrupjensen/\">olafklejnstrupjensen</a>, <a href=\"https://profiles.wordpress.org/olgabulat/\">Olga Bulat</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</a>, <a href=\"https://profiles.wordpress.org/oxyrealm/\">oxyrealm</a>, <a href=\"https://profiles.wordpress.org/ozh/\">Ozh</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/paaggeli/\">Panagiotis Angelidis</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/fantasy1125/\">Pascal Knecht</a>, <a href=\"https://profiles.wordpress.org/patkemper/\">Pat</a>, <a href=\"https://profiles.wordpress.org/patricklindsay/\">patricklindsay</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Paul</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulstonier/\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/psrpinto/\">Paulo Pinto</a>, <a href=\"https://profiles.wordpress.org/pavelvisualcomposer/\">Pavel I</a>, <a href=\"https://profiles.wordpress.org/mrpauloen/\">Paweł</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/phena109/\">phena109</a>, <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a>, <a href=\"https://profiles.wordpress.org/wppinar/\">Pinar</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/mordauk/\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/ptahdunbar/\">Pirate Dunbar</a>, <a href=\"https://profiles.wordpress.org/promz/\">Pramod Jodhani</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/pwallner/\">pwallner</a>, <a href=\"https://profiles.wordpress.org/pyronaur/\">pyronaur</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rafhun/\">rafhun</a>, <a href=\"https://profiles.wordpress.org/rkradadiya/\">Rajesh Radadiya</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/rellect/\">Refael Iliaguyev</a>, <a href=\"https://profiles.wordpress.org/renehermi/\">Rene Hermenau</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/reynhartono/\">reynhartono</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/rima1889/\">Rima Prajapati</a>, <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat</a>, <a href=\"https://profiles.wordpress.org/rnaby/\">Rnaby</a>, <a href=\"https://profiles.wordpress.org/robdxw/\">robdxw</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/rogertheriault/\">Roger Theriault</a>, <a href=\"https://profiles.wordpress.org/rogerlos/\">rogerlos</a>, <a href=\"https://profiles.wordpress.org/roo2/\">roo2</a>, <a href=\"https://profiles.wordpress.org/lev0/\">Roy</a>, <a href=\"https://profiles.wordpress.org/geekstreetwp/\">Russell Aaron</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/soean/\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Saša</a>, <a href=\"https://profiles.wordpress.org/sabrinazeidan/\">Sabrina Zeidan</a>, <a href=\"https://profiles.wordpress.org/sahilmepani/\">Sahil Mepani</a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sandipmondal/\">Sandip Mondal</a>, <a href=\"https://profiles.wordpress.org/sannevndrmeulen/\">Sanne van der Meulen</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/sasagar/\">SASAPIYO</a>, <a href=\"https://profiles.wordpress.org/satrancali/\">satrancali</a>, <a href=\"https://profiles.wordpress.org/savicmarko1985/\">savicmarko1985</a>, <a href=\"https://profiles.wordpress.org/gmagicscott/\">Scott Lesovic</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/scottconnerly/\">scottconnerly</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/sean212/\">Sean Fisher</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sebbb/\">sebbb</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/silb3r/\">silb3r</a>, <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/sirstuey/\">SirStuey</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/spikeuk1/\">spikeuk1</a>, <a href=\"https://profiles.wordpress.org/spytzo/\">spytzo</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/khromov/\">Stanislav Khromov</a>, <a href=\"https://profiles.wordpress.org/deustron/\">Stefan Hüsges</a>, <a href=\"https://profiles.wordpress.org/stefanjoebstl/\">stefanjoebstl</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell/\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/strategio/\">strategio</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sumaiyasiddika/\">Sumaiya Siddika</a>, <a href=\"https://profiles.wordpress.org/sumanm/\">Suman</a>, <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/5um17/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/sushmak/\">sushmak</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/tamlyn/\">tamlyn</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Tetsuaki Hamano</a>, <a href=\"https://profiles.wordpress.org/themes-1/\">them.es</a>, <a href=\"https://profiles.wordpress.org/kraftner/\">Thomas Kräftner</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/thomas-vitale/\">Thomas Vitale</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timotijhof/\">TimoTijhof</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tmdk/\">tmdk</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/trejder/\">trejder</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a>, <a href=\"https://profiles.wordpress.org/vipulc2/\">Vipul Chandel</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/wangql/\">wangql</a>, <a href=\"https://profiles.wordpress.org/webdragon/\">WebDragon</a>, <a href=\"https://profiles.wordpress.org/wendyjchen/\">Wendy Chen</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/xavivars/\">Xavi Ivars</a>, <a href=\"https://profiles.wordpress.org/tikifez/\">Xristopher Anderton</a>, <a href=\"https://profiles.wordpress.org/y_kolev/\">Y_Kolev</a>, <a href=\"https://profiles.wordpress.org/yansern/\">Yan Sern</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yuliyan/\">yuliyan</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/zackkrida/\">Zack Krida</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, <a href=\"https://profiles.wordpress.org/zkancs/\">zkancs</a>, and <a href=\"https://profiles.wordpress.org/sunxiyuan/\">孙锡源</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://fr.wordpress.org/2021/07/20/wordpress-5-8-tatum/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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:77:\"\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:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Guide des changements techniques à venir sur WordPress 5.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://fr.wordpress.org/2021/07/04/guide-des-changements-techniques-a-venir-sur-wordpress-5-8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://fr.wordpress.org/2021/07/04/guide-des-changements-techniques-a-venir-sur-wordpress-5-8/#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:\"Sun, 04 Jul 2021 10:30: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:2:{i:0;a:5:{s:4:\"data\";s:5:\"Guide\";s: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:31:\"Nouvelles versions 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2124\";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:\"La version 5.8 de WordPress prévue pour le 20 juillet 2021 n’apportera pas moins de 96 améliorations et nouvelles fonctionnalités, 170 correctifs de bugs et 24 autres modifications diverses. Cela correspond au total à 291 tickets sur Trac, l’outil que nous utilisons pour organiser le développement de WordPress. Dans ce guide, vous retrouverez tous les […]\";s: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:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:84:\"https://fr.wordpress.org/files/2021/07/wordpress-5-8-delete-menus-maxime-pertici.mp4\";s:6:\"length\";s:6:\"410124\";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:9:\"Jb Audras\";s: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:38080:\"\n<div class=\"wp-block-cover has-background-dim\"><img loading=\"lazy\" width=\"1978\" height=\"1254\" class=\"wp-block-cover__image-background wp-image-2126\" alt=\"\" src=\"https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover.png\" data-object-fit=\"cover\" srcset=\"https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover.png 1978w, https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover-300x190.png 300w, https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover-1024x649.png 1024w, https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover-768x487.png 768w, https://fr.wordpress.org/files/2021/06/wp-5-8-about-page-cover-1536x974.png 1536w\" sizes=\"(max-width: 1978px) 100vw, 1978px\" /><div class=\"wp-block-cover__inner-container\">\n<h2>La sortie de WordPress 5.8 est<br>prévue pour le 20 juillet 2021</h2>\n\n\n\n<p>Découvrez dans ce guide les nouveautés techniques qui vous attendent pour cette nouvelle version de l’outil qui propulse plus de 42% du web !</p>\n</div></div>\n\n\n\n<p>La version 5.8 de WordPress prévue pour le 20 juillet 2021 n’apportera pas moins de <a href=\"https://core.trac.wordpress.org/query?status=closed&type=enhancement&type=feature+request&milestone=5.8&max=500&col=id&col=summary&col=type&col=status&col=milestone&col=owner&col=priority&order=priority\">96 améliorations et nouvelles fonctionnalités</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&type=defect+(bug)&milestone=5.8&max=500&col=id&col=summary&col=type&col=status&col=milestone&col=owner&col=priority&order=priority\">170 correctifs de bugs</a> et <a href=\"https://core.trac.wordpress.org/query?status=closed&type=task+(blessed)&milestone=5.8&max=500&col=id&col=summary&col=type&col=status&col=milestone&col=owner&col=priority&order=priority\">24 autres modifications diverses</a>. Cela correspond au total à <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.8&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">291 tickets sur Trac</a>, l’outil que nous utilisons pour organiser le développement de WordPress.</p>\n\n\n\n<p>Dans ce guide, vous retrouverez tous les changements majeurs apportés par la version 5.8 de WordPress.</p>\n\n\n\n<p>Pour chaque composant de WordPress concerné par un changement majeur, vous trouverez un paragraphe introductif en français suivi des notes de développement et autres ressources publiées par l’équipe de développement de WordPress, en anglais.</p>\n\n\n\n<span id=\"more-2124\"></span>\n\n\n\n<h2>Un premier pas vers l’édition complète de votre site avec Gutenberg</h2>\n\n\n\n<p>Toutes les versions de Gutenberg sorties entre WP 5.7 et aujourd’hui ont été intégrées dans WordPress 5.8. Ainsi, la prochaine version de WordPress contiendra les versions <a href=\"https://make.wordpress.org/core/2021/02/17/whats-new-in-gutenberg-10-0-february/\">10.0</a>, <a href=\"https://make.wordpress.org/core/2021/03/02/whats-new-in-gutenberg-10-1-3-march/\">10.1</a>, <a href=\"https://make.wordpress.org/core/2021/03/17/whats-new-in-gutenberg-10-2-17-march/\">10.2</a>, <a href=\"https://make.wordpress.org/core/2021/04/02/whats-new-in-gutenberg-10-3-31-march/\">10.3</a>, <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">10.4</a>, <a href=\"https://make.wordpress.org/core/2021/04/30/whats-new-in-gutenberg-10-5-28-april/\">10.5</a>, <a href=\"https://make.wordpress.org/core/2021/05/14/whats-new-in-gutenberg-10-6-12-may/\">10.6</a> et <a href=\"https://make.wordpress.org/core/2021/05/27/whats-new-in-gutenberg-10-7-26-may/\">10.7</a> de l’extension Gutenberg. Par ailleurs, les correctifs et améliorations de performances des versions <a href=\"https://make.wordpress.org/core/2021/06/10/whats-new-in-gutenberg-10-8-9-june/\">10.8</a> et <a href=\"https://make.wordpress.org/core/2021/06/24/whats-new-in-gutenberg-10-9-23-june/\">10.9</a> seront également intégrées dans WP 5.8.</p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2021/06/wordpress-5-8-beta-1/\">L’annonce de sortie de la version beta 1 de WordPress 5.8</a> présente de nombreuses améliorations et nouvelles fonctionnalités.</p>\n\n\n\n<p>WordPress 5.8 est une version un peu spéciale, car elle contient les premières briques de l’édition complète de site, une fonctionnalité connue en anglais sous le nom de <em>« FSE »</em> pour <em>« Full Site Editing »</em>. Vous retrouverez ci-dessous les nouveautés apportées par cette nouvelle fonctionnalité, dont l’arrivée dans WordPress sera répartie entre les versions 5.8 et 5.9 de WP.</p>\n\n\n\n<p>Premièrement, commençons par présenter l’introduction du fichier <code>theme.json</code>, utilisable par les thèmes prenant en charge l’édition complète de sites pour déclarer les fonctionnalités supportées par le thème.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"w8UV72ClgX\"><a href=\"https://make.wordpress.org/core/2021/06/25/introducing-theme-json-in-wordpress-5-8/\">Introducing theme.json in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Introducing theme.json in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/25/introducing-theme-json-in-wordpress-5-8/embed/#?secret=w8UV72ClgX\" data-secret=\"w8UV72ClgX\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Cet article présente quant à lui le nouvel éditeur de modèles disponible à partir de WP 5.8, et comment rendre votre thème compatible :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"es1csQoiTx\"><a href=\"https://make.wordpress.org/core/2021/06/29/on-layout-and-content-width-in-wordpress-5-8/\">On layout and content width in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“On layout and content width in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/29/on-layout-and-content-width-in-wordpress-5-8/embed/#?secret=es1csQoiTx\" data-secret=\"es1csQoiTx\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Pour créer le nouvel éditeur de modèles basé sur Gutenberg, il a été nécessaire d’isoler l’éditeur dans un contexte autre que celui de l’édition d’une publication. Cet article présente la démarche qui a été suivie pour cette nouvelle fonctionnalité de WP 5.8.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"ShMB0FsNYJ\"><a href=\"https://make.wordpress.org/core/2021/06/16/introducing-the-template-editor-in-wordpress-5-8/\">Introducing the template editor in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Introducing the template editor in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/16/introducing-the-template-editor-in-wordpress-5-8/embed/#?secret=ShMB0FsNYJ\" data-secret=\"ShMB0FsNYJ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>La note de développement ci-dessous présente le nouvel éditeur de widgets embarqué dans WP 5.8. Si vous souhaitez garder l’ancien écran de widgets de WordPress, vous pouvez installer l’extension <a href=\"https://fr.wordpress.org/plugins/classic-widgets/\">Classic Widgets</a> dès à présent sur votre site.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"3MHyLuLV2p\"><a href=\"https://make.wordpress.org/core/2021/06/29/block-based-widgets-editor-in-wordpress-5-8/\">Block-based Widgets Editor in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Block-based Widgets Editor in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/29/block-based-widgets-editor-in-wordpress-5-8/embed/#?secret=3MHyLuLV2p\" data-secret=\"3MHyLuLV2p\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Cette note de développement décrit quant à elle les modifications faites sur l’API de l’éditeur de blocs. Le fichier de métadonnées <code>block.json</code> devient la façon normale de déclarer un bloc Gutenberg, la spécification des métadonnées de blocs est lancée et sera développée de façon itérative dans les prochaines versions. Cet article propose aussi de nombreux exemples d’implémentation très utiles si vous développez régulièrement des blocs Gutenberg.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"hxJO8ZqA05\"><a href=\"https://make.wordpress.org/core/2021/06/23/block-api-enhancements-in-wordpress-5-8/\">Block API Enhancements in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Block API Enhancements in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/23/block-api-enhancements-in-wordpress-5-8/embed/#?secret=hxJO8ZqA05\" data-secret=\"hxJO8ZqA05\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Un changement longtemps attendu : l’écran de modification des publications n’est plus le seul écran de l’administration a pouvoir accueillir l’éditeur de blocs. Ce sera dorénavant aussi le cas de l’écran des widgets, et pour WordPress 5.9 de l’écran des menus. Dans un futur proche, il sera possible d’intégrer l’éditeur sur n’importe quelle écran de l’administration. Ces évolutions demandent de revoir certaines parties du fonctionnement général de l’éditeur de blocs et cet article présente les changements qui arrivent dans un premier temps sur WP 5.8.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"ME4MeIf0TJ\"><a href=\"https://make.wordpress.org/core/2021/06/16/block-editor-api-changes-to-support-multiple-admin-screens-in-wp-5-8/\">Block Editor API Changes to Support Multiple Admin Screens in WP 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Block Editor API Changes to Support Multiple Admin Screens in WP 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/16/block-editor-api-changes-to-support-multiple-admin-screens-in-wp-5-8/embed/#?secret=ME4MeIf0TJ\" data-secret=\"ME4MeIf0TJ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Cette note de développement présente les fonctionnalités de Gutenberg qui ont été dépréciées dans WP 5.8. Pour éviter des avertissements et erreurs sur vos développements, consultez cette note de développement et mettez à jour votre code :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"gJoIVtykTI\"><a href=\"https://make.wordpress.org/core/2021/06/29/block-editor-api-removals-58/\">Various Block Editor API removals in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Various Block Editor API removals in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/29/block-editor-api-removals-58/embed/#?secret=gJoIVtykTI\" data-secret=\"gJoIVtykTI\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Cette note de développement présente la nouvelle API de réglages et de styles globaux. Cette API vous permet de définir dans votre thème des réglages et styles prédéfinis.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"ZwJIunoY2d\"><a href=\"https://make.wordpress.org/core/2021/06/29/blocks-in-an-iframed-template-editor/\">Blocks in an iframed (template) editor</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Blocks in an iframed (template) editor” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/29/blocks-in-an-iframed-template-editor/embed/#?secret=ZwJIunoY2d\" data-secret=\"ZwJIunoY2d\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Pour finir avec l’éditeur, WordPress 5.8 comprend aussi plusieurs améliorations concernant le chargement des styles CSS associés aux blocs, pour de meilleures performances et un meilleur contrôle des feuilles de styles associées </p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"Pm4Aq7nwpg\"><a href=\"https://make.wordpress.org/core/2021/07/01/block-styles-loading-enhancements-in-wordpress-5-8/\">Block-styles loading enhancements in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Block-styles loading enhancements in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/07/01/block-styles-loading-enhancements-in-wordpress-5-8/embed/#?secret=Pm4Aq7nwpg\" data-secret=\"Pm4Aq7nwpg\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Médiathèque</h2>\n\n\n\n<p><a href=\"https://core.trac.wordpress.org/query?status=closed&component=Media&milestone=5.8&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">Parmi toutes les modifications dans le composant « Médias » de WordPress</a>, c’est sans aucun doute l’arrivée de la prise en charge native du format WebP qui est le changement le plus important. Cette prise en charge du format WebP est complète, et tous les filtres et crochets d’actions disponibles sur le reste des fichiers médias sont également disponibles pour vos médias au format WebP, qui est un format beaucoup plus performant que les « antiques » formats PNG ou JPEG. Accompagnés du nouveau filtre <code>image_editor_output_format</code>, ces changements posent les bases de bonnes améliorations de performances en perspective.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"WtrYvObnKA\"><a href=\"https://make.wordpress.org/core/2021/06/07/wordpress-5-8-adds-webp-support/\">WordPress 5.8 adds WebP support</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“WordPress 5.8 adds WebP support” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/07/wordpress-5-8-adds-webp-support/embed/#?secret=WtrYvObnKA\" data-secret=\"WtrYvObnKA\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Vous noterez également quelques améliorations sur l’écran Médiathèque de l’administration. Par exemple, le défilement infini au sein de la médiathèque posant un certain nombre de problèmes d’accessibilité et d’utilisabilité générale, nous l’avons remplacé par un bouton de chargement dynamique en AJAX (tickets <a href=\"https://core.trac.wordpress.org/ticket/50105\">#50105</a> et <a href=\"https://core.trac.wordpress.org/ticket/40330\">#40330</a>). Nous avons aussi ajouté un bouton permettant de copier-coller rapidement le permalien vers les fichiers de la médiathèque après les avoir téléversés (ticket <a href=\"https://core.trac.wordpress.org/ticket/51754\">#51754</a>).</p>\n\n\n\n<h2>Menus</h2>\n\n\n\n<p>Une nouvelle fonctionnalité a été ajoutée sur l’écran de gestion des menus. Celle-ci permet de sélectionner plusieurs éléments de menus afin de les supprimer en un clic, alors que cette opération était particulièrement longue à faire manuellement. Bravo au français <a href=\'https://profiles.wordpress.org/maxpertici/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>maxpertici</a> qui a travaillé sur le développement de cette nouvelle fonctionnalité intégrée dans WP 5.8, résolvant ainsi <a href=\"https://core.trac.wordpress.org/ticket/21603\">un ticket datant de plus de 9 ans</a>.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://fr.wordpress.org/files/2021/07/wordpress-5-8-delete-menus-maxime-pertici.mp4\"></video></figure>\n\n\n\n<h2>Changement concernant la gestion des extensions</h2>\n\n\n\n<p>WordPress 5.8 introduit un nouveau champ d’en-tête utilisable dans le fichier principal de vos extensions : le champ <code>Update URI</code>. Attendu depuis des années par les développeur et développeuses, cet en-tête permet aux personnes développant des extensions de définir la source depuis laquelle l’extension peut être mise à jour. Cela permet d’éviter que votre extension réalisée sur-mesure soit écrasée par une mise à jour d’une extension portant le même nom et provenant du répertoire WordPress.org.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"ETv1k1T7tI\"><a href=\"https://make.wordpress.org/core/2021/06/29/introducing-update-uri-plugin-header-in-wordpress-5-8/\">Introducing “Update URI” plugin header in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Introducing “Update URI” plugin header in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/29/introducing-update-uri-plugin-header-in-wordpress-5-8/embed/#?secret=ETv1k1T7tI\" data-secret=\"ETv1k1T7tI\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>À noter que ce changement ne sera pour l’instant disponible que pour les extensions. Le même changement sera opéré sur les thèmes dans WordPress 5.9 si l’expérience s’avère concluante.</p>\n\n\n\n<h2>API REST</h2>\n\n\n\n<p>Cette note de développement présente toutes les modifications de l’API REST ayant été faites sur WordPress 5.8. La plupart de ces modifications concernent évidemment l’éditeur de widget, qui a nécessité la création d’un grand nombre de points de terminaison au sein de l’API REST. Longtemps attendue par les développeuses et les développeurs utilisant l’API REST, la prise en charge de l’opérateur de comparaison <code>AND</code> a été ajouté à l’API.<br>D’autres changements mineurs sur l’API REST sont également présentés.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"TjZRGpgbDw\"><a href=\"https://make.wordpress.org/core/2021/06/29/rest-api-changes-in-wordpress-5-8/\">REST API Changes in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“REST API Changes in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/29/rest-api-changes-in-wordpress-5-8/embed/#?secret=TjZRGpgbDw\" data-secret=\"TjZRGpgbDw\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Santé du site</h2>\n\n\n\n<p>Encore un changement attendu depuis longtemps ! En utilisant quelques filtres, crochets d’action, et fonctions PHP, les développeurs et développeuses d’extensions ont maintenant la possibilité de créer leurs propres onglets au sein de l’écran de Santé du site.</p>\n\n\n\n<p>WordPress 5.8 propose aussi de nouvelles informations, notamment une liste des types de fichiers pris en charges par l’installation pour le module PHP d’édition d’images actif sur le serveur (ticket <a href=\"https://core.trac.wordpress.org/ticket/53022\">#53022</a>).</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"jFT4GGBqsS\"><a href=\"https://make.wordpress.org/core/2021/06/22/extending-the-site-health-interface-in-wordpress-5-8/\">Extending the Site Health interface in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Extending the Site Health interface in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/22/extending-the-site-health-interface-in-wordpress-5-8/embed/#?secret=jFT4GGBqsS\" data-secret=\"jFT4GGBqsS\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Thèmes natifs proposés par WordPress</h2>\n\n\n\n<p>Avec l’arrivée partielle de l’édition complète de site sur WP 5.8, il était nécessaire de proposer davantage d’exemples de compositions de blocs au sein des thèmes natifs proposés par le cœur de WordPress. Et c’est chose faite, en attendant l’arrivée du prochain thème natif qui sera traditionnellement proposé par la dernière version de l’année –WordPress 5.9– et qui sera évidemment nommé <em>Twenty Twenty-Two</em> !</p>\n\n\n\n<p>Notons également l’arrivée de deux nouveaux crochets d’action, <code>delete_theme</code> et <code>deleted_theme</code> (ticket <a href=\"https://core.trac.wordpress.org/ticket/16401\">#16401</a>), de plusieurs améliorations de l’interface de gestion des thèmes pour mieux mettre en évidence les thèmes enfants (ticket <a href=\"https://core.trac.wordpress.org/ticket/30240\">#30240</a>), du compteur de mises à jour disponibles dans le menu de l’administration (ticket <a href=\"https://core.trac.wordpress.org/ticket/43697\">#43697</a>), et la suppression de l’onglet « Mis en avant » de l’écran d’ajout de thèmes (ticket <a href=\"https://core.trac.wordpress.org/ticket/49487\">#49487</a>).</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"p8kO9fNBXg\"><a href=\"https://make.wordpress.org/core/2021/06/21/bundled-themes-changes-in-wordpress-5-8/\">Bundled themes changes in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Bundled themes changes in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/21/bundled-themes-changes-in-wordpress-5-8/embed/#?secret=p8kO9fNBXg\" data-secret=\"p8kO9fNBXg\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Fin de la prise en charge d’Internet Explorer 11</h2>\n\n\n\n<p>Hé oui ! WordPress cesse définitivement de prendre en charge Internet Explorer 11 (et donc Internet Explorer tout court). Du moins, en ce qui concerne l’interface d’administration. Un choix logique pris à l’unanimité de l’équipe de développement. En effet, ce navigateur en fin de vie représente depuis début 2021 moins de 1% de parts de marché des navigateurs. L’arrêt de la prise en charge de cet ancien navigateur permettra d’améliorer grandement les performances d’affichage de l’administration sur l’ensemble des autres navigateurs, en débarrassant WordPress des règles CSS et <em>polyfills</em> JavaScript nécessaires à la prise en charge d’IE 11. Ces changements ne concernent que l’interface d’administration. Les thèmes seront quant à eux libres de prendre en charge ou non l’antique IE 11. </p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-wordpress-news wp-block-embed-wordpress-news\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"ITMmCNTUqZ\"><a href=\"https://wordpress.org/news/2021/05/dropping-support-for-internet-explorer-11/\">Dropping support for Internet Explorer 11</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Dropping support for Internet Explorer 11” — WordPress News\" src=\"https://wordpress.org/news/2021/05/dropping-support-for-internet-explorer-11/embed/#?secret=ITMmCNTUqZ\" data-secret=\"ITMmCNTUqZ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Autres changements techniques notables</h2>\n\n\n\n<p>Le composant Bootstrap/Load correspond à tout ce qui se passe lors du processus d’initialisation et de chargement de WordPress. Dans cette note de développement, vous en saurez davantage sur les quelques changements associés à ce composant.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"o4kX1ByqXv\"><a href=\"https://make.wordpress.org/core/2021/06/09/bootstrap-load-changes-in-5-8/\">Bootstrap/Load Changes in 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Bootstrap/Load Changes in 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/09/bootstrap-load-changes-in-5-8/embed/#?secret=o4kX1ByqXv\" data-secret=\"o4kX1ByqXv\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Enfin, voici une note de développement regroupant différents changements qui n’avaient pas besoin d’avoir leur propre note individuelle. Les changements abordés sont les suivants :</p>\n\n\n\n<ul><li>Outils de compilation et de test : suppression d’IE11 de la liste des navigateurs pris en charges (cela signifie qu’il n’y aura plus de tests de non-regression sur IE11 à l’avenir)</li><li>Formatage : meilleure cohérence et contrôle du rendu de <code>wp_get_document_title()</code></li><li>Général : cohérence de la déclaration du type des propriétés des classes <code>WP_Post</code>, <code>WP_Term</code>, <code>WP_User</code></li><li>Publications et types de publications : utilisation de <code>_prime_post_caches()</code> pour de meilleures performances pour les appels à la fonction <code>get_pages()</code></li><li>Comptes : les actions et filtres associés à la fonction <code>wp_insert_user()</code> reçoivent maintenant le contenu des métadonnées de l’utilisateur·ice via la variable <code>$userdata</code></li><li>Médiathèque : ajout du filtre <code>image_editor_output_format</code></li><li>Général : tous les filtres de type <code>*_url</code> reçoivent maintenant le schéma d’URL demandé</li><li>Publications et types de publications : améliorations de performances sur la fonction <code>post_exists()</code></li><li>Thèmes : ajout des crochets d’action <code>delete_theme</code> et <code>deleted_theme</code> </li><li>Publications et types de publications : les révisions sont maintenant disponibles par défaut pour le type de publication « blocs réutilisables » – <code>wp_block</code> </li><li>Publications et types de publications : amélioration de l’extensibilité du filtre <code>the_password_form</code></li></ul>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"Ugc9GmEfsF\"><a href=\"https://make.wordpress.org/core/2021/06/28/miscellaneous-developer-focused-changes-in-wordpress-5-8/\">Miscellaneous developer focused changes in WordPress 5.8</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Miscellaneous developer focused changes in WordPress 5.8” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/06/28/miscellaneous-developer-focused-changes-in-wordpress-5-8/embed/#?secret=Ugc9GmEfsF\" data-secret=\"Ugc9GmEfsF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Et bien plus encore…</h2>\n\n\n\n<p>WordPress 5.8 contient bien d’autres améliorations et modifications !<br>Plus de <a href=\"https://core.trac.wordpress.org/query?status=closed&type=defect+(bug)&milestone=5.8&group=component&col=id&col=summary&col=type&col=owner&col=priority&col=component&col=version&order=priority\">170 bugs</a> ont été corrigés, <a href=\"https://core.trac.wordpress.org/query?status=closed&type=enhancement&type=feature+request&milestone=5.8&group=component&col=id&col=summary&col=type&col=owner&col=priority&col=component&col=version&order=priority\">96 améliorations et nouvelles fonctionnalités</a> ont été implémentées et <a href=\"https://core.trac.wordpress.org/query?status=closed&type=task+(blessed)&milestone=5.8&group=component&col=id&col=summary&col=type&col=owner&col=priority&col=component&col=version&order=priority\">24 tâches courantes</a> ont été <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.7&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">clôturées dans WordPress 5.8</a>.</p>\n\n\n\n<p>Voici d’autres modifications qui n’ont pas été évoquées dans les notes de développement listées ci-dessus :</p>\n\n\n\n<ul><li>Outils de compilation et de test : remplacement de la bibliothèque <code>@babel/polyfill</code> par <code>core-js/stable</code>, ce qui nécessite l’ajout de <code>regenerator-runtime</code> en tant que dépendance si la prise en charge d’IE11 est souhaitée sur votre site (<a href=\"https://core.trac.wordpress.org/ticket/52941\">#52941</a>)</li><li>Thèmes natifs : ajout de compositions de blocs sur les thèmes Twenty Ten à Twenty Fifteen (<a href=\"https://core.trac.wordpress.org/ticket/51107\">#51107</a>, <a href=\"https://core.trac.wordpress.org/ticket/51106\">#51106</a>, <a href=\"https://core.trac.wordpress.org/ticket/51105\">#51105</a>, <a href=\"https://core.trac.wordpress.org/ticket/51104\">#51104</a>, <a href=\"https://core.trac.wordpress.org/ticket/51103\">#51103</a>, <a href=\"https://core.trac.wordpress.org/ticket/51102\">#51102</a>)</li><li>Commentaires : ajout de la fonction manquante <code>comments_pagination_base</code> dans la fonction <code>get_comment_reply_link()</code> (<a href=\"https://core.trac.wordpress.org/ticket/51189\">#51189</a>)</li><li>Commentaires : dans l’administration, ajout du lien vers l’article seul sur la liste des articles (<a href=\"https://core.trac.wordpress.org/ticket/52353\">#52353</a>)</li><li>Contenus embarqués : implémentation des contenus embarqués sur les blocs de widgets (<a href=\"https://core.trac.wordpress.org/ticket/51566\">#51566</a>)</li><li>Emojis : mise à jour de la bibliothèque <code>Twemoji</code> de 13.0.1 vers 13.1.0 (<a href=\"https://core.trac.wordpress.org/ticket/52852\">#52852</a>)</li><li>Bibliothèques externes : mise à jour de la bibliothèque <code>jQuery</code> de 3.5.1 vers 3.6.0 (<a href=\"https://core.trac.wordpress.org/ticket/52707\">#52707</a>)</li><li>Bibliothèques externes : mise à jour de la bibliothèque <code>Moment.js</code> de 2.27.0 vers 2.29.1 (<a href=\"https://core.trac.wordpress.org/ticket/52853\">#52853</a>)</li><li>Bibliothèques externes : mise à jour de la bibliothèque <code>Requests</code> de 1.7.0 vers 1.8.1 (<a href=\"https://core.trac.wordpress.org/ticket/53101\">#53101</a> and <a href=\"https://core.trac.wordpress.org/ticket/53334\">#53334</a>)</li><li>Bibliothèques externes : mise à jour de la bibliothèque <code>Underscore</code> de 1.8.3 vers 1.13.1 (<a href=\"https://core.trac.wordpress.org/ticket/45785\">#45785</a>)</li><li>Médias : suppression de comportement de défilement infini de la bibliothèque de médias (<a href=\"https://core.trac.wordpress.org/ticket/50105\">#50105</a>)</li><li>Médias : ajout d’un lien de copier-coller de la source d’un média accessible après son téléversement (<a href=\"https://core.trac.wordpress.org/ticket/51754\">#51754</a>)</li><li>Menus : ajout de la possibilité de supprimer de multiples éléments de menus d’un coup (<a href=\"https://core.trac.wordpress.org/ticket/21603\">#21603</a>)</li><li>Révisions : un nouveau filtre dynamique est disponible pour spécifier le nombre de révisions à conserver pour chaque type de publication, <code>wp_{$post->post_type}_revisions_to_keep</code> (<a href=\"https://core.trac.wordpress.org/ticket/51550\">#51550</a>)</li><li>Rôle/permissions : <code>user_can()</code> propose maintenant la permission <code>exist</code> afin d’identifier les comptes anonymes (<a href=\"https://core.trac.wordpress.org/ticket/52076\">#52076</a>)</li><li>Mise à niveau/installation : suppression du parcours des fichiers <code>readme.txt</code> de la fonction <code>validate_plugin_requirements()</code> (<a href=\"https://core.trac.wordpress.org/ticket/48520\">#48520</a>)</li><li>Mise à niveau/installation : suppression d’une erreur fatale PHP pouvant survenir si l’extension Gutenberg était activée et lorsque le site était mis à jour vers WP 5.8 (<a href=\"https://core.trac.wordpress.org/ticket/53432\">#53432</a>)</li><li>Widgets : ajout d’une sécurité permettant de s’assurer que le constructeur <code>WP_Widget</code> créé bien une valeur correcte pour <code>classname</code> sur les classes de widgets disposant d’un espace de nom (<a href=\"https://core.trac.wordpress.org/ticket/44098\">#44098</a>)</li><li>…et bien plus encore !</li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>Pour rappel, la sortie de WordPress 5.8 est prévue le 20 juillet 2021. Vous pouvez d’ores et déjà la tester en version <em>Release Candidate</em> en installant l’extension officielle <em>WordPress Beta Tester</em> puis en allant dans ses réglages et en cochant la case Beta / Version de développement puis en mettant à jour votre installation de façon classique.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"zv9jX9AbIL\"><a href=\"https://fr.wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"« WordPress Beta Tester » — Plugin Directory\" src=\"https://fr.wordpress.org/plugins/wordpress-beta-tester/embed/#?secret=zv9jX9AbIL\" data-secret=\"zv9jX9AbIL\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p class=\"has-text-align-right\"><em>Merci à <a href=\'https://profiles.wordpress.org/jdy68/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jdy68</a> pour la relecture de ce guide.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://fr.wordpress.org/2021/07/04/guide-des-changements-techniques-a-venir-sur-wordpress-5-8/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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:76:\"\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:29:\"WordPress fête ses 18 ans !\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://fr.wordpress.org/2021/05/27/wordpress-fete-ses-18-ans/\";s: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:71:\"https://fr.wordpress.org/2021/05/27/wordpress-fete-ses-18-ans/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 May 2021 09:26:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Évènement\";s: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:13:\"WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2117\";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:365:\"Aujourd’hui est un grand jour pour la communauté WordPress, car il s’agit du dix-huitième anniversaire de notre CMS favori ! Il y a à peine 3 ans, nous célébrions nos quinze ans en organisant des évènements un peu partout dans le monde entier, et voilà que nous arrivons aujourd’hui à l’age de la majorité 😎 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:9:\"Jb Audras\";s: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:1513:\"\n<p>Aujourd’hui est un grand jour pour la communauté WordPress, car il s’agit du dix-huitième anniversaire de notre CMS favori !</p>\n\n\n\n<p>Il y a à peine 3 ans, nous célébrions nos quinze ans <a href=\"https://wp15.wordpress.net/\">en organisant des évènements</a> un peu partout dans le monde entier, et voilà que nous arrivons aujourd’hui à l’age de la majorité <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f60e.png\" alt=\"😎\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>WordPress propulse désormais plus de 40 % du web. Une belle façon de fêter nos 18 ans !</p>\n\n\n\n<p>Nous vous proposons de redécouvrir le chemin parcouru en toutes ces années sur cette petite <a href=\"https://fr.wordpress.org/40-percent-of-web/\">frise chronologique</a>.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-francais wp-block-embed-francais\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"YPOlv6WP3r\"><a href=\"https://fr.wordpress.org/40-percent-of-web/\">WordPress and the Journey to 40% of the Web</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"« WordPress and the Journey to 40% of the Web » — Français\" src=\"https://fr.wordpress.org/40-percent-of-web/embed/#?secret=YPOlv6WP3r\" data-secret=\"YPOlv6WP3r\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\";s: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:67:\"https://fr.wordpress.org/2021/05/27/wordpress-fete-ses-18-ans/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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:73:\"\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:80:\"Le 30 avril 2021, rejoignez-nous pour un nouveau WordPress Translation Day 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://fr.wordpress.org/2021/04/09/le-30-avril-2021-rejoignez-nous-pour-un-nouveau-wordpress-translation-day-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"https://fr.wordpress.org/2021/04/09/le-30-avril-2021-rejoignez-nous-pour-un-nouveau-wordpress-translation-day-fr/#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, 09 Apr 2021 10:33:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Évènement\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=2028\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:372:\"Les WordCamps et Meetups ne sont toujours pas à l’ordre du jour… mais la communauté WordPress s’organise ! Cette année, les équipes de traduction et de documentation de WP en français vous proposent de participer à un nouveau WordPress Translation Day FR en ligne le vendredi 30 avril 2021. Cet évènement se déroulera donc le vendredi […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Jb Audras\";s: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:2462:\"\n<p>Les WordCamps et Meetups ne sont toujours pas à l’ordre du jour… mais la communauté WordPress s’organise !</p>\n\n\n\n<p>Cette année, les équipes de traduction et de documentation de WP en français vous proposent de participer à un nouveau WordPress Translation Day FR en ligne le vendredi 30 avril 2021.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2021/04/wp-translation-day-fr-avril-2021-1.png\"><img loading=\"lazy\" width=\"1024\" height=\"487\" src=\"https://fr.wordpress.org/files/2021/04/wp-translation-day-fr-avril-2021-1-1024x487.png\" alt=\"\" class=\"wp-image-2038\" srcset=\"https://fr.wordpress.org/files/2021/04/wp-translation-day-fr-avril-2021-1-1024x487.png 1024w, https://fr.wordpress.org/files/2021/04/wp-translation-day-fr-avril-2021-1-300x143.png 300w, https://fr.wordpress.org/files/2021/04/wp-translation-day-fr-avril-2021-1-768x365.png 768w, https://fr.wordpress.org/files/2021/04/wp-translation-day-fr-avril-2021-1.png 1467w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p>Cet évènement se déroulera donc le vendredi 30 avril de 14h à 18h, en visioconférence via Zoom.</p>\n\n\n\n<p>Durant cette après-midi 4 GTE (<em>General Translation Editors</em>) seront présents pour vous aider (<a href=\"https://profile.wordpress.org/jdy68\">Jenny Dupuy</a>, <a href=\"https://profile.wordpress.org/fxbenard\">FX Bénard</a>, <a href=\"https://profile.wordpress.org/wolforg\">Didier Wolforg</a> et <a href=\"https://profile.wordpress.org/audrasjb\">Jb Audras</a>) ainsi que les responsables de la documentation de WordPress en français (<a href=\"https://profile.wordpress.org/chaton666\">Marie Comet</a> et <a href=\"https://profile.wordpress.org/jdy68\">Jenny Dupuy</a>).</p>\n\n\n\n<p>L’objectif est d’accueillir, orienter et accompagner un maximum de nouvelles personnes pour les initier à la traduction du cœur de WordPress, mais aussi des thèmes, des extensions et de la documentation relative au fonctionnement de ce CMS.</p>\n\n\n\n<p>Tout au long de l’après-midi nous accueillerons les personnes désireuses de participer et si besoin, nous organiserons des mini-formations pour aider les personnes débutantes.</p>\n\n\n\n<p>Nous vous attendons nombreuses et nombreux ! Alors rendez-vous sur le Slack de la communauté WordPress-fr : <a href=\"https://wpfr.net/slack/\">https://wpfr.net/slack/</a> puis dans le canal <strong>#wptranslationday</strong></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://fr.wordpress.org/2021/04/09/le-30-avril-2021-rejoignez-nous-pour-un-nouveau-wordpress-translation-day-fr/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:\"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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:74:\"\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:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 5.7 « Esperanza »\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://fr.wordpress.org/2021/03/09/wordpress-5-7-esperanza/\";s: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:69:\"https://fr.wordpress.org/2021/03/09/wordpress-5-7-esperanza/#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, 09 Mar 2021 21:42:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Nouvelles versions 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=1996\";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:409:\"Souhaitez la bienvenue à « Esperanza », la première version de WordPress de l’année 2021. Elle a été nommée ainsi en l’honneur de la bassiste de jazz Esperanza Spalding. Son chemin de musicienne est varié et inspirant — apprenez-en plus sur elle et n’hésitez pas écouter l’un de ses albums ! Avec cette nouvelle version, WordPress vous propose de […]\";s: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:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://s.w.org/images/core/5.7/about-57-drag-drop-image.mp4\";s:6:\"length\";s:6:\"183815\";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:9:\"Jb Audras\";s: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:45063:\"\n<div class=\"wp-block-cover\" style=\"background-color:#0a5b89\"><img loading=\"lazy\" width=\"1000\" height=\"517\" class=\"wp-block-cover__image-background wp-image-1997\" alt=\"\" src=\"https://fr.wordpress.org/files/2021/03/about-header-brushes.png\" style=\"object-position:52% 67%\" data-object-fit=\"cover\" data-object-position=\"52% 67%\" srcset=\"https://fr.wordpress.org/files/2021/03/about-header-brushes.png 1000w, https://fr.wordpress.org/files/2021/03/about-header-brushes-300x155.png 300w, https://fr.wordpress.org/files/2021/03/about-header-brushes-768x397.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-large-font-size\"><strong>WordPress 5.7</strong> <br><strong><em>« Esperanza »</em></strong></p>\n\n\n\n<p>Rafraîchissement des couleurs de l’administration, simplifications des interactions dans l’éditeur, des outils placés là où vous en avez besoin, WordPress 5.7 vous permet de vous concentrer sur le contenu que vous créez.</p>\n\n\n\n<div style=\"height:220px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\n\n\n<p>Souhaitez la bienvenue à « Esperanza », la première version de WordPress de l’année 2021. Elle a été nommée ainsi en l’honneur de la bassiste de jazz Esperanza Spalding. Son chemin de musicienne est varié et inspirant — <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://en.wikipedia.org/wiki/Esperanza_Spalding\">apprenez-en plus sur elle</a> et n’hésitez pas écouter l’un de ses albums !</p>\n\n\n\n<p>Avec cette nouvelle version, WordPress vous propose de nouvelles couleurs et son éditeur vous aidera à accomplir des actions que vous ne pouviez pas envisager auparavant — du moins, pas sans écrire du code ou engager un pro. Les réglages que vous utilisez le plus souvent, comme celui de la taille des caractères, sont présents sur davantage de blocs. Et des modifications de mise en page telles que le passage des images en pleine hauteur deviennent enfin plus simples à réaliser.</p>\n\n\n\n<span id=\"more-1996\"></span>\n\n\n\n<h2>Maintenant, l’éditeur est plus simple à utiliser</h2>\n\n\n\n<p><strong>Plus d’endroits pour gérer la taille des polices :</strong> les contrôles de la taille des polices sont maintenant disponibles là où vous en avez besoin, notamment sur les blocs liste et code. Plus besoin de se rendre sur un autre écran pour effectuer cette simple modification !</p>\n\n\n\n<p><strong><strong>Blocs réutilisables :</strong> </strong>plusieurs améliorations rendent les blocs réutilisables plus stables et plus faciles à utiliser. Et maintenant, ils s’enregistrent automatiquement lorsque vous sauvegardez une publication.</p>\n\n\n\n<p><strong>Outil d’insertion de blocs en glisser-déposer :</strong> glissez les blocs et les compositions de blocs de l’outil d’insertion directement dans votre publication.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://s.w.org/images/core/5.7/about-57-drag-drop-image.mp4\"></video></figure>\n\n\n\n<h2>Vous pouvez faire plus, sans écrire la moindre ligne de code</h2>\n\n\n\n<p><strong>Alignement en hauteur :</strong> avez-vous déjà voulu donner au bloc bannière une hauteur égale à la hauteur de la fenêtre ? Maintenant, vous pouvez.</p>\n\n\n\n<p><strong>Bloc Boutons :</strong> vous pouvez désormais choisir entre une disposition verticale ou horizontale des boutons. Et vous pouvez régler la largeur des boutons à un pourcentage prédéfini.</p>\n\n\n\n<p><strong>Bloc d’icônes de réseaux sociaux :</strong> vous pouvez maintenant modifier la taille des icônes.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.7/about-57-cover.jpg\" alt=\"\" /></figure>\n\n\n\n<h2>Simplification de la palette de couleurs par défaut</h2>\n\n\n\n<p>Cette nouvelle palette de couleurs simplifiée réduit le nombre de couleurs qui se trouvaient auparavant dans le cœur de WordPress à sept couleurs principales et un jeu de 56 nuances conformes au rapport de contraste <a href=\"https://www.w3.org/WAI/WCAG2AAA-Conformance\">WCAG 2.0 AA recommandé</a>.</p>\n\n\n\n<p>En terme de perception, les variations de couleurs sont uniformes du clair au foncé dans chaque gamme de couleur ce qui signifie qu’elles vont du plus clair vers le plus foncé avec les mêmes paliers.</p>\n\n\n\n<p>La moitié de la gamme de couleurs a un rapport de contraste de 4,5 ou plus par rapport au noir, et l’autre moitié propose le même rapport de contraste par rapport au blanc.</p>\n\n\n\n<p>Vous découvrirez cette nouvelle palette de couleurs par défaut sur votre tableau de bord WordPress. Si vous créez des thèmes, des extensions ou tout autre composant, pensez à l’utiliser. Pour plus de détails, <a href=\"https://make.wordpress.org/core/2021/02/23/standardization-of-wp-admin-colors-in-wordpress-5-7\">consultez la note de développement concernant cette palette de couleurs (en anglais)</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2021/03/frise-color-wp57.png\"><img loading=\"lazy\" width=\"1024\" height=\"20\" src=\"https://fr.wordpress.org/files/2021/03/frise-color-wp57-1024x20.png\" alt=\"\" class=\"wp-image-2008\" srcset=\"https://fr.wordpress.org/files/2021/03/frise-color-wp57-1024x20.png 1024w, https://fr.wordpress.org/files/2021/03/frise-color-wp57-300x6.png 300w, https://fr.wordpress.org/files/2021/03/frise-color-wp57-768x15.png 768w, https://fr.wordpress.org/files/2021/03/frise-color-wp57-1536x30.png 1536w, https://fr.wordpress.org/files/2021/03/frise-color-wp57.png 1808w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<h3>De HTTP à HTTPS en un clic</h3>\n\n\n\n<p>Le passage d’un site de HTTP à HTTPS se fait maintenant en un clic. WordPress mettra automatiquement à jour les URL en base de données lorsque vous passerez au HTTPS. Ne perdez plus votre temps à chercher les URL à modifier !</p>\n\n\n\n<h3>Nouvelle API Robots</h3>\n\n\n\n<p>La nouvelle API Robots vous permet d’inclure des directives de filtrage dans la balise méta « robots », et l’API intègre par défaut la directive <code>max-image-preview: large</code>. Cela signifie que les moteurs de recherche peuvent maintenant afficher de plus grandes images de prévisualisation (à moins que le site ne soit pas public), ce qui peut améliorer votre trafic.</p>\n\n\n\n<h3>Poursuite du nettoyage nécessaire après la mise à jour vers jQuery 3.5.1</h3>\n\n\n\n<p>Pendant des années, jQuery a aidé à animer les choses à l’écran de façon très efficace — mais les choses évoluent sans cesse, et jQuery n’est pas en reste.</p>\n\n\n\n<p>Avec WP 5.7, jQuery devient moins intrusif et retourne moins de messages dans la console de votre navigateur.</p>\n\n\n\n<h3>Chargez vos iframes en différé</h3>\n\n\n\n<p>Dorénavant, les iframes pourront se charger en différé. Par défaut, WordPress ajoutera un attribut <code>loading=\"lazy\"</code> aux balises iframe lorsque leur largeur et leur hauteur seront spécifiées.</p>\n\n\n\n<h3>Consultez le guide technique de la version pour en savoir plus !</h3>\n\n\n\n<p>Consultez le guide des changements techniques de WordPress 5.7. Il met en avant les notes de développement pour chaque modification que vous souhaiteriez approfondir : <a href=\"https://fr.wordpress.org/2021/02/24/les-changements-techniques-a-venir-sur-wordpress-5-7/\">guide des changements techniques de WordPress 5.7</a></p>\n\n\n\n<h2>L’équipe de direction de WordPress 5.7</h2>\n\n\n\n<p>La version 5.7 de WordPress a été dirigée par une équipe réduite mais expérimentée :</p>\n\n\n\n<ul><li><strong>Responsable de la version :</strong> Matt Mullenweg (<a href=\'https://profiles.wordpress.org/matt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matt</a>)</li><li><strong>Coordinatrice de la version :</strong> Ebonie Butler (<a href=\'https://profiles.wordpress.org/metalandcoffee/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>metalandcoffee</a>)</li><li><strong>Responsable des tickets :</strong> Tonya Mork (<a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>)</li><li><strong style=\", sans-serif\">Responsable technique côté cœur :</strong><span style=\", sans-serif\"> Sergey Biryukov (<a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a>)</span></li><li><strong>Responsable technique côté éditeur :</strong> Robert Anderson (<a href=\'https://profiles.wordpress.org/noisysocks/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>noisysocks</a>)</li><li><strong>Responsable du design :</strong> Tim Hengeveld (<a href=\'https://profiles.wordpress.org/hedgefield/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hedgefield</a>)</li><li><strong>Responsable accessibilité :</strong> Sarah Ricker (@sarahricke<strong>r</strong>)</li><li><strong>Responsable de la documentation : </strong>Jb Audras (<a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>)</li><li><strong>Responsable des tests :</strong> Monika Rao (<a href=\'https://profiles.wordpress.org/monikarao/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>monikarao</a>)</li></ul>\n\n\n\n<p>Cette version est le résultat du dur labeur de 481 contributrices et contributeurs. Cela représente environ 250 tickets sur Trac et plus de 950 <em>pull requests</em> sur GitHub.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/7studio/\">7studio</a>, <a href=\"https://profiles.wordpress.org/aaribaud/\">aaribaud</a>, <a href=\"https://profiles.wordpress.org/technosailor/\">Aaron Brazell</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/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/abagtcs/\">abagtcs</a>, <a href=\"https://profiles.wordpress.org/acerempel/\">acerempel</a>, <a href=\"https://profiles.wordpress.org/activecoder/\">activecoder</a>, <a href=\"https://profiles.wordpress.org/ad7six/\">ad7six</a>, <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamboro/\">adamboro</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addison Stavlo</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais/\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/albertomake/\">albertomake</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexwoollam/\">Alex Woollam</a>, <a href=\"https://profiles.wordpress.org/alex27/\">alex27</a>, <a href=\"https://profiles.wordpress.org/chemiker/\">Alexander Lueken</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/almendron/\">almendron</a>, <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a>, <a href=\"https://profiles.wordpress.org/ambienthack/\">ambienthack</a>, <a href=\"https://profiles.wordpress.org/amolv/\">Amol Vhankalas</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</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/anevins/\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">André Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/anyssa/\">Anyssa Ferreira</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"https://profiles.wordpress.org/artpi/\">Artur Piszek</a>, <a href=\"https://profiles.wordpress.org/maigret/\">Aurélien Denis</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bartosz777/\">bartosz777</a>, <a href=\"https://profiles.wordpress.org/basscan/\">basscan</a>, <a href=\"https://profiles.wordpress.org/bduclos/\">bduclos</a>, <a href=\"https://profiles.wordpress.org/becdetat/\">becdetat</a>, <a href=\"https://profiles.wordpress.org/pixolin/\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/bernhard%20reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bhanusinghkre/\">bhanusinghkre</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/bonniebeeman/\">bonniebeeman</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/ibdz/\">Boy Witthaya</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brijeshb42/\">brijeshb42</a>, <a href=\"https://profiles.wordpress.org/burnuser/\">burnuser</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/carloscastilloadhoc/\">carloscastilloadhoc</a>, <a href=\"https://profiles.wordpress.org/carlosgprim/\">carlosgprim</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/celendesign/\">celendesign</a>, <a href=\"https://profiles.wordpress.org/cenay/\">Cenay Nailor</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">ceyhun0</a>, <a href=\"https://profiles.wordpress.org/chexwarrior/\">chexwarrior</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger/\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/amethystanswers/\">Christina Workman</a>, <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/clayray/\">clayray</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreyw/\">Corey</a>, <a href=\"https://profiles.wordpress.org/cristinasoponar/\">cristinasoponar</a>, <a href=\"https://profiles.wordpress.org/dam6pl/\">Damian Nowak</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dvankooten/\">Danny van Kooten</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davecpage/\">David Page</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">david.binda</a>, <a href=\"https://profiles.wordpress.org/dbtedg/\">dbtedg</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/denishua/\">denishua</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">Dávid Szabó</a>, <a href=\"https://profiles.wordpress.org/e_baker/\">e_baker</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/erichmond/\">Elliott Richmond</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a>, <a href=\"https://profiles.wordpress.org/enricocarraro/\">Enrico Carraro</a>, <a href=\"https://profiles.wordpress.org/epicfaace/\">epicfaace</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion/\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ericmann/\">Eric Mann</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Erin ‘Folletto’ Casali</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/eventualo/\">eventualo</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/florianziegler/\">Florian Ziegler</a>, <a href=\"https://profiles.wordpress.org/floriswt/\">floriswt</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekpress/\">GeekPress</a>, <a href=\"https://profiles.wordpress.org/geekzebre/\">geekzebre</a>, <a href=\"https://profiles.wordpress.org/geoffguillain/\">Geoff Guillain</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/gkibria69/\">gKibria</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/gmariani405/\">gmariani405</a>, <a href=\"https://profiles.wordpress.org/alinod/\">Gord</a>, <a href=\"https://profiles.wordpress.org/greatsaltlake/\">greatsaltlake</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/grzim/\">grzim</a>, <a href=\"https://profiles.wordpress.org/gumacahin/\">gumacahin</a>, <a href=\"https://profiles.wordpress.org/gunnard/\">gunnard</a>, <a href=\"https://profiles.wordpress.org/bordoni/\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/hansjovisyoast/\">Hans-Christiaan Braun</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani/\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hauvong/\">hauvong</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/helmutwalker/\">helmutwalker</a>, <a href=\"https://profiles.wordpress.org/tejwanihemant/\">Hemant Tejwani</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/nonverbla/\">hirasso</a>, <a href=\"https://profiles.wordpress.org/hmabpera/\">hmabpera</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hsingyuc7/\">hsingyuc7</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/ibiza69/\">ibiza69</a>, <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"https://profiles.wordpress.org/ingereck/\">ingereck</a>, <a href=\"https://profiles.wordpress.org/iprg/\">iprg</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi/\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/iviweb/\">iviweb</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jadeddragoon/\">jadeddragoon</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jakeparis/\">jakeparis</a>, <a href=\"https://profiles.wordpress.org/jakubtyrcha/\">jakub.tyrcha</a>, <a href=\"https://profiles.wordpress.org/jamesgol/\">James Golovich</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/viablethought/\">Jason Ryan</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jeffr0/\">Jeff Chandler</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/jessplease/\">Jessica Duarte</a>, <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/joanrho/\">joanrho</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelclimbsthings/\">joelclimbsthings</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</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/johnwatkins0/\">John Watkins</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/jrchamp/\">Jonathan Champ</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jomisica/\">José Miguel</a>, <a href=\"https://profiles.wordpress.org/jose64/\">Jose Luis</a>, <a href=\"https://profiles.wordpress.org/accessiblejoe/\">Joseph Karr O’Connor</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/tai/\">JOTAKI, Taisuke</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsmoriss/\">JS Morisset</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/justinsainton/\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jtsternberg/\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">kafleg</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/karamcnair/\">kara.mcnair</a>, <a href=\"https://profiles.wordpress.org/vyskoczilova/\">Karolina Vyskocilova</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/tmfespresso/\">kimdcottrell</a>, <a href=\"https://profiles.wordpress.org/kirilzh/\">Kiril Zhelyazkov</a>, <a href=\"https://profiles.wordpress.org/kburgoine/\">Kirsty Burgoine</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/hwk-fr/\">Konrad Chmielewski</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/kurtpayne/\">Kurt Payne</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/notlaura/\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a>, <a href=\"https://profiles.wordpress.org/oellin/\">Lihä</a>, <a href=\"https://profiles.wordpress.org/litemotiv/\">litemotiv</a>, <a href=\"https://profiles.wordpress.org/lovor/\">lovor</a>, <a href=\"https://profiles.wordpress.org/lucasbustamante/\">lucasbustamante</a>, <a href=\"https://profiles.wordpress.org/_luigi/\">Luigi Cavalieri</a>, <a href=\"https://profiles.wordpress.org/lpawlik/\">Lukas Pawlik</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">Luke Walczak</a>, <a href=\"https://profiles.wordpress.org/magnuswebdesign/\">magnuswebdesign</a>, <a href=\"https://profiles.wordpress.org/mahfuz01/\">Mahafuz</a>, <a href=\"https://profiles.wordpress.org/akramipro/\">Mahdi Akrami</a>, <a href=\"https://profiles.wordpress.org/malinajirka/\">malinajirka</a>, <a href=\"https://profiles.wordpress.org/mallorydxw/\">mallorydxw</a>, <a href=\"https://profiles.wordpress.org/tomdxw/\">mallorydxw-old</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</a>, <a href=\"https://profiles.wordpress.org/marcelo2605/\">marcelo2605</a>, <a href=\"https://profiles.wordpress.org/marcio-zebedeu/\">Marcio Zebedeu</a>, <a href=\"https://profiles.wordpress.org/netweblogic/\">Marcus</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a>, <a href=\"https://profiles.wordpress.org/marijnkoopman/\">Marijn Koopman</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/mdwolinski/\">Mark D Wolinski</a>, <a href=\"https://profiles.wordpress.org/markhowellsmead/\">Mark Howells-Mead</a>, <a href=\"https://profiles.wordpress.org/markscottrobson/\">Mark Robson</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/vindl/\">Marko Andrijasevic</a>, <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/mberard/\">Mathieu Berard Smartfire</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a>, <a href=\"https://profiles.wordpress.org/mdrockwell/\">mdrockwell</a>, <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a>, <a href=\"https://profiles.wordpress.org/megabyterose/\">megabyterose</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/mehrshaddarzi/\">Mehrshad Darzi</a>, <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mendezcode/\">mendezcode</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/miinasikk/\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">mirka</a>, <a href=\"https://profiles.wordpress.org/daddou/\">Mohamed El Amine DADDOU</a>, <a href=\"https://profiles.wordpress.org/monika/\">Monika</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/morenaf/\">morenaf</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/mzorz/\">mzorz</a>, <a href=\"https://profiles.wordpress.org/naveen17797/\">Naveen</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/nre/\">nicky</a>, <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a>, <a href=\"https://profiles.wordpress.org/nico_martin/\">Nico Martin</a>, <a href=\"https://profiles.wordpress.org/nicolalaserra/\">Nicola Laserra</a>, <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a>, <a href=\"https://profiles.wordpress.org/nicolaskulka/\">NicolasKulka</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/nwjames/\">nwjames</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a>, <a href=\"https://profiles.wordpress.org/oxyc/\">oxyc</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/pawki07/\">pawki07</a>, <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/gungeekatx/\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pinkalbeladiya/\">Pinkal Devani</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/prettyboymp/\">prettyboymp</a>, <a href=\"https://profiles.wordpress.org/princeahmed/\">Prince</a>, <a href=\"https://profiles.wordpress.org/pypwalters/\">pypwalters</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/rafaelgalani/\">Rafael Galani</a>, <a href=\"https://profiles.wordpress.org/rafhun/\">rafhun</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>, <a href=\"https://profiles.wordpress.org/ratneshk/\">ratneshk</a>, <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/reardestani/\">Reza Ardestani</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly/\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/roger995/\">roger995</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/romain-d/\">Romain</a>, <a href=\"https://profiles.wordpress.org/burtrw/\">Ronnie Burt</a>, <a href=\"https://profiles.wordpress.org/magicroundabout/\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Saša</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">Sarah Ricker</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sebsz/\">SeBsZ</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/shahinsid07/\">Shahin Sid</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/souri_wpaustria/\">souri_wpaustria</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/quadthemes/\">Sunny</a>, <a href=\"https://profiles.wordpress.org/t-p/\">t-p</a>, <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/patopaiar/\">Tami</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a>, <a href=\"https://profiles.wordpress.org/voboghure/\">Tapan</a>, <a href=\"https://profiles.wordpress.org/teamdnk/\">TeamDNK</a>, <a href=\"https://profiles.wordpress.org/utz119/\">TeBenachi</a>, <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a>, <a href=\"https://profiles.wordpress.org/thorlentz/\">thorlentz</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tinodidriksen/\">tinodidriksen</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a>, <a href=\"https://profiles.wordpress.org/arcangelini/\">Tony A</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/tonysandwich/\">tonysandwich</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/transl8or/\">transl8or</a>, <a href=\"https://profiles.wordpress.org/tylertork/\">Tyler Tork</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/umangvaghela123/\">Umang Vaghela</a>, <a href=\"https://profiles.wordpress.org/vandestouwe/\">vandestouwe</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">vcanales</a>, <a href=\"https://profiles.wordpress.org/vipulc2/\">Vipul Chandel</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T.</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/wendyjchen/\">Wendy Chen</a>, <a href=\"https://profiles.wordpress.org/wesselvandenberg/\">wesselvandenberg</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wallstead/\">Willis Allstead</a>, <a href=\"https://profiles.wordpress.org/worldedu/\">worldedu</a>, <a href=\"https://profiles.wordpress.org/wponlinesupport/\">WP OnlineSupport</a>, <a href=\"https://profiles.wordpress.org/tikifez/\">Xristopher Anderton</a>, <a href=\"https://profiles.wordpress.org/yannkozon/\">Yann Kozon</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yscik/\">yscik</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yuliyan/\">yuliyan</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> et <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.</p>\n\n\n\n<p><em>Merci <a href=\"https://profiles.wordpress.org/chaton666\">Marie Comet</a> pour la relecture de ce communiqué.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://fr.wordpress.org/2021/03/09/wordpress-5-7-esperanza/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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:74:\"\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:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Les changements techniques à venir sur WordPress 5.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:89:\"https://fr.wordpress.org/2021/02/24/les-changements-techniques-a-venir-sur-wordpress-5-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://fr.wordpress.org/2021/02/24/les-changements-techniques-a-venir-sur-wordpress-5-7/#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, 24 Feb 2021 10:04: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:31:\"Nouvelles versions 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=1939\";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:365:\"  La sortie de WordPress 5.7 est prévue pour le 9 mars 2021. Avec maintenant plus de 40 % de parts de marché, le logiciel libre WordPress poursuit son ascension impressionnante au sein de l’écosystème des CMS. Découvrez dans cet article les nouveautés qui vous attendent pour cette nouvelle version de l’outil de création de 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:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:78:\"https://fr.wordpress.org/files/2021/02/send-password-reset-profile-setting.mp4\";s:6:\"length\";s:6:\"222292\";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:9:\"Jb Audras\";s: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:31277:\"\n<div class=\"wp-container-61d83233cff27 wp-block-group has-background\" style=\"background-color:#0d5a89\"><div class=\"wp-block-group__inner-container\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://fr.wordpress.org/files/2021/02/wp-5-7-RC1-banner.png\"><img loading=\"lazy\" width=\"1024\" height=\"458\" src=\"https://fr.wordpress.org/files/2021/02/wp-5-7-RC1-banner-1024x458.png\" alt=\"\" class=\"wp-image-1940\" srcset=\"https://fr.wordpress.org/files/2021/02/wp-5-7-RC1-banner-1024x458.png 1024w, https://fr.wordpress.org/files/2021/02/wp-5-7-RC1-banner-300x134.png 300w, https://fr.wordpress.org/files/2021/02/wp-5-7-RC1-banner-768x344.png 768w, https://fr.wordpress.org/files/2021/02/wp-5-7-RC1-banner-1536x688.png 1536w, https://fr.wordpress.org/files/2021/02/wp-5-7-RC1-banner.png 1568w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<div class=\"wp-container-61d83233cfaf7 wp-block-group has-white-color has-text-color\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:2%\">\n<p> </p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:96%\">\n<p class=\"has-normal-font-size\">La sortie de WordPress 5.7 est prévue pour le 9 mars 2021.</p>\n\n\n\n<p class=\"has-small-font-size\">Avec maintenant plus de 40 % de parts de marché, le logiciel libre WordPress poursuit son ascension impressionnante au sein de l’écosystème des CMS.</p>\n\n\n\n<p class=\"has-small-font-size\">Découvrez dans cet article les nouveautés qui vous attendent pour cette nouvelle version de l’outil de création de sites web le plus populaire au monde !</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p style=\"font-size:2px\"> </p>\n</div>\n</div>\n</div></div>\n</div></div>\n\n\n\n<span id=\"more-1939\"></span>\n\n\n\n<p>Dans ces temps difficiles, WordPress 5.7 vous propose de nouvelles fonctionnalités et des améliorations pour vous aider à démarrer cette année 2021 sur une note positive ! Pour cette nouvelle version de WordPress, une <a href=\"https://make.wordpress.org/core/2020/12/21/wordpress-5-7-planning-roundup/\">petite équipe – mais expérimentée –</a> a été mise sur pied afin de diriger le développement de cette nouvelle version embarquant un paquet de nouvelles fonctionnalités techniques et des corrections attendues par les développeurs et développeuses.</p>\n\n\n\n<p>En tant qu’utilisatrice ou utilisateur de WordPress, vous retrouverez un éditeur de blocs encore plus efficace, l’arrivée du chargement différé des iframes, un outil de migration vous permettant de passer de HTTP à HTTPS en un clic, de nouvelles couleurs standardisées pour l’administration de votre site WordPress, une nouvelle API destinée à la gestion des instructions pour les robots d’indexation.</p>\n\n\n\n<p>En tant que développeuse ou développeur, vous retrouverez <a href=\"https://core.trac.wordpress.org/query?status=closed&type=enhancement&type=feature+request&milestone=5.7&max=500&col=id&col=summary&col=type&col=milestone&col=owner&col=status&col=priority&order=priority\">66 améliorations et nouvelles fonctionnalités</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&type=defect+(bug)&milestone=5.7&max=500&col=id&col=summary&col=type&col=milestone&col=owner&col=status&col=priority&order=priority\">127 corrections de bugs</a>, et bien plus encore ! Les personnes qui s’intéressent à la technique seront sûrement attentives <a href=\"https://core.trac.wordpress.org/ticket/51812\">à la tâche de nettoyage des erreurs JavaScript qui a été conduite après la mise à niveau vers jQuery 3.5.1 en tant qu’étape 3 de notre processus de mise à niveau de la bibliothèque jQuery</a>.</p>\n\n\n\n<p>Dans ce guide technique, vous trouverez tous les changements qui pourront vous concerner en tant que personne utilisant WordPress au quotidien. Les liens proposés mènent tous à des ressources en anglais.</p>\n\n\n\n<h2>Administration : une nouvelle palette de couleurs standardisée</h2>\n\n\n\n<p>Il s’agit de la première partie d’un projet plus large visant à nettoyer les feuilles de styles de l’administration de WP. Avec WP 5.7, toutes les couleurs déclarées en CSS sont regroupées au sein de l’une des 12 variations de bleu, vert, rouge et jaune, ou dans l’une des 13 variations de gris, noir et le blanc. Cela peut paraître encore présenter trop de variations, mais il faut savoir qu’il y en avait bien plus auparavant, et surtout qu’elles n’obéissaient pas du tout à des variations strictes et prévisibles.</p>\n\n\n\n<p>La nouvelle palette de couleurs regroupe donc toutes les couleurs du code source de WordPress dans une palette de 56 couleurs qui permettent de satisfaire les ratios de contrastes demandés par les <a href=\"https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html\">Règles d’accessibilités des contenus web (WCAG)</a> au niveau AA entre ces couleurs, et le blanc ou le noir.</p>\n\n\n\n<p>La standardisation de la palette de couleurs de l’administration pourra aider les personnes contribuant à WordPress à prendre des décisions de conception accessibles. Les développeuses et développeurs de thèmes sont encouragé·e·s à utiliser cette nouvelle palette de couleurs afin de proposer une meilleur cohérence entre leur produit et le cœur de WordPress.</p>\n\n\n\n<p>Dans la note de développement liée ci-dessous, vous trouverez toutes les indications techniques pour vous permettre de rendre le code de vos développements conforme à la palette de couleurs de l’administration de WP.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"1C0xgLs7Cz\"><a href=\"https://make.wordpress.org/core/2021/02/23/standardization-of-wp-admin-colors-in-wordpress-5-7/\">Standardization of WP-Admin colors in WordPress 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Standardization of WP-Admin colors in WordPress 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/23/standardization-of-wp-admin-colors-in-wordpress-5-7/embed/#?secret=1C0xgLs7Cz\" data-secret=\"1C0xgLs7Cz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>L’éditeur de blocs – Gutenberg</h2>\n\n\n\n<p>L’éditeur de blocs Gutenberg poursuit ses itérations rapides. La version 9.9 de Gutenberg est pleinement intégrée à WordPress 5.7, ce qui représente 7 nouvelles versions supplémentaires de Gutenberg (les versions <a href=\"https://make.wordpress.org/core/2020/11/04/whats-new-in-gutenberg-4-november/\">9.3</a>, <a href=\"https://make.wordpress.org/core/2020/11/19/whats-new-in-gutenberg-18-november-2/\">9.4</a>, <a href=\"https://make.wordpress.org/core/2020/12/02/whats-new-in-gutenberg-2-december/\">9.5</a>, <a href=\"https://make.wordpress.org/core/2020/12/23/whats-new-in-gutenberg-23-december/\">9.6</a>, <a href=\"https://make.wordpress.org/core/2021/01/07/whats-new-in-gutenberg-6-january/\">9.7</a>, <a href=\"https://make.wordpress.org/core/2021/01/20/whats-new-in-gutenberg-9-8-20-january/\">9.8</a> et <a href=\"https://make.wordpress.org/core/2021/02/05/whats-new-in-gutenberg-9-9-5-february/\">9.9</a>), toutes comprises dans cette nouvelle version de WP. Des correctifs de bogues et des améliorations de performances provenant des versions <a href=\"https://make.wordpress.org/core/2021/02/17/whats-new-in-gutenberg-10-0-february/\">10.0</a> et 10.1 font aussi partie de WP 5.7.</p>\n\n\n\n<p>Il y a un paquet de nouvelles fonctionnalités liées à Gutenberg dans WP 5.7. Citons par exemple le glisser-déposer depuis l’outil d’insertion de blocs, l’alignement en pleine hauteur pour certains blocs, l’affichage des variations de styles dans l’inspecteur, des améliorations d’utilisabilité et de stabilité sur les blocs réutilisables, les alignements verticaux dans les blocs boutons, la possibilité de modifier la taille des icônes dans le bloc icônes de réseaux sociaux, ou encore la possibilité de modifier la taille de police dans les blocs de liste ou d’affichage de bouts de code.</p>\n\n\n\n<p>Pour les mises à jour techniques, voici quelques notes de développement (en anglais) :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"J3inin7OuR\"><a href=\"https://make.wordpress.org/core/2021/02/18/wordpress-5-7-a-new-dynamic-hook-to-filter-the-content-of-a-single-block/\">WordPress 5.7: A new dynamic hook to filter the content of a single block</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“WordPress 5.7: A new dynamic hook to filter the content of a single block” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/18/wordpress-5-7-a-new-dynamic-hook-to-filter-the-content-of-a-single-block/embed/#?secret=J3inin7OuR\" data-secret=\"J3inin7OuR\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"J94wgc0nlt\"><a href=\"https://make.wordpress.org/core/2021/02/22/changes-in-wordpress-data-api/\">Changes in @wordpress/data API</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Changes in @wordpress/data API” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/22/changes-in-wordpress-data-api/embed/#?secret=J94wgc0nlt\" data-secret=\"J94wgc0nlt\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"cRxoDVWHgL\"><a href=\"https://make.wordpress.org/core/2021/02/22/new-block-variation-apis-in-5-7/\">New block variation APIs in 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“New block variation APIs in 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/22/new-block-variation-apis-in-5-7/embed/#?secret=cRxoDVWHgL\" data-secret=\"cRxoDVWHgL\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"vc2JDHxqEZ\"><a href=\"https://make.wordpress.org/core/2021/02/23/inner-blocks-api-changes/\">Inner Blocks API Changes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Inner Blocks API Changes” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/23/inner-blocks-api-changes/embed/#?secret=vc2JDHxqEZ\" data-secret=\"vc2JDHxqEZ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"Y8C8DE5CAV\"><a href=\"https://make.wordpress.org/core/2021/02/23/new-i18n-filters-createi18n-changes/\">New i18n filters & createI18n() changes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“New i18n filters & createI18n() changes” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/23/new-i18n-filters-createi18n-changes/embed/#?secret=Y8C8DE5CAV\" data-secret=\"Y8C8DE5CAV\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Outils d’importation et d’exportation</h2>\n\n\n\n<p>Plusieurs changements importants impactent les outils d’importation et d’exportation : un crochet a été créé pour filtrer le titre des publications avant exportation ; la date de dernière modification a été ajoutée dans les données d’exportation ; des améliorations significatives de performances ont été apportées pour une importation plus rapide des menus de navigation. Ces éléments sont détaillés dans la note de développement dédiée :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"VyczrpHE2F\"><a href=\"https://make.wordpress.org/core/2021/02/23/enhancements-to-the-import-export-feature-in-wordpress-5-7/\">Enhancements to the Import/Export feature in WordPress 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Enhancements to the Import/Export feature in WordPress 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/23/enhancements-to-the-import-export-feature-in-wordpress-5-7/embed/#?secret=VyczrpHE2F\" data-secret=\"VyczrpHE2F\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Gestion des médias</h2>\n\n\n\n<p>La principale amélioration concernant les médias est la mise en place du chargement différé par défaut des iframes. Cela fera gagner à votre sites quelques précieux dixièmes de secondes de temps de chargement. D’autres changements relatifs à la médiathèque sont listés plus bas dans les améliorations diverses, mais cette nouvelle fonctionnalité méritait sa rubrique dédiée :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"24vK7JdlIB\"><a href=\"https://make.wordpress.org/core/2021/02/19/lazy-loading-iframes-in-5-7/\">Lazy-loading iframes in 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Lazy-loading iframes in 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/19/lazy-loading-iframes-in-5-7/embed/#?secret=24vK7JdlIB\" data-secret=\"24vK7JdlIB\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Gestion des comptes des utilisatrices et utilisateurs de votre site</h2>\n\n\n\n<p>À partir de WordPress 5.7, il est possible pour les administratrices et administrateurs de sites WordPress de générer facilement l’envoi de l’e-mail de réinitialisation de mot de passe à n’importe quel compte déjà inscrit sur le site. Pour cela, il suffit de se rendre sur l’écran de modification du compte et de cliquer sur le bouton d’envoi de l’e-mail contenant le lien de réinitialisation, comme décrit dans cette petite vidéo (montrant l’interface en anglais) :</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://fr.wordpress.org/files/2021/02/send-password-reset-profile-setting.mp4\"></video></figure>\n\n\n\n<p>Il est aussi possible d’utiliser les liens d’accès rapide présents dans la liste des comptes du site sur chaque ligne correspondant à un utilisateur ou une utilisatrice, ou encore d’envoyer ce lien de réinitialisation à un grand nombre de comptes en utilisant l’outil de traitement par lots. Consultez l’article d’origine en anglais pour plus de détails :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"V84RfcthGK\"><a href=\"https://make.wordpress.org/core/2021/02/22/send-reset-password-links-in-wordpress-5-7/\">Send reset password links in WordPress 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Send reset password links in WordPress 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/22/send-reset-password-links-in-wordpress-5-7/embed/#?secret=V84RfcthGK\" data-secret=\"V84RfcthGK\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>API REST</h2>\n\n\n\n<p>Des modifications ont été apportées à l’API REST, notamment concernant des changements de points de terminaison, des changements de paramètres disponibles ou acceptés, ou encore des changements concernant la gestion des mots de passe d’application.</p>\n\n\n\n<p>Ces changements sont récapitulés sur cet article en anglais :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"LkKIGqGLiv\"><a href=\"https://make.wordpress.org/core/2021/02/23/rest-api-changes-in-wordpress-5-7/\">REST API Changes in WordPress 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“REST API Changes in WordPress 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/23/rest-api-changes-in-wordpress-5-7/embed/#?secret=LkKIGqGLiv\" data-secret=\"LkKIGqGLiv\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>API Robots</h2>\n\n\n\n<p>Une nouvelle API fait son arrivée dans WordPress ! L’API Robots permet de gérer de façon précise et contrôlée l’affichage des balises méta <code>robots</code> sur les pages de votre site. Pour tout savoir sur cette amélioration destinées aux personnes souhaitant optimiser leur site aux petits oignons pour le référencement, consultez cette note de développement : </p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"Cjzdm2rSaO\"><a href=\"https://make.wordpress.org/core/2021/02/19/robots-api-and-max-image-preview-directive-in-wordpress-5-7/\">Robots API and max-image-preview directive in WordPress 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Robots API and max-image-preview directive in WordPress 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/19/robots-api-and-max-image-preview-directive-in-wordpress-5-7/embed/#?secret=Cjzdm2rSaO\" data-secret=\"Cjzdm2rSaO\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Sécurité</h2>\n\n\n\n<p>Pas de correctif de faille de sécurité dans cette version car rappelons-le : ce n’est pas le but des versions majeures ! Mais en revanche, plusieurs améliorations intéressantes : tout d’abord, l’outil de contrôle de la santé de votre site (Outils > Santé du site) sera maintenant à même de vérifier si votre site dispose d’un certificat SSL (permettant le passage de votre site en HTTPS) et le cas échéant de vous proposer de migrer votre site de HTTP à HTTPS. Il fera également un état des lieux de la migration et vous permettra de corriger les erreurs éventuelles. Enfin, un premier pas vers l’intégration des entêtes Content-Security-Policy (CSP) est fait avec la mise en place d’outils permettant aux développeurs et développeuses d’utiliser des attributs dédiés sur les scripts qu’ils et elles ajoutent sur WordPress afin notamment d’en vérifier l’origine. Pour plus de détails :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"onU2eWtR2Z\"><a href=\"https://make.wordpress.org/core/2021/02/22/improved-https-detection-and-migration-in-wordpress-5-7/\">Improved HTTPS detection and migration in WordPress 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Improved HTTPS detection and migration in WordPress 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/22/improved-https-detection-and-migration-in-wordpress-5-7/embed/#?secret=onU2eWtR2Z\" data-secret=\"onU2eWtR2Z\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"xYibzHZ3Es\"><a href=\"https://make.wordpress.org/core/2021/02/23/introducing-script-attributes-related-functions-in-wordpress-5-7/\">Introducing script attributes related functions in WordPress 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Introducing script attributes related functions in WordPress 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/23/introducing-script-attributes-related-functions-in-wordpress-5-7/embed/#?secret=xYibzHZ3Es\" data-secret=\"xYibzHZ3Es\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Autres mises à jour techniques de WordPress 5.7</h2>\n\n\n\n<p>Des modifications concernant les écrans de connexion et d’inscription on également été faites :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"SQskB7miUR\"><a href=\"https://make.wordpress.org/core/2021/02/16/login-registration-screens-changes-in-wordpress-5-7/\">Login & registration screens changes in WordPress 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Login & registration screens changes in WordPress 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/16/login-registration-screens-changes-in-wordpress-5-7/embed/#?secret=SQskB7miUR\" data-secret=\"SQskB7miUR\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Utile pour les développeuses et développeurs de thèmes, un nouveau marqueur de modèle et un nouveau marqueur conditionnel permettant de récupérer ou tester les publications parentes d’une publication donnée :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"5eT1aLYOGx\"><a href=\"https://make.wordpress.org/core/2021/02/10/introducing-new-post-parent-related-functions-in-wordpress-5-7/\">Introducing new Post Parent related functions in WordPress 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Introducing new Post Parent related functions in WordPress 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/10/introducing-new-post-parent-related-functions-in-wordpress-5-7/embed/#?secret=5eT1aLYOGx\" data-secret=\"5eT1aLYOGx\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Deux nouvelles fonctions ont été ajoutées dans WP 5.7 afin de déterminer si une publication est visualisable publiquement ou non. Le marqueur conditionnel <code>is_post_publicly_viewable()</code> est notamment particulièrement intéressant car il combine plusieurs vérifications en une seule fonction. Pour plus de détails (en anglais) :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"o95wmnzqCC\"><a href=\"https://make.wordpress.org/core/2021/02/18/introducing-additional-functions-to-check-if-a-post-is-publicly-viewable-in-wordpress-5-7/\">Introducing additional functions to check if a post is publicly viewable in WordPress 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Introducing additional functions to check if a post is publicly viewable in WordPress 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/18/introducing-additional-functions-to-check-if-a-post-is-publicly-viewable-in-wordpress-5-7/embed/#?secret=o95wmnzqCC\" data-secret=\"o95wmnzqCC\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>Pour finir, voici une note de développement contenant pêle-mêle une liste de toutes les petites améliorations notables destinées aux développeuses et développeurs :</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"x30T5MYHjK\"><a href=\"https://make.wordpress.org/core/2021/02/23/miscellaneous-developer-focused-changes-in-wordpress-5-7/\">Miscellaneous developer focused changes in WordPress 5.7</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"“Miscellaneous developer focused changes in WordPress 5.7” — Make WordPress Core\" src=\"https://make.wordpress.org/core/2021/02/23/miscellaneous-developer-focused-changes-in-wordpress-5-7/embed/#?secret=x30T5MYHjK\" data-secret=\"x30T5MYHjK\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Et bien plus encore…</h2>\n\n\n\n<p>WordPress 5.7 contient bien d’autres améliorations et modifications !<br>Plus de <a href=\"https://core.trac.wordpress.org/query?status=closed&type=defect+(bug)&milestone=5.7&group=component&col=id&col=summary&col=type&col=owner&col=priority&col=component&col=version&order=priority\">127</a> bugs ont été corrigés, <a href=\"https://core.trac.wordpress.org/query?status=closed&type=enhancement&type=feature+request&milestone=5.7&group=component&col=id&col=summary&col=type&col=owner&col=priority&col=component&col=version&order=priority\">66</a> améliorations et nouvelles fonctionnalités ont été implémentées et <a href=\"https://core.trac.wordpress.org/query?status=closed&type=task+(blessed)&milestone=5.7&group=component&col=id&col=summary&col=type&col=owner&col=priority&col=component&col=version&order=priority\">29</a> tâches courantes ont été <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.7&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">clôturées dans WordPress 5.7</a>. Voici une poignée d’autres modifications qui n’ont pas été évoquées dans les notes de développement listées ci-dessus :</p>\n\n\n\n<ul><li>Éditeur : prise en charge du filtrage des paramètres dans l’enregistrement de nouveaux types de blocs à partir de métadonnées (<a href=\"https://core.trac.wordpress.org/ticket/52138\">#52138</a>)</li><li>Menus : ajout d’un pied de section épinglé au gestionnaire d’éléments de menus afin d’éviter de dupliquer les boutons de sauvegarde (<a href=\"https://core.trac.wordpress.org/ticket/51631\">#51631</a>)</li><li>Mises à jour : affichage du numéro de la version qui sera réinstallée sur le bouton de réinstallation disponible sur la page de mise à jour de WP (<a href=\"https://core.trac.wordpress.org/ticket/51774\">#51774</a>)</li><li>Mises à jour : prise en charge de la valeur <code>development</code> pour la constante <code>WP_AUTO_UPDATE_CORE</code> (<a href=\"https://core.trac.wordpress.org/ticket/51978\">#51978</a>)</li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>Pour rappel, la sortie de WordPress 5.7 est prévue le 9 mars 2021. Vous pouvez d’ores et déjà la tester en version <em>Release Candidate</em> en installant l’extension officielle <em>WordPress Beta Tester</em> puis en allant dans ses réglages et en cochant la case Beta / Version de développement puis en mettant à jour votre installation de façon classique.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"wUWSt9zkGg\"><a href=\"https://fr.wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" title=\"« WordPress Beta Tester » — Plugin Directory\" src=\"https://fr.wordpress.org/plugins/wordpress-beta-tester/embed/#?secret=wUWSt9zkGg\" data-secret=\"wUWSt9zkGg\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p><em>Merci à <a href=\'https://profiles.wordpress.org/jdy68/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jdy68</a>, <a href=\'https://profiles.wordpress.org/wolforg/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>wolforg</a>, <a href=\'https://profiles.wordpress.org/chaton666/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaton666</a> et <a href=\'https://profiles.wordpress.org/crash_47/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>crash_47</a> pour leur relecture de ce guide.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://fr.wordpress.org/2021/02/24/les-changements-techniques-a-venir-sur-wordpress-5-7/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:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:73:\"\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:28:\"WordPress 5.6 « Simone »\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://fr.wordpress.org/2020/12/09/wordpress-5-6-simone/\";s: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:66:\"https://fr.wordpress.org/2020/12/09/wordpress-5-6-simone/#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, 08 Dec 2020 23: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Nouvelles versions 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://fr.wordpress.org/?p=1899\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:398:\"Voici « Simone », la dernière version de WordPress. Nommée en l’honneur de la légendaire interprète de jazz Nina Simone, connue pour des tubes tels que « Feeling Good », « Young, Gifted and Black » ou encore « Four Women ». Lancez quelques-unes de ses chansons phares en fond sonore et découvrez les nouveautés que nous vous avons réservé. Partager vos histoires […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Jb Audras\";s: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:78679:\"\n<p>Voici « Simone », la dernière version de WordPress. Nommée en l’honneur de la légendaire interprète de jazz Nina Simone, connue pour des tubes tels que <em>« Feeling Good »</em>, <em>« Young, Gifted and Black »</em> ou encore <em>« Four Women »</em>. Lancez quelques-unes de ses <a rel=\"noreferrer noopener\" href=\"https://youtu.be/D5Y11hwjMNs\" target=\"_blank\">chansons phares</a> en fond sonore et découvrez les nouveautés que nous vous avons réservé.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-03.jpg?resize=632%2C633&ssl=1\" alt=\"WordPress 5.6 Simone with a photo of Nina Simone\" class=\"wp-image-9385\" /></figure>\n\n\n\n<span id=\"more-1899\"></span>\n\n\n\n<h3>Partager vos histoires n’a jamais été aussi facile</h3>\n\n\n\n<p>WordPress 5.6 vous apporte de nombreuses façons de donner vie à vos idées. Avec un tout nouveau thème par défaut comme toile vierge, cette version prend en charge une collection de blocs toujours plus grande. Peignez avec des mots, des images, des sons… et des médias embarqués enrichis.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=632%2C234&ssl=1\" alt=\"colored circles\" class=\"wp-image-9346\" /></figure>\n\n\n\n<h3>Une plus grande flexibilité de mise en page</h3>\n\n\n\n<p>Donnez vie à vos histoires avec encore plus d’outils pour modifier vos mises en page avec ou sans code. Blocs avec une seule colonne, mises en page utilisant des largeurs mixtes et des colonnes, en-têtes en pleine largeur, bannières vidéos… faites de petits changements ou révolutionnez vos mises en page avec la même facilité.</p>\n\n\n\n<h3>Plus de compositions de blocs</h3>\n\n\n\n<p>Les compositions de blocs pré-configurées sur les thèmes facilitent la mise en place de pages standards sur votre site. Testez la force des compositions pour rendre votre flux de travail plus efficace et partagez cela facilement en vous épargnant quelques clics.</p>\n\n\n\n<h3>Un sous-titrage vidéo directement dans l’éditeur</h3>\n\n\n\n<p>Pour vous aider à ajouter des sous-titres ou des légendes à vos vidéos, vous pouvez désormais les téléverser dans vos articles et vos pages. Il est maintenant très simple de rendre vos vidéos accessibles à toute personne ayant besoin ou préférant utiliser des sous-titres.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=632%2C120&ssl=1\" alt=\"black vertical line\" class=\"wp-image-9347\" /></figure>\n\n\n\n<h2>Twenty Twenty-One est là !</h2>\n\n\n\n<p>Twenty Twenty-One est une toile vierge pour exprimer vos idées, et l’éditeur de blocs sera votre meilleur pinceau. Ce thème est construit pour l’éditeur de blocs et embarque de nouvelles compositions de blocs dédiées. Essayez différentes mises en page en quelques secondes, et laissez le design intemporel de ce thème faire briller vos contenus.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-5.jpeg?resize=632%2C231&ssl=1\" alt=\"examples of what WordPress 5.6 could look like\" class=\"wp-image-9348\" /></figure>\n\n\n\n<p>De plus, ce thème par défaut place l’accessibilité au cœur de votre site. Il est conforme aux <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/\">Règles d’accessibilité de WordPress</a> et à la plupart des règles de standards tels que les <a href=\"https://www.w3.org/WAI/WCAG2AAA-Conformance\">Règles pour l’accessibilité des contenus web (WCAG) 2.1 au niveau AAA</a>. Cela vous aidera à atteindre les plus hauts niveaux des standards internationaux d’accessibilité… dans la mesure où vous créerez des contenus accessibles et où vous choisirez des extensions également accessibles !</p>\n\n\n\n<h3>Un arc-en-ciel de couleurs pastel</h3>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-6.jpeg?resize=632%2C631&ssl=1\" alt=\"Examples of block patterns available in select default themes.\" class=\"wp-image-9349\" /></figure>\n\n\n\n<p>Parfait pour la nouvelle année, Twenty Twenty-One vous propose une palette de couleurs pastel présélectionnées, toutes conformes aux normes de contraste AAA. Vous pouvez également choisir votre propre couleur d’arrière-plan pour le thème, et le thème choisit pour vous des couleurs de texte adaptées à l’accessibilité – automatiquement !</p>\n\n\n\n<p>Besoin de plus de flexibilité que cela ? Vous pouvez également choisir votre propre palette de couleurs à partir du sélecteur de couleurs.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=632%2C151&ssl=1\" alt=\"colored circles\" class=\"wp-image-9351\" /></figure>\n\n\n\n<h2>Des améliorations pour tout le monde</h2>\n\n\n\n<h3>Extension des mises à jour automatiques</h3>\n\n\n\n<p>Depuis des années, les mises à jour automatiques de WordPress n’étaient accessibles que via un développement spécifique. Maintenant, cette option est disponible directement dans votre tableau de bord. S’il s’agit de votre premier site, les mises à jour automatiques sont déjà en place. Si vous avez mis à jour un site déjà existant alors tout est resté comme avant. L’option d’activation/désactivation des mises à jour automatiques est disponible sur l’écran Tableau de bord > Mises à jour.</p>\n\n\n\n<h3>Modèle de déclaration d’accessibilité</h3>\n\n\n\n<p>Même sans disposer d’une grande expertise à ce sujet, vous pouvez faire connaître les engagements pris par votre site en termes d’accessibilité juste en cliquant sur un bouton. Une nouvelle <a href=\"https://github.com/10degrees/accessibility-statement-plugin\">extension de fonctionnalités</a> comprend un modèle de texte que vous n’avez qu’à réadapter et à publier. Il a été écrit pour prendre en charge différents contextes et juridictions.</p>\n\n\n\n<h3>Des compositions de blocs intégrées</h3>\n\n\n\n<p>Si vous n’avez pas encore eu l’occasion de jouer avec les compositions de blocs, sachez que tous les thèmes natifs comprennent maintenant une sélection de compositions de blocs qui vous permet de créer des mises en pages complexes. Ces compositions peuvent être personnalisées à votre gré avec les textes, images ou couleurs qui conviennent à votre contenu ou à votre image de marque.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=632%2C185&ssl=1\" alt=\"colored and textured rectangles\" class=\"wp-image-9352\" /></figure>\n\n\n\n<h2>Pour les développeurs et les développeuses</h2>\n\n\n\n<h3>Authentification sur l’API REST avec les mots de passe d’application</h3>\n\n\n\n<p>Grâce à la nouvelle API de mots de passe d’application, les applications tierces peuvent se connecter de façon transparente et sécurisée à votre site. Cette nouvelle fonctionnalité de l’API REST vous permet de surveiller les applications qui se connectent à votre site et de contrôler ce qu’elles font.</p>\n\n\n\n<h3>Une meilleure prise en charge de PHP 8</h3>\n\n\n\n<p>WordPress 5.6 marque le premier pas vers la prise en charge de PHP 8 par WordPress. Il est grand temps de commencer à planifier la façon dont vos produits, services et sites tournant sur WordPress prennent en charge la dernière version de PHP. Pour plus d’information, lisez <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\">la note de développement concernant PHP 8 (en anglais)</a>.</p>\n\n\n\n<h3>jQuery</h3>\n\n\n\n<p>La mise à jour de la bibliothèque jQuery se déroule sur trois versions de WordPress : 5.5, 5.6 et 5.7. Comme nous arrivons à mi-chemin du processus, vous pouvez lancer <a href=\"https://fr.wordpress.org/plugins/wp-jquery-update-test/\">l’extension de test de mise à jour</a> pour vérifier par avance d’éventuelles erreurs sur vos sites.</p>\n\n\n\n<p>Si vous rencontrez des problèmes d’affichage sur votre site (ex : un diaporama qui ne fonctionne plus, un bouton qui n’a aucun effet), installez <a href=\"https://fr.wordpress.org/plugins/enable-jquery-migrate-helper/\">l’extension jQuery Migrate</a>.</p>\n\n\n\n<p>Nous vous recommandons également la lecture de <a href=\"https://fr.wordpress.org/2020/12/07/gestion-des-problemes-potentiels-lies-a-la-mise-a-jour-de-jquery-dans-wordpress-5-6/\" data-type=\"post\" data-id=\"1835\">cet article complet en français concernant les changements sur jQuery sur WordPress 5.6</a> et comment les gérer en tant que responsable d’un site internet WordPress.</p>\n\n\n\n<h3>Consultez le guide de la version pour en savoir plus</h3>\n\n\n\n<p>Consultez le guide des changements techniques de WordPress 5.6. Il met en avant les notes de développement de chaque modification que vous souhaiteriez connaître : <a href=\"https://fr.wordpress.org/2020/11/24/les-changements-techniques-a-venir-sur-wordpress-5-6/\" data-type=\"post\" data-id=\"1766\">Guide des changements techniques de WordPress 5.6</a>.</p>\n\n\n\n<h3>Changements dans la traduction de WordPress en français</h3>\n\n\n\n<p>La traduction de WordPress en français devient plus inclusive ! Consultez les <a href=\"https://fr.wordpress.org/2020/11/26/wordpress-5-6-des-changements-visant-a-ameliorer-linclusivite-de-linterface-dadministration/\" data-type=\"post\" data-id=\"1801\">détails de ces changements de traduction visant à rendre WordPress plus inclusif sur notre article dédié</a>.</p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>It’s a new day, it’s a new life for me<br>…and I’m feeling good.</p><cite>~Nina Simone</cite></blockquote></figure>\n\n\n\n<h2>L’équipe de direction de WordPress 5.6 « Simone »</h2>\n\n\n\n<p>Pour la première fois dans l’écosystème WordPress, cette version majeure a été dirigée par une équipe 100 % féminine : </p>\n\n\n\n<ul><li><strong>Direction :</strong> Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>). Aidée de Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) et Angela Jin (<a href=\"https://profiles.wordpress.org/angelasjin/\">@angelasjin</a>).</li><li><strong>Coordination :</strong> Dee Teal (<a href=\"https://profiles.wordpress.org/thewebprincess/\">@thewebprincess</a>). Aidée de Thelma Mutete (<a href=\"https://profiles.wordpress.org/thelmachido/\">@thelmachido</a>) et Laura Nelson (<a href=\"https://profiles.wordpress.org/laurora/\">@laurora</a>).</li><li><strong>Suivi :</strong> Tonya Mork (<a href=\"https://profiles.wordpress.org/hellofromtonya/\">@hellofromtonya</a>). </li><li><strong>Direction technique du cœur WP :</strong> Helen Hou-Sandì (<a href=\"https://profiles.wordpress.org/helen/\">@helen</a>). Aidée de Amy Kamala (<a href=\"https://profiles.wordpress.org/amykamala/\">@amykamala</a>) et Ebonie Butler (<a href=\"https://profiles.wordpress.org/metalandcoffee/\">@metalandcoffee</a>).</li><li><strong>Direction technique de l’éditeur Gutenberg :</strong> Isabel Brison (<a href=\"https://profiles.wordpress.org/isabel_brison/\">@isabel_brison</a>). Aidée de Chandrika Guntur (<a href=\"https://profiles.wordpress.org/cguntur/\">@cguntur</a>), Anchen le Roux (<a href=\"https://profiles.wordpress.org/anchenlr/\">@anchenlr</a>), et Rebecca Hum (<a href=\"https://profiles.wordpress.org/rebasaurus/\">@rebasauru<strong>s</strong></a>).</li><li><strong>Direction artistique :</strong> Ellen Bauer (<a href=\"https://profiles.wordpress.org/elmastudio/\">@elmastudio</a>) et Tammie Lister (<a href=\"https://profiles.wordpress.org/karmatosed/\">@karmatosed</a>). Aidées de Anyssa Ferreira (<a href=\"https://profiles.wordpress.org/anyssa/\">@anyssa</a>), Estela Rueda (<a href=\"https://profiles.wordpress.org/estelaris/\">@estelaris</a>), Tracy Apps (<a href=\"https://profiles.wordpress.org/tray/\">@tray</a>), et Sophia DeRosia (<a href=\"https://profiles.wordpress.org/eringoblog/\">@eringoblog</a>).</li><li><strong>Accompagnement technique de la direction artistique :</strong> Shital Marakana (<a href=\"https://profiles.wordpress.org/shital-patel/\">@shital-patel</a>).</li><li><strong>Directrice du focus accessibilité :</strong> Sarah Ricker (<a href=\"https://profiles.wordpress.org/sarahricker/\">@sarahricke<strong>r</strong></a>). Aidée de Hauwa Abashiya (<a href=\"https://profiles.wordpress.org/azhiyadev/\">@azhiyadev</a>).</li><li><strong>Direction du marketing et de la communications :</strong> Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>) et Yvette Sonneveld (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a>). Aidées de Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Olga Gleckler (<a href=\"https://profiles.wordpress.org/oglekler/\">@ogleckler</a>), Larissa Murrillo (<a href=\"https://profiles.wordpress.org/lmurillom/\">@lmurillom</a>), Michelle Frechette (<a href=\"https://profiles.wordpress.org/michelleames/\">@michelleames</a>), Breann McDede (<a href=\"https://profiles.wordpress.org/bmcdede/\">@bmcdede</a>), et Afshana Diya (<a href=\"https://profiles.wordpress.org/afshanadiya/\">@afshanadiya</a>).</li><li><strong>Direction de la documentation : </strong>Shawntelle Coker (<a href=\"https://profiles.wordpress.org/sncoker/\">@sncoker</a>). Aidée de Daisy Olsen (<a href=\"https://wordpress.slack.com/team/U8D7JFA3X\">@DaisyO</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>) et Winstina Hughes (<a href=\"https://profiles.wordpress.org/planningwrite/\">@planningwrite</a>).</li><li><strong>Relecture et validation de la documentation :</strong> Michele Butcher-Jones (<a href=\"https://profiles.wordpress.org/m_butcher/\">@m_butcher</a>). Aidée de Nidhi Jain (<a href=\"https://profiles.wordpress.org/jainnidhi/\">@jainnidhi</a>) et Laura Byrne Cristiano (<a href=\"https://wordpress.org/support/users/newyorkerlaura/\">@newyorkerlaura</a>).</li><li><strong>Direction artistique du nouveau thème natif :</strong> Mel Choyce-Dwan (<a href=\"https://profiles.wordpress.org/melchoyce/\">@melchoyce</a>). Aidée de Ellen Bauer (<a href=\"https://profiles.wordpress.org/elmastudio/\">@elmastudio</a>).</li><li><strong>Direction technique du nouveau thème natif :</strong> Carolina Nymark (<a href=\"https://profiles.wordpress.org/poena/\">@poena</a>). Aidée de Kelly Choyce-Dwan (<a href=\"https://profiles.wordpress.org/ryelle/\">@ryelle</a>) et Jessica Lyschik (<a href=\"https://profiles.wordpress.org/luminuu/\">@luminuu</a>).</li><li><strong>Suivi du développement du nouveau thème natif :</strong> Jessica Lyschik (<a href=\"https://profiles.wordpress.org/luminuu/\">@luminuu</a>).</li><li><strong>Direction de l’équipe de test :</strong> Monika Rao (<a href=\"https://profiles.wordpress.org/monikarao/\">@monikarao</a>). Aidée de Allie Nimmons (<a href=\"https://profiles.wordpress.org/alliennimmons/\">@alliennimmons</a>).</li><li><strong>Direction du support à destination des utilisatrices et utilisateurs finaux :</strong> Bet Hannon (<a href=\"https://profiles.wordpress.org/bethannon1/\">@bethannon1</a>).</li></ul>\n\n\n\n<p>Comme toujours, cette nouvelle version est surtout le reflet du travail de centaines de formidables contributrices et contributeurs :</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/a2hosting/\">A2 Hosting</a>, <a href=\"https://profiles.wordpress.org/a4jpcom/\">a4jp . com</a>, <a href=\"https://profiles.wordpress.org/a6software/\">a6software</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/abderrahman/\">abderrahman</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/ibachal/\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed/\">achbed</a>, <a href=\"https://profiles.wordpress.org/achyuthajoy/\">Achyuth Ajoy</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/acsnaterse/\">acsnaterse</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/addyosmani/\">addyosmani</a>, <a href=\"https://profiles.wordpress.org/adnanlimdi/\">adnan.limdi</a>, <a href=\"https://profiles.wordpress.org/adrian/\">adrian</a>, <a href=\"https://profiles.wordpress.org/airamerica/\">airamerica</a>, <a href=\"https://profiles.wordpress.org/ajayghaghretiya1/\">Ajay Ghaghretiya</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/akbarhusen/\">akbarhusen</a>, <a href=\"https://profiles.wordpress.org/akbarhusen429/\">akbarhusen429</a>, <a href=\"https://profiles.wordpress.org/akhileshsabharwal/\">Akhilesh Sabharwal</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/alishanvr/\">Ali Shan</a>, <a href=\"https://profiles.wordpress.org/ali11007/\">ali11007</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/amaschas/\">amaschas</a>, <a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/anbumz/\">anbumz</a>, <a href=\"https://profiles.wordpress.org/andfinally/\">andfinally</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/dontdream/\">Andrea Tarantini</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</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/anevins/\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey « Rarst » Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">Andrés Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/akissz/\">Angel Hess</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/rilwis/\">Anh Tran</a>, <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/argentite/\">argentite</a>, <a href=\"https://profiles.wordpress.org/arpitgshah/\">Arpit G Shah</a>, <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"https://profiles.wordpress.org/asalce/\">asalce</a>, <a href=\"https://profiles.wordpress.org/ashiagr/\">ashiagr</a>, <a href=\"https://profiles.wordpress.org/ashour/\">ashour</a>, <a href=\"https://profiles.wordpress.org/tacitonic/\">Atharva Dhekne</a>, <a href=\"https://profiles.wordpress.org/ajoah/\">Aurélien Joahny</a>, <a href=\"https://profiles.wordpress.org/aussi/\">aussi</a>, <a href=\"https://profiles.wordpress.org/automaton/\">automaton</a>, <a href=\"https://profiles.wordpress.org/avixansa/\">avixansa</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/backups/\">BackuPs</a>, <a href=\"https://profiles.wordpress.org/barry/\">Barry</a>, <a href=\"https://profiles.wordpress.org/barryceelen/\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/bartczyz/\">Bart Czyz</a>, <a href=\"https://profiles.wordpress.org/bartekcholewa/\">bartekcholewa</a>, <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a>, <a href=\"https://profiles.wordpress.org/bastho/\">Bastien Ho</a>, <a href=\"https://profiles.wordpress.org/bmartinent/\">Bastien Martinent</a>, <a href=\"https://profiles.wordpress.org/bcworkz/\">bcworkz</a>, <a href=\"https://profiles.wordpress.org/bdbch/\">bdbch</a>, <a href=\"https://profiles.wordpress.org/bdcstr/\">bdcstr</a>, <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/grapestain/\">Bence Szalai</a>, <a href=\"https://profiles.wordpress.org/bencroskery/\">bencroskery</a>, <a href=\"https://profiles.wordpress.org/benjamingosset/\">Benjamin Gosset</a>, <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bettyjj/\">BettyJJ</a>, <a href=\"https://profiles.wordpress.org/bgermann/\">bgermann</a>, <a href=\"https://profiles.wordpress.org/bigcloudmedia/\">bigcloudmedia</a>, <a href=\"https://profiles.wordpress.org/bigdawggi/\">bigdawggi</a>, <a href=\"https://profiles.wordpress.org/billerickson/\">Bill Erickson</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bbrdaric/\">Boris Brdarić</a>, <a href=\"https://profiles.wordpress.org/ibdz/\">Boy Witthaya</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brianhogg/\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard/\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard/\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/bruandet/\">bruandet</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90/\">Bunty</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/caiocrcosta/\">caiocrcosta</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/cameronamcintyre/\">cameronamcintyre</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/stuffradio/\">Carl Wuensche</a>, <a href=\"https://profiles.wordpress.org/carloslfu/\">Carlos Galarza</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/sixhours/\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/carriganvb/\">Carrigan</a>, <a href=\"https://profiles.wordpress.org/ceyhun/\">ceyhun</a>, <a href=\"https://profiles.wordpress.org/shireling/\">Chad</a>, <a href=\"https://profiles.wordpress.org/cbutlerjr/\">Chad Butler</a>, <a href=\"https://profiles.wordpress.org/mackensen/\">Charles Fulton</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/christian1012/\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cjbj/\">Christian Jongeneel</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger/\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/needle/\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr/\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/chunkysteveo/\">chunkysteveo</a>, <a href=\"https://profiles.wordpress.org/cklee/\">cklee</a>, <a href=\"https://profiles.wordpress.org/clayray/\">clayray</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/cliffpaulick/\">Clifford Paulick</a>, <a href=\"https://profiles.wordpress.org/codeforest/\">codeforest</a>, <a href=\"https://profiles.wordpress.org/commeuneimage/\">Commeuneimage</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/cpasqualini/\">cpasqualini</a>, <a href=\"https://profiles.wordpress.org/cristovaov/\">Cristovao Verstraeten</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/curtisbelt/\">Curtis Belt</a>, <a href=\"https://profiles.wordpress.org/clarinetlord/\">Cyrus Collier</a>, <a href=\"https://profiles.wordpress.org/dperonne/\">D.PERONNE</a>, <a href=\"https://profiles.wordpress.org/dsixinetu/\">d6</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danielhuesken/\">Daniel Hüsken</a>, <a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/confridin/\">Daniel Roch</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/danieltj/\">danieltj</a>, <a href=\"https://profiles.wordpress.org/dboy1988/\">Danny</a>, <a href=\"https://profiles.wordpress.org/darkog/\">Darko G.</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/dmchale/\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dartiss/\">David Artiss</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dbrumbaugh10up/\">David Brumbaugh</a>, <a href=\"https://profiles.wordpress.org/desmith/\">David E. Smith</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">david.binda</a>, <a href=\"https://profiles.wordpress.org/davidvee/\">davidvee</a>, <a href=\"https://profiles.wordpress.org/davisshaver/\">Davis Shaver</a>, <a href=\"https://profiles.wordpress.org/dchymko/\">dchymko</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/delowardev/\">Delowar Hossain</a>, <a href=\"https://profiles.wordpress.org/demetris/\">demetris (Demetris Kikizas)</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/derekakelly/\">derekakelly</a>, <a href=\"https://profiles.wordpress.org/pcfreak30/\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/emrikol/\">Derrick Tennant</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dimitrism/\">Dimitris Mitsis</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency/\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/djennez/\">djennez</a>, <a href=\"https://profiles.wordpress.org/dmenard/\">dmenard</a>, <a href=\"https://profiles.wordpress.org/dmethvin/\">dmethvin</a>, <a href=\"https://profiles.wordpress.org/doc987/\">doc987</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/dono12/\">Dono12</a>, <a href=\"https://profiles.wordpress.org/doobeedoo/\">Doobeedoo</a>, <a href=\"https://profiles.wordpress.org/dossy/\">Dossy Shiobara</a>, <a href=\"https://profiles.wordpress.org/dpacks/\">dpacks</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/drlightman/\">DrLightman</a>, <a href=\"https://profiles.wordpress.org/drprotocols/\">DrProtocols</a>, <a href=\"https://profiles.wordpress.org/dsifford/\">dsifford</a>, <a href=\"https://profiles.wordpress.org/dudo/\">dudo</a>, <a href=\"https://profiles.wordpress.org/dushakov/\">dushakov</a>, <a href=\"https://profiles.wordpress.org/dustinbolton/\">Dustin Bolton</a>, <a href=\"https://profiles.wordpress.org/dvershinin/\">dvershinin</a>, <a href=\"https://profiles.wordpress.org/cyberhobo/\">Dylan Kuhn</a>, <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/seedsca/\">ecotechie</a>, <a href=\"https://profiles.wordpress.org/eddiemoya/\">Eddie Moya</a>, <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/itsjusteileen/\">Eileen Violini</a>, <a href=\"https://profiles.wordpress.org/ekatherine/\">Ekaterina</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/elmastudio/\">elmastudio</a>, <a href=\"https://profiles.wordpress.org/emanuel_blagonic/\">Emanuel Blagonic</a>, <a href=\"https://profiles.wordpress.org/emlebrun/\">Emilie LEBRUN</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgoric</a>, <a href=\"https://profiles.wordpress.org/enricosorcinelli/\">Enrico Sorcinelli</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">Enrique Piqueras</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/shamai/\">Eric</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/kebbet/\">Erik Betshammar</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Erin ‘Folletto’ Casali</a>, <a href=\"https://profiles.wordpress.org/esemlabel/\">esemlabel</a>, <a href=\"https://profiles.wordpress.org/esoj/\">esoj</a>, <a href=\"https://profiles.wordpress.org/espiat/\">espiat</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/etruel/\">etruel</a>, <a href=\"https://profiles.wordpress.org/ev3rywh3re/\">Ev3rywh3re</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/fftfaisal/\">Faisal Ahmed</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/felix-edelmann/\">Felix Edelmann</a>, <a href=\"https://profiles.wordpress.org/ferdiesletering/\">ferdiesletering</a>, <a href=\"https://profiles.wordpress.org/finomeno/\">finomeno</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann/\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/truchot/\">Florian Truchot</a>, <a href=\"https://profiles.wordpress.org/florianatwhodunit/\">florianatwhodunit</a>, <a href=\"https://profiles.wordpress.org/foliovision/\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/francoist/\">Francois Thibaud</a>, <a href=\"https://profiles.wordpress.org/futtta/\">Frank Goossens</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/frankprendergast/\">Frank.Prendergast</a>, <a href=\"https://profiles.wordpress.org/fjarrett/\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/franzarmas/\">Franz Armas</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/mintindeed/\">Gabriel Koen</a>, <a href=\"https://profiles.wordpress.org/gma992/\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/gmays/\">Gabriel Mays</a>, <a href=\"https://profiles.wordpress.org/gadgetroid/\">gadgetroid</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garavani/\">Garavani</a>, <a href=\"https://profiles.wordpress.org/garethgillman/\">garethgillman</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</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/gchtr/\">gchtr</a>, <a href=\"https://profiles.wordpress.org/geertdd/\">Geert De Deckere</a>, <a href=\"https://profiles.wordpress.org/geminilabs/\">Gemini Labs</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/giorgio25b/\">Giorgio25b</a>, <a href=\"https://profiles.wordpress.org/gisselfeldt/\">gisselfeldt</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/goldsounds/\">goldsounds</a>, <a href=\"https://profiles.wordpress.org/gh640/\">Goto Hayato</a>, <a href=\"https://profiles.wordpress.org/gkloveweb/\">Govind Kumar</a>, <a href=\"https://profiles.wordpress.org/greglone/\">Grégory Viguier</a>, <a href=\"https://profiles.wordpress.org/gradina/\">gradina</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/gregmulhauser/\">gregmulhauser</a>, <a href=\"https://profiles.wordpress.org/grierson/\">grierson</a>, <a href=\"https://profiles.wordpress.org/grzegorzjanoszka/\">Grzegorz.Janoszka</a>, <a href=\"https://profiles.wordpress.org/gsmumbo/\">gsmumbo</a>, <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a>, <a href=\"https://profiles.wordpress.org/guidobras/\">guidobras</a>, <a href=\"https://profiles.wordpress.org/netsurfer2705/\">Gunther Pilz</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hvar/\">H-var</a>, <a href=\"https://profiles.wordpress.org/hakre/\">hakre</a>, <a href=\"https://profiles.wordpress.org/halgatewood/\">Hal Gatewood</a>, <a href=\"https://profiles.wordpress.org/hankthetank/\">hankthetank</a>, <a href=\"https://profiles.wordpress.org/psdtohtmlguru/\">Hapiuc Robert</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/haukep/\">haukep</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/h71/\">Hector Farahani</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hlanggo/\">hlanggo</a>, <a href=\"https://profiles.wordpress.org/hommealone/\">hommealone</a>, <a href=\"https://profiles.wordpress.org/ryanshoover/\">Hoover</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hronak/\">Hronak Nahar</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/huntlyc/\">huntlyc</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</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/ianjvr/\">ianjvr</a>, <a href=\"https://profiles.wordpress.org/ifrins/\">ifrins</a>, <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"https://profiles.wordpress.org/infinum/\">infinum</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ishitaka/\">ishitaka</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jackfungi/\">jackfungi</a>, <a href=\"https://profiles.wordpress.org/jacklinkers/\">jacklinkers</a>, <a href=\"https://profiles.wordpress.org/jadonn/\">Jadon N</a>, <a href=\"https://profiles.wordpress.org/jadpm/\">jadpm</a>, <a href=\"https://profiles.wordpress.org/jagirbahesh/\">jagirbahesh</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/twentyzerotwo/\">Jake Whiteley</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/foack/\">Jan Koch</a>, <a href=\"https://profiles.wordpress.org/janr/\">Jan Reilink</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/javidalkaruzi/\">Janvo Aldred</a>, <a href=\"https://profiles.wordpress.org/jarretc/\">Jarret</a>, <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a>, <a href=\"https://profiles.wordpress.org/strangerstudios/\">Jason Coleman</a>, <a href=\"https://profiles.wordpress.org/boogah/\">Jason Cosper</a>, <a href=\"https://profiles.wordpress.org/coolmann/\">Jason Crouse</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/jaz_on/\">Jason Rouet</a>, <a href=\"https://profiles.wordpress.org/jaswsinc/\">JasWSInc</a>, <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a>, <a href=\"https://profiles.wordpress.org/shiki/\">Jayson Basanes</a>, <a href=\"https://profiles.wordpress.org/jbinda/\">jbinda</a>, <a href=\"https://profiles.wordpress.org/jbouganim/\">jbouganim</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jean-david/\">Jean-David Daviet</a>, <a href=\"https://profiles.wordpress.org/jeffr0/\">Jeff Chandler</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a>, <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a>, <a href=\"https://profiles.wordpress.org/jesin/\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jigneshnakrani/\">Jignesh Nakrani</a>, <a href=\"https://profiles.wordpress.org/jim_panse/\">Jim_Panse</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jivanpal/\">jivanpal</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/jdorner/\">John Dorner</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">John P. Green</a>, <a href=\"https://profiles.wordpress.org/rastaban/\">John Richards II</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a>, <a href=\"https://profiles.wordpress.org/johnnyb/\">johnnyb</a>, <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Jon Quach</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/jrchamp/\">Jonathan Champ</a>, <a href=\"https://profiles.wordpress.org/jchristopher/\">Jonathan Christopher</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/jonkolbert/\">jonkolbert</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnybot/\">jonnybot</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</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/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/josephdickson/\">Joseph Dickson</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/procifer/\">Josh Smith</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/juanfra/\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juanlopez4691/\">juanlopez4691</a>, <a href=\"https://profiles.wordpress.org/jules-colle/\">Jules Colle</a>, <a href=\"https://profiles.wordpress.org/julianm/\">julianm</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/jgrodel/\">Julka Grodel</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/devesine/\">Justin de Vesine</a>, <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/justlevine/\">justlevine</a>, <a href=\"https://profiles.wordpress.org/justnorris/\">justnorris</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kaggdesign/\">kaggdesign</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kaira/\">Kaira</a>, <a href=\"https://profiles.wordpress.org/kaitlin414/\">Kaitlin Bolling</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/kamataryo/\">KamataRyo</a>, <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a>, <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a>, <a href=\"https://profiles.wordpress.org/properlypurple/\">Kavya Gokul</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer/\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kellybleck/\">kellybleck</a>, <a href=\"https://profiles.wordpress.org/kennethroberson5556/\">kennethroberson5556</a>, <a href=\"https://profiles.wordpress.org/khag7/\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/itzmekhokan/\">Khokan Sardar</a>, <a href=\"https://profiles.wordpress.org/kinjaldalwadi/\">kinjaldalwadi</a>, <a href=\"https://profiles.wordpress.org/kirilzh/\">Kiril Zhelyazkov</a>, <a href=\"https://profiles.wordpress.org/kburgoine/\">Kirsty Burgoine</a>, <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</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/kittmedia/\">KittMedia</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/ksoares/\">ksoares</a>, <a href=\"https://profiles.wordpress.org/kthmd/\">KT Cheung</a>, <a href=\"https://profiles.wordpress.org/sainthkh/\">Kukhyeon Heo</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/lalitpendhare/\">lalitpendhare</a>, <a href=\"https://profiles.wordpress.org/landau/\">landau</a>, <a href=\"https://profiles.wordpress.org/laternastudio/\">Laterna Studio</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/offereins/\">Laurens Offereins</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/gamerz/\">Lester Chan</a>, <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a>, <a href=\"https://profiles.wordpress.org/layotte/\">Lew Ayotte</a>, <a href=\"https://profiles.wordpress.org/lex_robinson/\">Lex Robinson</a>, <a href=\"https://profiles.wordpress.org/linyows/\">linyows</a>, <a href=\"https://profiles.wordpress.org/lipathor/\">lipathor</a>, <a href=\"https://profiles.wordpress.org/lschuyler/\">Lisa Schuyler</a>, <a href=\"https://profiles.wordpress.org/liuhaibin/\">liuhaibin</a>, <a href=\"https://profiles.wordpress.org/ljharb/\">ljharb</a>, <a href=\"https://profiles.wordpress.org/logig/\">logig</a>, <a href=\"https://profiles.wordpress.org/lucasbustamante/\">lucasbustamante</a>, <a href=\"https://profiles.wordpress.org/lwill/\">luiswill</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">Luke Walczak</a>, <a href=\"https://profiles.wordpress.org/lukestramasonder/\">lukestramasonder</a>, <a href=\"https://profiles.wordpress.org/asif2bd/\">M Asif Rahman</a>, <a href=\"https://profiles.wordpress.org/msafi/\">M.K. Safi</a>, <a href=\"https://profiles.wordpress.org/cloudstek/\">Maarten de Boer</a>, <a href=\"https://profiles.wordpress.org/aladin02dz/\">Mahfoudh Arous</a>, <a href=\"https://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"https://profiles.wordpress.org/manojlovic/\">manojlovic</a>, <a href=\"https://profiles.wordpress.org/targz-1/\">Manuel Schmalstieg</a>, <a href=\"https://profiles.wordpress.org/neodjandre/\">maraki</a>, <a href=\"https://profiles.wordpress.org/iworks/\">Marcin Pietrzak</a>, <a href=\"https://profiles.wordpress.org/marcio-zebedeu/\">Marcio Zebedeu</a>, <a href=\"https://profiles.wordpress.org/pereirinha/\">Marco Pereirinha</a>, <a href=\"https://profiles.wordpress.org/marcoz/\">MarcoZ</a>, <a href=\"https://profiles.wordpress.org/netweblogic/\">Marcus</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/mariovalney/\">Mario Valney</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/machouinard/\">Mark Chouinard</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markdubois/\">markdubois</a>, <a href=\"https://profiles.wordpress.org/markgoho/\">markgoho</a>, <a href=\"https://profiles.wordpress.org/vindl/\">Marko Andrijasevic</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markrh/\">MarkRH</a>, <a href=\"https://profiles.wordpress.org/markshep/\">markshep</a>, <a href=\"https://profiles.wordpress.org/markusthiel/\">markusthiel</a>, <a href=\"https://profiles.wordpress.org/martijn-van-der-kooij/\">Martijn van der Kooij</a>, <a href=\"https://profiles.wordpress.org/martychc23/\">martychc23</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/matheusfd/\">Matheus Martins</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/matjack1/\">matjack1</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom/\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/gothickgothickorguk/\">Matt Gibson</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattrad/\">Matt Radford</a>, <a href=\"https://profiles.wordpress.org/veraxus/\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">mattchowning</a>, <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattheweppelsheimer/\">Matthew Eppelsheimer</a>, <a href=\"https://profiles.wordpress.org/beatpanda/\">Matthew Gerring</a>, <a href=\"https://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a>, <a href=\"https://profiles.wordpress.org/matthieumota/\">Matthieu Mota</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maximeculea/\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/maxme/\">maxme</a>, <a href=\"https://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a>, <a href=\"https://profiles.wordpress.org/mcshane/\">mcshane</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/lilmike/\">Michael</a>, <a href=\"https://profiles.wordpress.org/michaelarestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/mfields/\">Michael Fields</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/m_butcher/\">Michele Butcher-Jones</a>, <a href=\"https://profiles.wordpress.org/marktimemedia/\">Michelle</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">mihdan</a>, <a href=\"https://profiles.wordpress.org/miinasikk/\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mikaumoto/\">mikaumoto</a>, <a href=\"https://profiles.wordpress.org/mihai2u/\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl/\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mike-haydon-swo/\">Mike Haydon</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/mikeyarce/\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/milindmore22/\">Milind More</a>, <a href=\"https://profiles.wordpress.org/mimitips/\">mimi</a>, <a href=\"https://profiles.wordpress.org/mislavjuric/\">mislavjuric</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a>, <a href=\"https://profiles.wordpress.org/mohsinrasool/\">Mohsin Rasool</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/gwendydd/\">Morgan Kay</a>, <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a>, <a href=\"https://profiles.wordpress.org/mt8biz/\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrgrt/\">mrgrt</a>, <a href=\"https://profiles.wordpress.org/mrmist/\">mrmist</a>, <a href=\"https://profiles.wordpress.org/mrtall/\">mrTall</a>, <a href=\"https://profiles.wordpress.org/msaggiorato/\">msaggiorato</a>, <a href=\"https://profiles.wordpress.org/musamamasood/\">Muhammad Usama Masood</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/nabilmoqbel/\">Nabil Moqbel</a>, <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a>, <a href=\"https://profiles.wordpress.org/nfmohit/\">Nahid Ferdous Mohit</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/narwen/\">narwen</a>, <a href=\"https://profiles.wordpress.org/nateinaction/\">Nate Gay</a>, <a href=\"https://profiles.wordpress.org/nathanrice/\">Nathan Rice</a>, <a href=\"https://profiles.wordpress.org/navidos/\">Navid</a>, <a href=\"https://profiles.wordpress.org/neonkowy/\">neonkowy</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/netpassprodsr/\">netpassprodsr</a>, <a href=\"https://profiles.wordpress.org/nextendweb/\">Nextendweb</a>, <a href=\"https://profiles.wordpress.org/calvin_ngan/\">Ngan Tengyuen</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty/\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/nickylimjj/\">Nicky Lim</a>, <a href=\"https://profiles.wordpress.org/vadimnicolai/\">nicolad</a>, <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a>, <a href=\"https://profiles.wordpress.org/nicolaskulka/\">NicolasKulka</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielsdeblaauw/\">Niels de Blaauw</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nigrosimone/\">nigro.simone</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/nikhilbhansi/\">Nikhil Bhansi</a>, <a href=\"https://profiles.wordpress.org/nbachiyski/\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a>, <a href=\"https://profiles.wordpress.org/niresh12495/\">Niresh</a>, <a href=\"https://profiles.wordpress.org/nmenescardi/\">nmenescardi</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/numidwasnotavailable/\">NumidWasNotAvailable</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a>, <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/onokazu/\">onokazu</a>, <a href=\"https://profiles.wordpress.org/optimizingmatters/\">Optimizing Matters</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/ovann86/\">ovann86</a>, <a href=\"https://profiles.wordpress.org/overclokk/\">overclokk</a>, <a href=\"https://profiles.wordpress.org/p_enrique/\">p_enrique</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/paddy/\">Paddy</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/paresh07/\">Paresh Shinde</a>, <a href=\"https://profiles.wordpress.org/parvand/\">Parvand</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pdfernhout/\">Paul Fernhout</a>, <a href=\"https://profiles.wordpress.org/djpaul/\">Paul Gibbs</a>, <a href=\"https://profiles.wordpress.org/figureone/\">Paul Ryan</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulstonier/\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/pentatonicfunk/\">pentatonicfunk</a>, <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"https://profiles.wordpress.org/pessoft/\">Peter « Pessoft » Kolínek</a>, <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pderksen/\">Phil Derksen</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a>, <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a>, <a href=\"https://profiles.wordpress.org/pigdog234/\">pigdog234</a>, <a href=\"https://profiles.wordpress.org/pikamander2/\">pikamander2</a>, <a href=\"https://profiles.wordpress.org/wppinar/\">Pinar</a>, <a href=\"https://profiles.wordpress.org/pingram3541/\">pingram</a>, <a href=\"https://profiles.wordpress.org/pionect/\">Pionect</a>, <a href=\"https://profiles.wordpress.org/piyushmca/\">Piyush Patel</a>, <a href=\"https://profiles.wordpress.org/pkarjala/\">pkarjala</a>, <a href=\"https://profiles.wordpress.org/pkvillanueva/\">pkvillanueva</a>, <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a>, <a href=\"https://profiles.wordpress.org/pratik028/\">pratik028</a>, <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presslabs/\">Presslabs</a>, <a href=\"https://profiles.wordpress.org/priyankkpatel/\">Priyank Patel</a>, <a href=\"https://profiles.wordpress.org/priyomukul/\">Priyo Mukul</a>, <a href=\"https://profiles.wordpress.org/prografika/\">ProGrafika</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/puneetsahalot/\">Puneet Sahalot</a>, <a href=\"https://profiles.wordpress.org/punitsoftac/\">punitsoftac</a>, <a href=\"https://profiles.wordpress.org/pvogel2/\">pvogel2</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/raajtram/\">Raaj Trambadia</a>, <a href=\"https://profiles.wordpress.org/larrach/\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/raineorshine/\">raine</a>, <a href=\"https://profiles.wordpress.org/rajeshsingh520/\">rajeshsingh520</a>, <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ravanh/\">RavanH</a>, <a href=\"https://profiles.wordpress.org/ravatparmar/\">Ravat Parmar</a>, <a href=\"https://profiles.wordpress.org/ravenswd/\">ravenswd</a>, <a href=\"https://profiles.wordpress.org/rawrly/\">rawrly</a>, <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/redsand/\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/regankhadgi/\">Regan Khadgi</a>, <a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a>, <a href=\"https://profiles.wordpress.org/remzicavdar/\">Remzi Cavdar</a>, <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho</a>, <a href=\"https://profiles.wordpress.org/renggo888/\">renggo888</a>, <a href=\"https://profiles.wordpress.org/retlehs/\">retlehs</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/riaanlom/\">riaanlom</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/riasat/\">riasat</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/ringisha/\">Ringisha</a>, <a href=\"https://profiles.wordpress.org/ritterml/\">ritterml</a>, <a href=\"https://profiles.wordpress.org/rnaby/\">Rnaby</a>, <a href=\"https://profiles.wordpress.org/rcutmore/\">Rob Cutmore</a>, <a href=\"https://profiles.wordpress.org/dhrrob/\">Rob Migchels</a>, <a href=\"https://profiles.wordpress.org/rob006/\">rob006</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/robertpeake/\">Robert Peake</a>, <a href=\"https://profiles.wordpress.org/nullbyte/\">Robert Windisch</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/ronalfy/\">Ronald Huereca</a>, <a href=\"https://profiles.wordpress.org/costasovo/\">Rostislav Wolný</a>, <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a>, <a href=\"https://profiles.wordpress.org/rtagliento/\">rtagliento</a>, <a href=\"https://profiles.wordpress.org/ruxandra/\">Ruxandra</a>, <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a>, <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/ryotasakamoto/\">Ryota Sakamoto</a>, <a href=\"https://profiles.wordpress.org/ryotsun/\">ryotsun</a>, <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/sorenbronsted/\">Søren Brønsted</a>, <a href=\"https://profiles.wordpress.org/sachittandukar/\">Sachit Tandukar</a>, <a href=\"https://profiles.wordpress.org/sagarjadhav/\">Sagar Jadhav</a>, <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a>, <a href=\"https://profiles.wordpress.org/salcode/\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/salvatoreformisano/\">Salvatore Formisano</a>, <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a>, <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a>, <a href=\"https://profiles.wordpress.org/sswebster/\">Sam Webster</a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/samueljseay/\">samueljseay</a>, <a href=\"https://profiles.wordpress.org/pacifika/\">Sander van Dragt</a>, <a href=\"https://profiles.wordpress.org/sanzeeb3/\">Sanjeev Aryal</a>, <a href=\"https://profiles.wordpress.org/progremzion/\">Sanket Mehta</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a>, <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiyamoorthy V</a>, <a href=\"https://profiles.wordpress.org/sayedwp/\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/scarolan/\">scarolan</a>, <a href=\"https://profiles.wordpress.org/scholdstrom/\">scholdstrom</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/scottsmith/\">Scott Smith</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/seanpaulrasmussen/\">seanpaulrasmussen</a>, <a href=\"https://profiles.wordpress.org/seayou/\">seayou</a>, <a href=\"https://profiles.wordpress.org/senatorman/\">senatorman</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vjik/\">Sergey Predvoditelev</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sgr33n/\">Sergio de Falco</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/functionalrhyme/\">Shannon Smith</a>, <a href=\"https://profiles.wordpress.org/wpshades/\">Shantanu Desai</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shooper/\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/shawnz/\">shawnz</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shulard/\">shulard</a>, <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/simonwheatley/\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/simonjanin/\">simonjanin</a>, <a href=\"https://profiles.wordpress.org/sinatrateam/\">sinatrateam</a>, <a href=\"https://profiles.wordpress.org/sjmur/\">sjmur</a>, <a href=\"https://profiles.wordpress.org/skarabeq/\">skarabeq</a>, <a href=\"https://profiles.wordpress.org/skorasaurus/\">skorasaurus</a>, <a href=\"https://profiles.wordpress.org/skoskie/\">skoskie</a>, <a href=\"https://profiles.wordpress.org/slushman/\">slushman</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/seth17/\">SpearsMarketing</a>, <a href=\"https://profiles.wordpress.org/sphakka/\">sphakka</a>, <a href=\"https://profiles.wordpress.org/squarecandy/\">squarecandy</a>, <a href=\"https://profiles.wordpress.org/sreedoap/\">sreedoap</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/garubi/\">Stefano Garuti</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sswells/\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/stephencronin/\">Stephen Cronin</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/stevegibson12/\">stevegibson12</a>, <a href=\"https://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenkussmaul/\">stevenkussmaul</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stiofansisland/\">Stiofan</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sum1/\">SUM1</a>, <a href=\"https://profiles.wordpress.org/quadthemes/\">Sunny</a>, <a href=\"https://profiles.wordpress.org/sunnyratilal/\">Sunny Ratilal</a>, <a href=\"https://profiles.wordpress.org/sushyant/\">Sushyant Zavarzadeh</a>, <a href=\"https://profiles.wordpress.org/suzylah/\">suzylah</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/smub/\">Syed Balkhi</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">Sérgio Estêvão</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/tangrufus/\">Tang Rufus</a>, <a href=\"https://profiles.wordpress.org/utz119/\">TeBenachi</a>, <a href=\"https://profiles.wordpress.org/tessawatkinsllc/\">Tessa Watkins LLC</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Tetsuaki Hamano</a>, <a href=\"https://profiles.wordpress.org/themiked/\">theMikeD</a>, <a href=\"https://profiles.wordpress.org/theolg/\">theolg</a>, <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a>, <a href=\"https://profiles.wordpress.org/thimalw/\">Thimal Wickremage</a>, <a href=\"https://profiles.wordpress.org/webzunft/\">Thomas M</a>, <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/thrijith/\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/tiagohillebrandt/\">Tiago Hillebrandt</a>, <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Krüss</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmdesigned/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tmoore41/\">tmoore41</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/tofandel/\">Tofandel</a>, <a href=\"https://profiles.wordpress.org/tomdude/\">tomdude</a>, <a href=\"https://profiles.wordpress.org/tferry/\">Tommy Ferry</a>, <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/treecutter/\">treecutter</a>, <a href=\"https://profiles.wordpress.org/truongwp/\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsimmons/\">tsimmons</a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vagios/\">Vagios Vlachos</a>, <a href=\"https://profiles.wordpress.org/valchovski/\">valchovski</a>, <a href=\"https://profiles.wordpress.org/valentinbora/\">Valentin Bora</a>, <a href=\"https://profiles.wordpress.org/vayu/\">Vayu Robins</a>, <a href=\"https://profiles.wordpress.org/veromary/\">veromary</a>, <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Szépe</a>, <a href=\"https://profiles.wordpress.org/vinayakanivase/\">Vinayak Anivase</a>, <a href=\"https://profiles.wordpress.org/vinkla/\">vinkla</a>, <a href=\"https://profiles.wordpress.org/virginienacci/\">virginienacci</a>, <a href=\"https://profiles.wordpress.org/planvova/\">Vladimir</a>, <a href=\"https://profiles.wordpress.org/vabrashev/\">Vladislav Abrashev</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, <a href=\"https://profiles.wordpress.org/voyager131/\">voyager131</a>, <a href=\"https://profiles.wordpress.org/vtieu/\">vtieu</a>, <a href=\"https://profiles.wordpress.org/webaware/\">webaware</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina Hughes</a>, <a href=\"https://profiles.wordpress.org/wittich/\">wittich</a>, <a href=\"https://profiles.wordpress.org/wpdesk/\">wpdesk</a>, <a href=\"https://profiles.wordpress.org/wpdo5ea/\">WPDO</a>, <a href=\"https://profiles.wordpress.org/alexandreb3/\">WPMarmite</a>, <a href=\"https://profiles.wordpress.org/yahil/\">Yahil Madakiya</a>, <a href=\"https://profiles.wordpress.org/yashrs/\">yashrs</a>, <a href=\"https://profiles.wordpress.org/yoancutillas/\">yoancutillas</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yohannp/\">yohannp</a>, <a href=\"https://profiles.wordpress.org/yuhin/\">yuhin</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/ysalame/\">Yuri Salame</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/tollmanz/\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/zaheerahmad/\">zaheerahmad</a>, <a href=\"https://profiles.wordpress.org/zakkath/\">zakkath</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>, and <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a>.</p>\n\n\n\n<p>Pour finir, un grand merci à celles et ceux qui ont participé à la traduction de WordPress 5.6 en français :</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/anthonychaussin\">Anthony Chaussin</a>, <a href=\"https://profiles.wordpress.org/ajoah\">Aurélien Joahny</a>, <a href=\"https://profiles.wordpress.org/bastho\">Bastien Ho</a>, <a href=\"https://profiles.wordpress.org/bonaldi\">Bonaldi</a>, <a href=\"https://profiles.wordpress.org/btpub\">Bruno Tritsch</a>, <a href=\"https://profiles.wordpress.org/clementpolito\">Clément Polito</a>, <a href=\"https://profiles.wordpress.org/cryptrz\">cryptrz</a>, <a href=\"https://profiles.wordpress.org/wolforg\">Didier Demory / Wolforg</a>, <a href=\"https://profiles.wordpress.org/drixe\">drixe</a>, <a href=\"https://profiles.wordpress.org/emlebrun\">Emilie LEBRUN</a>, <a href=\"https://profiles.wordpress.org/fxbenard\">FX Bénard</a>, <a href=\"https://profiles.wordpress.org/jdy68\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/leprincenoir\">Kantari Samy</a>, <a href=\"https://profiles.wordpress.org/peexy\">Laurent Naudier</a>, <a href=\"https://profiles.wordpress.org/webaxones\">Loïc Antignac</a>, <a href=\"https://profiles.wordpress.org/chaton666\">Marie Comet</a>, <a href=\"https://profiles.wordpress.org/maximejobin\">Maxime Jobin</a>, <a href=\"https://profiles.wordpress.org/maxpertici\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/momo-fr\">momo-fr</a>, <a href=\"https://profiles.wordpress.org/nicolasricher\">Nicolas Richer</a>, <a href=\"https://profiles.wordpress.org/papicx\">papicx</a>, <a href=\"https://profiles.wordpress.org/casiepa\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pixxxel\">Pierre Bichet</a>, <a href=\"https://profiles.wordpress.org/larrach\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/sebastienserre\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/crash_47\">Thomas Piron</a>, <a href=\"https://profiles.wordpress.org/spaceshipone\">Timothée Brosille</a>, <a href=\"https://profiles.wordpress.org/translationsbyautomattic\">Translations by Automattic</a>, et <a href=\"https://profiles.wordpress.org/wptranslationsorg\">WP-Translations</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://fr.wordpress.org/2020/12/09/wordpress-5-6-simone/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:\"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: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:35:\"https://fr.wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 07 Jan 2022 12:40:16 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Fri, 29 Oct 2021 15:51:45 GMT\";s:4:\"link\";s:61:\"<https://fr.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20201016172007\";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1232, '_transient_timeout_feed_mod_0d2db5fea5a8633b56992c916819b198', '1641602417', 'no'),
(1233, '_transient_feed_mod_0d2db5fea5a8633b56992c916819b198', '1641559217', 'no'),
(1234, '_transient_timeout_feed_48c2a7450ae14f12ef8a9b58ca9f0748', '1641602417', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1235, '_transient_feed_48c2a7450ae14f12ef8a9b58ca9f0748', 'a:4:{s:5:\"child\";a:1:{s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"feed\";a:1:{i:0;a:6:{s:4:\"data\";s:126:\"\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:27:\"http://www.w3.org/2005/Atom\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Planet 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:8:\"subtitle\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Planet 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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:36:\"https://rss.wpfr.net/feed/wp-planet/\";s:3:\"rel\";s:4:\"self\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"https://rss.wpfr.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:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"2022-01-07T12:40:18+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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"\n WP RSS Aggregator\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"uri\";s:27:\"https://wprssaggregator.com\";s:7:\"version\";s:6:\"4.19.3\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"entry\";a:10:{i:0;a:6:{s:4:\"data\";s:65:\"\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:27:\"http://www.w3.org/2005/Atom\";a:8:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"https://wpmarmite.com/alternatives-woocommerce/?utm_source=rss&utm_medium=rss&%23038;utm_campaign=alternatives-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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Quelles sont les alternatives à WooCommerce… et peut-on leur faire confiance ?\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:127:\"https://wpmarmite.com/alternatives-woocommerce/?utm_source=rss&utm_medium=rss&%23038;utm_campaign=alternatives-woocommerce\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2022-01-06T08:00:00.000+01: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"Vous connaissez sûrement l’expression suivante : « l’arbre qui cache la forêt ». On peut lui trouver divers champs d’application, et figurez-vous que cela marche dans le domaine du e-commerce....\nQuelles sont les alternatives à WooCommerce… et peut-on leur faire confiance ? est un article de WPMarmite, le blog qui vous aide à tirer le meilleur 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:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:711:\"\n <p><img width=\"1500\" height=\"830\" src=\"https://wpmarmite.com/wp-content/uploads/2022/01/alternatives-woocommerce.jpg\" class=\"attachment-full size-full wp-post-image\" alt=\"\" //></p>\n<p>Vous connaissez sûrement l’expression suivante : « l’arbre qui cache la forêt ». On peut lui trouver divers champs d’application, et figurez-vous que cela marche dans le domaine du e-commerce....</p>\n<p><a rel=\"nofollow\" href=\"https://wpmarmite.com/alternatives-woocommerce/\">Quelles sont les alternatives à WooCommerce… et peut-on leur faire confiance ?</a> est un article de <a rel=\"nofollow\" href=\"https://wpmarmite.com\">WPMarmite</a>, le blog qui vous aide à tirer le meilleur de WordPress.</p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Thibaut &#124; WPMarmite\";s: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:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://feedpress.me/WPMarmite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"WP Marmite\";s: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:65:\"\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:27:\"http://www.w3.org/2005/Atom\";a:8:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://21douze.fr/plugin-wp-genders-ajouter-genres-administration-wordpress-673310.html\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Plugin WP Genders : Comment ajouter des genres dans votre administration WordPress\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:88:\"https://21douze.fr/plugin-wp-genders-ajouter-genres-administration-wordpress-673310.html\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2021-12-31T11:42:41.000+01: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:318:\"S’il est bien un sujet d’actualité depuis quelques années et qui n’a pas fini de faire parler de lui, c’est celui des genres. Je suis pour l’ouverture aux genres, chacun et chacune est libre de se sentir et de se faire respecter comme iel l’entend à ce niveau là. Là où, il faut l’avouer, cela …\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:364:\"\n S’il est bien un sujet d’actualité depuis quelques années et qui n’a pas fini de faire parler de lui, c’est celui des genres. Je suis pour l’ouverture aux genres, chacun et chacune est libre de se sentir et de se faire respecter comme iel l’entend à ce niveau là. Là où, il faut l’avouer, cela …\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Julio Potier\";s: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:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://21douze.fr/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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"21douze\";s: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:65:\"\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:27:\"http://www.w3.org/2005/Atom\";a:8:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://mariecomet.fr/2021/12/06/ajouter-options-controles-bloc-gutenberg-existant/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Ajouter des options et contrôles à un bloc Gutenberg existant\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:83:\"https://mariecomet.fr/2021/12/06/ajouter-options-controles-bloc-gutenberg-existant/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2021-12-06T22:21:00.000+01: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"Comment ajouter des options et contrôles aux blocs existants de Gutenberg, et les sauvegarder dans les attributs.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:16463:\"\n \n<p><a href=\"https://mariecomet.fr/en/2021/12/14/adding-options-controls-existing-gutenberg-block/\">Read the English version</a></p>\n\n\n\n<p class=\"has-large-font-size\"><strong>Cet article explique comment ajouter des options et contrôles aux blocs existants de l’éditeur de WordPress, Gutenberg, et les sauvegarder dans les attributs.</strong></p>\n\n\n\n<p>La procédure est différente de <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/block-controls-toolbar-and-sidebar/\">l’ajout de contrôles lorsqu’on créé des blocs sur mesure</a>, puisque nous utiliserons uniquement des filtres pour nous greffer à des blocs existants. Les filtres disponibles dans l’éditeur fonctionnent comme les filtres PHP (<code>add_filter</code>, <code>apply_filters</code>).</p>\n\n\n\n<p>Il est préférable que vous ayez des bases dans l’utilisation de React et/ou JavaScript pour comprendre ce tutoriel. Je n’entrerai pas dans les détails des concepts liés aux composants, etc.</p>\n\n\n\n<p>Je vous invite à consulter <a href=\"https://developer.wordpress.org/block-editor/reference-guides/filters/\">la documentation sur les filtres</a> avant de lire cet article.</p>\n\n\n\n<p>L’ensemble du code fonctionnel est disponible <a href=\"https://github.com/MarieComet/core-block-custom-attributes\">sous la forme d’une extension</a>.</p>\n\n\n\n<h2 id=\"les-etapes-pour-ajouter-un-controle\">Les étapes pour ajouter un contrôle</h2>\n\n\n\n<p>L’ajout d’un contrôle personnalisé se compose de quatre étapes :</p>\n\n\n\n<ol><li>Déclarer un attribut personnalisé afin d’enregistrer la valeur du contrôle</li><li>Ajouter le contrôle à l’emplacement voulu</li><li>Manipuler le rendu du bloc</li><li>Enregistrer le bloc</li></ol>\n\n\n\n<p>Pour ce premier exemple, nous ajouterons un bouton à la Toolbar du bloc paragraphe. L’ensemble du code est visible <a href=\"https://github.com/MarieComet/core-block-custom-attributes/blob/main/src/attributes/toolbarButton.js\">sur le dépôt de l’extension</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img width=\"673\" height=\"135\" src=\"https://mariecomet.fr/wp-content/uploads/2021/12/image.png\" alt=\"\" class=\"wp-image-3368\" //></figure>\n\n\n\n<h3 id=\"declarer-un-attribut-personnalise\">Déclarer un attribut personnalisé</h3>\n\n\n\n<p>Si vous souhaitez ajouter un contrôle à un bloc, c’est probablement que vous souhaitez enregistrer sa valeur en même temps que les autres valeurs du bloc.</p>\n\n\n\n<p>Au même titre que les champs personnalisés d’une publication, les attributs d’un bloc doivent être déclarés au préalable. Lorsqu’on créé un bloc sur mesure, <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/\">on le fait au moment de la déclaration du bloc</a>.<br>En revanche, si on souhaite ajouter un attribut à un bloc existant (natif ou non), nous devons utiliser un filtre : <code>blocks.registerBlockType</code>.</p>\n\n\n\n<pre class=\"wp-block-code\"><code>const enableToolbarButtonOnBlocks = [\n \'core/paragraph\'\n];\n\nconst setToolbarButtonAttribute = ( settings, name ) => {\n // Do nothing if it\'s another block than our defined ones.\n if ( ! enableToolbarButtonOnBlocks.includes( name ) ) {\n return settings;\n }\n\n return Object.assign( {}, settings, {\n attributes: Object.assign( {}, settings.attributes, {\n paragraphAttribute: { type: \'string\' }\n } ),\n } );\n};\nwp.hooks.addFilter(\n \'blocks.registerBlockType\',\n \'custom-attributes/set-toolbar-button-attribute\',\n setToolbarButtonAttribute\n);</code></pre>\n\n\n\n<p>Dans le code ci-dessus, dans <code>setToolbarButtonAttribute</code> nous ajoutons l’attribut <code>paragraphAttribute</code>, en spécifiant que c’est une chaîne (<code>string</code>). Vous personnaliserez <code>paragraphAttribute</code> en fonction de votre contrôle.</p>\n\n\n\n<p>Ensuite, nous venons ajouter ceci au bloc paragraphe en nous branchant sur <code>wp.hooks.addFilter</code>, <code><a href=\"https://developer.wordpress.org/block-editor/reference-guides/filters/block-filters/#blocks-registerblocktype\">blocks.registerBlockType</a></code>, qui est un filtre joué sur chaque déclaration de bloc.</p>\n\n\n\n<div class=\"wp-container-61ba0b471c700 wp-block-group is-style-default has-purple-extra-light-background-color has-background\" style=\"padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px\">\n<p>Un mot sur la condition présente en début de code :</p>\n\n\n\n<pre class=\"wp-block-code\"><code>if ( ! enableToolbarButtonOnBlocks.includes( name ) ) {\n return settings;\n}</code></pre>\n\n\n\n<p>Elle permet simplement de vérifier que le bloc courant fait partie d’une liste autorisée et qui est déclarée dans <code>enableToolbarButtonOnBlocks</code>.</p>\n</div>\n\n\n\n<p><em>À noter que si votre contrôle personnalisé doit être sauvegardé au niveau d’un attribut existant (par exemple l’attribut <code>align</code>), vous pouvez ignorer cette première étape.</em></p>\n\n\n\n<h3 id=\"ajouter-le-controle-au-bloc\">Ajouter le contrôle au bloc</h3>\n\n\n\n<p>Une fois l’attribut déclaré, on ajoute le contrôle au bloc afin que l’attribut soit modifiable dans l’éditeur. Dans ce premier exemple, on ajoute un bouton à la <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/block-controls-toolbar-and-sidebar/#block-toolbar\">Toolbar</a> :</p>\n\n\n\n<pre class=\"wp-block-code\"><code>const withToolbarButton = createHigherOrderComponent( ( BlockEdit ) => {\n return ( props ) => {\n\n // If current block is not allowed\n if ( ! enableToolbarButtonOnBlocks.includes( props.name ) ) {\n return (\n <BlockEdit { ...props } />\n );\n }\n\n const { attributes, setAttributes } = props;\n const { paragraphAttribute } = attributes;\n\n return (\n <Fragment> \n <BlockControls group=\"block\">\n <ToolbarGroup>\n <ToolbarButton\n icon=\"format-status\"\n label={ __( \'Custom Button\', \'core-block-custom-attributes\' ) }\n isActive={ paragraphAttribute === \'custom\' }\n onClick={ () => {\n if ( paragraphAttribute === \'custom\' ) {\n setAttributes( { paragraphAttribute: false } )\n } else {\n setAttributes( { paragraphAttribute: \'custom\' } )\n }\n } }\n />\n </ToolbarGroup>\n </BlockControls>\n <BlockEdit { ...props } />\n </Fragment>\n );\n };\n}, \'withToolbarButton\' );\nwp.hooks.addFilter(\n \'editor.BlockEdit\',\n \'custom-attributes/with-toolbar-button\',\n withToolbarButton\n);</code></pre>\n\n\n\n<p>Tout d’abord, non utilisons <code>createHigherOrderComponent</code>, qui permet de modifier un composant existant et d’accéder à ses propriétés, afin de modifier la Toolbar.</p>\n\n\n\n<p>Ensuite, nous utilisons <code>BlockControls</code> afin de nous positionner dans la Toolbar, puis <code><a href=\"https://developer.wordpress.org/block-editor/reference-guides/components/toolbar-group/\">ToolbarGroup</a></code>, et enfin nous créons notre bouton avec le composant <code><a href=\"https://developer.wordpress.org/block-editor/reference-guides/components/toolbar-button/\">ToolbarButton</a></code>. C’est ici que l’ajout de la valeur <code>custom</code> de l’attribut, et sa suppression sont gérés, dans la méthode <code>onClick</code>.</p>\n\n\n\n<p>Cette fois, nous utilisons le filtre <code><a href=\"https://developer.wordpress.org/block-editor/reference-guides/filters/block-filters/#editor-blockedit\">editor.BlockEdit</a></code>, qui est joué dans les fonctions Edit des blocs.</p>\n\n\n\n<div class=\"wp-container-61ba0b471cd7b wp-block-group is-style-default has-purple-extra-light-background-color has-background\" style=\"padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px\">\n<p>À propos de l’attribut <code>group=\"block\"</code> sur le <code>BlockControls</code> : il permet de se positionner au même niveau que les contrôles ajoutés au niveau du bloc (dans sa déclaration).</p>\n\n\n\n<p>Si vous le retirez, votre contrôle sera ajouté dans un container suivant ces contrôles.</p>\n</div>\n\n\n\n<h3 id=\"manipuler-le-rendu-du-bloc-dans-l-editeur\">Manipuler le rendu du bloc dans l’éditeur</h3>\n\n\n\n<p>À ce stade, notre contrôle s’affiche et l’attribut est bien ajouté ou supprimé lorsqu’on clic sur le bouton.</p>\n\n\n\n<p>Ce n’est pas visible, car en lui même, l’attribut ne change rien. Si vous souhaitez utiliser l’attribut via le HTML, il faut par exemple ajouter une classe CSS au bloc en fonction de l’attribut.</p>\n\n\n\n<p>Pour cela, nous utiliserons le filtre <a href=\"https://developer.wordpress.org/block-editor/reference-guides/filters/block-filters/#editor-blocklistblock\">editor.BlockListBlock</a> qui permet de modifier les propriétés (props) du wrapper du bloc, et donc d’y ajouter une classe CSS, ou un attribut HTML, par exemple.</p>\n\n\n\n<pre class=\"wp-block-code\"><code>const withToolbarButtonProp = createHigherOrderComponent( ( BlockListBlock ) => {\n return ( props ) => {\n\n // If current block is not allowed\n if ( ! enableToolbarButtonOnBlocks.includes( props.name ) ) {\n return (\n <BlockListBlock { ...props } />\n );\n }\n\n const { attributes } = props;\n const { paragraphAttribute } = attributes;\n\n if ( paragraphAttribute && \'custom\' === paragraphAttribute ) {\n return <BlockListBlock { ...props } className={ \'has-custom-attribute\' } />\n } else {\n return <BlockListBlock { ...props } />\n }\n };\n}, \'withToolbarButtonProp\' );\n\nwp.hooks.addFilter(\n \'editor.BlockListBlock\',\n \'custom-attributes/with-toolbar-button-prop\',\n withToolbarButtonProp\n);</code></pre>\n\n\n\n<p>Dans ce code, nous vérifions simplement que notre attribut <code>paragraphAttribute</code> contient bien la valeur « custom », et si oui, nous ajoutons une classe CSS <code>has-custom-attribute</code>. Si non, on retourne les propriétés originales du bloc.</p>\n\n\n\n<h3 id=\"enregistrer-le-bloc\">Enregistrer le bloc</h3>\n\n\n\n<p>C’est la dernière étape, il nous faut maintenant enregistrer le bloc.</p>\n\n\n\n<p>Cela ressemble pas mal à l’étape précédente : si notre attribut est présent et contient la valeur « custom », on ajoute la classe <code>has-custom-attribute</code> au wrapper.</p>\n\n\n\n<p>Cette fois-ci, nous sommes sur le filtre <code><a href=\"https://developer.wordpress.org/block-editor/reference-guides/filters/block-filters/#blocks-getsavecontent-extraprops\">blocks.getSaveContent.extraProps</a></code>, qui permet d’enregistrer des propriétés personnalisées (ici, une classe CSS) pour le bloc.</p>\n\n\n\n<pre class=\"wp-block-code\"><code>const saveToolbarButtonAttribute = ( extraProps, blockType, attributes ) => {\n // Do nothing if it\'s another block than our defined ones.\n if ( enableToolbarButtonOnBlocks.includes( blockType.name ) ) {\n const { paragraphAttribute } = attributes;\n if ( paragraphAttribute && \'custom\' === paragraphAttribute ) {\n extraProps.className = classnames( extraProps.className, \'has-custom-attribute\' )\n }\n } \n\n return extraProps;\n\n};\nwp.hooks.addFilter(\n \'blocks.getSaveContent.extraProps\',\n \'custom-attributes/save-toolbar-button-attribute\',\n saveToolbarButtonAttribute\n);</code></pre>\n\n\n\n<div class=\"wp-container-61ba0b471d439 wp-block-group has-purple-extra-light-background-color has-background\">\n<p>Pour résumer : nous avons ajouté un bouton à la Toolbar du bloc Paragraphe. Ce bouton permet d’ajouter ou de supprimer la valeur « custom » de l’attribut nommé paragraphAttribute, et quand il possède cette valeur, le Paragraphe aura la classe CSS « has-custom-attribute ».</p>\n</div>\n\n\n\n<h2 id=\"deuxieme-exemple\">Deuxième exemple</h2>\n\n\n\n<p>Dans ce deuxième exemple, nous ajoutons un sélecteur dans la Sidebar du bloc Image. Le but étant d’avoir une liste d’options disponible, et que la valeur de l’option soit utilisée pour contruire une classe CSS dynamique.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img width=\"981\" height=\"648\" src=\"https://mariecomet.fr/wp-content/uploads/2021/12/image-1.png\" alt=\"\" class=\"wp-image-3385\" //></figure>\n\n\n\n<p>À nouveau <a href=\"https://github.com/MarieComet/core-block-custom-attributes/blob/main/src/attributes/sidebarSelect.js\">le code complet est visible sur le dépôt</a>.</p>\n\n\n\n<p>La déclaration de l’attribut ne change pas par rapport au premier exemple, mis à part le nom des méthodes et la clé de l’attribut.</p>\n\n\n\n<p>En revanche, l’ajout du contrôle varie, puisque cette fois nous ajoutons notre contrôle dans la <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/block-controls-toolbar-and-sidebar/#settings-sidebar\">Sidebar</a> et non dans la Toolbar :</p>\n\n\n\n<pre class=\"wp-block-code\"><code>return (\n <Fragment>\n <BlockEdit { ...props } />\n <InspectorControls>\n <PanelBody\n title={ __( \'Image Custom Attributes\' ) }\n >\n <SelectControl\n label={ __( \'Custom Attribute\' ) }\n value={ imageAttribute }\n options={ [\n {\n label: __( \'None\' ),\n value: \'\'\n },\n {\n label: __( \'One\' ),\n value: \'one\'\n }\n ] }\n onChange={ ( value ) => {\n setAttributes( {\n imageAttribute: value,\n } );\n } }\n /> \n </PanelBody>\n </InspectorControls>\n </Fragment>\n);</code></pre>\n\n\n\n<p>Pour cela nous utilisons le composant <code><a href=\"https://github.com/WordPress/gutenberg/tree/97c3f8d28bd074af2203747dea1ba9884efb59cd/packages/block-editor/src/components/inspector-controls\">InspectorControls</a></code>, qui permet de se positionner donc dans la Sidebar, puis nous ajoutons un composant <a href=\"https://developer.wordpress.org/block-editor/reference-guides/components/panel/\">Panel</a> et enfin notre <a href=\"https://developer.wordpress.org/block-editor/reference-guides/components/select-control/\">Select</a>. C’est dans ce dernier que la valeur de l’attribut est définie en fonction de l’option choisie.</p>\n\n\n\n<p>La gestion de l’édition du wrapper du bloc et sa sauvegarde ne changent pas beaucoup par rapport au premier exemple, nous attribuons toujours une classe au wrapper du bloc, et elle se compose d’une partie dynamique : l’option choisie dans le Select.</p>\n\n\n\n<pre class=\"wp-block-code\"><code>className={ \'has-option-\' + imageAttribute }</code></pre>\n\n\n\n<p>Ainsi lorsqu’on choisira l’option « One », le bloc Image aura la classe « has-option-one ».</p>\n\n\n\n<h2 id=\"pour-aller-plus-loin\">Pour aller plus loin</h2>\n\n\n\n<p>Si vous souhaitez modifier l’extension créée pour ce tutoriel, pour développer vos propres contrôles par exemple, <a href=\"https://github.com/MarieComet/core-block-custom-attributes\">téléchargez le dossier de l’extension</a>, installez les dépendances (<code>npm install</code>) et <a href=\"https://developer.wordpress.org/block-editor/reference-guides/packages/packages-create-block/#available-commands\">utilisez la documentation</a> pour connaître les commandes disponibles.</p>\n\n\n\n<p>Enfin, n’hésitez pas à laisser votre commentaire sur cet article !</p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Marie Comet\";s: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:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://mariecomet.fr/blog/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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Marie Comet\";s: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:65:\"\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:27:\"http://www.w3.org/2005/Atom\";a:8:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://www.whodunit.fr/woa-13-assurance-qualite-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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WOA ! #13 Assurance qualité web\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:53:\"https://www.whodunit.fr/woa-13-assurance-qualite-web/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2021-12-06T10:01:44.000+01: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:743:\"A écouter également sur : WOA : WordPress On Air N°13 Bonjour à tous. Merci de votre fidélité et bienvenue aux nouveaux. Vous êtes à l’écoute de WOA, WordPress on air N°13 Et si vous êtes là c’est que WordPress fait partie de votre quotidien. Mais aujourd’hui nous allons dépasser les frontières de notre cher CMS pour parler plus largement web et plus précisément assurance qualité web. Que vous développiez du e-commerce, que vous soyez freelance, agence ou tout simplement propriétaire d’un blog, nous allons j’en suis certain, vous convaincre de considérer très sérieusement l’impacte de la mise en place…\nL’article WOA ! #13 Assurance qualité web est apparu en premier sur Agence WordPress Whodunit.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:9130:\"\n \n\n\n\n\n<p><strong>A écouter également sur :</strong></p>\n\n\n\n<div class=\"wp-block-columns\" data-block-type=\"core\">\n<div class=\"wp-block-column\" data-block-type=\"core\">\n<figure class=\"wp-block-image size-large\" data-block-type=\"core\"><a href=\"https://podcasts.apple.com/fr/podcast/woa-wordpress-on-air/id1482779414\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.whodunit.fr/wp-content/uploads/2019/10/apple-podcasts-e1571142591535.jpg\" alt=\"\" class=\"wp-image-66447\" //></a></figure>\n</div>\n\n\n\n<div class=\"wp-block-column\" data-block-type=\"core\">\n<figure class=\"wp-block-image size-large\" data-block-type=\"core\"><a href=\"https://open.spotify.com/show/5rEMqG2cyoKYxpTTUAKSPp\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.whodunit.fr/wp-content/uploads/2019/10/unknown.png\" alt=\"\" class=\"wp-image-66448\" //></a></figure>\n</div>\n\n\n\n<div class=\"wp-block-column\" data-block-type=\"core\">\n<figure class=\"wp-block-image size-large\" data-block-type=\"core\"><a href=\"https://www.deezer.com/fr/show/586602\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.whodunit.fr/wp-content/uploads/2019/10/deezer-1024x196.png\" alt=\"\" class=\"wp-image-66449\" //></a></figure>\n</div>\n\n\n\n<div class=\"wp-block-column\" data-block-type=\"core\">\n<figure class=\"wp-block-image size-large\" data-block-type=\"core\"><a href=\"http://podplayer.net/?podId=2447675\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.whodunit.fr/wp-content/uploads/2019/10/podcast-addict-for-windows-pc.jpg\" alt=\"\" class=\"wp-image-66450\" //></a></figure>\n</div>\n</div>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<h2 id=\"h-woa-wordpress-on-air-n-13\" data-block-type=\"core\">WOA : WordPress On Air N°13</h2>\n\n\n\n<p>Bonjour à tous.</p>\n\n\n\n<p>Merci de votre fidélité et bienvenue aux nouveaux.</p>\n\n\n\n<p>Vous êtes à l’écoute de WOA, WordPress on air N°13</p>\n\n\n\n<p>Et si vous êtes là c’est que WordPress fait partie de votre quotidien.</p>\n\n\n\n<p>Mais aujourd’hui nous allons dépasser les frontières de notre cher CMS pour parler plus largement web et plus précisément <strong>assurance</strong> qualité web.</p>\n\n\n\n<p>Que vous développiez du e-commerce, que vous soyez freelance, agence ou tout simplement propriétaire d’un blog, nous allons j’en suis certain, vous convaincre de considérer très sérieusement l’impacte de la mise en place de bonnes pratiques qualité pour vos clients, publics et visiteurs.</p>\n\n\n\n<p>C’est quoi la qualité web ? C’est ce que va nous présenter Elie Sloïm le fondateur de la société OPQUAST et initiateur du référentiel des règles de qualité.</p>\n\n\n\n<p>Bien entendu on commence comme d’habitude par quelques news WP</p>\n\n\n\n<p>Alors, je ne sais pas si il existe déjà un référentiel de qualité pour les podcasts, mais en tout cas, nous allons faire de notre mieux pour que vous passiez un agréable moment en apprenant plein de choses.</p>\n\n\n\n<p>WOA N° 13, c’est parti !</p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\" data-block-type=\"core\"></div>\n\n\n\n<h2 id=\"h-notre-invite\" data-block-type=\"core\">Notre invité</h2>\n\n\n\n<div class=\"wp-block-group\" data-block-type=\"core\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Elie SLOÏM</strong></p>\n</div></div>\n\n\n\n<div class=\"wp-block-group alignfull\" data-block-type=\"core\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-image-fill\" style=\"grid-template-columns:34% auto\" data-block-type=\"core\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://www.whodunit.fr/wp-content/uploads/2021/12/elie-sloim-franck-paul.jpg);background-position:50% 50%\"><img width=\"800\" height=\"800\" src=\"https://www.whodunit.fr/wp-content/uploads/2021/12/elie-sloim-franck-paul.jpg\" alt=\"\" class=\"wp-image-73255 size-full\" //></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-normal-font-size\"><strong>Fondateur et Président de la société Opquast</strong>, Élie Sloïm partage son temps entre la direction de la société et ses activités de consultant, formateur et conférencier. À ce titre, il intervient dans de nombreuses manifestations, entreprises et cursus de formation en France et à l’étranger (Csun San Diego, Chancellerie du Premier Ministre Belge, Parisweb, Confoo Montreal, World Usability Day, Webdesign International Festival, Open data on the Web (Londres), a11y Québec FEVAD, expert forum des droits de l’internet, ex-membre CA ISOC (Internet Society). Prix du meilleur conférencier au SisQual 2005 (CNIT la Défense). Conférencier d’honneur à a11y Québec (2013, 2016) – DevCon Mauritius.…).<br>Qualiticien de formation, il s’est spécialisé sur la <strong>création de check-lists et référentiels qualité pour le secteur numérique</strong>. Il est notamment co-rédacteur des deux premières versions du RGAA (Référentiel Général d’Accessibilité pour les Administrations), de plusieurs référentiels de bonnes pratiques <a href=\"https://www.opquast.com/\">Opquast</a>, et de nombreux autres référentiels publics ou privés.</p>\n</div></div>\n</div></div>\n\n\n\n<div style=\"height:17px\" aria-hidden=\"true\" class=\"wp-block-spacer\" data-block-type=\"core\"></div>\n\n\n\n<div class=\"wp-block-image\" data-block-type=\"core\"><figure class=\"aligncenter size-full is-resized\"><img src=\"https://www.whodunit.fr/wp-content/uploads/2021/12/aurance-qualite-web-3e-edition.jpg\" alt=\"\" class=\"wp-image-73314\" width=\"346\" height=\"346\" //></figure></div>\n\n\n\n<h2 id=\"h-les-liens-de-l-emission\" data-block-type=\"core\">Les liens de l’émission</h2>\n\n\n\n<ul data-block-type=\"core\"><li><a href=\"https://wordpress.org/news/2021/11/state-of-the-word-2021/\" target=\"_blank\" rel=\"noreferrer noopener\">State of the word</a></li><li><a href=\"https://www.opquast.com/\">OPQUAST</a></li><li><a href=\"https://www.opquast.com/assurance-qualite-web-le-livre-est-paru/\">Assurance qualité web</a>, le livre.</li><li><a href=\"https://wordpressdotorg.survey.fm/wordpress-2021-survey-french\">Sondage annuel WordPress</a></li><li><a href=\"https://www.whodunit.fr/blog/podcast-wordpress/podcast-live-avec-la-communaute-wordpress/\">Enregistrement live du podcast #14 « Rétrospective 2021 »</a></li></ul>\n\n\n\n<h2 id=\"h-l-equipe\" data-block-type=\"core\">L’équipe</h2>\n\n\n\n<p><strong>Simon</strong> est un enfant de <s>la TV</s> Youtube, il s’intéresse à tous les sujets et dévore les podcasts et émissions, que ce soit sur les jeux de société, WordPress, la science ou encore la bière !</p>\n\n\n\n<p><strong>JB</strong> est une encyclopédie sur pattes de son CMS préféré. Devinez ce qu’il a gravé dans <a href=\"https://twitter.com/AudrasJb/status/1189955528782471169\" target=\"_blank\" rel=\"noreferrer noopener\">sa citrouille</a> pour Halloween ?</p>\n\n\n\n<p><strong>Eddy</strong> a goûté au plaisir de la radio pendant plusieurs années, ça le démangeait de reprendre le micro.</p>\n\n\n\n<figure class=\"wp-block-gallery columns-3 is-cropped\" data-block-type=\"core\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img width=\"425\" height=\"425\" src=\"https://www.whodunit.fr/wp-content/uploads/2021/05/eddy.jpg\" alt=\"\" data-id=\"69730\" data-full-url=\"https://www.whodunit.fr/wp-content/uploads/2021/05/eddy.jpg\" data-link=\"https://www.whodunit.fr/agence-wordpress/eddy/\" class=\"wp-image-69730\" //><figcaption class=\"blocks-gallery-item__caption\">Eddy</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img width=\"425\" height=\"425\" src=\"https://www.whodunit.fr/wp-content/uploads/2021/05/simon.jpg\" alt=\"\" data-id=\"69748\" data-full-url=\"https://www.whodunit.fr/wp-content/uploads/2021/05/simon.jpg\" data-link=\"https://www.whodunit.fr/agence-wordpress/simon/\" class=\"wp-image-69748\" //><figcaption class=\"blocks-gallery-item__caption\">Simon</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img width=\"425\" height=\"425\" src=\"https://www.whodunit.fr/wp-content/uploads/2021/05/jean-baptiste.jpg\" alt=\"\" data-id=\"69738\" data-full-url=\"https://www.whodunit.fr/wp-content/uploads/2021/05/jean-baptiste.jpg\" data-link=\"https://www.whodunit.fr/agence-wordpress/jean-baptiste/\" class=\"wp-image-69738\" //><figcaption class=\"blocks-gallery-item__caption\">Jb</figcaption></figure></li></ul></figure>\n\n\n\n<h2 id=\"h-on-attend-vos-retours-avec-impatience\" data-block-type=\"core\">On attend vos retours avec impatience !</h2>\n\n\n\n<p>N’hésitez pas à laisser un commentaire, ça nous fera plaisir et surtout ça nous aidera à nous améliorer.</p>\n\n\n\n<p>Vous souhaitez intervenir ? Envoyez un mail à [email protected] pour en discuter.</p>\n<p>L’article <a rel=\"nofollow\" href=\"https://www.whodunit.fr/woa-13-assurance-qualite-web/\">WOA ! #13 Assurance qualité web</a> est apparu en premier sur <a rel=\"nofollow\" href=\"https://www.whodunit.fr\">Agence WordPress Whodunit</a>.</p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Eddy Boels\";s: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:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://www.whodunit.fr/podcasts/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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Podcast WordPress on Air!\";s: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:65:\"\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:27:\"http://www.w3.org/2005/Atom\";a:8:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://fr.wordpress.org/team/2021/11/30/compte-rendu-de-la-51eme-reunion-de-lequipe-de-traduction-du-8-novembre-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Compte-rendu de la 51ème réunion de l’équipe de traduction du 8 novembre 2021\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:118:\"https://fr.wordpress.org/team/2021/11/30/compte-rendu-de-la-51eme-reunion-de-lequipe-de-traduction-du-8-novembre-2021/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2021-11-30T10:27:00.000+01: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"La 51ème réunion de l’équipe de traduction s’est tenue lundi 8 novembre 2021 à midi heure française. Elle a eu lieu sur le canal #traductions du Slack WordPress-fr. Ordre du jour Statistiques et informations générales Réflexion sur le système de traduction des compositions Traduction de « audio » Traduction de « invalid » Besoin d’aide sur SPTE […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:28949:\"\n <figure class=\"wp-block-image is-style-default\"><img src=\"https://fr.wordpress.org/team/files/2018/07/splash-wordpress-team-fr_FR.png\" alt=\"L’attribut alt de cette image est vide, son nom de fichier est splash-wordpress-team-fr_FR.png.\"/></figure><p>La 51<sup>ème</sup> réunion de l’équipe de traduction s’est tenue lundi 8 novembre 2021 à midi heure française. Elle a eu lieu sur le canal <a href=\"https://fr.wordpress.org/team/tag/traductions/\" class=\"tag\"><span class=\"tag-prefix\">#</span>traductions</a> du Slack WordPress-fr.</p>\n\n\n\n<h2 id=\"ordre-du-jour\">Ordre du jour</h2>\n\n\n\n<ul><li>Statistiques et informations générales</li><li><a href=\"https://trello.com/c/TD9kp6MR/289-r%C3%A9flexion-syst%C3%A8me-de-traduction-des-compositions\">Réflexion sur le système de traduction des compositions</a></li><li><a href=\"https://trello.com/c/c05R3izr/291-traduction-de-audio\">Traduction de « audio »</a></li><li><a href=\"https://trello.com/c/IUNeA2jX/290-traduction-de-invalid\">Traduction de « invalid »</a></li><li><a href=\"https://trello.com/c/ePr34R18/294-besoin-daide-sur-spte\">Besoin d’aide sur SPTE</a></li><li><a href=\"https://trello.com/c/vKMwAlIv/298-fse-diverses-traductions\">FSE : diverses traductions</a></li></ul><h2 id=\"participantes-et-participants\">Participantes et participants</h2>\n\n\n\n<ul><li>FX Bénard – <a href=\"https://profiles.wordpress.org/fxbenard/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>fxbenard</a></li><li>Jenny Dupuy – <a href=\"https://profiles.wordpress.org/jdy68/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jdy68</a></li><li>JB Audras – <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a></li><li>Marie Comet – <a href=\"https://profiles.wordpress.org/chaton666/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chaton666</a></li><li>Bruno Tritsch – <a href=\"https://profiles.wordpress.org/btpub/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>btpub</a></li><li>Loïc Antignac – <a href=\"https://profiles.wordpress.org/webaxones/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webaxones</a></li><li>Clément Polito – <a href=\"https://profiles.wordpress.org/clementpolito/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>clementpolito</a></li><li>Laurent Millet – <a href=\"https://profiles.wordpress.org/wplmillet/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>wplmillet</a></li><li>Sébastien Serre – <a href=\"https://profiles.wordpress.org/sebastienserre/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sebastienserre</a></li></ul><h2 id=\"informations-generales\">Informations générales</h2>\n\n\n\n<h3 id=\"statistiques-et-evolution-par-rapport-a-la-derniere-reunion\">Statistiques et évolution par rapport à la dernière réunion</h3>\n\n\n\n<ul><li>5 Locale Managers.</li><li>7 GTE (dont 4 actifs) (inchangé).</li><li>10 GPTE (inchangé).</li><li>169 PTE (+2, il s’agit de <a href=\"https://profiles.wordpress.org/pasglop/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>pasglop</a> et <a href=\"https://profiles.wordpress.org/benheu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>benheu</a>).</li><li>3454 contributeurs et contributrices <mark class=\"has-inline-color has-vivid-red-color\">au 30/11/2021</mark> (+767 depuis la dernière réunion).</li></ul><h2 id=\"questions-abordees\">Questions abordées</h2>\n\n\n\n<h3 id=\"reflexion-sur-le-systeme-de-traduction-des-compositions\">Réflexion sur le système de traduction des compositions</h3>\n\n\n\n<p><a href=\"https://trello.com/c/TD9kp6MR/289-r%C3%A9flexion-sur-le-syst%C3%A8me-de-traduction-des-compositions\">Voir la carte Trello associée</a> || Ce sujet a été proposé par FX Bénard (<a href=\"https://profiles.wordpress.org/fxbenard/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>fxbenard</a>).</p>\n\n\n\n<p>Il s’agissait de donner des avis en réponse à cette <a href=\"https://make.wordpress.org/polyglots/2021/09/19/how-to-handle-block-pattern-translations/\">question</a>. Mais nous sommes hors délai.<br><strong>La décision prise par la team polyglotts est de maintenir les éléments à traduire sous GlotPress.</strong></p>\n\n\n\n<h3 id=\"traduction-de-audio\">Traduction de « audio »</h3>\n\n\n\n<p><a href=\"https://trello.com/c/c05R3izr/291-traduction-de-audio\">Voir la carte Trello associée</a> || Ce sujet a été proposé par FX Bénard (<a href=\"https://profiles.wordpress.org/fxbenard/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>fxbenard</a>).</p>\n\n\n\n<p>« audio » est jusqu’ici traduit par « son », ce qui est jugé mal adapté par l’équipe qui lui préfère tout simplement « audio ». </p>\n\n\n\n<p><strong>L’équipe décide de traduire par « audio » à partir de la version 5.9.</strong></p>\n\n\n\n<h3 id=\"traduction-de-invalid\">Traduction de « invalid »</h3>\n\n\n\n<p><a href=\"https://trello.com/c/IUNeA2jX/290-traduction-de-invalid\">Voir la carte Trello associée</a> || Ce sujet a été proposé par Jenny Dupuy (<a href=\"https://profiles.wordpress.org/jdy68/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jdy68</a>).</p>\n\n\n\n<p>Dans le glossaire « invalid » est traduit par « non valide ». Le projet est de traduire plutôt par « invalide ». L’équipe mène une réflexion sur le sens du mot, qui n’est plus trop utilisé pour désigner les personnes porteuses de handicap(s), et s’interroge sur les répercussions de ce changement sur l’écosystème. Il apparaît qu’il n’y a pas d’obstacles majeurs à utiliser « invalide ».</p>\n\n\n\n<p><strong>L’équipe décide d’ajouter au glossaire : « invalid » – « invalide» et « not valid » – « non valide ».</strong></p>\n\n\n\n<h3 id=\"besoin-d-aide-sur-spte\">Besoin d’aide sur SPTE</h3>\n\n\n\n<p><a href=\"https://trello.com/c/ePr34R18/294-besoin-daide-sur-spte\">Voir la carte Trello associée</a> || Ce sujet a été proposé par Loïc Antignac (<a href=\"https://profiles.wordpress.org/webaxones/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webaxones</a>).</p>\n\n\n\n<p>Dans le cadre de l’internationalisation de l’analyse syntaxique dans SPTE, Loïc souhaite modifier le mot clé utilisé (actuellement « spte ») dans le glossaire pour dire à SPTE de ne pas importer le mot en question.</p>\n\n\n\n<p>Loïc propose d’utiliser une chaîne sans espace, qui ne soit pas un nom propre, qui n’ait aucune signification dans toutes les langues, la plus court possible : « np » conviendrait.</p>\n\n\n\n<p><strong>JB propose d’utiliser « [np] » afin de bien signifier qu’il s’agit d’un codage, et non d’une indication particulière car le texte placé dans cette colonne du glossaire est affiché dans l’outil de traduction.<br>La modification sera prochainement effectuée dans le glossaire.</strong></p>\n\n\n\n<h3 id=\"fse-diverses-traductions\">FSE : diverses traductions</h3>\n\n\n\n<p><a href=\"https://trello.com/c/vKMwAlIv/298-fse-diverses-traductions\">Voir la carte Trello associée</a> || Ce sujet a été proposé par JB Audras (<a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a>).</p>\n\n\n\n<p>Comme il y a plusieurs termes à traduire, et dans l’objectif d’associer plus de personnes aux décisions de l’équipe, nous choisissons de faire une réunion dédiée au FSE, celle-ci aura lieu le <a href=\"https://fr.wordpress.org/team/2021/11/11/reunion-speciale-fse/\">22 novembre 2021</a>.</p>\n\n\n\n<div style=\"height:9px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator aligncenter is-style-wide\"/><div style=\"height:9px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>La réunion se termine à 13h.</p>\n\n\n\n<p>La prochaine réunion de l’équipe de traduction aura lieu le 7 décembre 2021 à 12h en visio-conférence (le lien sera diffusé sur le canal <a href=\"https://fr.wordpress.org/team/tag/traductions/\">#traductions</a> du Slack WordPress-Fr).</p>\n<p class=\"o2-appended-tags\"><a href=\"https://fr.wordpress.org/team/tag/compte-rendu/\" class=\"tag\"><span class=\"tag-prefix\">#</span>compte-rendu</a>, <a href=\"https://fr.wordpress.org/team/tag/traduction/\" class=\"tag\"><span class=\"tag-prefix\">#</span>traduction</a></p>[{\"type\":\"post\",\"id\":4483,\"postID\":4483,\"cssClasses\":\"post post-4483 type-post status-publish format-standard hentry category-reunions tag-compte-rendu tag-traduction tag-traductions mentions-audrasjb mentions-benheu mentions-btpub mentions-chaton666 mentions-clementpolito mentions-fxbenard mentions-jdy68 mentions-pasglop mentions-sebastienserre mentions-webaxones mentions-wplmillet author-jdy68\",\"parentID\":0,\"titleRaw\":\"Compte-rendu de la 51u00e8me ru00e9union de lu2019u00e9quipe de traduction du 8 novembre 2021\",\"titleFiltered\":\"Compte-rendu de la 51u00e8me ru00e9union de lu2019u00e9quipe de traduction du 8 novembre 2021\",\"titleWasGeneratedFromContent\":false,\"contentRaw\":\"<!-- wp:image {\"className\":\"is-style-default\"} -->n<figure class=\"wp-block-image is-style-default\"><img src=\"https://fr.wordpress.org/team/files/2018/07/splash-wordpress-team-fr_FR.png\" alt=\"Lu2019attribut alt de cette image est vide, son nom de fichier est splash-wordpress-team-fr_FR.png.\" //></figure>n<!-- /wp:image -->nn<!-- wp:paragraph -->n<p>La 51<sup>u00e8me</sup> ru00e9union de lu2019u00e9quipe de traduction su2019est tenue lundi 8 novembre 2021 u00e0 midi heure franu00e7aise. Elle a eu lieu sur le canal #traductions du Slack WordPress-fr.</p>n<!-- /wp:paragraph -->nn<!-- wp:heading -->n<h2 id=\"ordre-du-jour\">Ordre du jour</h2>n<!-- /wp:heading -->nn<!-- wp:list -->n<ul><li>Statistiques et informations gu00e9nu00e9rales</li><li><a href=\"https://trello.com/c/TD9kp6MR/289-r%C3%A9flexion-syst%C3%A8me-de-traduction-des-compositions\">Ru00e9flexion sur le systu00e8me de traduction des compositions</a></li><li><a href=\"https://trello.com/c/c05R3izr/291-traduction-de-audio\">Traduction de u00ab audio u00bb</a></li><li><a href=\"https://trello.com/c/IUNeA2jX/290-traduction-de-invalid\">Traduction de u00ab invalid u00bb</a></li><li><a href=\"https://trello.com/c/ePr34R18/294-besoin-daide-sur-spte\">Besoin du2019aide sur SPTE</a></li><li><a href=\"https://trello.com/c/vKMwAlIv/298-fse-diverses-traductions\">FSE : diverses traductions</a></li></ul>n<!-- /wp:list -->nn<!-- wp:heading -->n<h2 id=\"participantes-et-participants\">Participantes et participants</h2>n<!-- /wp:heading -->nn<!-- wp:list -->n<ul><li>FX Bu00e9nard u2013 @fxbenard</li><li>Jenny Dupuy u2013 @jdy68</li><li>JB Audras u2013 @audrasjb</li><li>Marie Comet u2013 @chaton666</li><li>Bruno Tritsch u2013 @btpub</li><li>Lou00efc Antignac u2013 @webaxones</li><li>Clu00e9ment Polito u2013 @clementpolito</li><li>Laurent Millet u2013 @wplmillet</li><li>Su00e9bastien Serre u2013 @sebastienserre</li></ul>n<!-- /wp:list -->nn<!-- wp:heading -->n<h2 id=\"informations-generales\">Informations gu00e9nu00e9rales</h2>n<!-- /wp:heading -->nn<!-- wp:heading {\"level\":3} -->n<h3 id=\"statistiques-et-evolution-par-rapport-a-la-derniere-reunion\">Statistiques et u00e9volution par rapport u00e0 la derniu00e8re ru00e9union</h3>n<!-- /wp:heading -->nn<!-- wp:list -->n<ul><li>5 Locale Managers.</li><li>7 GTE (dont 4 actifs) (inchangu00e9).</li><li>10 GPTE (inchangu00e9).</li><li>169 PTE (+2, il su2019agit de @pasglop et @benheu).</li><li>3454 contributeurs et contributrices <mark class=\"has-inline-color has-vivid-red-color\">au 30/11/2021</mark> (+767 depuis la derniu00e8re ru00e9union).</li></ul>n<!-- /wp:list -->nn<!-- wp:heading -->n<h2 id=\"questions-abordees\">Questions abordu00e9es</h2>n<!-- /wp:heading -->nn<!-- wp:heading {\"level\":3} -->n<h3 id=\"reflexion-sur-le-systeme-de-traduction-des-compositions\">Ru00e9flexion sur le systu00e8me de traduction des compositions</h3>n<!-- /wp:heading -->nn<!-- wp:paragraph -->n<p><a href=\"https://trello.com/c/TD9kp6MR/289-r%C3%A9flexion-sur-le-syst%C3%A8me-de-traduction-des-compositions\">Voir la carte Trello associu00e9e</a> || Ce sujet a u00e9tu00e9 proposu00e9 par FX Bu00e9nard (@fxbenard).</p>n<!-- /wp:paragraph -->nn<!-- wp:paragraph -->n<p>Il su2019agissait de donner des avis en ru00e9ponse u00e0 cette <a href=\"https://make.wordpress.org/polyglots/2021/09/19/how-to-handle-block-pattern-translations/\">question</a>. Mais nous sommes hors du00e9lai.<br><strong>La du00e9cision prise par la team polyglotts est de maintenir les u00e9lu00e9ments u00e0 traduire sous GlotPress.</strong></p>n<!-- /wp:paragraph -->nn<!-- wp:heading {\"level\":3} -->n<h3 id=\"traduction-de-audio\">Traduction de u00ab audio u00bb</h3>n<!-- /wp:heading -->nn<!-- wp:paragraph -->n<p><a href=\"https://trello.com/c/c05R3izr/291-traduction-de-audio\">Voir la carte Trello associu00e9e</a> || Ce sujet a u00e9tu00e9 proposu00e9 par FX Bu00e9nard (@fxbenard).</p>n<!-- /wp:paragraph -->nn<!-- wp:paragraph -->n<p>u00ab audio u00bb est jusquu2019ici traduit par u00ab son u00bb, ce qui est jugu00e9 mal adaptu00e9 par lu2019u00e9quipe qui lui pru00e9fu00e8re tout simplement u00ab audio u00bb. </p>n<!-- /wp:paragraph -->nn<!-- wp:paragraph -->n<p><strong>Lu2019u00e9quipe du00e9cide de traduire par u00ab audio u00bb u00e0 partir de la version 5.9.</strong></p>n<!-- /wp:paragraph -->nn<!-- wp:heading {\"level\":3} -->n<h3 id=\"traduction-de-invalid\">Traduction de u00ab invalid u00bb</h3>n<!-- /wp:heading -->nn<!-- wp:paragraph -->n<p><a href=\"https://trello.com/c/IUNeA2jX/290-traduction-de-invalid\">Voir la carte Trello associu00e9e</a> || Ce sujet a u00e9tu00e9 proposu00e9 par Jenny Dupuy (@jdy68).</p>n<!-- /wp:paragraph -->nn<!-- wp:paragraph -->n<p>Dans le glossaire u00ab invalid u00bb est traduit par u00ab non valide u00bb. Le projet est de traduire plutu00f4t par u00ab invalide u00bb. Lu2019u00e9quipe mu00e8ne une ru00e9flexion sur le sens du mot, qui nu2019est plus trop utilisu00e9 pour du00e9signer les personnes porteuses de handicap(s), et su2019interroge sur les ru00e9percussions de ce changement sur lu2019u00e9cosystu00e8me. Il apparau00eet quu2019il nu2019y a pas du2019obstacles majeurs u00e0 utiliser u00ab invalide u00bb.</p>n<!-- /wp:paragraph -->nn<!-- wp:paragraph -->n<p><strong>Lu2019u00e9quipe du00e9cide du2019ajouter au glossaire : u00ab invalid u00bb - u00ab invalideu00bb et u00ab not valid u00bb - u00ab non valide u00bb.</strong></p>n<!-- /wp:paragraph -->nn<!-- wp:heading {\"level\":3} -->n<h3 id=\"besoin-d-aide-sur-spte\">Besoin du2019aide sur SPTE</h3>n<!-- /wp:heading -->nn<!-- wp:paragraph -->n<p><a href=\"https://trello.com/c/ePr34R18/294-besoin-daide-sur-spte\">Voir la carte Trello associu00e9e</a>u00a0||u00a0Ce sujet a u00e9tu00e9 proposu00e9 par Lou00efc Antignac (@webaxones).</p>n<!-- /wp:paragraph -->nn<!-- wp:paragraph -->n<p>Dans le cadre de l\'internationalisation de l\'analyse syntaxique dans SPTE, Lou00efc souhaite modifier le mot clu00e9 utilisu00e9 (actuellement u00ab spte u00bb) dans le glossaire pour dire u00e0 SPTE de ne pas importer le mot en question.</p>n<!-- /wp:paragraph -->nn<!-- wp:paragraph -->n<p>Lou00efc propose du2019utiliser une chau00eene sans espace, qui ne soit pas un nom propre, qui nu2019ait aucune signification dans toutes les langues, la plus court possible : u00ab np u00bb conviendrait.</p>n<!-- /wp:paragraph -->nn<!-- wp:paragraph -->n<p><strong>JB propose du2019utiliser u00ab [np] u00bb afin de bien signifier quu2019il su2019agit du2019un codage, et non du2019une indication particuliu00e8re car le texte placu00e9 dans cette colonne du glossaire est affichu00e9 dans lu2019outil de traduction.<br>La modification sera prochainement effectuu00e9e dans le glossaire.</strong></p>n<!-- /wp:paragraph -->nn<!-- wp:heading {\"level\":3} -->n<h3 id=\"fse-diverses-traductions\">FSE : diverses traductions</h3>n<!-- /wp:heading -->nn<!-- wp:paragraph -->n<p><a href=\"https://trello.com/c/vKMwAlIv/298-fse-diverses-traductions\">Voir la carte Trello associu00e9e</a> || Ce sujet a u00e9tu00e9 proposu00e9 par JB Audras (@audrasjb).</p>n<!-- /wp:paragraph -->nn<!-- wp:paragraph -->n<p>Comme il y a plusieurs termes u00e0 traduire, et dans lu2019objectif du2019associer plus de personnes aux du00e9cisions de lu2019u00e9quipe, nous choisissons de faire une ru00e9union du00e9diu00e9e au FSE, celle-ci aura lieu le <a href=\"https://fr.wordpress.org/team/2021/11/11/reunion-speciale-fse/\">22 novembre 2021</a>.</p>n<!-- /wp:paragraph -->nn<!-- wp:spacer {\"height\":9} -->n<div style=\"height:9px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>n<!-- /wp:spacer -->nn<!-- wp:separator {\"align\":\"center\",\"className\":\"is-style-wide\"} -->n<hr class=\"wp-block-separator aligncenter is-style-wide\" //>n<!-- /wp:separator -->nn<!-- wp:spacer {\"height\":9} -->n<div style=\"height:9px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>n<!-- /wp:spacer -->nn<!-- wp:paragraph -->n<p>La ru00e9union se termine u00e0 13h.</p>n<!-- /wp:paragraph -->nn<!-- wp:paragraph -->n<p>La prochaine ru00e9union de lu2019u00e9quipe de traduction aura lieu le 7 du00e9cembre 2021 u00e0 12h en visio-confu00e9rence (le lien sera diffusu00e9 sur le canal <a href=\"https://fr.wordpress.org/team/tag/traductions/\">#traductions</a> du Slack WordPress-Fr).</p>n<!-- /wp:paragraph -->nn#compte-rendu, #traduction\",\"contentFiltered\":\"<figure class=\"wp-block-image is-style-default\"><img src=\"https://fr.wordpress.org/team/files/2018/07/splash-wordpress-team-fr_FR.png\" alt=\"Lu2019attribut alt de cette image est vide, son nom de fichier est splash-wordpress-team-fr_FR.png.\"/></figure><p>La 51<sup>u00e8me</sup> ru00e9union de lu2019u00e9quipe de traduction su2019est tenue lundi 8 novembre 2021 u00e0 midi heure franu00e7aise. Elle a eu lieu sur le canal <a href=\"https://fr.wordpress.org/team/tag/traductions/\" class=\"tag\"><span class=\"tag-prefix\">#</span>traductions</a> du Slack WordPress-fr.</p>nnnn<h2 id=\"ordre-du-jour\">Ordre du jour</h2>nnnn<ul><li>Statistiques et informations gu00e9nu00e9rales</li><li><a href=\"https://trello.com/c/TD9kp6MR/289-r%C3%A9flexion-syst%C3%A8me-de-traduction-des-compositions\">Ru00e9flexion sur le systu00e8me de traduction des compositions</a></li><li><a href=\"https://trello.com/c/c05R3izr/291-traduction-de-audio\">Traduction de u00abu00a0audiou00a0u00bb</a></li><li><a href=\"https://trello.com/c/IUNeA2jX/290-traduction-de-invalid\">Traduction de u00ab invalid u00bb</a></li><li><a href=\"https://trello.com/c/ePr34R18/294-besoin-daide-sur-spte\">Besoin du2019aide sur SPTE</a></li><li><a href=\"https://trello.com/c/vKMwAlIv/298-fse-diverses-traductions\">FSE : diverses traductions</a></li></ul><h2 id=\"participantes-et-participants\">Participantes et participants</h2>nnnn<ul><li>FX Bu00e9nard u2013 <a href=\"https://profiles.wordpress.org/fxbenard/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>fxbenard</a></li><li>Jenny Dupuy u2013 <a href=\"https://profiles.wordpress.org/jdy68/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jdy68</a></li><li>JB Audras u2013 <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a></li><li>Marie Comet u2013 <a href=\"https://profiles.wordpress.org/chaton666/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chaton666</a></li><li>Bruno Tritsch u2013 <a href=\"https://profiles.wordpress.org/btpub/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>btpub</a></li><li>Lou00efc Antignac u2013 <a href=\"https://profiles.wordpress.org/webaxones/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webaxones</a></li><li>Clu00e9ment Polito u2013 <a href=\"https://profiles.wordpress.org/clementpolito/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>clementpolito</a></li><li>Laurent Millet u2013 <a href=\"https://profiles.wordpress.org/wplmillet/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>wplmillet</a></li><li>Su00e9bastien Serre u2013 <a href=\"https://profiles.wordpress.org/sebastienserre/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sebastienserre</a></li></ul><h2 id=\"informations-generales\">Informations gu00e9nu00e9rales</h2>nnnn<h3 id=\"statistiques-et-evolution-par-rapport-a-la-derniere-reunion\">Statistiques et u00e9volution par rapport u00e0 la derniu00e8re ru00e9union</h3>nnnn<ul><li>5 Locale Managers.</li><li>7 GTE (dont 4 actifs) (inchangu00e9).</li><li>10 GPTE (inchangu00e9).</li><li>169 PTE (+2, il su2019agit de <a href=\"https://profiles.wordpress.org/pasglop/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>pasglop</a> et <a href=\"https://profiles.wordpress.org/benheu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>benheu</a>).</li><li>3454 contributeurs et contributrices <mark class=\"has-inline-color has-vivid-red-color\">au 30/11/2021</mark> (+767 depuis la derniu00e8re ru00e9union).</li></ul><h2 id=\"questions-abordees\">Questions abordu00e9es</h2>nnnn<h3 id=\"reflexion-sur-le-systeme-de-traduction-des-compositions\">Ru00e9flexion sur le systu00e8me de traduction des compositions</h3>nnnn<p><a href=\"https://trello.com/c/TD9kp6MR/289-r%C3%A9flexion-sur-le-syst%C3%A8me-de-traduction-des-compositions\">Voir la carte Trello associu00e9e</a>u00a0||u00a0Ce sujet a u00e9tu00e9 proposu00e9 par FX Bu00e9nard (<a href=\"https://profiles.wordpress.org/fxbenard/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>fxbenard</a>).</p>nnnn<p>Il su2019agissait de donner des avis en ru00e9ponse u00e0 cette <a href=\"https://make.wordpress.org/polyglots/2021/09/19/how-to-handle-block-pattern-translations/\">question</a>. Mais nous sommes hors du00e9lai.<br><strong>La du00e9cision prise par la team polyglotts est de maintenir les u00e9lu00e9ments u00e0 traduire sous GlotPress.</strong></p>nnnn<h3 id=\"traduction-de-audio\">Traduction de u00ab audio u00bb</h3>nnnn<p><a href=\"https://trello.com/c/c05R3izr/291-traduction-de-audio\">Voir la carte Trello associu00e9e</a>u00a0||u00a0Ce sujet a u00e9tu00e9 proposu00e9 par FX Bu00e9nard (<a href=\"https://profiles.wordpress.org/fxbenard/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>fxbenard</a>).</p>nnnn<p>u00ab audio u00bb est jusquu2019ici traduit par u00ab son u00bb, ce qui est jugu00e9 mal adaptu00e9 par lu2019u00e9quipe qui lui pru00e9fu00e8re tout simplement u00ab audio u00bb. </p>nnnn<p><strong>Lu2019u00e9quipe du00e9cide de traduire par u00ab audio u00bb u00e0 partir de la version 5.9.</strong></p>nnnn<h3 id=\"traduction-de-invalid\">Traduction de u00ab invalid u00bb</h3>nnnn<p><a href=\"https://trello.com/c/IUNeA2jX/290-traduction-de-invalid\">Voir la carte Trello associu00e9e</a>u00a0||u00a0Ce sujet a u00e9tu00e9 proposu00e9 par Jenny Dupuy (<a href=\"https://profiles.wordpress.org/jdy68/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jdy68</a>).</p>nnnn<p>Dans le glossaire u00ab invalid u00bb est traduit par u00ab non valide u00bb. Le projet est de traduire plutu00f4t par u00ab invalide u00bb. Lu2019u00e9quipe mu00e8ne une ru00e9flexion sur le sens du mot, qui nu2019est plus trop utilisu00e9 pour du00e9signer les personnes porteuses de handicap(s), et su2019interroge sur les ru00e9percussions de ce changement sur lu2019u00e9cosystu00e8me. Il apparau00eet quu2019il nu2019y a pas du2019obstacles majeurs u00e0 utiliser u00ab invalide u00bb.</p>nnnn<p><strong>Lu2019u00e9quipe du00e9cide du2019ajouter au glossaire : u00ab invalid u00bb u2013 u00ab invalideu00bb et u00ab not valid u00bb u2013 u00ab non valide u00bb.</strong></p>nnnn<h3 id=\"besoin-d-aide-sur-spte\">Besoin du2019aide sur SPTE</h3>nnnn<p><a href=\"https://trello.com/c/ePr34R18/294-besoin-daide-sur-spte\">Voir la carte Trello associu00e9e</a>u00a0||u00a0Ce sujet a u00e9tu00e9 proposu00e9 par Lou00efc Antignac (<a href=\"https://profiles.wordpress.org/webaxones/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webaxones</a>).</p>nnnn<p>Dans le cadre de lu2019internationalisation de lu2019analyse syntaxique dans SPTE, Lou00efc souhaite modifier le mot clu00e9 utilisu00e9 (actuellement u00ab spte u00bb) dans le glossaire pour dire u00e0 SPTE de ne pas importer le mot en question.</p>nnnn<p>Lou00efc propose du2019utiliser une chau00eene sans espace, qui ne soit pas un nom propre, qui nu2019ait aucune signification dans toutes les langues, la plus court possible : u00ab np u00bb conviendrait.</p>nnnn<p><strong>JB propose du2019utiliser u00ab [np] u00bb afin de bien signifier quu2019il su2019agit du2019un codage, et non du2019une indication particuliu00e8re car le texte placu00e9 dans cette colonne du glossaire est affichu00e9 dans lu2019outil de traduction.<br>La modification sera prochainement effectuu00e9e dans le glossaire.</strong></p>nnnn<h3 id=\"fse-diverses-traductions\">FSE : diverses traductions</h3>nnnn<p><a href=\"https://trello.com/c/vKMwAlIv/298-fse-diverses-traductions\">Voir la carte Trello associu00e9e</a>u00a0||u00a0Ce sujet a u00e9tu00e9 proposu00e9 par JB Audras (<a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a>).</p>nnnn<p>Comme il y a plusieurs termes u00e0 traduire, et dans lu2019objectif du2019associer plus de personnes aux du00e9cisions de lu2019u00e9quipe, nous choisissons de faire une ru00e9union du00e9diu00e9e au FSE, celle-ci aura lieu le <a href=\"https://fr.wordpress.org/team/2021/11/11/reunion-speciale-fse/\">22 novembre 2021</a>.</p>nnnn<div style=\"height:9px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>nnnn<hr class=\"wp-block-separator aligncenter is-style-wide\"/><div style=\"height:9px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>nnnn<p>La ru00e9union se termine u00e0 13h.</p>nnnn<p>La prochaine ru00e9union de lu2019u00e9quipe de traduction aura lieu le 7 du00e9cembre 2021 u00e0 12h en visio-confu00e9rence (le lien sera diffusu00e9 sur le canalu00a0<a href=\"https://fr.wordpress.org/team/tag/traductions/\">#traductions</a>u00a0du Slack WordPress-Fr).</p>n<p class=\"o2-appended-tags\"><a href=\"https://fr.wordpress.org/team/tag/compte-rendu/\" class=\"tag\"><span class=\"tag-prefix\">#</span>compte-rendu</a>, <a href=\"https://fr.wordpress.org/team/tag/traduction/\" class=\"tag\"><span class=\"tag-prefix\">#</span>traduction</a></p>\",\"permalink\":\"https://fr.wordpress.org/team/2021/11/30/compte-rendu-de-la-51eme-reunion-de-lequipe-de-traduction-du-8-novembre-2021/\",\"unixtime\":1638264420,\"unixtimeModified\":1638793670,\"entryHeaderMeta\":\"\",\"linkPages\":\"\",\"footerEntryMeta\":\"\",\"tagsRaw\":\"compte-rendu, traduction, traductions\",\"tagsArray\":[{\"label\":\"compte-rendu\",\"count\":58,\"link\":\"https://fr.wordpress.org/team/tag/compte-rendu/\"},{\"label\":\"traduction\",\"count\":96,\"link\":\"https://fr.wordpress.org/team/tag/traduction/\"},{\"label\":\"traductions\",\"count\":11,\"link\":\"https://fr.wordpress.org/team/tag/traductions/\"}],\"loginRedirectURL\":\"https://login.wordpress.org/?redirect_to=https%3A%2F%2Ffr.wordpress.org%2Fteam%2F2021%2F11%2F30%2Fcompte-rendu-de-la-51eme-reunion-de-lequipe-de-traduction-du-8-novembre-2021%2F&locale=fr_FR\",\"hasPrevPost\":false,\"prevPostTitle\":\"\",\"prevPostURL\":\"\",\"hasNextPost\":false,\"nextPostTitle\":\"\",\"nextPostURL\":\"\",\"commentsOpen\":true,\"is_xpost\":false,\"editURL\":null,\"postActions\":\"<nav class=\'o2-dropdown-actions o2-post-actions\'><button class=\'o2-dropdown-actions-disclosure genericon genericon-ellipsis\'><span>Actions de lu2019article</span></button><ul><li><a href=\"https://login.wordpress.org/?redirect_to=https%3A%2F%2Ffr.wordpress.org%2Fteam%2F2021%2F11%2F30%2Fcompte-rendu-de-la-51eme-reunion-de-lequipe-de-traduction-du-8-novembre-2021%2F%23respond&locale=fr_FR\" title=\"Se connecter pour ru00e9pondre\" class=\"genericon genericon-reply\" data-action=\"login-to-reply\" data-actionstate=\"default\">Se connecter pour ru00e9pondre</a></li><li><a href=\"https://fr.wordpress.org/team/2021/11/30/compte-rendu-de-la-51eme-reunion-de-lequipe-de-traduction-du-8-novembre-2021/\" title=\"Aller aux commentaires\" class=\"o2-scroll-to-comments genericon genericon-downarrow\" data-action=\"scrolltocomments\" data-actionstate=\"default\">Du00e9filement</a></li><li><a href=\"https://fr.wordpress.org/team/?p=4483\" title=\"Lien court\" class=\"short-link o2-short-link genericon genericon-link\" data-action=\"shortlink\" data-actionstate=\"default\">Lien court</a></li></ul></nav>\",\"comments\":[],\"postFormat\":\"standard\",\"postMeta\":{\"isSticky\":false},\"postTerms\":{\"category\":[{\"label\":\"Ru00e9unions de l\'u00e9quipe de traduction\",\"count\":105,\"link\":\"https://fr.wordpress.org/team/category/reunions/\"}],\"post_tag\":[{\"label\":\"compte-rendu\",\"count\":58,\"link\":\"https://fr.wordpress.org/team/tag/compte-rendu/\"},{\"label\":\"traduction\",\"count\":96,\"link\":\"https://fr.wordpress.org/team/tag/traduction/\"},{\"label\":\"traductions\",\"count\":11,\"link\":\"https://fr.wordpress.org/team/tag/traductions/\"}],\"post_format\":[]},\"pluginData\":[],\"isPage\":false,\"mentions\":[\"fxbenard\",\"jdy68\",\"audrasjb\",\"chaton666\",\"btpub\",\"webaxones\",\"clementpolito\",\"wplmillet\",\"sebastienserre\",\"pasglop\",\"benheu\"],\"mentionContext\":\"\",\"isTrashed\":false,\"userLogin\":\"jdy68\",\"userNicename\":\"jdy68\"}]\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jenny Dupuy\";s: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:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://fr.wordpress.org/team/category/reunions/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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress en Français\";s: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:52:\"\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:27:\"http://www.w3.org/2005/Atom\";a:7:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://api.follow.it/track-rss-story-click/v3/8GP0TN3yObiSJ20wniTOtbkdRKkm2PJP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Find My Custom Post Types\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:79:\"https://api.follow.it/track-rss-story-click/v3/8GP0TN3yObiSJ20wniTOtbkdRKkm2PJP\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2021-11-29T13:58:05.000+01: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Lister les types de contenu personnalisé de votre 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:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:246:\"\n <img src=\"https://api.follow.it/track-rss-story-loaded/v1/hZgxi610--ZyXICbXPsZq5s0ohxaO6Yr\" border=\"0\" width=\"1\" height=\"1\" alt=\"Story 512352130\" title=\"Story 512352130\"/> Lister les types de contenu personnalisé de votre WordPress\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://feeds.feedburner.com/LechodespluginsWp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"L’écho des plugins 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:65:\"\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:27:\"http://www.w3.org/2005/Atom\";a:8:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://www.seomix.fr/extensions-seo-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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Extensions SEO sur WordPress : notre sélection\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:47:\"https://www.seomix.fr/extensions-seo-wordpress/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2021-11-25T09:00:00.000+01: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:814:\"Quand vous créez votre site internet, votre principal objectif est de pouvoir présenter vos produits, services ou prestations à l’ensemble de vos cibles. Pour y arriver, vous aurez besoin d’être visible auprès de celles-ci et notamment sur Google. Si votre site utilise WordPress comme CMS, pour optimiser votre SEO, vous allez devoir installer ce qu’on appelle des plugins ou extensions SEO. Ces plugins vous permettront d’ajouter des fonctionnalités indispensables pour rendre votre site Google-friendly Et comme il existe de nombreuses extensions et qu’il n’est pas toujours évident de savoir laquelle installer, nous vous avons préparé cet article qui vous permettra d’y voir plus clair. Voici donc un état des lieux […]Lire la suite : Extensions SEO sur WordPress : notre sélection\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:1171:\"\n <div><img width=\"180\" height=\"120\" src=\"https://www.seomix.fr/wp-content/uploads/2021/11/extensions-seo-180x120.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"meilleures extensions SEO sur Wordpress\"/></div>Quand vous créez votre site internet, votre principal objectif est de pouvoir présenter vos produits, services ou prestations à l’ensemble de vos cibles. Pour y arriver, vous aurez besoin d’être visible auprès de celles-ci et notamment sur Google. Si votre site utilise WordPress comme CMS, pour optimiser votre SEO, vous allez devoir installer ce qu’on appelle des plugins ou extensions SEO. Ces plugins vous permettront d’ajouter des fonctionnalités indispensables pour rendre votre site Google-friendly Et comme il existe de nombreuses extensions et qu’il n’est pas toujours évident de savoir laquelle installer, nous vous avons préparé cet article qui vous permettra d’y voir plus clair. Voici donc un état des lieux […]<br><strong>Lire la suite : </strong><a href=\"https://www.seomix.fr/extensions-seo-wordpress/\">Extensions SEO sur WordPress : notre sélection</a>\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Alexandre Rohou\";s: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:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://www.seomix.fr/wordpress/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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"SeoMix\";s: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:65:\"\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:27:\"http://www.w3.org/2005/Atom\";a:8:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://vincentdubroeucq.com/developper-votre-premiere-extension-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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Développer votre première extension WordPress\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:75:\"https://vincentdubroeucq.com/developper-votre-premiere-extension-wordpress/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2021-11-15T13:30:00.000+01: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:445:\"Si vous travaillez pour des clients, vous avez surement déjà copié-collé des petits bouts de code du fichier functions.php d’un site à un autre. Vous avez peut-être une petite bibliothèque de snippets sous le coude dans laquelle vous allez piocher de temps à autre. Mais pourquoi ne pas faire profiter le monde entier de vos […]\nCet article Développer votre première extension WordPress est apparu en premier sur Vincent Dubroeucq.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:645:\"\n <p>Si vous travaillez pour des clients, vous avez surement déjà copié-collé des petits bouts de code du fichier functions.php d’un site à un autre. Vous avez peut-être une petite bibliothèque de snippets sous le coude dans laquelle vous allez piocher de temps à autre. Mais pourquoi ne pas faire profiter le monde entier de vos […]</p>\n<p>Cet article <a rel=\"nofollow\" href=\"https://vincentdubroeucq.com/developper-votre-premiere-extension-wordpress/\">Développer votre première extension WordPress</a> est apparu en premier sur <a rel=\"nofollow\" href=\"https://vincentdubroeucq.com\">Vincent Dubroeucq</a>.</p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Vincent\";s: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:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://vincentdubroeucq.com/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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Vincent Dubroeucq\";s: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:65:\"\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:27:\"http://www.w3.org/2005/Atom\";a:8:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://www.whodunit.fr/fse-ou-le-full-site-editing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"FSE ou le Full Site Editing : ce qui vous attend avec WordPress 5.9\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:52:\"https://www.whodunit.fr/fse-ou-le-full-site-editing/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2021-11-05T17:34:17.000+01: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:242:\"Ce qui vous attend avec WordPress 5.9 et ce nouveau projet : Jean-Baptiste vous explique tout en 20 minutes.\nL’article FSE ou le Full Site Editing : ce qui vous attend avec WordPress 5.9 est apparu en premier sur Agence WordPress Whodunit.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:6050:\"\n \n<p>En décembre prochain, arrive WordPress 5.9 et le tant attendu Full Site Editing. Vous en avez déjà entendu parler ou vous découvrez à l’instant cette nouveauté ? <br>Nous vous avons préparé une vidéo qui répondra à toutes vos questions on l’espère 🙂</p>\n\n\n\n<h2 class=\"has-text-align-left\" id=\"h-full-site-editingla-vid-o-int-grale-22-min\" data-block-type=\"core\">Full Site Editing<br>la vidéo intégrale (22 min.)</h2>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<h2 class=\"has-text-align-left\" id=\"h-le-full-site-editing-en-6-questions\" data-block-type=\"core\">Le Full Site Editing en 6 questions </h2>\n\n\n\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1636130099024\"><strong class=\"schema-faq-question\">Quand arrivera le FSE – Full Site Editing – dans WordPress ?</strong> <p class=\"schema-faq-answer\">Il sera disponible avec la prochaine version de WordPress 5.9, en début d’année 2022.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1636130151415\"><strong class=\"schema-faq-question\">Le Full Site Editing qu’est-ce que c’est ?</strong> <p class=\"schema-faq-answer\">C’est un projet qui arrive avec WordPress 5.9 et qui s’ancre dans le projet <a href=\"https://www.whodunit.fr/blog/gutenberg-et-votre-site/\" target=\"_blank\" rel=\"noreferrer noopener\">Gutenberg</a>. L’objectif n’est pas uniquement de remplacer l’éditeur natif de WordPress mais de proposer une expérience éditoriale unifiée. <br //><br //><strong>Vous allez dorénavant encore plus loin dans l’édition de votre site WordPress.</strong><br //>Les blocs permettent désormais non seulement d’éditer les contenus de vos articles et pages comme c’est le cas aujourd’hui, mais aussi d’administrer des éléments habituellement gérés par le thème (le header, le footer, toutes les pages spécifiques comme la page 404, les archives d’articles…).<br //></p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1636130531499\"><strong class=\"schema-faq-question\">Ce qui change sur WordPress avec le Full Site Editing </strong> <p class=\"schema-faq-answer\">De gros changements arrivent effectivement, ce qui nous rappelle les changements que nous avons vécu avec Gutenberg 🙂 <br //>Nous savons d’experience que les choses ne se font pas non plus instantanément, donc vous avez le temps de vous préparer et de préparer vos sites. Coté contribution/rédaction et utilisateur(trice) final(e) cela ne change pas forcement beaucoup de choses, enfin pour ceux qui manipulent déjà les blocs Gutenberg 🙂<br //><br //><strong>A</strong>u final au lieu de devoir apprendre plein de concepts très différents (widgets, templates, menus, shortcodes, templating…), tout peut maintenant être généré avec un concept unique, le bloc Gutenberg.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1636130576843\"><strong class=\"schema-faq-question\">Le bénéfice du Full Site Editing sur les Usines à sites</strong> <p class=\"schema-faq-answer\">Un exemple très adapté à l’utilisation professionnelle du FSE est la création d’<a href=\"https://www.whodunit.fr/reinterpretons-la-conception-d-usines-a-sites-avec-wordpress/\" target=\"_blank\" rel=\"noreferrer noopener\">usines à sites WordPress</a>. <br //>Imaginez un thème de base contenant tous les styles, la charte graphique d’un groupe/d’une entreprise qui propose ainsi une bibliothèque de blocs Gutenberg. Chaque site pourra venir piocher au sein de cette bibliothèque pour le contenu de ses pages comme c’est déjà le cas actuellement, mais aussi la mise en page de chacun des sites et la gestion de ses headers spécifiques, footer, landing page… </p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1636130598462\"><strong class=\"schema-faq-question\">Le Full Site Editing et la gestion du responsive</strong> <p class=\"schema-faq-answer\">Quid du responsive? 🙂 <br //>On pourrait penser que le FSE n’a pas trop d’imapct puisqu’au départ c’est la feuille de style du thème qui gère la partie responsive.<br //>Mais Gutenberg, qui au départ ne se mêlait pas trop du style, intègre désormais de plus en plus de règles CSS destinées à gérer le responsive.<br //><strong>On voit ainsi arriver des comportements différentes sur mobile et desktop et des nouveaux blocs permettant d’ajuster l’agencement du site en fonction du contexte et du support.</strong></p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1636130617666\"><strong class=\"schema-faq-question\">Comment se former sur le Full Site Editing ?</strong> <p class=\"schema-faq-answer\">Pour se former, les ressources actuellement sont principalement en anglais. Nous vous recommandons une ressource maintenue par et pour la Communauté WordPress <a href=\"https://fullsiteediting.com/\" target=\"_blank\" rel=\"noreferrer noopener\">https://fullsiteediting.com/</a><br //>La documentation en français arrive petit à petit, avec notamment une première page concernant <a href=\"https://fr.wordpress.org/support/article/theme-base-sur-des-blocs/\">la structuration des thèmes compatibles avec le full site editing</a>. L’équipe de documentation de WordPress en français prépare activement de nouveaux contenus.</p> </div> </div>\n\n\n\n<p>Si vous d’avez d’autres questions sur le Full Site Editing, laissez simplement un commentaire ci-dessous : nous nous ferons une joie de vous répondre 🙂</p>\n<p>L’article <a rel=\"nofollow\" href=\"https://www.whodunit.fr/fse-ou-le-full-site-editing/\">FSE ou le Full Site Editing : ce qui vous attend avec WordPress 5.9</a> est apparu en premier sur <a rel=\"nofollow\" href=\"https://www.whodunit.fr\">Agence WordPress Whodunit</a>.</p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Jean-Baptiste Audras\";s: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:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://www.whodunit.fr/wordpress/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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Whodunit\";s: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:65:\"\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:27:\"http://www.w3.org/2005/Atom\";a:8:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://jeanbaptisteaudras.com/2021/09/how-to-extend-has_block-function-to-also-check-for-gutenberg-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"How to extend has_block() function to also check for Gutenberg reusable blocks\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:116:\"https://jeanbaptisteaudras.com/2021/09/how-to-extend-has_block-function-to-also-check-for-gutenberg-reusable-blocks/\";s:3:\"rel\";s:9:\"alternate\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"updated\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"2021-09-17T22:27:54.000+02: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:\"summary\";a:1:{i:0;a:5:{s:4:\"data\";s:562:\"L’article How to extend has_block() function to also check for Gutenberg reusable blocks provient de Jean-Baptiste Audras - CTO @ Whodunit & WordPress Core Developer\nIt’s been almost three years now that the block editor has been part of WordPress and we all got used to developing with this new editor, Gutenberg. Convinced of the principle of reusable blocks, I started to work on a […]\nL’article How to extend has_block() function to also check for Gutenberg reusable blocks provient de Jean-Baptiste Audras - CTO @ Whodunit & WordPress Core Developer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:5:{s:4:\"data\";s:5769:\"\n <p>L’article <a rel=\"nofollow\" href=\"https://jeanbaptisteaudras.com/2021/09/how-to-extend-has_block-function-to-also-check-for-gutenberg-reusable-blocks/\">How to extend has_block() function to also check for Gutenberg reusable blocks</a> provient de <a rel=\"nofollow\" href=\"https://jeanbaptisteaudras.com\">Jean-Baptiste Audras - CTO @ Whodunit & WordPress Core Developer</a></p>\n\n<p>It’s been almost three years now that the block editor has been part of WordPress and we all got used to developing with this new editor, Gutenberg.</p>\n\n\n\n<figure class=\"wp-block-embed alignright is-type-wp-embed is-provider-plugin-directory wp-block-embed-plugin-directory\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"XoPgzDUKX6\"><a href=\"https://wordpress.org/plugins/reusable-blocks-extended/\">Reusable Blocks Extended</a></blockquote>\n</div></figure>\n\n\n\n<p>Convinced of the principle of reusable blocks, I started to work on a plugin dedicated to this feature. In September 2019, I released a plugin called <em>Reusable Blocks Extended</em>, which allows website developers/editors to perform a pseudo full-site editing experience. I updated this plugin before the release of WordPress 5.5 to take into account Block Patterns (with a one-click conversion tool), and <a href=\"https://wptavern.com/convert-reusable-blocks-to-block-patterns-with-1-click\">it was noticed by WP Tavern</a> <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" style=\"height: 1em;max-height: 1em\" //></p>\n\n\n\n<p>Nonetheless, reusable blocks are a powerful feature that has remained somewhat on the fringes of Gutenberg developments.</p>\n\n\n\n<p>For example, we have <code>has_block()</code>, a useful PHP function for people who develop websites that work with Gutenberg. It allows to check whether a specific block is contained in a series of blocks (this series of blocks is generally the content of a publication written in the block editor).</p>\n\n\n\n<p>But… this function doesn’t take into account the content of any existing reusable block.</p>\n\n\n\n<p>Here is a function to use instead of <code>has_block()</code>. You just need to put it into your custom theme or your child theme. Then, you can use the <code>has_block_including_reusables()</code> function instead of <code>has_block()</code>. It will return the same results than <code>has_block()</code>, excepts that it also retrieves reusable blocks.</p>\n\n\n\n<figure class=\"wp-block-pullquote alignright is-style-solid-color small\"><blockquote><p>If you want to support my open source work, you can <a rel=\"noreferrer noopener\" href=\"https://www.paypal.me/audrasjb\" target=\"_blank\">buy me a beer</a> <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f37a.png\" alt=\"🍺\" class=\"wp-smiley\" style=\"height: 1em;max-height: 1em\" //> or leave a kind comment below <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f970.png\" alt=\"🥰\" class=\"wp-smiley\" style=\"height: 1em;max-height: 1em\" //></p></blockquote></figure>\n\n\n\n<p>I’d really like to see this enhancement merged into the existing <code>has_block()</code> Core function, so hopefully this workaround won’t be useful anymore in a near future <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em;max-height: 1em\" //></p>\n\n\n\n<p>Here is the full code of the function:</p>\n\n\n\n<div class=\"wp-container-61ba0b13af6fd wp-block-group alignwide\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-codemirror-blocks-code-block alignwide code-block\"><pre class=\"CodeMirror\" data-setting=\"{"mode":"php","mime":"text/x-php","theme":"material","lineNumbers":false,"styleActiveLine":false,"lineWrapping":false,"readOnly":true,"align":"wide","language":"PHP","modeName":"php"}\">/**\n * Determines whether a $post or a string contains a specific block type,\n * including blocks that are included in reusable blocks.\n *\n * @author Jb Audras – @audrasjb on socials.\n *\n * @param string $block_name Full Block type to look for.\n * @param int|string|WP_Post|null $post Optional. Post content, post ID, or post object. Defaults to global $post.\n * @return bool Whether the post content contains the specified block.\n */\nfunction has_block_including_reusables( $block_name, $post = false ) {\n\n if ( ! has_blocks( $post ) ) {\n return false;\n }\n\n $post = ( ! $post ) ? get_the_ID() : $post;\n\n if ( $post ) {\n\n // This is for regular blocks\n if ( has_block( $block_name, $post ) ) {\n return true;\n }\n\n // This is for reusable blocks\n if ( has_block( \'block\', $post ) ) {\n\n $content = get_post_field( \'post_content\', $post );\n $blocks = parse_blocks( $content );\n\n if ( ! is_array( $blocks ) || empty( $blocks ) ) {\n return false;\n }\n\n if ( false === strpos( $block_name, \'/\' ) ) {\n $block_name = \'core/\' . $block_name;\n }\n\n foreach ( $blocks as $block ) {\n if ( $block[\'blockName\'] === \'core/block\' && ! empty( $block[\'attrs\'][\'ref\'] ) ) {\n if ( has_block( $block_name, $block[\'attrs\'][\'ref\'] ) ) {\n return true;\n }\n }\n }\n }\n }\n return false;\n}</pre></div>\n</div></div>\n<p>L’article <a rel=\"nofollow\" href=\"https://jeanbaptisteaudras.com/2021/09/how-to-extend-has_block-function-to-also-check-for-gutenberg-reusable-blocks/\">How to extend has_block() function to also check for Gutenberg reusable blocks</a> provient de <a rel=\"nofollow\" href=\"https://jeanbaptisteaudras.com\">Jean-Baptiste Audras - CTO @ Whodunit & WordPress Core Developer</a></p>\n\n \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"author\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"name\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"Jb\";s: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:\"source\";a:1:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \";s:7:\"attribs\";a: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:27:\"http://www.w3.org/2005/Atom\";a:2:{s:2:\"id\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://jeanbaptisteaudras.com/wordpress/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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"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:512;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:12:\"nginx/1.21.4\";s:4:\"date\";s:29:\"Fri, 07 Jan 2022 12:40:18 GMT\";s:12:\"content-type\";s:20:\"application/atom+xml\";s:12:\"x-powered-by\";s:10:\"PHP/8.0.13\";s:13:\"last-modified\";s:29:\"Wed, 15 Dec 2021 21:33:54 GMT\";s:4:\"etag\";s:34:\"\"2ffe8d75591b5b1ed5ca7f66d3c037d3\"\";s:4:\"link\";s:57:\"<https://rss.wpfr.net/wp-json/>; rel=\"https://api.w.org/\"\";s:13:\"cache-control\";s:35:\"no-cache, no-store, must-revalidate\";s:6:\"pragma\";s:8:\"no-cache\";s:7:\"expires\";s:1:\"0\";s:25:\"strict-transport-security\";s:16:\"max-age=63072000\";}}s:5:\"build\";s:14:\"20201016172007\";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1236, '_transient_timeout_feed_mod_48c2a7450ae14f12ef8a9b58ca9f0748', '1641602418', 'no'),
(1237, '_transient_feed_mod_48c2a7450ae14f12ef8a9b58ca9f0748', '1641559218', 'no'),
(1238, '_transient_timeout_dash_v2_bd94b8f41e74bae2f4dc72e9bd8379af', '1641602418', 'no'),
(1239, '_transient_dash_v2_bd94b8f41e74bae2f4dc72e9bd8379af', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://fr.wordpress.org/2021/12/22/state-of-the-word-2021-le-bilan-annuel-du-projet-wordpress-en-video-sous-titree-en-francais/\'>« State of the Word 2021 », le bilan annuel du projet WordPress en vidéo sous-titrée en français</a></li><li><a class=\'rsswidget\' href=\'https://fr.wordpress.org/2021/10/24/deposer-et-gerer-une-extension-sur-wordpress-org-documentation-en-francais/\'>Déposer et gérer une extension sur WordPress.org : documentation en français</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wpmarmite.com/alternatives-woocommerce/?utm_source=rss&utm_medium=rss&%23038;utm_campaign=alternatives-woocommerce\'>Quelles sont les alternatives à WooCommerce… et peut-on leur faire confiance ?</a></li><li><a class=\'rsswidget\' href=\'https://21douze.fr/plugin-wp-genders-ajouter-genres-administration-wordpress-673310.html\'>Plugin WP Genders : Comment ajouter des genres dans votre administration WordPress</a></li><li><a class=\'rsswidget\' href=\'https://mariecomet.fr/2021/12/06/ajouter-options-controles-bloc-gutenberg-existant/\'>Ajouter des options et contrôles à un bloc Gutenberg existant</a></li></ul></div>', 'no'),
(1240, '_transient_timeout_ur_upgrade_notice_2.1.1', '1641645619', 'no'),
(1241, '_transient_ur_upgrade_notice_2.1.1', '', 'no'),
(1242, 'display_options', 'Hello deer client ! We\'re proud of this adventure with you.', 'yes'),
(1243, 'to_display_option', '1', 'yes'),
(1247, '_site_transient_timeout_php_check_8acfdb5ab3c35c9eb9f0cac464eee366', '1642164261', 'no'),
(1248, '_site_transient_php_check_8acfdb5ab3c35c9eb9f0cac464eee366', 'a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'no');
-- --------------------------------------------------------
--
-- Structure de la table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(3, 5, '_wp_attached_file', 'woocommerce-placeholder.png'),
(4, 5, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:0:{}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:{}}}'),
(5, 11, '_wp_attached_file', '2021/12/hangers-g0578e0abf_1920.jpg'),
(6, 11, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2021/12/hangers-g0578e0abf_1920.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(7, 12, '_wp_attached_file', '2021/12/yashica-gb8029cebb_1920.jpg'),
(8, 12, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1271;s:4:\"file\";s:35:\"2021/12/yashica-gb8029cebb_1920.jpg\";s:5:\"sizes\";a:0:{}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:{}}}'),
(9, 13, '_edit_last', '1'),
(10, 13, '_edit_lock', '1640528559:1'),
(11, 13, 'total_sales', '0'),
(12, 13, '_tax_status', 'taxable'),
(13, 13, '_tax_class', ''),
(14, 13, '_manage_stock', 'no'),
(15, 13, '_backorders', 'no'),
(16, 13, '_sold_individually', 'no'),
(17, 13, '_virtual', 'no'),
(18, 13, '_downloadable', 'no'),
(19, 13, '_download_limit', '-1'),
(20, 13, '_download_expiry', '-1'),
(22, 13, '_stock_status', 'outofstock'),
(23, 13, '_wc_average_rating', '0'),
(24, 13, '_wc_review_count', '0'),
(25, 13, '_product_attributes', 'a:1:{s:5:\"color\";a:6:{s:4:\"name\";s:5:\"Color\";s:5:\"value\";s:18:\"Red | Blue | Black\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}}'),
(26, 13, '_product_version', '6.0.0'),
(27, 14, '_edit_last', '1'),
(28, 14, '_edit_lock', '1640528570:1'),
(29, 16, '_edit_last', '1'),
(30, 16, '_edit_lock', '1640531197:1'),
(31, 16, 'total_sales', '0'),
(32, 16, '_tax_status', 'taxable'),
(33, 16, '_tax_class', ''),
(34, 16, '_manage_stock', 'no'),
(35, 16, '_backorders', 'no'),
(36, 16, '_sold_individually', 'no'),
(37, 16, '_virtual', 'no'),
(38, 16, '_downloadable', 'no'),
(39, 16, '_download_limit', '-1'),
(40, 16, '_download_expiry', '-1'),
(42, 16, '_stock_status', 'instock'),
(43, 16, '_wc_average_rating', '0'),
(44, 16, '_wc_review_count', '0'),
(45, 16, '_product_attributes', 'a:1:{s:18:\"pa_color_attribute\";a:6:{s:4:\"name\";s:18:\"pa_color_attribute\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),
(46, 16, '_product_version', '6.0.0'),
(47, 17, '_wp_attached_file', '2021/12/hoodie-gc4a4c45ce_1920.jpg'),
(48, 17, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2021/12/hoodie-gc4a4c45ce_1920.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(51, 16, '_weight', '1'),
(52, 16, '_length', '30'),
(53, 16, '_width', '10'),
(54, 16, '_height', '40'),
(64, 16, '_stock', NULL),
(126, 16, '_sku', '0'),
(133, 25, '_variation_description', ''),
(134, 25, 'total_sales', '0'),
(135, 25, '_tax_status', 'taxable'),
(136, 25, '_tax_class', 'parent'),
(137, 25, '_manage_stock', 'no'),
(138, 25, '_backorders', 'no'),
(139, 25, '_sold_individually', 'no'),
(140, 25, '_virtual', 'no'),
(141, 25, '_downloadable', 'no'),
(142, 25, '_download_limit', '-1'),
(143, 25, '_download_expiry', '-1'),
(144, 25, '_stock', NULL),
(145, 25, '_stock_status', 'instock'),
(146, 25, '_wc_average_rating', '0'),
(147, 25, '_wc_review_count', '0'),
(148, 25, 'attribute_pa_color_attribute', 'blue'),
(149, 25, '_product_version', '6.0.0'),
(150, 26, '_variation_description', ''),
(151, 26, 'total_sales', '0'),
(152, 26, '_tax_status', 'taxable'),
(153, 26, '_tax_class', 'parent'),
(154, 26, '_manage_stock', 'no'),
(155, 26, '_backorders', 'no'),
(156, 26, '_sold_individually', 'no'),
(157, 26, '_virtual', 'no'),
(158, 26, '_downloadable', 'no'),
(159, 26, '_download_limit', '-1'),
(160, 26, '_download_expiry', '-1'),
(161, 26, '_stock', NULL),
(162, 26, '_stock_status', 'instock'),
(163, 26, '_wc_average_rating', '0'),
(164, 26, '_wc_review_count', '0'),
(165, 26, 'attribute_pa_color_attribute', 'red'),
(166, 26, '_product_version', '6.0.0'),
(167, 27, '_variation_description', ''),
(168, 27, 'total_sales', '0'),
(169, 27, '_tax_status', 'taxable'),
(170, 27, '_tax_class', 'parent'),
(171, 27, '_manage_stock', 'no'),
(172, 27, '_backorders', 'no'),
(173, 27, '_sold_individually', 'no'),
(174, 27, '_virtual', 'no'),
(175, 27, '_downloadable', 'no'),
(176, 27, '_download_limit', '-1'),
(177, 27, '_download_expiry', '-1'),
(178, 27, '_stock', NULL),
(179, 27, '_stock_status', 'instock'),
(180, 27, '_wc_average_rating', '0'),
(181, 27, '_wc_review_count', '0'),
(182, 27, 'attribute_pa_color_attribute', 'white'),
(183, 27, '_product_version', '6.0.0'),
(184, 16, '_default_attributes', 'a:1:{s:18:\"pa_color_attribute\";s:4:\"blue\";}'),
(185, 25, '_regular_price', '29.99'),
(187, 25, '_price', '29.99'),
(191, 26, '_regular_price', '29.99'),
(192, 26, '_price', '29.99'),
(193, 27, '_regular_price', '29.99'),
(194, 27, '_price', '29.99'),
(195, 16, '_price', '29.99'),
(196, 27, '_wp_trash_meta_status', 'publish'),
(197, 27, '_wp_trash_meta_time', '1640531347'),
(198, 27, '_wp_desired_post_slug', 'sweatshirt-white'),
(199, 26, '_wp_trash_meta_status', 'publish'),
(200, 26, '_wp_trash_meta_time', '1640531347'),
(201, 26, '_wp_desired_post_slug', 'sweatshirt-red'),
(202, 25, '_wp_trash_meta_status', 'publish'),
(203, 25, '_wp_trash_meta_time', '1640531348'),
(204, 25, '_wp_desired_post_slug', 'sweatshirt-blue'),
(205, 16, '_wp_trash_meta_status', 'publish'),
(206, 16, '_wp_trash_meta_time', '1640531348'),
(207, 16, '_wp_desired_post_slug', 'sweatshirt'),
(208, 14, '_wp_trash_meta_status', 'draft'),
(209, 14, '_wp_trash_meta_time', '1640531352'),
(210, 14, '_wp_desired_post_slug', ''),
(211, 13, '_wp_trash_meta_status', 'draft'),
(212, 13, '_wp_trash_meta_time', '1640531355'),
(213, 13, '_wp_desired_post_slug', ''),
(214, 28, '_edit_last', '1'),
(215, 28, '_edit_lock', '1640692656:1'),
(216, 28, 'total_sales', '0'),
(217, 28, '_tax_status', 'taxable'),
(218, 28, '_tax_class', ''),
(219, 28, '_manage_stock', 'no'),
(220, 28, '_backorders', 'no'),
(221, 28, '_sold_individually', 'no'),
(222, 28, '_virtual', 'no'),
(223, 28, '_downloadable', 'no'),
(224, 28, '_download_limit', '-1'),
(225, 28, '_download_expiry', '-1'),
(226, 28, '_stock', NULL),
(227, 28, '_stock_status', 'instock'),
(228, 28, '_wc_average_rating', '0'),
(229, 28, '_wc_review_count', '0'),
(230, 28, '_product_attributes', 'a:1:{s:18:\"pa_color_attribute\";a:6:{s:4:\"name\";s:18:\"pa_color_attribute\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),
(231, 28, '_product_version', '6.0.0'),
(232, 29, '_variation_description', ''),
(233, 29, 'total_sales', '0'),
(234, 29, '_tax_status', 'taxable'),
(235, 29, '_tax_class', 'parent'),
(236, 29, '_manage_stock', 'no'),
(237, 29, '_backorders', 'no'),
(238, 29, '_sold_individually', 'no'),
(239, 29, '_virtual', 'no'),
(240, 29, '_downloadable', 'no'),
(241, 29, '_download_limit', '-1'),
(242, 29, '_download_expiry', '-1'),
(243, 29, '_stock', NULL),
(244, 29, '_stock_status', 'instock'),
(245, 29, '_wc_average_rating', '0'),
(246, 29, '_wc_review_count', '0'),
(247, 29, 'attribute_pa_color_attribute', 'blue'),
(248, 29, '_product_version', '6.0.0'),
(249, 30, '_variation_description', ''),
(250, 30, 'total_sales', '0'),
(251, 30, '_tax_status', 'taxable'),
(252, 30, '_tax_class', 'parent'),
(253, 30, '_manage_stock', 'no'),
(254, 30, '_backorders', 'no'),
(255, 30, '_sold_individually', 'no'),
(256, 30, '_virtual', 'no'),
(257, 30, '_downloadable', 'no'),
(258, 30, '_download_limit', '-1'),
(259, 30, '_download_expiry', '-1'),
(260, 30, '_stock', NULL),
(261, 30, '_stock_status', 'instock'),
(262, 30, '_wc_average_rating', '0'),
(263, 30, '_wc_review_count', '0'),
(264, 30, 'attribute_pa_color_attribute', 'red'),
(265, 30, '_product_version', '6.0.0'),
(266, 31, '_variation_description', ''),
(267, 31, 'total_sales', '0'),
(268, 31, '_tax_status', 'taxable'),
(269, 31, '_tax_class', 'parent'),
(270, 31, '_manage_stock', 'no'),
(271, 31, '_backorders', 'no'),
(272, 31, '_sold_individually', 'no'),
(273, 31, '_virtual', 'no'),
(274, 31, '_downloadable', 'no'),
(275, 31, '_download_limit', '-1'),
(276, 31, '_download_expiry', '-1'),
(277, 31, '_stock', NULL),
(278, 31, '_stock_status', 'instock'),
(279, 31, '_wc_average_rating', '0'),
(280, 31, '_wc_review_count', '0'),
(281, 31, 'attribute_pa_color_attribute', 'white'),
(282, 31, '_product_version', '6.0.0'),
(284, 29, '_regular_price', '29.99'),
(286, 29, '_price', '29.99'),
(287, 30, '_regular_price', '29.99'),
(289, 30, '_price', '29.99'),
(290, 31, '_regular_price', '29.99'),
(292, 31, '_price', '29.99'),
(298, 32, '_wp_attached_file', '2021/12/3115093.426.jpg'),
(299, 32, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:23:\"2021/12/3115093.426.jpg\";s:5:\"sizes\";a:0:{}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:{}}}'),
(300, 33, '_wp_attached_file', '2021/12/3181948.426.jpg'),
(301, 33, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:23:\"2021/12/3181948.426.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(302, 34, '_wp_attached_file', '2021/12/3181946.426.jpg'),
(303, 34, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:23:\"2021/12/3181946.426.jpg\";s:5:\"sizes\";a:0:{}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:{}}}'),
(304, 29, '_thumbnail_id', '34'),
(305, 30, '_thumbnail_id', '32'),
(306, 31, '_thumbnail_id', '33'),
(310, 28, '_default_attributes', 'a:1:{s:18:\"pa_color_attribute\";s:4:\"blue\";}'),
(311, 28, '_price', '29.99'),
(312, 28, '_sku', '0'),
(313, 37, '_edit_last', '1'),
(314, 37, '_edit_lock', '1640533775:1'),
(315, 38, '_wp_attached_file', '2021/12/camera-gf298ae33c_1280.png'),
(316, 38, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:977;s:4:\"file\";s:34:\"2021/12/camera-gf298ae33c_1280.png\";s:5:\"sizes\";a:0:{}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:{}}}'),
(317, 37, '_thumbnail_id', '38'),
(318, 37, '_regular_price', '99.99'),
(319, 37, 'total_sales', '0'),
(320, 37, '_tax_status', 'taxable'),
(321, 37, '_tax_class', ''),
(322, 37, '_manage_stock', 'no'),
(323, 37, '_backorders', 'no'),
(324, 37, '_sold_individually', 'no'),
(325, 37, '_virtual', 'no'),
(326, 37, '_downloadable', 'no'),
(327, 37, '_download_limit', '-1'),
(328, 37, '_download_expiry', '-1'),
(329, 37, '_stock', NULL),
(330, 37, '_stock_status', 'instock'),
(331, 37, '_wc_average_rating', '0'),
(332, 37, '_wc_review_count', '0'),
(333, 37, '_product_version', '6.0.0'),
(334, 37, '_price', '99.99'),
(335, 28, '_thumbnail_id', '34'),
(336, 6, '_edit_lock', '1640693596:1'),
(337, 39, '_edit_lock', '1640693893:1'),
(338, 39, '_wp_trash_meta_status', 'publish'),
(339, 39, '_wp_trash_meta_time', '1640693893'),
(340, 42, '_wp_trash_meta_status', 'publish'),
(341, 42, '_wp_trash_meta_time', '1640694417'),
(342, 44, '_wp_trash_meta_status', 'publish'),
(343, 44, '_wp_trash_meta_time', '1640694460'),
(344, 46, '_wp_trash_meta_status', 'publish'),
(345, 46, '_wp_trash_meta_time', '1640695316'),
(346, 48, '_wp_trash_meta_status', 'publish'),
(347, 48, '_wp_trash_meta_time', '1640695353'),
(348, 52, '_edit_lock', '1641081461:1');
-- --------------------------------------------------------
--
-- Structure de la table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
CREATE TABLE `wp_posts` (
`ID` bigint(20) UNSIGNED NOT NULL,
`post_author` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--