Best Premium and Free WordPress Themes › Forums › AcmeBlog › Removing "Category:" from the title of category pages › Reply To: Removing "Category:" from the title of category pages
April 3, 2016 at 5:43 pm
#5100
acmethemes
Keymaster
Hello tenblog,
Please use the following filter hook in the child theme functions.php
add_filter( 'get_the_archive_title', function ($title) {
if ( is_category() ) {
$title = single_cat_title( '', false );
}
return $title;
});
Best Regards,
Acme Themes