WordPress Gravatar头像无法显示的解决方法

九 24 2011 Published by under WordPress

一年一度的“十一”快到了,Gravatar头像也开始抽抽了。

对于头像无法显示,可以这样解决:

找到wp-includes 文件夹里的 pluggable.php,找到以下代码:

1 if ( is_ssl() ) {
2                 $host = 'https://secure.gravatar.com';
3         } else {
4                 if ( !empty($email) )
5                         $host = sprintf( "http://%d.gravatar.com", ( hexdec( $email_hash{0} ) % 2 ) );
6                 else
7                         $host = 'http://0.gravatar.com';
8         }

用//注释掉,并在下方添加:

1 if ( is_ssl() )
2     $host = 'https://secure.gravatar.com';
3 else
4     $host = 'http://www.gravatar.com';

即可

本文链接地址: WordPress Gravatar头像无法显示的解决方法



Tags:

No responses yet

发表评论