您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
WordPress实现给Gravatar头像添加ALT属性
邬肖任2023-07-27 23:06:46WordPress教程已有人查阅
导读图片ALT属性不仅有利于搜索引擎索引图片,而且当图片无法加载的时候,会显示图片的ALT信息。WordPress文章插入图片时可以在“替代文本”中填写ALT信息
图片ALT属性不仅有利于搜索引擎索引图片,而且当图片无法加载的时候,会显示图片的ALT信息。WordPress文章插入图片时可以在“替代文本”中填写ALT信息,但评论中的大量Gravatar头像一般主题都没有ALT属性,其实WP以为我们预设了Gravatar头像ALT属性参数。
查看WP官网 Codex get avatar 默认的可选参数:
<?php echo get_avatar( $id_or_email, $size, $default, $alt, $args ); ?>
其中:$alt 就是 alt可选参数打开主题评论模板,找到类似这句:
<?php echo get_avatar( $comment, 64 ); ?>
替换为:
<?php echo get_avatar( $comment, 64, '', get_comment_author() ); ?>
将评论者名称作为ALT属性。如果你的主题调用评论模模块使用的函数是:
wp_list_comments();
暂时在官网上还没找到用该函数添加ALT属性的参数(貌似WordPress默认主题ALT也是空的),只能按下面的代码拆分这个函数,然后修改。
function mytheme_comment($comment, $args, $depth) {
if ( 'div' === $args['style'] ) {
$tag = 'div';
$add_below = 'comment';
} else {
$tag = 'li';
$add_below = 'div-comment';
}
?>
<<?php echo $tag ?> <?php comment_class( emptyempty( $args['has_children'] ) ? '' : 'parent' ) ?> id="comment-<?php comment_ID() ?>">
<?php if ( 'div' != $args['style'] ) : ?>
<div id="div-comment-<?php comment_ID() ?>" class="comment-body">
<?php endif; ?>
<div class="comment-author vcard">
<?php if ( $args['avatar_size'] != 0 ) echo get_avatar( $comment, $args['avatar_size'] ); ?>
<?php printf( __( '<cite class="fn">%s</cite> <span class="says">says:</span>' ), get_comment_author_link() ); ?>
</div>
<?php if ( $comment->comment_approved == '0' ) : ?>
<em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.' ); ?></em>
<br />
<?php endif; ?>
<div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ); ?>">
<?php
/* translators: 1: date, 2: time */
printf( __('%1$s at %2$s'), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)' ), ' ', '' );
?>
</div>
<?php comment_text(); ?>
<div class="reply">
<?php comment_reply_link( array_merge( $args, array( 'add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
</div>
<?php if ( 'div' != $args['style'] ) : ?>
</div>
<?php endif; ?>
<?php
}
如果你的主题添加修改了默认的头像调用方式,比如使用CN或者SSl方式调用,该方法将无效。
本文标签:
很赞哦! ()
相关文章
随机图文
-
wordpress怎么做网站
前提需要先购买域名和虚拟空间。接下来进入正题。(及 的五步安装法,官网有的。) -
wordpress怎么安装主题,wordpress主题安装方法
wordpress怎么安装主题,主题安装教程方法一首先实现登陆wordpress站点,点击外观-主题。然后点击添加,选择适合你的或者你喜欢的主题。 -
怎么判断WordPress网站是否被黑客攻击
WordPress网站被黑客攻击的5个迹象,现在很多站长都会选择美国主机通过WordPress建立站点,站点建立成功之后或多或少会被黑客攻击,WordPress网站被黑客攻击时 -
nginx中怎么优化wordpress
Nginx下WordPress运行缓慢的解决方法:wordpress运行缓慢优化的方法1. 减少插件的使用这是首要的一点。大部分人往往都没足够的代码知识,更不可能做到每个插件的代码化,故大部分
留言与评论 (共有 条评论) |