How to display taxonomy order child, parent

You can add following code in functions.php file of child theme or custom plugin

add_filter( "term_links-local", 'reverse_order' );
function reverse_order($links)
{
    $new = array_reverse($links);
    return $new;
}