Ahh ok. Thanks! I'll try that.
Also I'd like to know how I can style the name and label of the terms.
The arras theme that I mentioned before has this in it's code:
$postmeta .= '<div class="single-post-meta clearfix">';
$postmeta .= '<span class="single-post-meta-field single-post-meta-' . $term . '">' . $term_obj->labels->name . ':</span>';
$postmeta .= '<span class="single-post-meta-value single-post-meta-' . $term . '-value">' . $term_list . '</span>';
$postmeta .= '</div>';
the style for the taxonomies and terms are like so:
.single-post-meta-field { background: #313428; display: block; border: 1px solid #383332; padding: 5px 10px; color: #FFF; font-weight: 700; }
.single-post-meta-value { border: 1px solid #CCC; padding: 5px 10px; background: #F0F0F0; display: block; }
I'd like to have the same type of styling. Can you please tell me how I can make this happen?
Thank you!