forked from designwall/dw-question-answer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdwqa-dummy-data.xml
2935 lines (2928 loc) · 146 KB
/
dwqa-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/4.4.2" created="2016-02-17 09:27" -->
<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>DW Question & Answer</title>
<link>http://10.0.0.47/joom/dw-dummy-data</link>
<description>Just another WordPress site</description>
<pubDate>Wed, 17 Feb 2016 09:27:54 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>http://10.0.0.47/joom/dw-dummy-data</wp:base_site_url>
<wp:base_blog_url>http://10.0.0.47/joom/dw-dummy-data</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[[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:author><wp:author_id>2</wp:author_id><wp:author_login><![CDATA[Vernon Dahmer]]></wp:author_login><wp:author_email><![CDATA[[email protected]]]></wp:author_email><wp:author_display_name><![CDATA[Vernon Dahmer]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>3</wp:author_id><wp:author_login><![CDATA[Antawn Fiennes]]></wp:author_login><wp:author_email><![CDATA[[email protected]]]></wp:author_email><wp:author_display_name><![CDATA[Antawn Fiennes]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>4</wp:author_id><wp:author_login><![CDATA[Shan Judd]]></wp:author_login><wp:author_email><![CDATA[[email protected]]]></wp:author_email><wp:author_display_name><![CDATA[Shan Judd]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>5</wp:author_id><wp:author_login><![CDATA[Kiki Ralp]]></wp:author_login><wp:author_email><![CDATA[[email protected]]]></wp:author_email><wp:author_display_name><![CDATA[Kiki Ralp]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:category><wp:term_id>1</wp:term_id><wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name></wp:category>
<wp:term><wp:term_id><![CDATA[8]]></wp:term_id><wp:term_taxonomy><![CDATA[dwqa-question_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[dw-question-answer]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[DW Question & Answer]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[9]]></wp:term_id><wp:term_taxonomy><![CDATA[dwqa-question_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[dw-themes]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[DW Themes]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[7]]></wp:term_id><wp:term_taxonomy><![CDATA[dwqa-question_tag]]></wp:term_taxonomy><wp:term_slug><![CDATA[dwqa]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[DWQA]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[4]]></wp:term_id><wp:term_taxonomy><![CDATA[dwqa-question_category]]></wp:term_taxonomy><wp:term_slug><![CDATA[general]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[General]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[2]]></wp:term_id><wp:term_taxonomy><![CDATA[dwqa-question_category]]></wp:term_taxonomy><wp:term_slug><![CDATA[questions]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Questions]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[6]]></wp:term_id><wp:term_taxonomy><![CDATA[dwqa-question_category]]></wp:term_taxonomy><wp:term_slug><![CDATA[special]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Special]]></wp:term_name></wp:term>
<wp:term><wp:term_id><![CDATA[5]]></wp:term_id><wp:term_taxonomy><![CDATA[dwqa-question_category]]></wp:term_taxonomy><wp:term_slug><![CDATA[technical]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Technical]]></wp:term_name></wp:term>
<wp:term><wp:term_id>3</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[main-menu]]></wp:term_slug><wp:term_name><![CDATA[Main Menu]]></wp:term_name></wp:term>
<generator>https://wordpress.org/?v=4.4.2</generator>
<item>
<title>Answer for What is the differences between DWQA and Forum?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-what-is-the-differences-between-dwqa-and-forum</link>
<pubDate>Wed, 17 Feb 2016 03:19:20 +0000</pubDate>
<dc:creator><![CDATA[Vernon Dahmer]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-what-is-the-differences-between-dwqa-and-forum</guid>
<description></description>
<content:encoded><![CDATA[@ Antawn Fiennes, I think DWQA will focus on giving the best solutions for a specific customer.
For furum, it's a best place to share thoughts, experiences and knowledge as well. ]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>11</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 03:19:20]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 03:19:20]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-what-is-the-differences-between-dwqa-and-forum]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>10</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[10]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Answer for What is the differences between DWQA and Forum?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-what-is-the-differences-between-dwqa-and-forum-2</link>
<pubDate>Wed, 17 Feb 2016 03:19:58 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-what-is-the-differences-between-dwqa-and-forum-2</guid>
<description></description>
<content:encoded><![CDATA[<p>Hi,<br />Very cool question, my friend. It makes me a little bit confused :D<br />Ohm, at first glance, we will think that they are both the same in function. Both forum and Q&A are a place where people have the ability to ask questions about the product/service/problem they are interested and wait for responses.<br />Even if they look the same from the outside, they are very different on the inside.<br /><strong>Forum.</strong><br />An online forum is a discussion area. A topic of discussion is posted and people can respond, discuss, give their own ideas or evoke further conversations…Of course, you can get several answers but some of which will be nothing and the question ended inconclusively.<br /><strong>Q&A</strong><br />Although, the Q & A is similar to a “forum-style” of open, free for discussion like Quora or Stack Overflow but, on Q&A you will get specific answers that are 100% related to your question. It means that Q & A is very directed toward problem solving.<br />In addition, users can pick the best answer, which will then float to the top making it more easier for other users to find out.<br />Regarding the interaction and community, the Q & A isn’t as strong as forum.<br />I hope this answer is useful and have a nice day.</p>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>12</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 03:19:58]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 03:19:58]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-what-is-the-differences-between-dwqa-and-forum-2]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>10</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[10]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Answer for How to pin a sticky question to the top of the questions page?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page</link>
<pubDate>Wed, 17 Feb 2016 03:30:25 +0000</pubDate>
<dc:creator><![CDATA[Vernon Dahmer]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page</guid>
<description></description>
<content:encoded><![CDATA[You can pin a question by navigating to backend of that question.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>14</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 03:30:25]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 03:30:25]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>13</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[13]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[3]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes_log]]></wp:meta_key>
<wp:meta_value><![CDATA[s:14:"a:1:{i:3;i:1;}";]]></wp:meta_value>
</wp:postmeta>
<wp:comment>
<wp:comment_id>3</wp:comment_id>
<wp:comment_author><![CDATA[Antawn Fiennes]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 03:31:10]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 03:31:10]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[It's great, thanks :)]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>3</wp:comment_user_id>
</wp:comment>
<wp:comment>
<wp:comment_id>6</wp:comment_id>
<wp:comment_author><![CDATA[admin]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 03:40:39]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 03:40:39]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[Thanks @Vernon Dahmer.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>1</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title>Answer for How to pin a sticky question to the top of the questions page?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-2</link>
<pubDate>Wed, 17 Feb 2016 03:33:04 +0000</pubDate>
<dc:creator><![CDATA[Vernon Dahmer]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-2</guid>
<description></description>
<content:encoded><![CDATA[<p>It would be a good thing if DW Question & Answer adds the feature "pin a post" at the front-end for administrator.</p>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>15</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 03:33:04]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 03:33:04]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-2]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>13</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[2]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[13]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[3]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes_log]]></wp:meta_key>
<wp:meta_value><![CDATA[s:22:"a:2:{i:2;i:1;i:1;i:1;}";]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:comment>
<wp:comment_id>4</wp:comment_id>
<wp:comment_author><![CDATA[Antawn Fiennes]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 03:33:47]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 03:33:47]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[I don't have that option either..]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>3</wp:comment_user_id>
</wp:comment>
<wp:comment>
<wp:comment_id>7</wp:comment_id>
<wp:comment_author><![CDATA[Vernon Dahmer]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 03:42:37]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 03:42:37]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[I vote this cool idea, too!]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>2</wp:comment_user_id>
</wp:comment>
<wp:comment>
<wp:comment_id>12</wp:comment_id>
<wp:comment_author><![CDATA[admin]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 04:32:43]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 04:32:43]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[I will seriously consider this thought. ]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>1</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title>Answer for How to pin a sticky question to the top of the questions page?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-3</link>
<pubDate>Wed, 17 Feb 2016 03:35:20 +0000</pubDate>
<dc:creator><![CDATA[Vernon Dahmer]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-3</guid>
<description></description>
<content:encoded><![CDATA[Only group administrators have the option of pinning a question. The option is not available at the front-end.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>16</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 03:35:20]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 03:35:20]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-3]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>13</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[13]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Answer for How to pin a sticky question to the top of the questions page?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-4</link>
<pubDate>Wed, 17 Feb 2016 03:52:01 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-4</guid>
<description></description>
<content:encoded><![CDATA[Very easy to do it, just navigate to Dashboard >> Questions >> All Question, pick the question you want to pin, keep the option "Pin question to top of archive page" checked as follows:
<img src="http://i.imgur.com/nedRcjR.png" alt="" width="277" height="205" />]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>17</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 03:52:01]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 03:52:01]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-4]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>13</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[13]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[4]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes_log]]></wp:meta_key>
<wp:meta_value><![CDATA[s:14:"a:1:{i:2;i:1;}";]]></wp:meta_value>
</wp:postmeta>
<wp:comment>
<wp:comment_id>8</wp:comment_id>
<wp:comment_author><![CDATA[Shan Judd]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 03:53:44]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 03:53:44]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[That does not work. there is no way to pin to top. I can not find out it.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>4</wp:comment_user_id>
</wp:comment>
<wp:comment>
<wp:comment_id>9</wp:comment_id>
<wp:comment_author><![CDATA[admin]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 03:54:29]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 03:54:29]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[Please update the latest version of DWQA, this bug fixed.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>1</wp:comment_user_id>
</wp:comment>
<wp:comment>
<wp:comment_id>10</wp:comment_id>
<wp:comment_author><![CDATA[Shan Judd]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 03:55:11]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 03:55:11]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[Ya you are right. Thanks for your great help.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>4</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title>Answer for How to pin a sticky question to the top of the questions page?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-5</link>
<pubDate>Wed, 17 Feb 2016 04:21:50 +0000</pubDate>
<dc:creator><![CDATA[Shan Judd]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-5</guid>
<description></description>
<content:encoded><![CDATA[<p>DWQA will not allow 2 or more posts to be pinned at the same time ? I have a problem, please check with my account:<br />Username: Shan Judd<br /> Password: 1234567890</p>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>19</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 04:21:50]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 04:21:50]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-how-to-pin-a-sticky-question-to-the-top-of-the-questions-page-5]]></wp:post_name>
<wp:status><![CDATA[private]]></wp:status>
<wp:post_parent>13</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[13]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:comment>
<wp:comment_id>11</wp:comment_id>
<wp:comment_author><![CDATA[admin]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 04:23:31]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 04:23:31]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[I fixed, please check again.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>1</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title>Answer for How do I require a password if I forgot it?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-do-i-require-a-password-if-i-forgot-it</link>
<pubDate>Wed, 17 Feb 2016 04:37:58 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-do-i-require-a-password-if-i-forgot-it</guid>
<description></description>
<content:encoded><![CDATA[To get your password back:
<ol>
<li>Click on My Account in the top right of the page.</li>
<li>Click login</li>
<li>Click the link “Forgot password?”</li>
<li>Enter your email that you used to register before.</li>
</ol>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>22</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 04:37:58]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 04:37:58]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-how-do-i-require-a-password-if-i-forgot-it]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>20</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[20]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Answer for How do I require a password if I forgot it?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-do-i-require-a-password-if-i-forgot-it-2</link>
<pubDate>Wed, 17 Feb 2016 04:39:38 +0000</pubDate>
<dc:creator><![CDATA[Shan Judd]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-do-i-require-a-password-if-i-forgot-it-2</guid>
<description></description>
<content:encoded><![CDATA[It's helpful, thank you very much. :)]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>23</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 04:39:38]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 04:39:38]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-how-do-i-require-a-password-if-i-forgot-it-2]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>20</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[20]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Answer for WordPress site seems convinced that it’s still at its old URL</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-wordpress-site-seems-convinced-that-its-still-at-its-old-url</link>
<pubDate>Wed, 17 Feb 2016 04:42:43 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-wordpress-site-seems-convinced-that-its-still-at-its-old-url</guid>
<description></description>
<content:encoded><![CDATA[Please give more information about what you are facing. This will help us support better.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>25</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 04:42:43]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 04:42:43]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-wordpress-site-seems-convinced-that-its-still-at-its-old-url]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>24</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[24]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Answer for WordPress site seems convinced that it’s still at its old URL</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-wordpress-site-seems-convinced-that-its-still-at-its-old-url-2</link>
<pubDate>Wed, 17 Feb 2016 04:44:04 +0000</pubDate>
<dc:creator><![CDATA[Antawn Fiennes]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-wordpress-site-seems-convinced-that-its-still-at-its-old-url-2</guid>
<description></description>
<content:encoded><![CDATA[Never mind, I resolved it. Thanks for your support.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>26</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 04:44:04]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 04:44:04]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-wordpress-site-seems-convinced-that-its-still-at-its-old-url-2]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>24</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[24]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:comment>
<wp:comment_id>13</wp:comment_id>
<wp:comment_author><![CDATA[admin]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 04:45:33]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 04:45:33]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[Keep in mind that if you want any assistance from us, feel free to contact.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>1</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title>Answer for What is notifications in backend of DWQA?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-what-is-notifications-in-backend-of-dwqa</link>
<pubDate>Wed, 17 Feb 2016 04:50:50 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-what-is-notifications-in-backend-of-dwqa</guid>
<description></description>
<content:encoded><![CDATA[Notifications are updates about activities in DWQA such as new questions, new comments and new answers. You can turn off notifications by keep the option "enable notification" unchecked.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>29</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 04:50:50]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 04:50:50]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-what-is-notifications-in-backend-of-dwqa]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>28</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[28]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Answer for What is notifications in backend of DWQA?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-what-is-notifications-in-backend-of-dwqa-2</link>
<pubDate>Wed, 17 Feb 2016 04:51:14 +0000</pubDate>
<dc:creator><![CDATA[Shan Judd]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-what-is-notifications-in-backend-of-dwqa-2</guid>
<description></description>
<content:encoded><![CDATA[Ok, That's done. I love it]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>30</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 04:51:14]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 04:51:14]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-what-is-notifications-in-backend-of-dwqa-2]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>28</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[28]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Answer for How do I edit my notification settings?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-do-i-edit-my-notification-settings</link>
<pubDate>Wed, 17 Feb 2016 05:00:20 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-do-i-edit-my-notification-settings</guid>
<description></description>
<content:encoded><![CDATA[To edit your notification settings, go to Dashboard >> Questions >> Settings >> Notifications.
From here, you can select:
<ul>
<li>Email for new questions</li>
<li>Email for new answers</li>
<li>Email for new comments?</li>
</ul>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>32</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 05:00:20]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 05:00:20]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-how-do-i-edit-my-notification-settings]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>31</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[31]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes_log]]></wp:meta_key>
<wp:meta_value><![CDATA[s:14:"a:1:{i:5;i:1;}";]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[2]]></wp:meta_value>
</wp:postmeta>
<wp:comment>
<wp:comment_id>14</wp:comment_id>
<wp:comment_author><![CDATA[Vernon Dahmer]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 05:03:28]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 05:03:28]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[Thanks for your help.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>2</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title>Answer for Where do I edit my notification settings?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-where-do-i-edit-my-notification-settings</link>
<pubDate>Wed, 17 Feb 2016 05:02:45 +0000</pubDate>
<dc:creator><![CDATA[Kiki Ralp]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-where-do-i-edit-my-notification-settings</guid>
<description></description>
<content:encoded><![CDATA[As far as I know it will only Edit in backend. If you want to turn off this setting, just uncheck.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>33</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 05:02:45]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 05:02:45]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-where-do-i-edit-my-notification-settings]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>31</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[31]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes_log]]></wp:meta_key>
<wp:meta_value><![CDATA[s:14:"a:1:{i:2;i:1;}";]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[2]]></wp:meta_value>
</wp:postmeta>
<wp:comment>
<wp:comment_id>15</wp:comment_id>
<wp:comment_author><![CDATA[Vernon Dahmer]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 05:03:51]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 05:03:51]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[Alright, it works.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>2</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title>Answer for Where do I edit my notification settings?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-where-do-i-edit-my-notification-settings-2</link>
<pubDate>Wed, 17 Feb 2016 05:03:00 +0000</pubDate>
<dc:creator><![CDATA[Vernon Dahmer]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-where-do-i-edit-my-notification-settings-2</guid>
<description></description>
<content:encoded><![CDATA[Thank you. ]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>34</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 05:03:00]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 05:03:00]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-where-do-i-edit-my-notification-settings-2]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>31</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[31]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Answer for I'm not receiving email notifications.</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-im-not-receiving-email-notifications</link>
<pubDate>Wed, 17 Feb 2016 06:49:56 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-im-not-receiving-email-notifications</guid>
<description></description>
<content:encoded><![CDATA[We're working on sending fewer emails for people who use our DWQA often and primarily get notifications while logged in. If you want to select what email notifications you get:
<ol>
<li>Go to your backend >> Questions >> Settings >> Notifications.</li>
<li>Choose if you want to receive all notifications, important notifications or only notifications about your account</li>
</ol>
If you're still having issues with email notifications, try these troubleshooting tips:
<ul>
<li>
Make sure you setup the general settings.
</li>
<li>
Check your spam or junk email filter to make sure that emails coming from the site used DWQA aren't being placed in this folder.
</li>
<li>
If you're still not receiving emails, please contact your ISP (Internet Service Provider) to ensure that they aren't blocking email traffic.
</li>
<li>
If the issue continues, please let us know<a href="https://www.designwall.com/question/"> here.</a>
</li>
</ul>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>37</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 06:49:56]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 06:49:56]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-im-not-receiving-email-notifications]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>36</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[36]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Answer for When I search for someone, I can't find them.</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-when-i-search-for-someone-i-cant-find-them</link>
<pubDate>Wed, 17 Feb 2016 06:57:22 +0000</pubDate>
<dc:creator><![CDATA[Vernon Dahmer]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-when-i-search-for-someone-i-cant-find-them</guid>
<description></description>
<content:encoded><![CDATA[There are a few reasons you might not be able to find someone using search:
<ul>
<li>This plugin doesn’t support this feature :D</li>
<li>Your search isn’t specific enough.</li>
</ul>
Pls check a gain.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>40</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 06:57:22]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 06:57:22]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-when-i-search-for-someone-i-cant-find-them]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>38</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[38]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[4]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[5]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes_log]]></wp:meta_key>
<wp:meta_value><![CDATA[s:14:"a:1:{i:1;i:1;}";]]></wp:meta_value>
</wp:postmeta>
<wp:comment>
<wp:comment_id>17</wp:comment_id>
<wp:comment_author><![CDATA[Shan Judd]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 06:58:13]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 06:58:13]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[I don't think so. I checked carefully with many cases.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>4</wp:comment_user_id>
</wp:comment>
<wp:comment>
<wp:comment_id>18</wp:comment_id>
<wp:comment_author><![CDATA[Kiki Ralp]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 06:59:24]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 06:59:24]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[Deactivate all plugins and activate one-by-one to check the problem.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>5</wp:comment_user_id>
</wp:comment>
<wp:comment>
<wp:comment_id>19</wp:comment_id>
<wp:comment_author><![CDATA[Shan Judd]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 06:59:58]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 06:59:58]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[I deactivate all plugins, but nothing changes. ]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>4</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title>Answer for When I search for someone, I can't find them.</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-when-i-search-for-someone-i-cant-find-them-2</link>
<pubDate>Wed, 17 Feb 2016 07:01:58 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-when-i-search-for-someone-i-cant-find-them-2</guid>
<description></description>
<content:encoded><![CDATA[Thanks for letting us know this point. That's bug from our plugin. We will check and fix it as soon as possible.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>41</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 07:01:58]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 07:01:58]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-when-i-search-for-someone-i-cant-find-them-2]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>38</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[38]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Answer for How can I participate in a Q&A?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-can-i-participate-in-a-qa</link>
<pubDate>Wed, 17 Feb 2016 07:06:38 +0000</pubDate>
<dc:creator><![CDATA[Vernon Dahmer]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-answer=answer-for-how-can-i-participate-in-a-qa</guid>
<description></description>
<content:encoded><![CDATA[<p>To participate in a Q&A, write a question in the box in the Q&A and press the Submit button. Keep in mind that your question was asked before. So, search to have the results before dropping a question.</p>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>43</wp:post_id>
<wp:post_date><![CDATA[2016-02-17 07:06:38]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2016-02-17 07:06:38]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[answer-for-how-can-i-participate-in-a-qa]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>42</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[dwqa-answer]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_votes]]></wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_question]]></wp:meta_key>
<wp:meta_value><![CDATA[42]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_dwqa_followers]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:comment>
<wp:comment_id>20</wp:comment_id>
<wp:comment_author><![CDATA[admin]]></wp:comment_author>
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
<wp:comment_author_url></wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2016-02-17 07:08:01]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2016-02-17 07:08:01]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[That's right. @Antawn, pls follow the instruction above for writing a question.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[dwqa-comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>1</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title>What is the differences between DWQA and Forum?</title>
<link>http://10.0.0.47/joom/dw-dummy-data/?dwqa-question=what-is-the-differences-between-dwqa-and-forum</link>
<pubDate>Wed, 17 Feb 2016 03:14:05 +0000</pubDate>
<dc:creator><![CDATA[Antawn Fiennes]]></dc:creator>
<guid isPermaLink="false">http://10.0.0.47/joom/dw-dummy-data/?dwqa-question=what-is-the-differences-between-dwqa-and-forum</guid>