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;
	}

Post a Comment

Your email is never shared. Required fields are marked *

*
*