/ Published in: PHP
URL: https://forrst.com/posts/Gravatar_as_favicon_in_Wordpress-PTW
Saw this on forest and modified it to all be included in the functions.php instead of the actual template. Tumblr Style.
Expand |
Embed | Plain Text
// add gravatar favicon to site, 16x16 favicon.ico function snix_add_favicon() { $GetTheHash = md5(strtolower(trim('[email protected]'))); ?><link rel="shortcut icon" href="<?php echo 'http://www.gravatar.com/avatar/' . $GetTheHash . '?s=16;'; ?>" /><?php } add_action('wp_head', 'snix_add_favicon');
You need to login to post a comment.
