BEFORE

AFTER

A common question I get about the Extra Theme is how can the word “Category” be removed from category page title.

This can be done using the following PHP code:

function remove_category_text_from_archive_title($title) {
    return is_category()?single_cat_title('', false):$title;
}
add_filter('get_the_archive_title', 'remove_category_text_from_archive_title'); 

This code can be added to the end of the functions.php file. Note that it is highly advisable to add it to the functions.php file of a child theme, rather than the Extra Theme itself, to avoid it being overwritten when Extra is updated.

Please also note that changes to PHP files can cause your site to break if done incorrectly. I suggest taking a site backup before attempting this change.