Show Custom Taxonomy Slug(s)?

$term->slug

Here is an example return of $term:

 stdClass Object (
                  [term_id] => 31
                  [name] => Architectural Items / Salvage
                  [slug] => architectural-items-salvage
                  [term_group] => 0
                  [term_taxonomy_id] => 31
                  [taxonomy] => dcategory
                  Show Custom Taxonomy Slug(s)? =>
                  [parent] => 5
                  [count] => 10
                  [object_id] => 197
                 )

If you don’t know what’s in $term or any other variable then print_r() and var_dump() are your friend.