网上搜刮的方法,借助多说的缓存服务器吧。
修改你的模板的functions.php
文件
在最底部加入:
1 2 3 4 5 |
function get_avatar_deadwood( $avatar ) { $avatar = preg_replace( "/http:\/\/(www|\d).gravatar.com/","http://gravatar.duoshuo.com",$avatar ); return $avatar; } add_filter( 'get_avatar', 'get_avatar_deadwood' ); |
这是最简单粗暴的方法。
还有些更高级的自己百度吧。