-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample.xml
8486 lines (8027 loc) · 416 KB
/
sample.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/4.9.8" created="2018-10-09 10:17" -->
<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>Genesis Starter Theme</title>
<link>https://demo.seothemes.com/genesis-starter</link>
<description>Just another starter theme</description>
<pubDate>Tue, 09 Oct 2018 10:17:07 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>https://demo.seothemes.com/genesis-starter</wp:base_site_url>
<wp:base_blog_url>https://demo.seothemes.com/genesis-starter</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[admin@genesis-starter.dev]]></wp:author_email><wp:author_display_name><![CDATA[admin]]></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:author><wp:author_id>2</wp:author_id><wp:author_login><![CDATA[seothemes]]></wp:author_login><wp:author_email><![CDATA[seothemeswp@gmail.com]]></wp:author_email><wp:author_display_name><![CDATA[Seo Themes]]></wp:author_display_name><wp:author_first_name><![CDATA[Seo]]></wp:author_first_name><wp:author_last_name><![CDATA[Themes]]></wp:author_last_name></wp:author>
<wp:category>
<wp:term_id>38</wp:term_id>
<wp:category_nicename><![CDATA[category-1]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Category #1]]></wp:cat_name>
<wp:category_description><![CDATA[Category #1 description]]></wp:category_description>
<wp:termmeta>
<wp:meta_key><![CDATA[headline]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:termmeta>
<wp:termmeta>
<wp:meta_key><![CDATA[intro_text]]></wp:meta_key>
<wp:meta_value><![CDATA[Category #1 description]]></wp:meta_value>
</wp:termmeta>
<wp:termmeta>
<wp:meta_key><![CDATA[display_title]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:termmeta>
<wp:termmeta>
<wp:meta_key><![CDATA[display_description]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:termmeta>
<wp:termmeta>
<wp:meta_key><![CDATA[doctitle]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:termmeta>
<wp:termmeta>
<wp:meta_key><![CDATA[description]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:termmeta>
<wp:termmeta>
<wp:meta_key><![CDATA[keywords]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:termmeta>
<wp:termmeta>
<wp:meta_key><![CDATA[layout]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:termmeta>
<wp:termmeta>
<wp:meta_key><![CDATA[noindex]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:termmeta>
<wp:termmeta>
<wp:meta_key><![CDATA[nofollow]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:termmeta>
<wp:termmeta>
<wp:meta_key><![CDATA[noarchive]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:termmeta>
</wp:category>
<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:tag>
<wp:term_id>39</wp:term_id>
<wp:tag_slug><![CDATA[alanis-morissette]]></wp:tag_slug>
<wp:tag_name><![CDATA[Alanis Morissette]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>40</wp:term_id>
<wp:tag_slug><![CDATA[ella-fitzgerald]]></wp:tag_slug>
<wp:tag_name><![CDATA[Ella Fitzgerald]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>41</wp:term_id>
<wp:tag_slug><![CDATA[family]]></wp:tag_slug>
<wp:tag_name><![CDATA[Family]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>42</wp:term_id>
<wp:tag_slug><![CDATA[folk-music]]></wp:tag_slug>
<wp:tag_name><![CDATA[Folk Music]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>43</wp:term_id>
<wp:tag_slug><![CDATA[good]]></wp:tag_slug>
<wp:tag_name><![CDATA[Good]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>44</wp:term_id>
<wp:tag_slug><![CDATA[grunge-music]]></wp:tag_slug>
<wp:tag_name><![CDATA[Grunge Music]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>45</wp:term_id>
<wp:tag_slug><![CDATA[guns-n-roses]]></wp:tag_slug>
<wp:tag_name><![CDATA[Guns N’ Roses]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>46</wp:term_id>
<wp:tag_slug><![CDATA[heavy-metal]]></wp:tag_slug>
<wp:tag_name><![CDATA[Heavy Metal]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>47</wp:term_id>
<wp:tag_slug><![CDATA[jazz-music]]></wp:tag_slug>
<wp:tag_name><![CDATA[Jazz Music]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>48</wp:term_id>
<wp:tag_slug><![CDATA[paris]]></wp:tag_slug>
<wp:tag_name><![CDATA[Paris]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>49</wp:term_id>
<wp:tag_slug><![CDATA[radio]]></wp:tag_slug>
<wp:tag_name><![CDATA[Radio]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>50</wp:term_id>
<wp:tag_slug><![CDATA[rain]]></wp:tag_slug>
<wp:tag_name><![CDATA[Rain]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>51</wp:term_id>
<wp:tag_slug><![CDATA[rock-music]]></wp:tag_slug>
<wp:tag_name><![CDATA[Rock Music]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>52</wp:term_id>
<wp:tag_slug><![CDATA[rush]]></wp:tag_slug>
<wp:tag_name><![CDATA[Rush]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>53</wp:term_id>
<wp:tag_slug><![CDATA[the-cranberries]]></wp:tag_slug>
<wp:tag_name><![CDATA[The Cranberries]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>54</wp:term_id>
<wp:tag_slug><![CDATA[van-halen]]></wp:tag_slug>
<wp:tag_name><![CDATA[Van Halen]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>55</wp:term_id>
<wp:tag_slug><![CDATA[world]]></wp:tag_slug>
<wp:tag_name><![CDATA[World]]></wp:tag_name>
</wp:tag>
<wp:term>
<wp:term_id><![CDATA[29]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[exclude-from-catalog]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[exclude-from-catalog]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[28]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[exclude-from-search]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[exclude-from-search]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[27]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_type]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[external]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[external]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[30]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[featured]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[featured]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[25]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_type]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[grouped]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[grouped]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[57]]></wp:term_id>
<wp:term_taxonomy><![CDATA[gs_faq_categories]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[home]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Home]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[31]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[outofstock]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[outofstock]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[32]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[rated-1]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[rated-1]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[33]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[rated-2]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[rated-2]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[34]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[rated-3]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[rated-3]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[35]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[rated-4]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[rated-4]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[36]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_visibility]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[rated-5]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[rated-5]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[24]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_type]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[simple]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[simple]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[37]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_cat]]></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:termmeta>
<wp:meta_key><![CDATA[product_count_product_cat]]></wp:meta_key>
<wp:meta_value><![CDATA[8]]></wp:meta_value>
</wp:termmeta>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[26]]></wp:term_id>
<wp:term_taxonomy><![CDATA[product_type]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[variable]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[variable]]></wp:term_name>
</wp:term>
<wp:term><wp:term_id>22</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[after-header-menu]]></wp:term_slug><wp:term_name><![CDATA[After Header Menu]]></wp:term_name>
</wp:term>
<wp:term><wp:term_id>56</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[header-menu]]></wp:term_slug><wp:term_name><![CDATA[Header Menu]]></wp:term_name>
</wp:term>
<generator>https://wordpress.org/?v=4.9.8</generator>
<item>
<title>Where can I download the Genesis Simple FAQ plugin?</title>
<link>https://demo.seothemes.com/genesis-starter/gs_faq/faq-5/</link>
<pubDate>Sun, 19 Nov 2017 23:48:50 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/corporate-pro/?post_type=gs_faq&p=51</guid>
<description></description>
<content:encoded><![CDATA[The Genesis Simple FAQ plugin is available on WordPress.org. <a target="_blank" href="https://wordpress.org/plugins/genesis-simple-faq/">Click here to download</a>.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>51</wp:post_id>
<wp:post_date><![CDATA[2017-11-19 23:48:50]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-11-19 23:48:50]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[faq-5]]></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[gs_faq]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="gs_faq_categories" nicename="home"><![CDATA[Home]]></category>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
<wp:meta_value><![CDATA[how-do-i-get-this-theme]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Where can I show the FAQ section on my website?</title>
<link>https://demo.seothemes.com/genesis-starter/gs_faq/faq-4/</link>
<pubDate>Sun, 19 Nov 2017 23:49:01 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/corporate-pro/?post_type=gs_faq&p=53</guid>
<description></description>
<content:encoded><![CDATA[You are able to add the FAQ section to many locations on your website, including a front page widget section, your page content, or a sidebar widget.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>53</wp:post_id>
<wp:post_date><![CDATA[2017-11-19 23:49:01]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-11-19 23:49:01]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[faq-4]]></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[gs_faq]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="gs_faq_categories" nicename="home"><![CDATA[Home]]></category>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
<wp:meta_value><![CDATA[what-are-the-major-benefits]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Can I customize the design of my FAQ section?</title>
<link>https://demo.seothemes.com/genesis-starter/gs_faq/faq-3/</link>
<pubDate>Sun, 19 Nov 2017 23:49:14 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/corporate-pro/?post_type=gs_faq&p=55</guid>
<description></description>
<content:encoded><![CDATA[Yes, the Genesis Simple FAQ plugin has basic styles included in order to look good on any Genesis website. You are also able to customize it to match your website using your child theme’s style.css file.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>55</wp:post_id>
<wp:post_date><![CDATA[2017-11-19 23:49:14]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-11-19 23:49:14]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[faq-3]]></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[gs_faq]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="gs_faq_categories" nicename="home"><![CDATA[Home]]></category>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
<wp:meta_value><![CDATA[why-is-this-theme-the-best]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>product-amp-1024-1024</title>
<link>https://demo.seothemes.com/genesis-starter/product-amp-1024-1024/</link>
<pubDate>Sat, 29 Jul 2017 13:23:38 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-amp-1024-1024.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>892</wp:post_id>
<wp:post_date><![CDATA[2017-07-29 13:23:38]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-07-29 13:23:38]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[product-amp-1024-1024]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-amp-1024-1024.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2017/07/product-amp-1024-1024.jpg]]></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:1024;s:6:"height";i:1024;s:4:"file";s:33:"2017/07/product-amp-1024-1024.jpg";s:5:"sizes";a:13:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:33:"product-amp-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:33:"product-amp-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:34:"product-amp-1024-1024-1024x720.jpg";s:5:"width";i:1024;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"product-amp-1024-1024-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:33:"product-amp-1024-1024-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"product-amp-1024-1024-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:33:"product-amp-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:33:"product-amp-1024-1024-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:33:"product-amp-1024-1024-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:33:"product-amp-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:33:"product-amp-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:33:"product-amp-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:33:"product-amp-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>product-box-1024-1024</title>
<link>https://demo.seothemes.com/genesis-starter/product-box-1024-1024/</link>
<pubDate>Sat, 29 Jul 2017 13:23:39 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-box-1024-1024.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>893</wp:post_id>
<wp:post_date><![CDATA[2017-07-29 13:23:39]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-07-29 13:23:39]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[product-box-1024-1024]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-box-1024-1024.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2017/07/product-box-1024-1024.jpg]]></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:1024;s:6:"height";i:1024;s:4:"file";s:33:"2017/07/product-box-1024-1024.jpg";s:5:"sizes";a:13:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:33:"product-box-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:33:"product-box-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:34:"product-box-1024-1024-1024x720.jpg";s:5:"width";i:1024;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"product-box-1024-1024-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:33:"product-box-1024-1024-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"product-box-1024-1024-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:33:"product-box-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:33:"product-box-1024-1024-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:33:"product-box-1024-1024-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:33:"product-box-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:33:"product-box-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:33:"product-box-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:33:"product-box-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>product-camera-1024-1024</title>
<link>https://demo.seothemes.com/genesis-starter/product-camera-1024-1024/</link>
<pubDate>Sat, 29 Jul 2017 13:23:39 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-camera-1024-1024.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>894</wp:post_id>
<wp:post_date><![CDATA[2017-07-29 13:23:39]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-07-29 13:23:39]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[product-camera-1024-1024]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-camera-1024-1024.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2017/07/product-camera-1024-1024.jpg]]></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:1024;s:6:"height";i:1024;s:4:"file";s:36:"2017/07/product-camera-1024-1024.jpg";s:5:"sizes";a:13:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:36:"product-camera-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:36:"product-camera-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:37:"product-camera-1024-1024-1024x720.jpg";s:5:"width";i:1024;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:36:"product-camera-1024-1024-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:36:"product-camera-1024-1024-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:36:"product-camera-1024-1024-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:36:"product-camera-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:36:"product-camera-1024-1024-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:36:"product-camera-1024-1024-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:36:"product-camera-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:36:"product-camera-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:36:"product-camera-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:36:"product-camera-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>product-clock-1024-1024</title>
<link>https://demo.seothemes.com/genesis-starter/product-clock-1024-1024/</link>
<pubDate>Sat, 29 Jul 2017 13:23:40 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-clock-1024-1024.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>895</wp:post_id>
<wp:post_date><![CDATA[2017-07-29 13:23:40]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-07-29 13:23:40]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[product-clock-1024-1024]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-clock-1024-1024.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2017/07/product-clock-1024-1024.jpg]]></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:1024;s:6:"height";i:1024;s:4:"file";s:35:"2017/07/product-clock-1024-1024.jpg";s:5:"sizes";a:13:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:35:"product-clock-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:35:"product-clock-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:36:"product-clock-1024-1024-1024x720.jpg";s:5:"width";i:1024;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:35:"product-clock-1024-1024-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:35:"product-clock-1024-1024-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:35:"product-clock-1024-1024-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:35:"product-clock-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:35:"product-clock-1024-1024-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:35:"product-clock-1024-1024-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:35:"product-clock-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:35:"product-clock-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:35:"product-clock-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:35:"product-clock-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>product-fan-1024-1024</title>
<link>https://demo.seothemes.com/genesis-starter/product-fan-1024-1024/</link>
<pubDate>Sat, 29 Jul 2017 13:23:41 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-fan-1024-1024.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>896</wp:post_id>
<wp:post_date><![CDATA[2017-07-29 13:23:41]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-07-29 13:23:41]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[product-fan-1024-1024]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-fan-1024-1024.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2017/07/product-fan-1024-1024.jpg]]></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:1024;s:6:"height";i:1024;s:4:"file";s:33:"2017/07/product-fan-1024-1024.jpg";s:5:"sizes";a:13:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:33:"product-fan-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:33:"product-fan-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:34:"product-fan-1024-1024-1024x720.jpg";s:5:"width";i:1024;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"product-fan-1024-1024-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:33:"product-fan-1024-1024-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"product-fan-1024-1024-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:33:"product-fan-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:33:"product-fan-1024-1024-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:33:"product-fan-1024-1024-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:33:"product-fan-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:33:"product-fan-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:33:"product-fan-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:33:"product-fan-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>product-mug-1024-1024</title>
<link>https://demo.seothemes.com/genesis-starter/product-mug-1024-1024/</link>
<pubDate>Sat, 29 Jul 2017 13:23:41 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-mug-1024-1024.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>897</wp:post_id>
<wp:post_date><![CDATA[2017-07-29 13:23:41]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-07-29 13:23:41]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[product-mug-1024-1024]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-mug-1024-1024.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2017/07/product-mug-1024-1024.jpg]]></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:1024;s:6:"height";i:1024;s:4:"file";s:33:"2017/07/product-mug-1024-1024.jpg";s:5:"sizes";a:13:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:33:"product-mug-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:33:"product-mug-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:34:"product-mug-1024-1024-1024x720.jpg";s:5:"width";i:1024;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"product-mug-1024-1024-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:33:"product-mug-1024-1024-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"product-mug-1024-1024-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:33:"product-mug-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:33:"product-mug-1024-1024-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:33:"product-mug-1024-1024-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:33:"product-mug-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:33:"product-mug-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:33:"product-mug-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:33:"product-mug-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>product-phone-1024-1024</title>
<link>https://demo.seothemes.com/genesis-starter/product-phone-1024-1024/</link>
<pubDate>Sat, 29 Jul 2017 13:23:42 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-phone-1024-1024.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>898</wp:post_id>
<wp:post_date><![CDATA[2017-07-29 13:23:42]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-07-29 13:23:42]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[product-phone-1024-1024]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-phone-1024-1024.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2017/07/product-phone-1024-1024.jpg]]></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:1024;s:6:"height";i:1024;s:4:"file";s:35:"2017/07/product-phone-1024-1024.jpg";s:5:"sizes";a:13:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:35:"product-phone-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:35:"product-phone-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:36:"product-phone-1024-1024-1024x720.jpg";s:5:"width";i:1024;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:35:"product-phone-1024-1024-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:35:"product-phone-1024-1024-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:35:"product-phone-1024-1024-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:35:"product-phone-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:35:"product-phone-1024-1024-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:35:"product-phone-1024-1024-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:35:"product-phone-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:35:"product-phone-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:35:"product-phone-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:35:"product-phone-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>product-stool-1024-1024</title>
<link>https://demo.seothemes.com/genesis-starter/product-stool-1024-1024/</link>
<pubDate>Sat, 29 Jul 2017 13:23:42 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-stool-1024-1024.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>899</wp:post_id>
<wp:post_date><![CDATA[2017-07-29 13:23:42]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-07-29 13:23:42]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[product-stool-1024-1024]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/product-stool-1024-1024.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2017/07/product-stool-1024-1024.jpg]]></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:1024;s:6:"height";i:1024;s:4:"file";s:35:"2017/07/product-stool-1024-1024.jpg";s:5:"sizes";a:13:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:35:"product-stool-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:35:"product-stool-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:36:"product-stool-1024-1024-1024x720.jpg";s:5:"width";i:1024;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:35:"product-stool-1024-1024-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:35:"product-stool-1024-1024-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:35:"product-stool-1024-1024-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:35:"product-stool-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:35:"product-stool-1024-1024-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:35:"product-stool-1024-1024-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:35:"product-stool-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:35:"product-stool-1024-1024-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:35:"product-stool-1024-1024-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:35:"product-stool-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>cropped-logo-1.png</title>
<link>https://demo.seothemes.com/genesis-starter/cropped-logo-1-png/</link>
<pubDate>Sun, 30 Jul 2017 07:14:56 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/cropped-logo-1.png</guid>
<description></description>
<content:encoded><![CDATA[https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/cropped-logo-1.png]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>975</wp:post_id>
<wp:post_date><![CDATA[2017-07-30 07:14:56]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-07-30 07:14:56]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[cropped-logo-1-png]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/cropped-logo-1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2017/07/cropped-logo-1.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:512;s:6:"height";i:512;s:4:"file";s:26:"2017/07/cropped-logo-1.png";s:5:"sizes";a:9:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"cropped-logo-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:26:"cropped-logo-1-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:26:"cropped-logo-1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:8:"featured";a:4:{s:4:"file";s:26:"cropped-logo-1-512x380.png";s:5:"width";i:512;s:6:"height";i:380;s:9:"mime-type";s:9:"image/png";}s:9:"portfolio";a:4:{s:4:"file";s:26:"cropped-logo-1-300x200.png";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:9:"image/png";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:26:"cropped-logo-1-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:9:"uncropped";b:1;}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:26:"cropped-logo-1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:12:"shop_catalog";a:4:{s:4:"file";s:26:"cropped-logo-1-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:26:"cropped-logo-1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;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>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_context]]></wp:meta_key>
<wp:meta_value><![CDATA[site-icon]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>april-in-paris</title>
<link>https://demo.seothemes.com/genesis-starter/april-in-paris/</link>
<pubDate>Wed, 07 Feb 2018 14:56:51 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/april-in-paris.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1377</wp:post_id>
<wp:post_date><![CDATA[2018-02-07 14:56:51]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2018-02-07 14:56:51]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[april-in-paris]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/april-in-paris.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2018/02/april-in-paris.jpg]]></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:1400;s:6:"height";i:800;s:4:"file";s:26:"2018/02/april-in-paris.jpg";s:5:"sizes";a:14:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:26:"april-in-paris-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:26:"april-in-paris-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:27:"april-in-paris-1280x720.jpg";s:5:"width";i:1280;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"april-in-paris-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"april-in-paris-300x171.jpg";s:5:"width";i:300;s:6:"height";i:171;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"april-in-paris-768x439.jpg";s:5:"width";i:768;s:6:"height";i:439;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"april-in-paris-1024x585.jpg";s:5:"width";i:1024;s:6:"height";i:585;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:26:"april-in-paris-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:26:"april-in-paris-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:26:"april-in-paris-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:26:"april-in-paris-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:26:"april-in-paris-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:26:"april-in-paris-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:26:"april-in-paris-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>november-rain</title>
<link>https://demo.seothemes.com/genesis-starter/november-rain-2/</link>
<pubDate>Wed, 07 Feb 2018 14:56:52 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/november-rain.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1378</wp:post_id>
<wp:post_date><![CDATA[2018-02-07 14:56:52]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2018-02-07 14:56:52]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[november-rain-2]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/november-rain.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2018/02/november-rain.jpg]]></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:1400;s:6:"height";i:800;s:4:"file";s:25:"2018/02/november-rain.jpg";s:5:"sizes";a:14:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:25:"november-rain-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:25:"november-rain-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:26:"november-rain-1280x720.jpg";s:5:"width";i:1280;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"november-rain-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"november-rain-300x171.jpg";s:5:"width";i:300;s:6:"height";i:171;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"november-rain-768x439.jpg";s:5:"width";i:768;s:6:"height";i:439;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"november-rain-1024x585.jpg";s:5:"width";i:1024;s:6:"height";i:585;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:25:"november-rain-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:25:"november-rain-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:25:"november-rain-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:25:"november-rain-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:25:"november-rain-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:25:"november-rain-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:25:"november-rain-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>ode-to-my-family</title>
<link>https://demo.seothemes.com/genesis-starter/ode-to-my-family-2/</link>
<pubDate>Wed, 07 Feb 2018 14:56:53 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/ode-to-my-family.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1379</wp:post_id>
<wp:post_date><![CDATA[2018-02-07 14:56:53]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2018-02-07 14:56:53]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[ode-to-my-family-2]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/ode-to-my-family.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2018/02/ode-to-my-family.jpg]]></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:1400;s:6:"height";i:800;s:4:"file";s:28:"2018/02/ode-to-my-family.jpg";s:5:"sizes";a:14:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:28:"ode-to-my-family-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:28:"ode-to-my-family-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:29:"ode-to-my-family-1280x720.jpg";s:5:"width";i:1280;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"ode-to-my-family-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:28:"ode-to-my-family-300x171.jpg";s:5:"width";i:300;s:6:"height";i:171;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"ode-to-my-family-768x439.jpg";s:5:"width";i:768;s:6:"height";i:439;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"ode-to-my-family-1024x585.jpg";s:5:"width";i:1024;s:6:"height";i:585;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:28:"ode-to-my-family-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:28:"ode-to-my-family-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:28:"ode-to-my-family-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:28:"ode-to-my-family-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:28:"ode-to-my-family-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:28:"ode-to-my-family-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:28:"ode-to-my-family-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>spirit-of-the-radio</title>
<link>https://demo.seothemes.com/genesis-starter/spirit-of-the-radio/</link>
<pubDate>Wed, 07 Feb 2018 14:56:55 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/spirit-of-the-radio.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1380</wp:post_id>
<wp:post_date><![CDATA[2018-02-07 14:56:55]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2018-02-07 14:56:55]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[spirit-of-the-radio]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/spirit-of-the-radio.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2018/02/spirit-of-the-radio.jpg]]></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:1400;s:6:"height";i:800;s:4:"file";s:31:"2018/02/spirit-of-the-radio.jpg";s:5:"sizes";a:14:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:31:"spirit-of-the-radio-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:31:"spirit-of-the-radio-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:32:"spirit-of-the-radio-1280x720.jpg";s:5:"width";i:1280;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"spirit-of-the-radio-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"spirit-of-the-radio-300x171.jpg";s:5:"width";i:300;s:6:"height";i:171;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"spirit-of-the-radio-768x439.jpg";s:5:"width";i:768;s:6:"height";i:439;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"spirit-of-the-radio-1024x585.jpg";s:5:"width";i:1024;s:6:"height";i:585;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:31:"spirit-of-the-radio-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:31:"spirit-of-the-radio-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:31:"spirit-of-the-radio-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:31:"spirit-of-the-radio-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:31:"spirit-of-the-radio-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:31:"spirit-of-the-radio-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:31:"spirit-of-the-radio-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>top-of-the-world</title>
<link>https://demo.seothemes.com/genesis-starter/top-of-the-world-2/</link>
<pubDate>Wed, 07 Feb 2018 14:56:56 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/top-of-the-world.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1381</wp:post_id>
<wp:post_date><![CDATA[2018-02-07 14:56:56]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2018-02-07 14:56:56]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[top-of-the-world-2]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/top-of-the-world.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2018/02/top-of-the-world.jpg]]></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:1400;s:6:"height";i:800;s:4:"file";s:28:"2018/02/top-of-the-world.jpg";s:5:"sizes";a:14:{s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:28:"top-of-the-world-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:28:"top-of-the-world-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:29:"top-of-the-world-1280x720.jpg";s:5:"width";i:1280;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:28:"top-of-the-world-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:28:"top-of-the-world-300x171.jpg";s:5:"width";i:300;s:6:"height";i:171;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"top-of-the-world-768x439.jpg";s:5:"width";i:768;s:6:"height";i:439;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"top-of-the-world-1024x585.jpg";s:5:"width";i:1024;s:6:"height";i:585;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:28:"top-of-the-world-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:28:"top-of-the-world-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:28:"top-of-the-world-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:28:"top-of-the-world-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:28:"top-of-the-world-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:28:"top-of-the-world-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:28:"top-of-the-world-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>uninvited</title>
<link>https://demo.seothemes.com/genesis-starter/uninvited-2/</link>
<pubDate>Wed, 07 Feb 2018 14:56:57 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/uninvited.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1382</wp:post_id>
<wp:post_date><![CDATA[2018-02-07 14:56:57]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2018-02-07 14:56:57]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[uninvited-2]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/uninvited.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2018/02/uninvited.jpg]]></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:1400;s:6:"height";i:800;s:4:"file";s:21:"2018/02/uninvited.jpg";s:5:"sizes";a:14:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:21:"uninvited-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:21:"uninvited-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:21:"uninvited-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:22:"uninvited-1280x720.jpg";s:5:"width";i:1280;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"uninvited-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"uninvited-300x171.jpg";s:5:"width";i:300;s:6:"height";i:171;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"uninvited-768x439.jpg";s:5:"width";i:768;s:6:"height";i:439;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"uninvited-1024x585.jpg";s:5:"width";i:1024;s:6:"height";i:585;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:21:"uninvited-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:21:"uninvited-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:21:"uninvited-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:21:"uninvited-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:21:"uninvited-655x374.jpg";s:5:"width";i:655;s:6:"height";i:374;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:21:"uninvited-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>genesis-sample-theme</title>
<link>https://demo.seothemes.com/genesis-starter/genesis-sample-theme/</link>
<pubDate>Fri, 09 Feb 2018 02:25:40 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/genesis-sample-theme.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1463</wp:post_id>
<wp:post_date><![CDATA[2018-02-09 02:25:40]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2018-02-09 02:25:40]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[genesis-sample-theme]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2018/02/genesis-sample-theme.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2018/02/genesis-sample-theme.jpg]]></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:1400;s:6:"height";i:1400;s:4:"file";s:32:"2018/02/genesis-sample-theme.jpg";s:5:"sizes";a:14:{s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:32:"genesis-sample-theme-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:32:"genesis-sample-theme-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:32:"genesis-sample-theme-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:4:"hero";a:4:{s:4:"file";s:33:"genesis-sample-theme-1280x720.jpg";s:5:"width";i:1280;s:6:"height";i:720;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:32:"genesis-sample-theme-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:32:"genesis-sample-theme-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:32:"genesis-sample-theme-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"genesis-sample-theme-1024x1024.jpg";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:13:"gts-thumbnail";a:4:{s:4:"file";s:32:"genesis-sample-theme-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:32:"genesis-sample-theme-620x380.jpg";s:5:"width";i:620;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:32:"genesis-sample-theme-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:5:{s:4:"file";s:32:"genesis-sample-theme-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:11:"shop_single";a:4:{s:4:"file";s:32:"genesis-sample-theme-655x655.jpg";s:5:"width";i:655;s:6:"height";i:655;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:32:"genesis-sample-theme-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>cropped-product-mug-1024-1024.jpg</title>
<link>https://demo.seothemes.com/genesis-starter/cropped-product-mug-1024-1024-jpg/</link>
<pubDate>Sat, 08 Sep 2018 05:09:49 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/cropped-product-mug-1024-1024.jpg</guid>
<description></description>
<content:encoded><![CDATA[https://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/cropped-product-mug-1024-1024.jpg]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1657</wp:post_id>
<wp:post_date><![CDATA[2018-09-08 05:09:49]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2018-09-08 05:09:49]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[cropped-product-mug-1024-1024-jpg]]></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://demo.seothemes.com/genesis-starter/wp-content/uploads/2017/07/cropped-product-mug-1024-1024.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2017/07/cropped-product-mug-1024-1024.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_context]]></wp:meta_key>
<wp:meta_value><![CDATA[custom-logo]]></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:1024;s:6:"height";i:342;s:4:"file";s:41:"2017/07/cropped-product-mug-1024-1024.jpg";s:5:"sizes";a:12:{s:9:"thumbnail";a:4:{s:4:"file";s:41:"cropped-product-mug-1024-1024-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:41:"cropped-product-mug-1024-1024-300x100.jpg";s:5:"width";i:300;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:41:"cropped-product-mug-1024-1024-768x257.jpg";s:5:"width";i:768;s:6:"height";i:257;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:42:"cropped-product-mug-1024-1024-1024x342.jpg";s:5:"width";i:1024;s:6:"height";i:342;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:41:"cropped-product-mug-1024-1024-620x342.jpg";s:5:"width";i:620;s:6:"height";i:342;s:9:"mime-type";s:10:"image/jpeg";}s:9:"portfolio";a:4:{s:4:"file";s:41:"cropped-product-mug-1024-1024-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:21:"woocommerce_thumbnail";a:5:{s:4:"file";s:41:"cropped-product-mug-1024-1024-500x342.jpg";s:5:"width";i:500;s:6:"height";i:342;s:9:"mime-type";s:10:"image/jpeg";s:9:"uncropped";b:1;}s:18:"woocommerce_single";a:4:{s:4:"file";s:41:"cropped-product-mug-1024-1024-655x219.jpg";s:5:"width";i:655;s:6:"height";i:219;s:9:"mime-type";s:10:"image/jpeg";}s:29:"woocommerce_gallery_thumbnail";a:4:{s:4:"file";s:41:"cropped-product-mug-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"shop_catalog";a:4:{s:4:"file";s:41:"cropped-product-mug-1024-1024-500x342.jpg";s:5:"width";i:500;s:6:"height";i:342;s:9:"mime-type";s:10:"image/jpeg";}s:11:"shop_single";a:4:{s:4:"file";s:41:"cropped-product-mug-1024-1024-655x219.jpg";s:5:"width";i:655;s:6:"height";i:219;s:9:"mime-type";s:10:"image/jpeg";}s:14:"shop_thumbnail";a:4:{s:4:"file";s:41:"cropped-product-mug-1024-1024-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>How does the Genesis Simple FAQ plugin work?</title>
<link>https://demo.seothemes.com/genesis-starter/gs_faq/faq-2/</link>
<pubDate>Sun, 19 Nov 2017 23:49:25 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/corporate-pro/?post_type=gs_faq&p=57</guid>
<description></description>
<content:encoded><![CDATA[Adding a FAQ is simple. All you need to do is create an FAQ through the WordPress dashboard, and display your FAQs on your site by way of a shortcode. <a href="https://my.studiopress.com/documentation/genesis-simple-faqs/">Click here</a> for more documentation and usage of the Genesis Simple FAQ plugin.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>57</wp:post_id>
<wp:post_date><![CDATA[2017-11-19 23:49:25]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-11-19 23:49:25]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[faq-2]]></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[gs_faq]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="gs_faq_categories" nicename="home"><![CDATA[Home]]></category>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
<wp:meta_value><![CDATA[who-is-the-developer-of-this-theme]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>What is the Genesis Simple FAQ plugin?</title>
<link>https://demo.seothemes.com/genesis-starter/gs_faq/faq-1/</link>
<pubDate>Sun, 17 Dec 2017 03:26:59 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/corporate-pro/?post_type=gs_faq&p=1351</guid>
<description></description>
<content:encoded><![CDATA[Genesis Simple FAQ is a plugin for the Genesis Framework to manage FAQ components via shortcodes.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1351</wp:post_id>
<wp:post_date><![CDATA[2017-12-17 03:26:59]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2017-12-17 03:26:59]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[faq-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[gs_faq]]></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>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
<wp:meta_value><![CDATA[how-do-i-create-faqs]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Sample</title>
<link>https://demo.seothemes.com/genesis-starter/sample/</link>
<pubDate>Wed, 06 Jun 2018 10:42:28 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">https://demo.seothemes.com/genesis-starter/sample/</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1469</wp:post_id>
<wp:post_date><![CDATA[2018-06-06 10:42:28]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2018-06-06 10:42:28]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>