Description
Can be used to change the output contained within <title> and </title>.
Also takes a second argument, $separator.
Example
function my_tag_title($output) {
if (is_tag()) {
$current_tag = single_tag_title("", false);
$output = $current_tag;
}
return $output;
}
add_filter('thesis_title', 'my_tag_title');
History
- This filter was added in version 1.7.