Modify the "Tagged as:" Text

This document is deprecated! The information on this page refers to a Thesis version that is now obsolete. Please visit the Thesis Docs for current documentation.

In the Design Options panel, under Display Options : Tagging, uncheck “Show tags on single entry pages” and “Show tags on index and archives pages”. Then, place this code in custom_functions.php:

/* Use my own tags */
function my_tags() {
    the_tags('<p class="post_tags"><strong>Tagged as: </strong>',' &bull; ','</p>');
}
add_action('thesis_hook_after_post', 'my_tags');

Replace Tagged as: with your own preferred description, and &bull; with your preferred tag separator.

If you only want tags to appear on individual pages, use this function instead:

/* Use my own tags */
function my_tags() {
  if (is_single()) {
    the_tags('<p class="post_tags"><strong>Tagged as: </strong>',' &bull; ','</p>');
    }
}
add_action('thesis_hook_after_post', 'my_tags');