I have a template that sets the categories in alphabetical order. I would like to change this to an different order, but unfortunately do not know how. Can anyone help me? This is the code.
<?php foreach(get_categories('parent=0&taxonomy=dealers') as $category) { ?>
<div class="row">
<h2 class="divider"><?php echo $category->name; ?></h2>
<?php
$args = array('orderby' => 'slug', 'order' => 'ASC', 'tax_query' => array(array('taxonomy' => 'dealers', 'field' => 'id', 'terms' => $category->cat_ID)));
$loop = new WP_Query($args);
?>