为Gravatar头像添加ALT属性

发布时间:2020-05-07

为Gravatar头像添加ALT属性

图片ALT属性不仅有利于搜索引擎索引图片,而且当图片无法加载的时候,会显示图片的ALT信息。wordpress文章插入图片时可以在“替代文本”中填写ALT信息,但评论中的大量Gravatar头像一般主题都没有ALT属性,其实WP以为我们预设了Gravatar头像ALT属性参数。

查看WP官网 Codex  get avatar  默认的可选参数:

  1. <?php echo get_avatar( $id_or_email$size$default$alt$args ); ?>

其中:$alt 就是 alt可选参数

打开主题评论模板,找到类似这句:

  1. <?php echo get_avatar( $comment, 64 ); ?>

替换为:

  1. <?php echo get_avatar( $comment, 64, , get_comment_author() ); ?>

将评论者名称作为ALT属性。

如果你的主题调用评论模模块使用的函数是:

  1. wp_list_comments();

暂时在官网上还没找到用该函数添加ALT属性的参数(貌似wordpress默认主题ALT也是空的),只能按下面的代码拆分这个函数,然后修改。

展开代码展开

  1. function mytheme_comment($comment$args$depth) {
  2.     if ( ‘div’ === $args[‘style’] ) {
  3.         $tag       = ‘div’;
  4.         $add_below = ‘comment’;
  5.     } else {
  6.         $tag       = ‘li’;
  7.         $add_below = ‘div-comment’;
  8.     }
  9.     ?>
  10.     <<?php echo $tag ?> <?php comment_class( emptyempty$args[‘has_children’] ) ?  : ‘parent’ ) ?> id=“comment-<?php comment_ID() ?>”>
  11.     <?php if ( ‘div’ != $args[‘style’] ) : ?>
  12.         <div id=“div-comment-<?php comment_ID() ?>” class=“comment-body”>
  13.     <?php endif; ?>
  14.     <div class=“comment-author vcard”>
  15.         <?php if ( $args[‘avatar_size’] != 0 ) echo get_avatar( $comment$args[‘avatar_size’] ); ?>
  16.         <?php printf( __( ‘<cite class=“fn”>%s</cite> <span class=“says”>says:</span>’ ), get_comment_author_link() ); ?>
  17.     </div>
  18.     <?php if ( $comment->comment_approved == ‘0’ ) : ?>
  19.          <em class=“comment-awaiting-moderation”><?php _e( ‘Your comment is awaiting moderation.’ ); ?></em>
  20.           <br />
  21.     <?php endif; ?>
  22.     <div class=“comment-meta commentmetadata”><a href=“<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ); ?>”>
  23.         <?php
  24.         /* translators: 1: date, 2: time */
  25.         printf( __(‘%1$s at %2$s‘), get_comment_date(),  get_comment_time() ); ?></a><?php edit_comment_link( __( ‘(Edit)’ ), ‘  ‘,  );
  26.         ?>
  27.     </div>
  28.     <?php comment_text(); ?>
  29.     <div class=“reply”>
  30.         <?php comment_reply_link( array_merge$argsarray( ‘add_below’ => $add_below, ‘depth’ => $depth, ‘max_depth’ => $args[‘max_depth’] ) ) ); ?>
  31.     </div>
  32.     <?php if ( ‘div’ != $args[‘style’] ) : ?>
  33.     </div>
  34.     <?php endif; ?>
  35.     <?php
  36.     }

如果你的主题添加修改了默认的头像调用方式,比如使用CN或者SSl方式调用,该方法将无效。

参考:

https://codex.wordpress.org/Function_Reference/wp_list_comments

https://codex.wordpress.org/Function_Reference/get_avatar

https://codex.wordpress.org/Plugin_API/Filter_Reference/get_avatar

为Gravatar头像添加ALT属性

图片ALT属性不仅有利于搜索引擎索引图片,而且当图片无法加载的时候,会显示图片的ALT信息。wordpress文章插入图片时可以在“替代文本”中填写ALT信息,但评论中的大量Gravatar头像一般主题都没有ALT属性,其实WP以为我们预设了Gravatar头像ALT属性参数。

查看WP官网 Codex  get avatar  默认的可选参数:

  1. <?php echo get_avatar( $id_or_email$size$default$alt$args ); ?>

