Custom Taxonomy
-
Hi,
I want to set state as per alphabetically order.
state is my custom taxonomy name
I get the state from this code but i want display order by please any one help me.<?php $terms = get_the_terms( $post->ID , ‘state’ );
foreach ( $terms as $term )
{
echo $term->name;
}
?>
- The topic ‘Custom Taxonomy’ is closed to new replies.