This is done by modifying the function wp_title in general-template.php (add the below code).
if ( empty($title) ) {
$tag = get_query_var('tag'); // assume
if ( !empty($tag) )
$title = "Browse by ".$tag;
}
This is done by modifying the function wp_title in general-template.php (add the below code).
if ( empty($title) ) {
$tag = get_query_var('tag'); // assume
if ( !empty($tag) )
$title = "Browse by ".$tag;
}