Description
Can be used to change the default archive intro headline output.
Example
function my_archive_intro_headline($output) {
if (is_category()) {
$prefix = 'From the ';
$suffix = ' Category';
$output = $prefix . $output . $suffix;
}
return $output;
}
add_filter('thesis_archive_intro_headline','my_archive_intro_headline');
History
- This filter was added in version 1.8.