If someone clicks on a taxonomy term they land on a page showing all the content tagged with that term. The title on those pages is simply the taxonomy term. I thought it would be more usable if I changed the verbiage of the title to let the user know what they are viewing. This code snippet shows how you can change the title for the taxonomy term landing pages:
<?php
function MYTHEME_preprocess_page(&$variables) {
if (arg(0)=='taxonomy' && arg(1)=='term') {
$variables['title'] = "Content tagged with: " . $variables['title'];
}
}
?>









