wordpress默认的头像是读取gravatar.com上的图片的,对于国内用户来说会使网页打开速度变慢。所以我决定删除掉这块功能。 修改get_avatar函数,在wp-includes/pluggable.PHP内。修改后的函数如下: <div class="msgborder" id="PHPcode33"> if ( !function_exists( 'get_avatar' ) ) : /* Retrieve the avatar for a user who provided a user ID or email address. @since 2.5 @param int|string|object $id_or_email A user ID,email address,or comment object @param int $size Size of the avatar image @param string $default URL to a default image to use if no avatar is available @param string $alt Alternate text to use in image tag. Defaults to blank @return string tag for the user's avatar / function get_avatar( $id_or_email,$size = '96',$default = '',$alt = false ) { if ( ! get_option('show_avatars') ) return false; if ( false === $alt) $safe_alt = ''; else $safe_alt = esc_attr( $alt ); if ( !is_numeric($size) ) $size = '96'; $default = includes_url('images/blank.gif'); $avatar = ""; return apply_filters('get_avatar',$avatar,$id_or_email,$size,$default,$alt); } endif;
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。