I'm trying to remove the words "Category Archives:" from the top of my page, right above the part where it lists the posts in that category. Important to note that I still want the actual name of the category to appear, I just don't want those 2 words "Category Archives:" there.
Here is what I have tried. It does not throw an error, but it does not work:
function childtheme_override_categoryarchive($content) {
$content = '<h1 class="page-title">';
$content .= __('', 'thematic');
$content .= ' <span>';
$content .= single_cat_title('', FALSE);
$content .= '</span></h1>' . "\n";
$content .= '<div class="archive-meta">';
return apply_filters('thematic_categoryarchive',$content);
}
And so now you know that I'm so new at this I still have the pricetag attached to my toe...
Any help is welcome. Thanks.