Pending
Hey @kindnessville
Thank you for contacting us.
You can add the favicon from your site’s customizer section for the login page.
Here is how you can add it.
if you have set up a favicon for your site from the customizer, it will also set the favicon for the Login page. [Helping Screenshot]
If you have not kindly set it up and it will resolve your problem.
If that doesn’t resolve your problem, Kindly place the following piece of code in your child theme’s functions.php file.
It will add this custom image of your choosing as the favicon of login page.
function add_site_favicon() {
printf('<link rel="icon" href="%s" />', 'Your Image Link Here');
}
add_action('login_head', 'add_site_favicon');
If you need any assistance do let us know. We would be happy to help you.
Have a nice day.