This code has worked to display product attributes on a page.
How do I sort/order them by slug? They are currently sorted by name.
global $post;
$terms = get_the_terms( $post->ID, 'pa_size');
foreach ( $terms as $term ) {
echo "<li>" .$term->name. "</li>";
}
You will need to sort them yourself:
Or, if you feel adventurous, the same with a filter: