Posted by TikaL13 on August 11, 2011 at 9:33pm
Guys,
I need some help with this. I am looking to customize the way tags are being displayed on my site. Currently they look like such:
Tags: tag1tag2tag3
I would like for them to display like so:
Tag1 - Tag2 - Tag3
I have written a preprocess function in template.php but I am not seeing anything change. Is there something that I am not doing right?
In my template.php file:
function thebridge_process_taxonomy_term(&$variables) {
$variables['term'] .= '-';
}
Please any help would be much appreciated.
Categories: Content Taxonomy, preprocess, tags