How can I show only Tags at the bottom of the posts of all posts
thanks.
<?php
if(is_single()) :
$tag_list = get_the_tag_list( '', __( ', ', GKTPLNAME ) );
if($tag_list != ''): ?>
<div class="tags">
<p><?php _e('Tagged under:', GKTPLNAME); ?></p>
<?php echo $tag_list; ?>
</div>
<?php
endif;
endif;
?>