Description
Can be used to change the default archive intro content output.
Note that this filter is only available if the Introductory Content field has been populated for a particular Category or Tag.
Example
function my_archive_intro_content($output) {
$prefix = '<p class="custom">';
$suffix = '</p>';
$output = $prefix . $output . $suffix;
return $output;
}
add_filter('thesis_archive_intro_content','my_archive_intro_content');
History
- This filter was added in version 1.8.