Adding Html Title for Tag Pages

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;

}

Comments

blog comments powered by Disqus