I can not understand how a support forum is this!!!
User writes 2 words and gets 6-7 answers in 4-5 minutes.
I wrote a good title, it’s easy and understandable good but no answer!!!
What must i do? Bad title? Absurd title? Buuu!! This is a very bad support forum!!
I found the solution (self-solution). I want to write here for the other users.
Go to wp-admin>admin-header.php and find this:
if ( is_network_admin() )
$admin_title = sprintf( __( 'Network Admin: %s' ), esc_html( get_current_site()->site_name ) );
elseif ( is_user_admin() )
$admin_title = sprintf( __( 'Global Dashboard: %s' ), esc_html( get_current_site()->site_name ) );
else
$admin_title = get_bloginfo( 'name' );
if ( $admin_title == $title )
$admin_title = sprintf( __( '%1$s — WordPress' ), $title );
else
$admin_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $title, $admin_title );
Delete ”WORDPRESS” texts and save it.