• Dear Support,

    I’m using your fantastic theme but I’m not able to remove “category: ” from page title: could you help me in solving this problem?

    Best,

    B.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Same problem here. I do want to display the title of the category, but I don’t want that title to be prefaced with “Category:” thank you.

    can you show your website link here. Cant figure out what happen. Thanks

    Theme Author CrestaProject

    (@crestaproject)

    Hi bendopoli,
    you can remove the “category” by adding this filter in the “functions.php” page (at the end of the page):

    add_filter( 'get_the_archive_title', function ($title) {
    	if ( is_category() ) {
    		$title = single_cat_title( '', false );
    	}
    	return $title;
    });

    This should work ??
    Best Regards,
    CrestaProject

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove Category: from page title’ is closed to new replies.