Logo

Remove "Category:" from blog page (Closed)

Iconique Social
·
Updated ·
3 replies
User Avatar
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.

https://prnt.sc/_RMckObTfxCq

Thanks!

User Avatar
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;

}
User Avatar
Iconique Social

It worked. Thank you!