Hey want to remove website title name from Post title name, So Paste simple code in your WordPress Theme and remove Website name from Post Title Name.
How to Remove Site Name from Post Title
>> Open Your active theme’s functions.php file, And Paste this code.
add_filter( 'document_title_parts', function( $title ) { unset( $title['site'] ); return $title; } );
>> Then SAVE functions.php file.
Hope this code in perfectly word on your WordPress Theme.
FAQ
How to remove blog title from post title?
Use given code in your WordPress theme.
Its secure for web hosting?
Yes! use this code in website theme without any worries.