How can I change my wordpress title of my wp-admin?
I just want to edit the -- Wordpress from the title and change the symbol < that is used.
The following image explains what I'm talking about.
<a href=" " rel="nofollow noreferrer"><img src=" " alt="the image that explains"></a>
I tried this code:
But he only removes from the admin panel, not admin login.
Can someone help me?
I just want to edit the -- Wordpress from the title and change the symbol < that is used.
The following image explains what I'm talking about.
<a href=" " rel="nofollow noreferrer"><img src=" " alt="the image that explains"></a>
I tried this code:
Code:
function my_admin_title($admin_title, $title)
{
return get_bloginfo('name').' &bull; '.$title;
}
But he only removes from the admin panel, not admin login.
Can someone help me?