Just insert the following code to one of your WP templates:
<?php
$tag = get_the_tags();
if (! $tag)
{
echo "No tags";
}
else
{
the_tags('Tags: ', ', ', '');
}
?>
This prints “No tags” where ever you want it.
Just insert the following code to one of your WP templates:
<?php
$tag = get_the_tags();
if (! $tag)
{
echo "No tags";
}
else
{
the_tags('Tags: ', ', ', '');
}
?>
This prints “No tags” where ever you want it.