Removing “Category:” from Category Pages
-
Hey – trying to get rid of “Category:” from category page headers across the site.
Every answer I’ve found says to add this code to the functions.php file, but it doesn’t work.
Any ideas for how to remove this?
CODE:
function prefix_category_title( $title ) {
if ( is_category() ) {
$title = single_cat_title( ”, false );
}
return $title;
}
add_filter( ‘get_the_archive_title’, ‘prefix_category_title’ );The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Removing “Category:” from Category Pages’ is closed to new replies.