can anyone help me with this?
I need to print the slug of my custom taxonomy, can this be done?
The following kind of works but it just shows the name, rather than the slug which i need for a class purpose..
<?php $terms = get_the_terms( $post->ID , 'area' ); foreach( $terms as $term ) {print $term->name; unset($term);}?>
Any way of just getting the slug for my custom taxonomy ‘area’ ??
Many thanks for any help 🙂
Here is an example return of $term:
If you don’t know what’s in
$term
or any other variable then print_r() and var_dump() are your friend.