How to remove author, category, and tag title prefixes from your WordPress theme.
Add the below code to your themes funtions.php file:
/**
* Remove archive prefix title
**/
add_filter( 'get_the_archive_title', function ($title) {
    if ( is_category() ) {
            $title = single_cat_title( '', false );
        } elseif ( is_tag() ) {
            $title = single_tag_title( '', false );
        } elseif ( is_author() ) {
            $title = '' . get_the_author() . '' ;
        }
    return $title;
});
You can also expand this code to include custom taxonomies and terms, etc.
 
    ![[WordPress] Remove author, category, and tag title prefixes 1 WordPress How to Remove the WSWIG Editor 1](https://warrengroom.com/wp-content/uploads/2018/04/WordPress-How-to-Remove-the-WSWIG-Editor-1-1024x576.png)