• Resolved shreddyzzz

    (@shreddyzzz)


    Hi,

    please, how do I remove the “Archive Category” heading from the page title? Thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    Please add the code below to the file functions.php in the theme folder to remove the suffix category and tag

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

    Regards.

    Thread Starter shreddyzzz

    (@shreddyzzz)

    Thank you, url: https://ok-hypoteky.cz/hypoteky/ now looks great and fresh!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove Archive Category’ is closed to new replies.