之前头像一直可以显示,但是进来发现头像不显示了,掐指一算,估计G-fw把头像服务器也搞定了,果不其然,在墙头上俨然可以,于是只能另寻他路了,其实去掉x.gravatar.com 前面的X可以显示,于是修改一下代码把,
在 wp-includes 目录下的pluggable.php 文件,修改
大约在1700行附近的
if ( is_ssl() ) {
$host = 'https://secure.gravatar.com';
} else {
if ( !empty($email) )
$host = sprintf( "http://%d.gravatar.com", ( hexdec( $email_hash[0] ) % 2 ) );
else
$host = 'http://0.gravatar.com';
}
修改为
if ( !empty($email) )
$email_hash = md5( strtolower( $email ) );
if ( is_ssl() ) {
$host = 'https://secure.gravatar.com';
} else {
if ( !empty($email) )
$host = 'http://gravatar.com';
}
大家可以去试试把。