
There is no need to vote for it, simple task for your developer.
Add Favicon to backend browser tabs. Makes it easy to develop websites when working on several simultaneously. I know it can be done manually easy, but so many steps when developing. It would be nice if your developers can generate this code too.
function add_login_favicon() {
$favicon_url = 'http://www.custom/wp-content/themes/custom/images/favicon.ico';
echo '<link rel="shortcut icon" href="' . $favicon_url . '" />';
}
add_action('login_head', 'add_login_favicon');
add_action('admin_head', 'add_login_favicon');
There is no need to vote for it, simple task for your developer.
Add Favicon to backend browser tabs. Makes it easy to develop websites when working on several simultaneously. I know it can be done manually easy, but so many steps when developing. It would be nice if your developers can generate this code too.
function add_login_favicon() {
$favicon_url = 'http://www.custom/wp-content/themes/custom/images/favicon.ico';
echo '<link rel="shortcut icon" href="' . $favicon_url . '" />';
}
add_action('login_head', 'add_login_favicon');
add_action('admin_head', 'add_login_favicon');