forked from woocommerce/woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dummy_data.xml
8792 lines (8785 loc) · 562 KB
/
dummy_data.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/3.4.2" created="2012-12-17 21:39" -->
<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>Superstore</title>
<link>http://demo2.woothemes.com/superstore</link>
<description>Just another WooThemes Demo site</description>
<pubDate>Mon, 17 Dec 2012 21:39:45 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>http://demo2.woothemes.com/</wp:base_site_url>
<wp:base_blog_url>http://demo2.woothemes.com/superstore</wp:base_blog_url>
<wp:author><wp:author_id>8</wp:author_id><wp:author_login>admin</wp:author_login><wp:author_email>[email protected]</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:category><wp:term_id>1</wp:term_id><wp:category_nicename>uncategorized</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name></wp:category>
<wp:term><wp:term_id>14</wp:term_id><wp:term_taxonomy>pa_capacity</wp:term_taxonomy><wp:term_slug>125ml</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[125ml]]></wp:term_name></wp:term>
<wp:term><wp:term_id>15</wp:term_id><wp:term_taxonomy>pa_capacity</wp:term_taxonomy><wp:term_slug>200ml</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[200ml]]></wp:term_name></wp:term>
<wp:term><wp:term_id>16</wp:term_id><wp:term_taxonomy>pa_capacity</wp:term_taxonomy><wp:term_slug>350ml</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[350ml]]></wp:term_name></wp:term>
<wp:term><wp:term_id>17</wp:term_id><wp:term_taxonomy>pa_color</wp:term_taxonomy><wp:term_slug>black</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Black]]></wp:term_name></wp:term>
<wp:term><wp:term_id>18</wp:term_id><wp:term_taxonomy>pa_color</wp:term_taxonomy><wp:term_slug>blue</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Blue]]></wp:term_name></wp:term>
<wp:term><wp:term_id>13</wp:term_id><wp:term_taxonomy>shop_order_status</wp:term_taxonomy><wp:term_slug>cancelled</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[cancelled]]></wp:term_name></wp:term>
<wp:term><wp:term_id>11</wp:term_id><wp:term_taxonomy>shop_order_status</wp:term_taxonomy><wp:term_slug>completed</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[completed]]></wp:term_name></wp:term>
<wp:term><wp:term_id>8</wp:term_id><wp:term_taxonomy>shop_order_status</wp:term_taxonomy><wp:term_slug>failed</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[failed]]></wp:term_name></wp:term>
<wp:term><wp:term_id>19</wp:term_id><wp:term_taxonomy>pa_color</wp:term_taxonomy><wp:term_slug>green</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Green]]></wp:term_name></wp:term>
<wp:term><wp:term_id>9</wp:term_id><wp:term_taxonomy>shop_order_status</wp:term_taxonomy><wp:term_slug>on-hold</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[on-hold]]></wp:term_name></wp:term>
<wp:term><wp:term_id>21</wp:term_id><wp:term_taxonomy>pa_color</wp:term_taxonomy><wp:term_slug>orange</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Orange]]></wp:term_name></wp:term>
<wp:term><wp:term_id>7</wp:term_id><wp:term_taxonomy>shop_order_status</wp:term_taxonomy><wp:term_slug>pending</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[pending]]></wp:term_name></wp:term>
<wp:term><wp:term_id>10</wp:term_id><wp:term_taxonomy>shop_order_status</wp:term_taxonomy><wp:term_slug>processing</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[processing]]></wp:term_name></wp:term>
<wp:term><wp:term_id>22</wp:term_id><wp:term_taxonomy>pa_color</wp:term_taxonomy><wp:term_slug>red</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Red]]></wp:term_name></wp:term>
<wp:term><wp:term_id>12</wp:term_id><wp:term_taxonomy>shop_order_status</wp:term_taxonomy><wp:term_slug>refunded</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[refunded]]></wp:term_name></wp:term>
<wp:term><wp:term_id>23</wp:term_id><wp:term_taxonomy>pa_color</wp:term_taxonomy><wp:term_slug>white</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[White]]></wp:term_name></wp:term>
<wp:term><wp:term_id>24</wp:term_id><wp:term_taxonomy>pa_color</wp:term_taxonomy><wp:term_slug>yellow</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Yellow]]></wp:term_name></wp:term>
<wp:term><wp:term_id>25</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>appliances</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Appliances]]></wp:term_name></wp:term>
<wp:term><wp:term_id>26</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>bakeware</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Bakeware]]></wp:term_name></wp:term>
<wp:term><wp:term_id>27</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>bar-wine</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Bar & Wine]]></wp:term_name></wp:term>
<wp:term><wp:term_id>30</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>coffee-tea</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Coffee & Tea]]></wp:term_name></wp:term>
<wp:term><wp:term_id>33</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>cookware</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Cookware]]></wp:term_name></wp:term>
<wp:term><wp:term_id>34</wp:term_id><wp:term_taxonomy>product_type</wp:term_taxonomy><wp:term_slug>downloadable</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[downloadable]]></wp:term_name></wp:term>
<wp:term><wp:term_id>36</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>food</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Food]]></wp:term_name></wp:term>
<wp:term><wp:term_id>20</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>kids-2</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Kids]]></wp:term_name></wp:term>
<wp:term><wp:term_id>40</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>knives</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Knives]]></wp:term_name></wp:term>
<wp:term><wp:term_id>43</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>outdoor</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Outdoor]]></wp:term_name></wp:term>
<wp:term><wp:term_id>49</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>tools</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Tools]]></wp:term_name></wp:term>
<wp:term><wp:term_id>50</wp:term_id><wp:term_taxonomy>product_type</wp:term_taxonomy><wp:term_slug>virtual</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[virtual]]></wp:term_name></wp:term>
<wp:term><wp:term_id>32</wp:term_id><wp:term_taxonomy>product_type</wp:term_taxonomy><wp:term_slug>configurable</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[configurable]]></wp:term_name></wp:term>
<wp:term><wp:term_id>6</wp:term_id><wp:term_taxonomy>product_type</wp:term_taxonomy><wp:term_slug>external</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[external]]></wp:term_name></wp:term>
<wp:term><wp:term_id>4</wp:term_id><wp:term_taxonomy>product_type</wp:term_taxonomy><wp:term_slug>grouped</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[grouped]]></wp:term_name></wp:term>
<wp:term><wp:term_id>3</wp:term_id><wp:term_taxonomy>product_type</wp:term_taxonomy><wp:term_slug>simple</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[simple]]></wp:term_name></wp:term>
<wp:term><wp:term_id>5</wp:term_id><wp:term_taxonomy>product_type</wp:term_taxonomy><wp:term_slug>variable</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[variable]]></wp:term_name></wp:term>
<wp:term><wp:term_id>28</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>blenders-juicers</wp:term_slug><wp:term_parent>appliances</wp:term_parent><wp:term_name><![CDATA[Blenders & Juicers]]></wp:term_name></wp:term>
<wp:term><wp:term_id>52</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>braais-ovens</wp:term_slug><wp:term_parent>outdoor</wp:term_parent><wp:term_name><![CDATA[Braais & Ovens]]></wp:term_name></wp:term>
<wp:term><wp:term_id>29</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>cake-decorating-tools-sets</wp:term_slug><wp:term_parent>bakeware</wp:term_parent><wp:term_name><![CDATA[Cake Decorating Tools & Sets]]></wp:term_name></wp:term>
<wp:term><wp:term_id>53</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>canning-preserving</wp:term_slug><wp:term_parent>tools</wp:term_parent><wp:term_name><![CDATA[Canning & Preserving]]></wp:term_name></wp:term>
<wp:term><wp:term_id>54</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>casseroles-cocottes</wp:term_slug><wp:term_parent>cookware</wp:term_parent><wp:term_name><![CDATA[Casseroles & Cocottes]]></wp:term_name></wp:term>
<wp:term><wp:term_id>31</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>coffee-plungers</wp:term_slug><wp:term_parent>coffee-tea</wp:term_parent><wp:term_name><![CDATA[Coffee Plungers]]></wp:term_name></wp:term>
<wp:term><wp:term_id>35</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>electric-kettles</wp:term_slug><wp:term_parent>appliances</wp:term_parent><wp:term_name><![CDATA[Electric Kettles]]></wp:term_name></wp:term>
<wp:term><wp:term_id>37</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>food-processors</wp:term_slug><wp:term_parent>appliances</wp:term_parent><wp:term_name><![CDATA[Food Processors]]></wp:term_name></wp:term>
<wp:term><wp:term_id>38</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>frying-pans-saute-pans</wp:term_slug><wp:term_parent>cookware</wp:term_parent><wp:term_name><![CDATA[Frying Pans & Saute Pans]]></wp:term_name></wp:term>
<wp:term><wp:term_id>39</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>kids-gadgets</wp:term_slug><wp:term_parent>kids-2</wp:term_parent><wp:term_name><![CDATA[Kids Gadgets]]></wp:term_name></wp:term>
<wp:term><wp:term_id>55</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>knife-sets</wp:term_slug><wp:term_parent>knives</wp:term_parent><wp:term_name><![CDATA[Knife Sets]]></wp:term_name></wp:term>
<wp:term><wp:term_id>41</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>manual-espresso-machines</wp:term_slug><wp:term_parent>coffee-tea</wp:term_parent><wp:term_name><![CDATA[Manual Espresso Machines]]></wp:term_name></wp:term>
<wp:term><wp:term_id>42</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>mixers-attachments</wp:term_slug><wp:term_parent>appliances</wp:term_parent><wp:term_name><![CDATA[Mixers & Attachments]]></wp:term_name></wp:term>
<wp:term><wp:term_id>44</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>speciality</wp:term_slug><wp:term_parent>appliances</wp:term_parent><wp:term_name><![CDATA[Speciality]]></wp:term_name></wp:term>
<wp:term><wp:term_id>45</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>spices-seasoning-rubs</wp:term_slug><wp:term_parent>food</wp:term_parent><wp:term_name><![CDATA[Spices, Seasoning & Rubs]]></wp:term_name></wp:term>
<wp:term><wp:term_id>46</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>stovetop-kettles</wp:term_slug><wp:term_parent>cookware</wp:term_parent><wp:term_name><![CDATA[Stovetop Kettles]]></wp:term_name></wp:term>
<wp:term><wp:term_id>47</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>teamakers</wp:term_slug><wp:term_parent>coffee-tea</wp:term_parent><wp:term_name><![CDATA[Teamakers]]></wp:term_name></wp:term>
<wp:term><wp:term_id>48</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>toasters</wp:term_slug><wp:term_parent>appliances</wp:term_parent><wp:term_name><![CDATA[Toasters]]></wp:term_name></wp:term>
<wp:term><wp:term_id>51</wp:term_id><wp:term_taxonomy>product_cat</wp:term_taxonomy><wp:term_slug>wine-tools-aerators</wp:term_slug><wp:term_parent>bar-wine</wp:term_parent><wp:term_name><![CDATA[Wine Tools & Aerators]]></wp:term_name></wp:term>
<generator>http://wordpress.org/?v=3.4.2</generator>
<item>
<title>Bodum Coffee Press-1</title>
<link>http://demo2.woothemes.com/superstore/shop/bodum-brazil-coffee-press-8-cup/bodum-coffee-press-1/</link>
<pubDate>Mon, 10 Dec 2012 16:25:15 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Bodum-Coffee-Press-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1338</wp:post_id>
<wp:post_date>2012-12-10 16:25:15</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:25:15</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>bodum-coffee-press-1</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1279</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Bodum-Coffee-Press-1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Bodum-Coffee-Press-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"434";s:6:"height";s:3:"434";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:32:"2012/12/Bodum-Coffee-Press-1.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-1-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-1-434x288.jpg";s:5:"width";s:3:"434";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-1-434x288.jpg";s:5:"width";s:3:"434";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:30:"Bodum-Coffee-Press-1-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Bodum Coffee Press-2</title>
<link>http://demo2.woothemes.com/superstore/shop/bodum-brazil-coffee-press-8-cup/bodum-coffee-press-2/</link>
<pubDate>Mon, 10 Dec 2012 16:25:34 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Bodum-Coffee-Press-2.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1339</wp:post_id>
<wp:post_date>2012-12-10 16:25:34</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:25:34</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>bodum-coffee-press-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1279</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Bodum-Coffee-Press-2.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Bodum-Coffee-Press-2.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"434";s:6:"height";s:3:"434";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:32:"2012/12/Bodum-Coffee-Press-2.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-2-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-2-434x288.jpg";s:5:"width";s:3:"434";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-2-434x288.jpg";s:5:"width";s:3:"434";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:30:"Bodum-Coffee-Press-2-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Bodum Coffee Press-3</title>
<link>http://demo2.woothemes.com/superstore/shop/bodum-brazil-coffee-press-8-cup/bodum-coffee-press-3/</link>
<pubDate>Mon, 10 Dec 2012 16:25:34 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Bodum-Coffee-Press-3.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1340</wp:post_id>
<wp:post_date>2012-12-10 16:25:34</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:25:34</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>bodum-coffee-press-3</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1279</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Bodum-Coffee-Press-3.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Bodum-Coffee-Press-3.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"434";s:6:"height";s:3:"434";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:32:"2012/12/Bodum-Coffee-Press-3.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-3-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-3-434x288.jpg";s:5:"width";s:3:"434";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-3-434x288.jpg";s:5:"width";s:3:"434";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:30:"Bodum-Coffee-Press-3-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Bodum Coffee Press-4</title>
<link>http://demo2.woothemes.com/superstore/shop/bodum-brazil-coffee-press-8-cup/bodum-coffee-press-4/</link>
<pubDate>Mon, 10 Dec 2012 16:25:35 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Bodum-Coffee-Press-4.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1341</wp:post_id>
<wp:post_date>2012-12-10 16:25:35</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:25:35</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>bodum-coffee-press-4</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1279</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Bodum-Coffee-Press-4.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Bodum-Coffee-Press-4.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"434";s:6:"height";s:3:"434";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:32:"2012/12/Bodum-Coffee-Press-4.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-4-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-4-434x288.jpg";s:5:"width";s:3:"434";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-4-434x288.jpg";s:5:"width";s:3:"434";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:30:"Bodum-Coffee-Press-4-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:32:"Bodum-Coffee-Press-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Dualit Food Processor-1</title>
<link>http://demo2.woothemes.com/superstore/shop/dualit-food-xl1500-processor/dualit-food-processor-1/</link>
<pubDate>Mon, 10 Dec 2012 16:29:10 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Dualit-Food-Processor-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1342</wp:post_id>
<wp:post_date>2012-12-10 16:29:10</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:29:10</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>dualit-food-processor-1</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1280</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Dualit-Food-Processor-1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Dualit-Food-Processor-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"296";s:6:"height";s:3:"492";s:14:"hwstring_small";s:22:"height='96' width='57'";s:4:"file";s:35:"2012/12/Dualit-Food-Processor-1.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-1-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-1-180x300.jpg";s:5:"width";s:3:"180";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-1-296x288.jpg";s:5:"width";s:3:"296";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-1-296x288.jpg";s:5:"width";s:3:"296";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-1-180x300.jpg";s:5:"width";s:3:"180";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:33:"Dualit-Food-Processor-1-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-1-296x300.jpg";s:5:"width";s:3:"296";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-1-296x300.jpg";s:5:"width";s:3:"296";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Dualit Food Processor-2</title>
<link>http://demo2.woothemes.com/superstore/shop/dualit-food-xl1500-processor/dualit-food-processor-2/</link>
<pubDate>Mon, 10 Dec 2012 16:29:25 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Dualit-Food-Processor-2.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1343</wp:post_id>
<wp:post_date>2012-12-10 16:29:25</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:29:25</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>dualit-food-processor-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1280</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Dualit-Food-Processor-2.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Dualit-Food-Processor-2.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"240";s:6:"height";s:3:"400";s:14:"hwstring_small";s:22:"height='96' width='57'";s:4:"file";s:35:"2012/12/Dualit-Food-Processor-2.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-2-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-2-180x300.png";s:5:"width";s:3:"180";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-2-240x288.png";s:5:"width";s:3:"240";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-2-240x288.png";s:5:"width";s:3:"240";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-2-180x300.png";s:5:"width";s:3:"180";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:33:"Dualit-Food-Processor-2-90x90.png";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-2-240x300.png";s:5:"width";s:3:"240";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:35:"Dualit-Food-Processor-2-240x300.png";s:5:"width";s:3:"240";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Eva Solo Teapot-1</title>
<link>http://demo2.woothemes.com/superstore/shop/eva-solo-my-teapot/eva-solo-teapot-1/</link>
<pubDate>Mon, 10 Dec 2012 16:34:13 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Eva-Solo-Teapot-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1344</wp:post_id>
<wp:post_date>2012-12-10 16:34:13</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:34:13</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>eva-solo-teapot-1</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1281</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Eva-Solo-Teapot-1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Eva-Solo-Teapot-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"391";s:6:"height";s:3:"530";s:14:"hwstring_small";s:22:"height='96' width='70'";s:4:"file";s:29:"2012/12/Eva-Solo-Teapot-1.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-1-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-1-221x300.jpg";s:5:"width";s:3:"221";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-1-391x288.jpg";s:5:"width";s:3:"391";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-1-391x288.jpg";s:5:"width";s:3:"391";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-1-221x300.jpg";s:5:"width";s:3:"221";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:27:"Eva-Solo-Teapot-1-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Eva Solo Teapot-2</title>
<link>http://demo2.woothemes.com/superstore/?attachment_id=1345</link>
<pubDate>Mon, 10 Dec 2012 16:34:31 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Eva-Solo-Teapot-2.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1345</wp:post_id>
<wp:post_date>2012-12-10 16:34:31</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:34:31</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>eva-solo-teapot-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1336</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Eva-Solo-Teapot-2.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Eva-Solo-Teapot-2.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"507";s:6:"height";s:3:"530";s:14:"hwstring_small";s:22:"height='96' width='91'";s:4:"file";s:29:"2012/12/Eva-Solo-Teapot-2.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-2-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-2-286x300.jpg";s:5:"width";s:3:"286";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-2-507x288.jpg";s:5:"width";s:3:"507";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-2-507x288.jpg";s:5:"width";s:3:"507";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-2-286x300.jpg";s:5:"width";s:3:"286";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:27:"Eva-Solo-Teapot-2-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:29:"Eva-Solo-Teapot-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Espresso Machine-4</title>
<link>http://demo2.woothemes.com/superstore/shop/kenwood-kmix-manual-espresso-machine/kenwood-espresso-machine-4/</link>
<pubDate>Mon, 10 Dec 2012 16:35:20 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Espresso-Machine-4.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1346</wp:post_id>
<wp:post_date>2012-12-10 16:35:20</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:35:20</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-espresso-machine-4</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1282</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Espresso-Machine-4.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Espresso-Machine-4.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:38:"2012/12/Kenwood-Espresso-Machine-4.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-4-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-4-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-4-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:36:"Kenwood-Espresso-Machine-4-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Espresso Machine-2</title>
<link>http://demo2.woothemes.com/superstore/?attachment_id=1347</link>
<pubDate>Mon, 10 Dec 2012 16:35:44 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Espresso-Machine-2.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1347</wp:post_id>
<wp:post_date>2012-12-10 16:35:44</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:35:44</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-espresso-machine-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1334</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Espresso-Machine-2.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Espresso-Machine-2.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:38:"2012/12/Kenwood-Espresso-Machine-2.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-2-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-2-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-2-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:36:"Kenwood-Espresso-Machine-2-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Espresso Machine-3</title>
<link>http://demo2.woothemes.com/superstore/?attachment_id=1348</link>
<pubDate>Mon, 10 Dec 2012 16:36:01 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Espresso-Machine-3.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1348</wp:post_id>
<wp:post_date>2012-12-10 16:36:01</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:36:01</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-espresso-machine-3</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1335</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Espresso-Machine-3.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Espresso-Machine-3.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:38:"2012/12/Kenwood-Espresso-Machine-3.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-3-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-3-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-3-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:36:"Kenwood-Espresso-Machine-3-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:38:"Kenwood-Espresso-Machine-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Toaster-6</title>
<link>http://demo2.woothemes.com/superstore/shop/kenwood-kmix-two-slice-toaster/kenwood-toaster-6/</link>
<pubDate>Mon, 10 Dec 2012 16:36:46 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-6.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1349</wp:post_id>
<wp:post_date>2012-12-10 16:36:46</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:36:46</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-toaster-6</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1283</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-6.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Toaster-6.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:29:"2012/12/Kenwood-Toaster-6.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-6-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"Kenwood-Toaster-6-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-6-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-6-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-6-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:27:"Kenwood-Toaster-6-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:29:"Kenwood-Toaster-6-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:29:"Kenwood-Toaster-6-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Toaster-1</title>
<link>http://demo2.woothemes.com/superstore/?attachment_id=1350</link>
<pubDate>Mon, 10 Dec 2012 16:36:58 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1350</wp:post_id>
<wp:post_date>2012-12-10 16:36:58</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:36:58</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-toaster-1</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1323</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Toaster-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:29:"2012/12/Kenwood-Toaster-1.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-1-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"Kenwood-Toaster-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-1-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-1-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:27:"Kenwood-Toaster-1-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:29:"Kenwood-Toaster-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:29:"Kenwood-Toaster-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Toaster-4</title>
<link>http://demo2.woothemes.com/superstore/?attachment_id=1351</link>
<pubDate>Mon, 10 Dec 2012 16:37:26 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-4.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1351</wp:post_id>
<wp:post_date>2012-12-10 16:37:26</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:37:26</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-toaster-4</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1331</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-4.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Toaster-4.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:29:"2012/12/Kenwood-Toaster-4.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-4-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"Kenwood-Toaster-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-4-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-4-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:27:"Kenwood-Toaster-4-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:29:"Kenwood-Toaster-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:29:"Kenwood-Toaster-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Toaster-2</title>
<link>http://demo2.woothemes.com/superstore/?attachment_id=1352</link>
<pubDate>Mon, 10 Dec 2012 16:37:38 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-2.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1352</wp:post_id>
<wp:post_date>2012-12-10 16:37:38</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:37:38</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-toaster-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1332</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-2.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Toaster-2.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:29:"2012/12/Kenwood-Toaster-2.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-2-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"Kenwood-Toaster-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-2-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-2-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:27:"Kenwood-Toaster-2-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:29:"Kenwood-Toaster-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:29:"Kenwood-Toaster-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Toaster-3</title>
<link>http://demo2.woothemes.com/superstore/?attachment_id=1353</link>
<pubDate>Mon, 10 Dec 2012 16:38:43 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-3.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1353</wp:post_id>
<wp:post_date>2012-12-10 16:38:43</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:38:43</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-toaster-3</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1333</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-3.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Toaster-3.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:29:"2012/12/Kenwood-Toaster-3.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-3-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"Kenwood-Toaster-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-3-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-3-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:27:"Kenwood-Toaster-3-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:29:"Kenwood-Toaster-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:29:"Kenwood-Toaster-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Toaster-5</title>
<link>http://demo2.woothemes.com/superstore/?attachment_id=1354</link>
<pubDate>Mon, 10 Dec 2012 16:38:57 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-5.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1354</wp:post_id>
<wp:post_date>2012-12-10 16:38:57</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:38:57</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-toaster-5</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1322</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-5.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Toaster-5.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:29:"2012/12/Kenwood-Toaster-5.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-5-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"Kenwood-Toaster-5-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:29:"Kenwood-Toaster-5-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-5-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:29:"Kenwood-Toaster-5-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:27:"Kenwood-Toaster-5-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:29:"Kenwood-Toaster-5-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:29:"Kenwood-Toaster-5-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Toaster-1</title>
<link>http://demo2.woothemes.com/superstore/shop/kenwood-kmix-two-slice-toaster/kenwood-toaster-1-2/</link>
<pubDate>Mon, 10 Dec 2012 16:39:38 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-11.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1355</wp:post_id>
<wp:post_date>2012-12-10 16:39:38</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:39:38</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-toaster-1-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1283</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-11.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Toaster-11.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:30:"2012/12/Kenwood-Toaster-11.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"Kenwood-Toaster-11-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"Kenwood-Toaster-11-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:30:"Kenwood-Toaster-11-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:30:"Kenwood-Toaster-11-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:30:"Kenwood-Toaster-11-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:28:"Kenwood-Toaster-11-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:30:"Kenwood-Toaster-11-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:30:"Kenwood-Toaster-11-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Toaster-2</title>
<link>http://demo2.woothemes.com/superstore/shop/kenwood-kmix-two-slice-toaster/kenwood-toaster-2-2/</link>
<pubDate>Mon, 10 Dec 2012 16:39:39 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-21.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1356</wp:post_id>
<wp:post_date>2012-12-10 16:39:39</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:39:39</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-toaster-2-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1283</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-21.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Toaster-21.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:30:"2012/12/Kenwood-Toaster-21.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"Kenwood-Toaster-21-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"Kenwood-Toaster-21-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:30:"Kenwood-Toaster-21-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:30:"Kenwood-Toaster-21-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:30:"Kenwood-Toaster-21-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:28:"Kenwood-Toaster-21-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:30:"Kenwood-Toaster-21-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:30:"Kenwood-Toaster-21-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Toaster-3</title>
<link>http://demo2.woothemes.com/superstore/shop/kenwood-kmix-two-slice-toaster/kenwood-toaster-3-2/</link>
<pubDate>Mon, 10 Dec 2012 16:39:40 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-31.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1357</wp:post_id>
<wp:post_date>2012-12-10 16:39:40</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:39:40</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-toaster-3-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1283</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-31.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Toaster-31.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:30:"2012/12/Kenwood-Toaster-31.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"Kenwood-Toaster-31-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"Kenwood-Toaster-31-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:30:"Kenwood-Toaster-31-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:30:"Kenwood-Toaster-31-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:30:"Kenwood-Toaster-31-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:28:"Kenwood-Toaster-31-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:30:"Kenwood-Toaster-31-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:30:"Kenwood-Toaster-31-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Toaster-4</title>
<link>http://demo2.woothemes.com/superstore/shop/kenwood-kmix-two-slice-toaster/kenwood-toaster-4-2/</link>
<pubDate>Mon, 10 Dec 2012 16:39:41 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-41.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1358</wp:post_id>
<wp:post_date>2012-12-10 16:39:41</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:39:41</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-toaster-4-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1283</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-41.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Toaster-41.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:30:"2012/12/Kenwood-Toaster-41.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"Kenwood-Toaster-41-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"Kenwood-Toaster-41-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:30:"Kenwood-Toaster-41-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:30:"Kenwood-Toaster-41-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:30:"Kenwood-Toaster-41-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:28:"Kenwood-Toaster-41-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:30:"Kenwood-Toaster-41-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:30:"Kenwood-Toaster-41-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kenwood Toaster-5</title>
<link>http://demo2.woothemes.com/superstore/shop/kenwood-kmix-two-slice-toaster/kenwood-toaster-5-2/</link>
<pubDate>Mon, 10 Dec 2012 16:39:42 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-51.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1359</wp:post_id>
<wp:post_date>2012-12-10 16:39:42</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:39:42</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kenwood-toaster-5-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1283</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kenwood-Toaster-51.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kenwood-Toaster-51.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"520";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:30:"2012/12/Kenwood-Toaster-51.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"Kenwood-Toaster-51-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"Kenwood-Toaster-51-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:30:"Kenwood-Toaster-51-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:30:"Kenwood-Toaster-51-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:30:"Kenwood-Toaster-51-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:28:"Kenwood-Toaster-51-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:30:"Kenwood-Toaster-51-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:30:"Kenwood-Toaster-51-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kitchen Craft Jar-1</title>
<link>http://demo2.woothemes.com/superstore/shop/kitchen-craft-home-made-glass-terrine-jars/kitchen-craft-jar-1/</link>
<pubDate>Mon, 10 Dec 2012 16:40:19 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kitchen-Craft-Jar-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1360</wp:post_id>
<wp:post_date>2012-12-10 16:40:19</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:40:19</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kitchen-craft-jar-1</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1284</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kitchen-Craft-Jar-1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kitchen-Craft-Jar-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"432";s:14:"hwstring_small";s:23:"height='96' width='115'";s:4:"file";s:31:"2012/12/Kitchen-Craft-Jar-1.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-1-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-1-300x249.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"249";}s:14:"post-thumbnail";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-1-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-1-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-1-361x300.jpg";s:5:"width";s:3:"361";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:29:"Kitchen-Craft-Jar-1-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-1-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kitchen Craft Jar-2</title>
<link>http://demo2.woothemes.com/superstore/shop/kitchen-craft-home-made-glass-terrine-jars/kitchen-craft-jar-2/</link>
<pubDate>Mon, 10 Dec 2012 16:40:31 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kitchen-Craft-Jar-2.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1361</wp:post_id>
<wp:post_date>2012-12-10 16:40:31</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:40:31</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kitchen-craft-jar-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1284</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kitchen-Craft-Jar-2.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kitchen-Craft-Jar-2.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"385";s:14:"hwstring_small";s:23:"height='94' width='128'";s:4:"file";s:31:"2012/12/Kitchen-Craft-Jar-2.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-2-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-2-300x222.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"222";}s:14:"post-thumbnail";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-2-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-2-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-2-405x300.jpg";s:5:"width";s:3:"405";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:29:"Kitchen-Craft-Jar-2-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-2-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kitchen Craft Jar-3</title>
<link>http://demo2.woothemes.com/superstore/shop/kitchen-craft-home-made-glass-terrine-jars/kitchen-craft-jar-3/</link>
<pubDate>Mon, 10 Dec 2012 16:40:32 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kitchen-Craft-Jar-3.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1362</wp:post_id>
<wp:post_date>2012-12-10 16:40:32</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:40:32</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kitchen-craft-jar-3</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1284</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kitchen-Craft-Jar-3.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kitchen-Craft-Jar-3.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"520";s:6:"height";s:3:"395";s:14:"hwstring_small";s:23:"height='96' width='126'";s:4:"file";s:31:"2012/12/Kitchen-Craft-Jar-3.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-3-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-3-300x227.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"227";}s:14:"post-thumbnail";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-3-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-3-520x288.jpg";s:5:"width";s:3:"520";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-3-394x300.jpg";s:5:"width";s:3:"394";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:29:"Kitchen-Craft-Jar-3-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-3-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_woocommerce_exclude_image</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kitchen Craft Jar-4</title>
<link>http://demo2.woothemes.com/superstore/shop/kitchen-craft-home-made-glass-terrine-jars/kitchen-craft-jar-4/</link>
<pubDate>Mon, 10 Dec 2012 16:40:33 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://demo2.woothemes.com/superstore/files/2012/12/Kitchen-Craft-Jar-4.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1363</wp:post_id>
<wp:post_date>2012-12-10 16:40:33</wp:post_date>
<wp:post_date_gmt>2012-12-10 16:40:33</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kitchen-craft-jar-4</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>1284</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://demo2.woothemes.com/superstore/files/2012/12/Kitchen-Craft-Jar-4.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/12/Kitchen-Craft-Jar-4.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"353";s:6:"height";s:3:"530";s:14:"hwstring_small";s:22:"height='96' width='63'";s:4:"file";s:31:"2012/12/Kitchen-Craft-Jar-4.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-4-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-4-199x300.jpg";s:5:"width";s:3:"199";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-4-353x288.jpg";s:5:"width";s:3:"353";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-4-353x288.jpg";s:5:"width";s:3:"353";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-4-199x300.jpg";s:5:"width";s:3:"199";s:6:"height";s:3:"300";}s:14:"shop_thumbnail";a:3:{s:4:"file";s:29:"Kitchen-Craft-Jar-4-90x90.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"90";}s:12:"shop_catalog";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:11:"shop_single";a:3:{s:4:"file";s:31:"Kitchen-Craft-Jar-4-300x300.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>