mmdwc
mmdwc

Reputation: 1137

echo ucfirst tag name

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

Answers (0)

Related Questions