Changing the favicon for your Genesis child theme is easy. Simply replace the default favicon file at
wp-content/child-theme/images/favicon.ico
If you want to remove the favicon altogether, use this line of code in your functions.php
:
/** Remove favicon */ remove_action('genesis_meta', 'genesis_load_favicon');
Credit: Jennifer Baumann
Hey David!
I prefer to not delete the favicon file, as it’ll just get replaced next time the theme is updated…
But more importantly, I’d like to be able to specify my own favicon. 🙂
Is there a similar functions.php based approach for replacing the Genesis favicon with a favicon of your choice? 🙂
Thanks!
Dan
Hey Dan, you can always replace the `genesis_load_favicon` function with your own. So do something like (untested)
Thanks David!
Thanks! Finally got this working thanks to you!