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>
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
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.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0
