Tag Cloud Tags
Posted: 23 November 2007 06:42 AM   [ Ignore ]
Newbie
Rank
Total Posts:  15
Joined  2007-07-27

I’m a newbie to the Tag Cloud Module and was wondering if its possible to capitalize the tags in the tag cloud.  I’ve never seen tag clouds capitalized before, but I have a client that wants them to be all capitalized.

Profile
 
 
Posted: 23 November 2007 07:15 AM   [ Ignore ]   [ # 1 ]
Administrator
Avatar
RankRankRankRank
Total Posts:  3716
Joined  2006-10-18

Yes, there is a way smile

Change your Cloud Tag to look something like this:

{exp:tag:cloud weblog="your_weblog" step="3" limit="40"}
<a href="{path='tags/tag'}{websafe_tag}" title="{tag_name}" style="font-size:{step}px;">
<?
// force the first letter of each WORD in a string to be capitalized
print(ucwords("{tag}"));
?>
</a>  
{/exp:tag:cloud}

You’ll have to have PHP enabled for that template smile

 Signature 

Check out the new Solspace Blog!

Profile
 
 
Posted: 23 November 2007 07:22 AM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  15
Joined  2007-07-27

Nice.  Thanks man!

Profile