hello all,
I working on a wordpress theme, my problem is
TAGS are getting separated by commas. like
tagone, tagtwo, so on
Just like you see in every theme for categories and tags
But i want to remove it ( check how i stylize categories in my blog www.vivsin.com ) to style my tags differently.
I cant find a solution.
For categories i did this ( red text ):
<div class="filedcat">
Filed Under : <?php the_category(' [COLOR="Red"]I removed a comma from here[/COLOR] ') ?>
</div>
<div class="postdata">
<?php the_content(__('Read more'));?>
</div>
<div class="postmeta">
<p>Tags: <?php the_tags(' [COLOR="Red"]I dont have a comma here by default, what to do?[/COLOR] ') ?> </p>
</div>
Also how to assign a different class to “READ MORE” text???