Adding Html Title for Tag Pages
Posted by sky | Tags: Php, WordPress, tagging
This is done by modifying the function wp_title in general-template.php (add the below code).Previous Post Next Postif ( empty($title) ) { $tag = get_query_var('tag'); // assume if ( !empty($tag) ) $title = "Browse by ".$tag; }