I'm using a custom taxonomy for my posts which I print like this:
the_terms(get_the_ID(), 'sizes', '<p>', ', ', '</p>');
This works fine but it prints the terms in the order they were added, is there a way to make it print alphabeticaly? the_terms function doesn't let me pass any order parameter so I guess I have to use a different one but I haven't found any yet.
Thanks in advance.