Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
506 views
in Q2A Core by

If you want to have your rss feeds sorted in the way qa does it, then you have to add the following line to qa-feed.php:

        $lines=array();

        $lines[]='<?xml version="1.0" encoding="UTF-8"?>';
        $lines[]='<rss version="2.0">';
!       $lines[]='<cf:treatAs xmlns:cf="http://www.microsoft.com/schemas/rss/core/2005">list</cf:treatAs>';
        $lines[]='<channel>';

If you dont do it your feeds will be sorted by IE in a reverse chronical order.

 

Oliver

 

1 Answer

+1 vote
by
Don't you want it sorted reverse chronological order? Newest first is the best order, surely?
...