Question

I have to sort my results by number:

<ul>
 <?php $productTerms = get_terms('prezzoceste', array('hide_empty' => 0, 'orderby' => 'ASC', 'meta_type' => 'NUMERIC', ));
foreach($productTerms as $productTerm) :
?>
<li>
<i class="fas fa-circle"></i>
<a href="<?php echo get_term_link( $productTerm->slug, $productTerm->taxonomy ); ?>"><?php echo $productTerm->name; ?> <span>(<?php echo $productTerm->count; ?>)</span></a>
</li>
<?php endforeach; ?>
</ul>

enter image description here

Was it helpful?

Solution

You are using pre 4.5.0 code which will eventually be depricated. Try this.

$productTerms = get_terms( array(
    'taxonomy' => 'prezzoceste',
    'hide_empty' => false,
    'orderby' => 'ASC',
    'meta_key' => '_price', //The price Meta Key
    'orderby' => 'meta_value_num',
) );

Check this for more accepted arguments.

Licensed under: CC-BY-SA with attribution
Not affiliated with wordpress.stackexchange
scroll top