Reputation: 1137
on my website I want to display all tags associated with a post. here is my code :
<?php
$posttags = get_the_tags();
if ($posttags): ?>
<?php foreach($posttags as $tag): ?>
<a href="<?php echo get_tag_link($tag); ?>" title="<?php echo $tag->name; ?> - Re Active"><?php echo $tag->name; ?></a>
<?php endforeach; endif; ?>
what I'm trying to do is to capitalize the title
<?php echo ucfirst($tag->name); ?>
but it's not working...
any idea of what I'm doing wrong ?
thanks
Upvotes: 0
Views: 225