WordPress remove ‘archive’ text from title – custom post type

add_filter( 'get_the_archive_title', function ( $title ) {

    if( is_category() || is_tag()  ) {

        $title = single_cat_title( '', false );

    } elseif ( is_post_type_archive( 'videos-cpt' ) ) {

    	$title = 'Videos';

    }

    return $title;

});
Με την περιήγηση σας στην ιστοσελίδα μας, αποδέχεστε τους όρους χρήσης