Remove "Category:" from blog page (Closed)
Iconique Social
·Updated ·
3 replies
Iconique Social
Hello,
Is there a way to remove the "Category:" from the blog page tittle? I saw some guides on using the child theme to remove it, I don't think I have a child theme right now.
Thanks!
Malik Ihtasham
STAFF
Hello,
You can install Code Snippets and add the below PHP code.
add_filter( 'get_the_archive_title_prefix', 'modify_archive_title', 10, 1 );
function modify_archive_title( $title ) {
if($title == 'Category:') {
return;
}
return $title;
}
Iconique Social
It worked. Thank you!