Last active
August 29, 2015 14:05
-
-
Save dipakcg/54f65b92e4daa59ca2fb to your computer and use it in GitHub Desktop.
WordPress - Use Gravatar image as WordPress favicon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add the following code in theme's functions.php file to use Gravatar image as favicon (16x16 favicon.ico) | |
function dcg_gravatar_favicon() { | |
// Replace email here | |
$GetEmailHash = md5(strtolower(trim('[email protected]'))); | |
?> | |
<link rel="shortcut icon" href="<?php echo 'http://www.gravatar.com/avatar/' . $GetEmailHash . '?s=16;'; ?>" type="image/x-icon" /> | |
<?php | |
} | |
add_action('wp_head', 'dcg_gravatar_favicon'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment