is there a way without having a child-theme tag.php to have as heading not only :
Portfolio Entries:
but to have f.e.
Portfolio Entries of : "tag"
.
if i click a tag on tag-cloud – allways the identical heading of output site.
Thanks
(it is line 60 on tag.php – is there a functions.php method to change that line)
Hey Guenter!
You can try using following code
add_filter('avf_tag_label_names','new_tag_label');
function new_tag_label(){
if(is_tag()){
$currenttag = single_tag_title('',false);
$output = "<h3 class='post-title tag-page-post-type-title'>".$currenttag. "</h3>";
return $output;
}
}
Cheers!
Yigit
ah – thats fine – looks better!