Display or return the tag title for the current page
<?php single_tag_title(); ?>
Added to WordPress by Andy Lobban
Generate a HTML string of the tags associated with the current post
<?php
echo get_the_tag_list('<p>Tags: ',', ','</p>');
?>
Added to WordPress by Andy Lobban
Return an array of objects, one object for each tag assigned to the post
<?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ' ';
}
}
?>
Added to WordPress by Andy Lobban
Display a link to the tag or tags a post belongs to
<?php the_tags(); ?>
Added to WordPress by Andy Lobban
Outputs the trackback RDF information for a post
<?php trackback_rdf(); ?>
Added to WordPress by Andy Lobban