Tagged: tag archive
Hi!
This is working fine to remove “Category Archive for”
add_filter(‘avf_which_archive_output’,’avf_change_which_archive’, 10, 3);
function avf_change_which_archive($output)
{
if(is_category())
{
$output = __(”,’avia_framework’).’ ‘.single_cat_title(”,false);
}
return $output;
}
But how do I get this also to remove ” Tag Archive for” ?
Thanks for your help
Peter
UPDATE:
Sorry for asking. I was able to find the solution…
Cheers
Peter