My Problem is trying to pull the size attributes for the different products. So, for that i used this php code
<?php
$terms = get_terms('pa_size');
foreach ( $terms as $term ) {
echo "<li>" .$term->name. "</li>";
}
?>
The size attributes displaying for the above code should be in alphabetic order such as like L, M , S , XS instead of XS, S, L, M, XL, XXL. Help me out from these.