This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
wordpressaccessibilityday.WordPress.2020-05-27.xml
1270 lines (1161 loc) · 73.6 KB
/
wordpressaccessibilityday.WordPress.2020-05-27.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!-- on the site. For each author, you may choose to map to an -->
<!-- existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!-- contained in this file into your site. -->
<!-- generator="WordPress/5.4.1" created="2020-05-27 16:33" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.2/"
>
<channel>
<title>WordPress Accessibility Day</title>
<link>https://wpaccessibilityday.org</link>
<description>September 25th, 2020 - From 18:00 UTC</description>
<pubDate>Wed, 27 May 2020 16:33:04 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>https://wpaccessibilityday.org</wp:base_site_url>
<wp:base_blog_url>https://wpaccessibilityday.org</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[audrasjb]]></wp:author_login><wp:author_email><![CDATA[[email protected]]]></wp:author_email><wp:author_display_name><![CDATA[Jb Audras]]></wp:author_display_name><wp:author_first_name><![CDATA[Jb]]></wp:author_first_name><wp:author_last_name><![CDATA[Audras]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>2</wp:author_id><wp:author_login><![CDATA[xkon]]></wp:author_login><wp:author_email><![CDATA[[email protected]]]></wp:author_email><wp:author_display_name><![CDATA[Konstantinos Xenos]]></wp:author_display_name><wp:author_first_name><![CDATA[Konstantinos]]></wp:author_first_name><wp:author_last_name><![CDATA[Xenos]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>3</wp:author_id><wp:author_login><![CDATA[Antonio]]></wp:author_login><wp:author_email><![CDATA[[email protected]]]></wp:author_email><wp:author_display_name><![CDATA[Antonio]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:category>
<wp:term_id>1</wp:term_id>
<wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
</wp:category>
<wp:term>
<wp:term_id><![CDATA[2]]></wp:term_id>
<wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[menu-1]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Menu 1]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[1]]></wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[uncategorized]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Uncategorized]]></wp:term_name>
</wp:term>
<wp:term><wp:term_id>2</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[menu-1]]></wp:term_slug><wp:term_name><![CDATA[Menu 1]]></wp:term_name>
</wp:term>
<generator>https://wordpress.org/?v=5.4.1</generator>
<item>
<title>Hello world!</title>
<link>https://wpaccessibilityday.org/hello-world/</link>
<pubDate>Tue, 18 Feb 2020 22:53:58 +0000</pubDate>
<dc:creator><![CDATA[audrasjb]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/?p=1</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>
<!-- /wp:paragraph -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1</wp:post_id>
<wp:post_date><![CDATA[2020-02-18 22:53:58]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-02-18 22:53:58]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[hello-world]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[post]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:comment>
<wp:comment_id>1</wp:comment_id>
<wp:comment_author><![CDATA[A WordPress Commenter]]></wp:comment_author>
<wp:comment_author_email><![CDATA[[email protected]]]></wp:comment_author_email>
<wp:comment_author_url>https://wordpress.org/</wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2020-02-18 22:53:58]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2020-02-18 22:53:58]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from <a href="https://gravatar.com">Gravatar</a>.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>0</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title>Sample Page</title>
<link>https://wpaccessibilityday.org/sample-page__trashed/</link>
<pubDate>Tue, 18 Feb 2020 22:53:58 +0000</pubDate>
<dc:creator><![CDATA[audrasjb]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/?page_id=2</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p>This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>
<!-- /wp:paragraph -->
<!-- wp:quote -->
<blockquote class="wp-block-quote"><p>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)</p></blockquote>
<!-- /wp:quote -->
<!-- wp:paragraph -->
<p>...or something like this:</p>
<!-- /wp:paragraph -->
<!-- wp:quote -->
<blockquote class="wp-block-quote"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>
<!-- /wp:quote -->
<!-- wp:paragraph -->
<p>As a new WordPress user, you should go to <a href="https://wpaccessibilityday.org/wpaccessibilityday/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>
<!-- /wp:paragraph -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2</wp:post_id>
<wp:post_date><![CDATA[2020-02-18 22:53:58]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-02-18 22:53:58]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[sample-page__trashed]]></wp:post_name>
<wp:status><![CDATA[trash]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[3]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[inline_featured_image]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
<wp:meta_value><![CDATA[draft]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
<wp:meta_value><![CDATA[1588784549]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
<wp:meta_value><![CDATA[sample-page]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Privacy Policy</title>
<link>https://wpaccessibilityday.org/?page_id=3</link>
<pubDate>Tue, 18 Feb 2020 22:53:58 +0000</pubDate>
<dc:creator><![CDATA[audrasjb]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/?page_id=3</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: https://wpaccessibilityday.org/wpaccessibilityday.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {"level":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {"level":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {"level":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {"level":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>3</wp:post_id>
<wp:post_date><![CDATA[2020-02-18 22:53:58]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-02-18 22:53:58]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[privacy-policy]]></wp:post_name>
<wp:status><![CDATA[draft]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Splash page</title>
<link>https://wpaccessibilityday.org/</link>
<pubDate>Thu, 20 Feb 2020 23:21:20 +0000</pubDate>
<dc:creator><![CDATA[audrasjb]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/?page_id=11</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph {"customFontSize":32} -->
<p style="font-size:32px"><strong>Save the date!</strong> Announcing the first WordPress Accessibility Day! </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"customFontSize":32} -->
<p style="font-size:32px">WP A11y Day is a 24-hour global event. We'll be featuring a selection of speakers from around the world. </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"customFontSize":32} -->
<p style="font-size:32px">Talks will focus on the intersection between WordPress and web accessibility.</p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2>Call for speakers</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Our call for speakers will open soon! Start brainstorming possible topics for your talk proposal. Potential topics include:</p>
<!-- /wp:paragraph -->
<!-- wp:list -->
<ul><li>theme accessibility</li><li>plugin accessibility</li><li>accessibility testing</li><li>writing and managing accessible content</li><li>the future of WordPress accessibility</li><li>ATAG</li><li>current and upcoming accessibility standards (WCAG 2.2, WCAG 3)</li><li>assistive technologies</li><li>and more!</li></ul>
<!-- /wp:list -->
<!-- wp:heading -->
<h2>Sign up to be notified</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p> Sign up below in order to receive news and updates about this event.</p>
<!-- /wp:paragraph -->
<!-- wp:shortcode -->
[mc4wp_form id="70"]
<!-- /wp:shortcode -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>11</wp:post_id>
<wp:post_date><![CDATA[2020-02-20 23:21:20]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-02-20 23:21:20]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[landing-page]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[3]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[subtitle_content]]></wp:meta_key>
<wp:meta_value><![CDATA[<p class="event-date">October 2nd, 2020</p>
<p class="event-time"><a href="https://www.timeanddate.com/worldclock/fixedtime.html?hour=18&min=00&sec=0">From 18:00 UTC</a></p>]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_subtitle_content]]></wp:meta_key>
<wp:meta_value><![CDATA[field_5e961e5aca61b]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[inline_featured_image]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[hide_menu]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_hide_menu]]></wp:meta_key>
<wp:meta_value><![CDATA[field_5e979626fd91d]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>logo</title>
<link>https://wpaccessibilityday.org/logo/</link>
<pubDate>Mon, 24 Feb 2020 16:36:58 +0000</pubDate>
<dc:creator><![CDATA[xkon]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/wp-content/uploads/2020/02/logo.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>13</wp:post_id>
<wp:post_date><![CDATA[2020-02-24 16:36:58]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-02-24 16:36:58]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[logo]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://wpaccessibilityday.org/wpaccessibilityday/wp-content/uploads/2020/02/logo.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2020/02/logo.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:485;s:6:"height";i:486;s:4:"file";s:16:"2020/02/logo.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:16:"logo-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:16:"logo-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Home</title>
<link>https://wpaccessibilityday.org/15/</link>
<pubDate>Mon, 24 Feb 2020 16:58:40 +0000</pubDate>
<dc:creator><![CDATA[xkon]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/?p=15</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>15</wp:post_id>
<wp:post_date><![CDATA[2020-02-24 16:58:40]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-02-24 16:58:40]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[15]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>1</wp:menu_order>
<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="nav_menu" nicename="menu-1"><![CDATA[Menu 1]]></category>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
<wp:meta_value><![CDATA[11]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
<wp:meta_value><![CDATA[page]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>wp-accessibility-day</title>
<link>https://wpaccessibilityday.org/wp-accessibility-day/</link>
<pubDate>Fri, 10 Apr 2020 14:19:29 +0000</pubDate>
<dc:creator><![CDATA[Antonio]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/wp-accessibility-day/</guid>
<description></description>
<content:encoded><![CDATA[header.entry-header {
padding-top: 0;
}
.entry-header h1::before {
margin-left: -760px;
}]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>35</wp:post_id>
<wp:post_date><![CDATA[2020-04-10 14:19:29]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-04-10 14:19:29]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[wp-accessibility-day]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[custom_css]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
</item>
<item>
<title>Subtitle</title>
<link>https://wpaccessibilityday.org/?post_type=acf-field-group&p=39</link>
<pubDate>Tue, 14 Apr 2020 20:34:54 +0000</pubDate>
<dc:creator><![CDATA[Antonio]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/?post_type=acf-field-group&p=39</guid>
<description></description>
<content:encoded><![CDATA[a:7:{s:8:"location";a:1:{i:0;a:1:{i:0;a:3:{s:5:"param";s:9:"post_type";s:8:"operator";s:2:"==";s:5:"value";s:4:"page";}}}s:8:"position";s:6:"normal";s:5:"style";s:7:"default";s:15:"label_placement";s:3:"top";s:21:"instruction_placement";s:5:"label";s:14:"hide_on_screen";s:0:"";s:11:"description";s:0:"";}]]></content:encoded>
<excerpt:encoded><![CDATA[subtitle]]></excerpt:encoded>
<wp:post_id>39</wp:post_id>
<wp:post_date><![CDATA[2020-04-14 20:34:54]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-04-14 20:34:54]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[group_5e961e542f841]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[acf-field-group]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[3]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Subtitle content</title>
<link>https://wpaccessibilityday.org/?post_type=acf-field&p=40</link>
<pubDate>Tue, 14 Apr 2020 20:34:54 +0000</pubDate>
<dc:creator><![CDATA[Antonio]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/?post_type=acf-field&p=40</guid>
<description></description>
<content:encoded><![CDATA[a:10:{s:4:"type";s:8:"textarea";s:12:"instructions";s:0:"";s:8:"required";i:0;s:17:"conditional_logic";i:0;s:7:"wrapper";a:3:{s:5:"width";s:0:"";s:5:"class";s:0:"";s:2:"id";s:0:"";}s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:9:"maxlength";s:0:"";s:4:"rows";s:0:"";s:9:"new_lines";s:0:"";}]]></content:encoded>
<excerpt:encoded><![CDATA[subtitle_content]]></excerpt:encoded>
<wp:post_id>40</wp:post_id>
<wp:post_date><![CDATA[2020-04-14 20:34:54]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-04-14 20:34:54]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[field_5e961e5aca61b]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>39</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[acf-field]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
</item>
<item>
<title>corners-decoration-symbol</title>
<link>https://wpaccessibilityday.org/corners-decoration-symbol/</link>
<pubDate>Tue, 14 Apr 2020 21:07:57 +0000</pubDate>
<dc:creator><![CDATA[Antonio]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/wp-content/uploads/2020/04/corners-decoration-symbol.svg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>49</wp:post_id>
<wp:post_date><![CDATA[2020-04-14 21:07:57]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-04-14 21:07:57]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[corners-decoration-symbol]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://wpaccessibilityday.org/wpaccessibilityday/wp-content/uploads/2020/04/corners-decoration-symbol.svg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2020/04/corners-decoration-symbol.svg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:4:{s:5:"width";i:121;s:6:"height";i:125;s:4:"file";s:38:"/2020/04/corners-decoration-symbol.svg";s:5:"sizes";a:6:{s:9:"thumbnail";a:5:{s:5:"width";s:3:"150";s:6:"height";s:3:"150";s:4:"crop";s:1:"1";s:4:"file";s:29:"corners-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}s:6:"medium";a:5:{s:5:"width";s:3:"300";s:6:"height";s:3:"300";s:4:"crop";b:0;s:4:"file";s:29:"corners-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}s:12:"medium_large";a:5:{s:5:"width";s:3:"768";s:6:"height";s:1:"0";s:4:"crop";b:0;s:4:"file";s:29:"corners-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}s:5:"large";a:5:{s:5:"width";s:4:"1024";s:6:"height";s:4:"1024";s:4:"crop";b:0;s:4:"file";s:29:"corners-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}s:9:"1536x1536";a:5:{s:5:"width";b:0;s:6:"height";b:0;s:4:"crop";b:0;s:4:"file";s:29:"corners-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}s:9:"2048x2048";a:5:{s:5:"width";b:0;s:6:"height";b:0;s:4:"crop";b:0;s:4:"file";s:29:"corners-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>wave-decoration-symbol</title>
<link>https://wpaccessibilityday.org/wave-decoration-symbol/</link>
<pubDate>Tue, 14 Apr 2020 21:07:57 +0000</pubDate>
<dc:creator><![CDATA[Antonio]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/wp-content/uploads/2020/04/wave-decoration-symbol.svg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>50</wp:post_id>
<wp:post_date><![CDATA[2020-04-14 21:07:57]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-04-14 21:07:57]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[wave-decoration-symbol]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://wpaccessibilityday.org/wpaccessibilityday/wp-content/uploads/2020/04/wave-decoration-symbol.svg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2020/04/wave-decoration-symbol.svg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:4:{s:5:"width";i:125;s:6:"height";i:125;s:4:"file";s:35:"/2020/04/wave-decoration-symbol.svg";s:5:"sizes";a:6:{s:9:"thumbnail";a:5:{s:5:"width";s:3:"150";s:6:"height";s:3:"150";s:4:"crop";s:1:"1";s:4:"file";s:26:"wave-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}s:6:"medium";a:5:{s:5:"width";s:3:"300";s:6:"height";s:3:"300";s:4:"crop";b:0;s:4:"file";s:26:"wave-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}s:12:"medium_large";a:5:{s:5:"width";s:3:"768";s:6:"height";s:1:"0";s:4:"crop";b:0;s:4:"file";s:26:"wave-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}s:5:"large";a:5:{s:5:"width";s:4:"1024";s:6:"height";s:4:"1024";s:4:"crop";b:0;s:4:"file";s:26:"wave-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}s:9:"1536x1536";a:5:{s:5:"width";b:0;s:6:"height";b:0;s:4:"crop";b:0;s:4:"file";s:26:"wave-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}s:9:"2048x2048";a:5:{s:5:"width";b:0;s:6:"height";b:0;s:4:"crop";b:0;s:4:"file";s:26:"wave-decoration-symbol.svg";s:9:"mime-type";s:13:"image/svg+xml";}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Hide menu</title>
<link>https://wpaccessibilityday.org/?post_type=acf-field-group&p=52</link>
<pubDate>Wed, 15 Apr 2020 23:19:07 +0000</pubDate>
<dc:creator><![CDATA[audrasjb]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/?post_type=acf-field-group&p=52</guid>
<description></description>
<content:encoded><![CDATA[a:7:{s:8:"location";a:1:{i:0;a:1:{i:0;a:3:{s:5:"param";s:9:"post_type";s:8:"operator";s:2:"==";s:5:"value";s:4:"page";}}}s:8:"position";s:4:"side";s:5:"style";s:7:"default";s:15:"label_placement";s:3:"top";s:21:"instruction_placement";s:5:"label";s:14:"hide_on_screen";s:0:"";s:11:"description";s:0:"";}]]></content:encoded>
<excerpt:encoded><![CDATA[hide-menu]]></excerpt:encoded>
<wp:post_id>52</wp:post_id>
<wp:post_date><![CDATA[2020-04-15 23:19:07]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-04-15 23:19:07]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[group_5e97961790ed9]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[acf-field-group]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Hide menu?</title>
<link>https://wpaccessibilityday.org/?post_type=acf-field&p=53</link>
<pubDate>Wed, 15 Apr 2020 23:19:07 +0000</pubDate>
<dc:creator><![CDATA[audrasjb]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/?post_type=acf-field&p=53</guid>
<description></description>
<content:encoded><![CDATA[a:10:{s:4:"type";s:10:"true_false";s:12:"instructions";s:0:"";s:8:"required";i:0;s:17:"conditional_logic";i:0;s:7:"wrapper";a:3:{s:5:"width";s:0:"";s:5:"class";s:0:"";s:2:"id";s:0:"";}s:7:"message";s:0:"";s:13:"default_value";i:0;s:2:"ui";i:1;s:10:"ui_on_text";s:0:"";s:11:"ui_off_text";s:0:"";}]]></content:encoded>
<excerpt:encoded><![CDATA[hide_menu]]></excerpt:encoded>
<wp:post_id>53</wp:post_id>
<wp:post_date><![CDATA[2020-04-15 23:19:07]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-04-15 23:19:07]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[field_5e979626fd91d]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>52</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[acf-field]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
</item>
<item>
<title>wpad-logo</title>
<link>https://wpaccessibilityday.org/wpad-logo/</link>
<pubDate>Tue, 28 Apr 2020 07:38:05 +0000</pubDate>
<dc:creator><![CDATA[Antonio]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/wp-content/uploads/2020/04/wpad-logo.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>65</wp:post_id>
<wp:post_date><![CDATA[2020-04-28 07:38:05]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-04-28 07:38:05]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[wpad-logo]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://wpaccessibilityday.org/wpaccessibilityday/wp-content/uploads/2020/04/wpad-logo.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2020/04/wpad-logo.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:420;s:6:"height";i:147;s:4:"file";s:21:"2020/04/wpad-logo.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:21:"wpad-logo-300x105.png";s:5:"width";i:300;s:6:"height";i:105;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"wpad-logo-150x147.png";s:5:"width";i:150;s:6:"height";i:147;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Newsletter subscription</title>
<link>https://wpaccessibilityday.org/mc4wp-form/newsletter-subscription/</link>
<pubDate>Wed, 29 Apr 2020 17:16:11 +0000</pubDate>
<dc:creator><![CDATA[Antonio]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/wpaccessibilityday/mc4wp-form/newsletter-subscription/</guid>
<description></description>
<content:encoded><![CDATA[ <label for="EMAIL">Enter your email:</label>
<input type="email" id="EMAIL" name="EMAIL" required />
<input type="submit" value="Sign up" />]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>70</wp:post_id>
<wp:post_date><![CDATA[2020-04-29 17:16:11]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-04-29 17:16:11]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[newsletter-subscription]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[mc4wp-form]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_mc4wp_settings]]></wp:meta_key>
<wp:meta_value><![CDATA[a:9:{s:5:"lists";a:1:{i:0;s:10:"777efbde08";}s:15:"required_fields";s:5:"EMAIL";s:12:"double_optin";s:1:"1";s:15:"update_existing";s:1:"0";s:17:"replace_interests";s:1:"1";s:15:"subscriber_tags";s:0:"";s:18:"hide_after_success";s:1:"0";s:8:"redirect";s:0:"";s:3:"css";s:1:"0";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[text_subscribed]]></wp:meta_key>
<wp:meta_value><![CDATA[Thank you, your sign-up request was successful! Please check your email inbox to confirm.]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[text_invalid_email]]></wp:meta_key>
<wp:meta_value><![CDATA[Please provide a valid email address.]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[text_required_field_missing]]></wp:meta_key>
<wp:meta_value><![CDATA[Please fill in the required fields.]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[text_already_subscribed]]></wp:meta_key>
<wp:meta_value><![CDATA[Given email address is already subscribed, thank you!]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[text_error]]></wp:meta_key>
<wp:meta_value><![CDATA[Oops. Something went wrong. Please try again later.]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[text_unsubscribed]]></wp:meta_key>
<wp:meta_value><![CDATA[You were successfully unsubscribed.]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[text_not_subscribed]]></wp:meta_key>
<wp:meta_value><![CDATA[Given email address is not subscribed.]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[text_no_lists_selected]]></wp:meta_key>
<wp:meta_value><![CDATA[Please select at least one list.]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[text_updated]]></wp:meta_key>
<wp:meta_value><![CDATA[Thank you, your records have been updated!]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Call for Speakers</title>
<link>https://wpaccessibilityday.org/?page_id=78</link>
<pubDate></pubDate>
<dc:creator><![CDATA[Antonio]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/?page_id=78</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p><strong>Make history: speak at WordPress Accessibility Day!</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>The heart of WordPress Accessibility day is going to be a 24-hour long online conference, starting on 2nd October 2020 at 18:00 UTC. </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>We are looking for speakers willing to share their knowledge and experience to enrich participants. Why don’t you take this opportunity to contribute as a speaker to this event? Be the one to inspire the WordPress community and improve its accessibility awareness!</p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2><strong>Why should I apply?</strong></h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>First of all, speaking at the first-ever WordPress Accessibility Day is a great opportunity for personal growth: it stimulates you to deepen your knowledge and skills, to leave your comfort zone, and to compare yourself with others. As a speaker, you will probably learn a lot, even more than what you are going to teach!</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>As a global online event, WordPress Accessibility Day will be a great opportunity to get in touch with people from all over the world: being a speaker will give you a lot of visibility and allow you to get in contact with a lot of people.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Finally, being a speaker at WordPress Accessibility Day is one of the best ways to contribute to the growth of the WordPress Community and to benefit the web accessibility community in general. </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>WordPress is largely based on the voluntary contribution of people who invest part of their own time in this project free of charge; also, the dedication of people who know about accessibility goes far beyond what is common commitment. Proposing yourself as a speaker for WordPress Accessibility Day would be an excellent way to give back to both communities.</p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2><strong>What should I be talking about?</strong></h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>If you have some experience with accessibility, you know that a lot of different specialties are involved: there are technical aspects where developers are more at ease, design aspects to spot and fix, and content creators have their key role in improving web accessibility. </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>We want all of these aspects to be touched and we want them to be touched at all levels of expertise.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>The WordPress Community is made up of people who may already know about accessibility, professionals who have heard about accessibility but don’t know how to deal with it, and simple bloggers who perhaps have never even heard about accessibility. </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>If you think there might be someone who might be interested in what you have to say, then submit your talk idea! In the registration form, we are going to ask you about which audience your talk is mostly directed to and the level of expertise of participants, so think about your audience from the beginning.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>You can share your theoretical knowledge or practical skills, but, if you want to tell us your story or some experience that is particularly important to you, that's totally ok. It doesn’t even need to be closely related to WordPress (but if you can find some connection, it's easier for us to understand why we should accept your proposal!).</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>If you still need inspiration, here is a list of topics that might give you ideas on what you could talk about: it isn’t exhaustive and it shouldn't limit you (on the contrary, we challenge you to find a topic that we haven’t mentioned below and that might interest us!)</p>
<!-- /wp:paragraph -->
<!-- wp:list -->
<ul><li>The future of WordPress accessibility</li><li>Theme accessibility</li><li>Plugin accessibility</li><li>Accessibility for developers</li><li>Accessibility testing</li><li>Writing and managing accessible content</li><li>Assistive technologies</li><li>Current and upcoming accessibility standards (WCAG 2.2 and 3)</li><li>Authoring Tool Accessibility Guidelines (ATAG)</li><li>Stories about contributing to accessibility</li><li>Accessibility and related topics (UI/UX, inclusion)</li></ul>
<!-- /wp:list -->
<!-- wp:heading -->
<h2><strong>What kind of talks will there be?</strong></h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Given the structure of the event, we are planning for 24 time slots of one hour each. During each time slot, we plan to have about 30 minutes to present, 15 minutes for questions from participants and a moderator, and a 15-minute break between talks. In general, if there is a topic you plan to talk about, we suggest that you stay within this time frame.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>But don’t worry: if you have an idea for a lightning (shorter) talk or you would like to organize a panel, feel free to send your applications and we will be happy to consider them if they fit in the schedule.</p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2><strong>What else should I know?</strong></h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>You don’t have to be the world's top expert on a certain topic to talk about it at WordPress Accessibility Day: it’s much more important to have the desire to share your knowledge with others. At the end of the experience, you will realize that you receive much more than what you give to the community.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>If you have already been a speaker at other WordPress events (Meetups, WordCamps...), you should more or less know what to expect. If this is your first experience as a speaker, don’t be afraid: if you think you have something important to say, let us know! We will support you in your preparation and make sure that your first experience as a speaker will be unforgettable.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Remember that, as with WordPress Meetups and WordCamps, you won't receive any compensation for your contribution. Also, since this is going to be a virtual event, we cannot provide you with the equipment needed to organize the stream: at the very least, we suggest that you have a microphone, possibly also a webcam. </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>If you need help with setting up your streaming plan, we can provide some assistance to set you up and do a test run before the event, so that you are ready for it.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>We want the speaker line-up to be inclusive and diverse, and we know that the WordPress Community has a large population of people who don’t speak English as their first language. We are accepting applications in languages other than English, but we strongly encourage you to give talks in English: all communication with the organizing team will be in English and, if we accept talks in a language other than English, we can't guarantee the availability of live captioning or translation. </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>If you aren’t confident in speaking English, but you still want to contribute, consider organizing a local event: we are going to publish more information about that in the next few weeks.</p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2>Apply to Speak!</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p><a href="https://forms.gle/gKi1MMQ93cUQvRfc7">Apply to speak at WordPress Accessibility Day</a>!</p>
<!-- /wp:paragraph -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>78</wp:post_id>
<wp:post_date><![CDATA[2020-05-24 15:17:21]]></wp:post_date>
<wp:post_date_gmt><![CDATA[0000-00-00 00:00:00]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[]]></wp:post_name>
<wp:status><![CDATA[draft]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[inline_featured_image]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[4]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[hide_menu]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_hide_menu]]></wp:meta_key>
<wp:meta_value><![CDATA[field_5e979626fd91d]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[subtitle_content]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_subtitle_content]]></wp:meta_key>
<wp:meta_value><![CDATA[field_5e961e5aca61b]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Call for Sponsors</title>
<link>https://wpaccessibilityday.org/?page_id=80</link>
<pubDate></pubDate>
<dc:creator><![CDATA[Antonio]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/?page_id=80</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p><strong>The Call for Sponsors for WordPress Accessibility Day is now live!</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Are you interested in sponsoring the first ever event concerning WordPress and accessibility? Do you want to show your commitment to make WordPress available to everybody, and particularly for people with disabilities?</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>There is an easy way to do that: help us by covering expenses!</p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2><strong>Why should I be sponsoring?</strong></h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Sponsoring WordPress Accessibility Day is a unique opportunity to show your support and commitment to make the WordPress Community and the Open Source Software Community more aware of the need to make the web accessible.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>WordPress powers hundreds of millions of websites all over the world and is the most used Content Management System. Many people use it for both personal and professional use and they want to make their websites available to everyone. </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Considering that the number of content creators, designers, and developers who understand the importance of accessibility is constantly growing, sponsoring WordPress Accessibility Day will be the perfect chance to get your product or service in front of hundreds of top level WordPress professionals.</p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2><strong>What is my money going to be used for?</strong></h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Event organizers always struggle to balance between offering participants the best experience and keeping expenses as low as possible. The global conference is going to be virtual, which will keep costs as low as possible, but we still need money to get everything working.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Why? As WordPress Accessibility Day is about accessibility, we are committed to making the event as accessible as possible for everybody. This adds one need that is extremely expensive and that we need to be covered somehow: captioning live streaming talks. This is something that needs to be done by professionals, so that everybody will have the best experience ever.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>The event is open to non-English presenters, which also opens possibilities for non-English captioning and live translation. While we're only guaranteeing English captioning at this time, if we're able to raise the funds, we'll do what we can to provide those resources. Practically, we won't know our needs until after selecting speakers, but if you're interested in specifically supporting non-English services, please let us know!</p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2><strong>But if expenses are high, you are going to ask for a lot of money!</strong></h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Sponsorship packages are flexible, so that you can balance between your willingness to contribute and your economical possibilities. We are still finalizing how we are going to thank you for your contribution, but we will publish all details here in the next few weeks. As soon as the sponsor agreement is signed and your payment has been received, we are going to put your name on the website.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>If this is the first time you've sponsored a WordPress event and you need more information, feel free to reach out to the organizing team -- we will be happy to answer and help you decide!</p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2>Contact us for information</h2>
<!-- /wp:heading -->
<!-- wp:shortcode -->
[contact-form-7 id="83" title="Sponsor Contact form"]
<!-- /wp:shortcode -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>80</wp:post_id>
<wp:post_date><![CDATA[2020-05-24 10:20:24]]></wp:post_date>
<wp:post_date_gmt><![CDATA[0000-00-00 00:00:00]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[]]></wp:post_name>
<wp:status><![CDATA[draft]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[inline_featured_image]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[3]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[hide_menu]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_hide_menu]]></wp:meta_key>
<wp:meta_value><![CDATA[field_5e979626fd91d]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[subtitle_content]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_subtitle_content]]></wp:meta_key>
<wp:meta_value><![CDATA[field_5e961e5aca61b]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Contact form 1</title>
<link>https://wpaccessibilityday.org/?post_type=wpcf7_contact_form&p=82</link>
<pubDate>Sun, 24 May 2020 10:01:16 +0000</pubDate>
<dc:creator><![CDATA[Antonio]]></dc:creator>
<guid isPermaLink="false">https://wpaccessibilityday.org/?post_type=wpcf7_contact_form&p=82</guid>
<description></description>
<content:encoded><![CDATA[[response]
<label for="name"> Your Name (required) </label>[text* your-name id:name]
<label for="email"> Your Email (required)</label>[email* your-email id:email]
<label for="message"> Your Message </label>[textarea your-message id:message]
[submit "Send"]
1
WordPress Accessibility Day - Contact form
WordPress Accessibility Day <[email protected]>
From: [your-name] <[your-email]>
Message Body:
[your-message]
--
This e-mail was sent from a contact form on WordPress Accessibility Day (https://wpaccessibilityday.org)
Reply-To: [your-email]
WordPress Accessibility Day "[your-subject]"
WordPress Accessibility Day <[email protected]>
[your-email]
Message Body:
[your-message]
--
This e-mail was sent from a contact form on WordPress Accessibility Day (https://wpaccessibilityday.org)
Reply-To: [email protected]
Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
One or more fields have an error. Please check and try again.
There was an error trying to send your message. Please try again later.
You must accept the terms and conditions before sending your message.
The field is required.
The field is too long.
The field is too short.
The date format is incorrect.
The date is before the earliest one allowed.
The date is after the latest one allowed.
There was an unknown error uploading the file.
You are not allowed to upload files of this type.
The file is too big.
There was an error uploading the file.
The number format is invalid.
The number is smaller than the minimum allowed.
The number is larger than the maximum allowed.
The answer to the quiz is incorrect.
The e-mail address entered is invalid.
The URL is invalid.
The telephone number is invalid.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>82</wp:post_id>
<wp:post_date><![CDATA[2020-05-24 10:01:16]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2020-05-24 10:01:16]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[contact-form-1]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_form]]></wp:meta_key>
<wp:meta_value><![CDATA[[response]
<label for="name"> Your Name (required) </label>[text* your-name id:name]
<label for="email"> Your Email (required)</label>[email* your-email id:email]
<label for="message"> Your Message </label>[textarea your-message id:message]
[submit "Send"]]]></wp:meta_value>