其中:$alt 就是 alt可选参数

打开主题评论模板,找到类似这句:

  1. <?php echo get_avatar( $comment, 64 ); ?>

替换为:

  1. <?php echo get_avatar( $comment, 64, , get_comment_author() ); ?>

将评论者名称作为ALT属性。

如果你的主题调用评论模模块使用的函数是:

  1. wp_list_comments();

暂时在官网上还没找到用该函数添加ALT属性的参数(貌似wordpress默认主题ALT也是空的),只能按下面的代码拆分这个函数,然后修改。

展开代码展开

  1. function mytheme_comment($comment$args$depth) {
  2.     if ( ‘div’ === $args[‘style’] ) {
  3.         $tag       = ‘div’;
  4.         $add_below = ‘comment’;
  5.     } else {
  6.         $tag       = ‘li’;
  7.         $add_below = ‘div-comment’;
  8.     }
  9.     ?>
  10.     <<?php echo $tag ?> <?php comment_class( emptyempty$args[‘has_children’] ) ?  : ‘parent’ ) ?> id=“comment-<?php comment_ID() ?>”>
  11.     <?php if ( ‘div’ != $args[‘style’] ) : ?>
  12.         <div id=“div-comment-<?php comment_ID() ?>” class=“comment-body”>
  13.     <?php endif; ?>
  14.     <div class=“comment-author vcard”>
  15.         <?php if ( $args[‘avatar_size’] != 0 ) echo get_avatar( $comment$args[‘avatar_size’] ); ?>
  16.         <?php printf( __( ‘<cite class=“fn”>%s</cite> <span class=“says”>says:</span>’ ), get_comment_author_link() ); ?>
  17.     </div>
  18.     <?php if ( $comment->comment_approved == ‘0’ ) : ?>
  19.          <em class=“comment-awaiting-moderation”><?php _e( ‘Your comment is awaiting moderation.’ ); ?></em>
  20.           <br />
  21.     <?php endif; ?>
  22.     <div class=“comment-meta commentmetadata”><a href=“<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ); ?>”>
  23.         <?php
  24.         /* translators: 1: date, 2: time */
  25.         printf( __(‘%1$s at %2$s‘), get_comment_date(),  get_comment_time() ); ?></a><?php edit_comment_link( __( ‘(Edit)’ ), ‘  ‘,  );
  26.         ?>
  27.     </div>
  28.     <?php comment_text(); ?>
  29.     <div class=“reply”>
  30.         <?php comment_reply_link( array_merge$argsarray( ‘add_below’ => $add_below, ‘depth’ => $depth, ‘max_depth’ => $args[‘max_depth’] ) ) ); ?>
  31.     </div>
  32.     <?php if ( ‘div’ != $args[‘style’] ) : ?>
  33.     </div>
  34.     <?php endif; ?>
  35.     <?php
  36.     }
大熊wordpress凭借多年的wordpress企业主题制作经验,坚持以“为用户而生的wordpress主题”为宗旨,累计为2000多家客户提供品质wordpress建站服务,得到了客户的一致好评。我们一直用心对待每一个客户,我们坚信:“善待客户,将会成为终身客户”。大熊wordpress能坚持多年,是因为我们一直诚信。我们明码标价(wordpress做网站需要多少钱),从不忽悠任何客户,我们的报价宗旨:“拒绝暴利,只保留合理的利润”。如果您有网站建设、网站改版、网站维护等方面的需求,请立即咨询右侧在线客服或拨打咨询热线:18324743309,我们会详细为你一一解答你心中的疑难。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

相关文章

写给所有做网站的朋友的一封信

写给所有做网站的朋友的一封信

现在就开始执行“1+N”互联网推广和没有开始执行的人,一两天看不出任何区别; 一两个月看来差异也是微乎其微的;但在2-5年的长远时间来看的时候,你的高质量询盘不断增加,你的互联网资产已经建立完成,对手已经很难匹敌,现在你看到这段文字的时候就是最好的开始,现在就是最好的时候,马上开始“1+N”体系的整体互联网推广吧,我们和你一起,开创互联网大未来!

点击查看详情

准备开启WordPress网站建设推广?

我们相信高端漂亮的网站不应该是昂贵的,这就是wordpress对每个人都是免费的原因
wordpress建站免费入门,并提供价格合理的wordpress建站套餐。