Aggiungendo questo snippet al file functions.php del vostro tema WordPress verrà mostrata l’immagine gravatar come favicon.

 
function gravatar_favicon() {
$GetTheHash = md5(strtolower(trim(get_bloginfo(‘admin_email’))));
return ‘http://www.gravatar.com/avatar/’ . $GetTheHash . ‘?s=16′;
}
function favicon() {
echo
;
}
add_action(‘wp_head’, ‘favicon’);
 

fonte: www.sastgroup.com ? Vai al post originale