WordPress – “tag page” additional, custom content

You can add a tag description by editing the tag in your WordPress admin (Posts > Post Tags), then use the following code to display the description in your template file:

$tag = $wp_query->get_queried_object();
echo $tag->description;

tech