And now kind of solution…
In the functions.php off your theme (child theme in my case), add this function:
function reorderRSS($query_string)
{
return query_posts( $query_string . ‘&orderby=date&order=DESC’ );
}
add_action( ‘rss2_head’, ‘reorderRSS’ );
Because I’m not a king in all this stuff, any comment or suggestion is welcome.
Oh dear, I have the same need!
Any idea someone?