Set tag_id to first tag in multi tag queries. Have single_cat_title() fallback to single_tag_title() if is_tag so that existing category templates will work with tags. fixes #4506

git-svn-id: http://svn.automattic.com/wordpress/trunk@6074 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2007-09-11 18:06:52 +00:00
parent 9fbbf54462
commit 368b18d383
2 changed files with 31 additions and 4 deletions

View File

@@ -275,20 +275,26 @@ function single_cat_title($prefix = '', $display = true ) {
else
return strip_tags($my_cat_name);
}
} else if ( is_tag() ) {
return single_tag_title($prefix, $display);
}
}
function single_tag_title($prefix = '', $display = true ) {
if ( !is_tag() )
return;
$tag_id = intval( get_query_var('tag_id') );
if ( !empty($tag_id) ) {
$my_tag = &get_term($tag_id, 'post_tag');
$my_tag = &get_term($tag_id, 'post_tag', OBJECT, 'display');
$my_tag_name = apply_filters('single_tag_title', $my_tag->name);
if ( !empty($my_tag_name) ) {
if ( $display )
echo $prefix.strip_tags($my_tag_name);
echo $prefix . $my_tag_name;
else
return strip_tags($my_tag_name);
return $my_tag_name;
}
}
}