Custom Post Type Archive Title Lowercase

It’s not the perfect solution, but it will do considering the amount I’ve spent on it so far. I couldn’t find the offending code, but I believe that this is something to do with the Thesis Core.

So instead, I wrote a filter to change the copy based on the post type:

function resource_archive_title() {
if (is_post_type_archive('resources')) { ?>
<h1>Resources, Help & Support</h1>
<?php }
}

add_filter('thesis_archive_title', 'resource_archive_title');

I’ll just add a few elseif statements for other post types.