2
I’m trying to order by a foreach by the order of the categories but it won’t!
<ul class="categories-legend">
<?php
$args = array(
'order' => 'DESC' //this is the default as well
);
$category = get_terms($args);
foreach($dashboard_categories as $category):
$color = carbon_get_term_meta($category->term_id, 'gp_category_color');
?>
<li class="categories-legend-item" style="color:<?php echo $color;?>"><span><?php echo $category->name; ?></span></li>
<?php endforeach; ?>
</ul>
How so you’re trying to make a
orderBy
of aforeach
?– Valdeir Psr
This foreach is not reversed?
– Darlei Fernando Zillmer
Verdade @Darleifernandozillmer.
– Valdeir Psr