Expired
How can I remove the word Category from the page title when I link to a blog category directly?
https://www.thecapeartcompany.co.za/category/artist-bios/
It currently reads like this Category: Artist Bio’s instead of just Artist Bio’s
Hello,
Please go to file function.php and add thsee lines:
function codeless_get_the_archive_title( $title ) { if ( is_category() ) { $title = single_cat_title( '', false ); } return $title; } add_filter( 'get_the_archive_title', 'codeless_get_the_archive_title' );
Save changes and refresh categories page.
Best regards!
You must be logged in to reply to this topic.