用百度站长工具的时候看到评论列表的头像没有alt属性,很疑惑。找到wp_list_comments相关函数调用的文件地方,的确是默认没有开启。

给wordpress评论头像添加alt属性-LMLPHP

方法一

若硬要有alt的话就得修改WordPress系统文件wp-include/comment-template.php。

notepad++打开,查找

<?php if ($args['avatar_size'] != 0) echo get_avatar( $comment, $args['avatar_size'] ); ?>

将其改为:

<?php if ($args['avatar_size'] != 0) echo get_avatar( $comment, $args['avatar_size'],"","$comment->comment_author"  ); ?>

之后评论者头像就有作者名的alt属性。

方法二

建议使用此办法,functions.php中的?>之前添加代码

function mytheme_get_avatar_alt($avatar) {
global $comment;
$avatar = str_replace("alt=''",'alt="'.$comment->comment_author.'"',$avatar);//添加alt信息
    return $avatar;
}
add_filter( 'get_avatar', 'mytheme_get_avatar_alt', 10, 3 );

参考:
http://moper.me/WordPress-comment-avatar-add-alt.html
http://cnzhx.net/blog/WordPress-avatar-hook

03-04 14:56