1

我目前正在制作一个 Wordpress 主题,一切顺利。

它反应灵敏,但我似乎对评论部分的头像有问题。我想要做的是将头像包装在一个单独的 div 中,以指定宽度并利用 img { max-width: 100%; } 。目前它在 DOM 中有兄弟姐妹,所以我不能在它的当前父级上这样做。有人会假设我需要在 functions.php 中使用自定义函数,然后在 wp_list_comments 中使用回调参数?

电流输出:

    <div class="comment-author vcard">
       <img alt="" src="img_url" class="avatar avatar-74 photo">
       <cite class="fn">James</cite>
       <span class="says">says:</span>
</div>

谢谢。

4

1 回答 1

1

过滤器get_avatar会做。请注意,此功能也是可插入的,这意味着您可以根据需要用自己的功能覆盖它。

add_filter( 'get_avatar', 'b5f_get_avatar', 10, 5 );

function b5f_get_avatar( $avatar, $id_or_email, $size, $default, $alt )
{
    $avatar = '<div class="img-max-width">' . $avatar . '</div>';
    return $avatar;
}

以下是每个参数中收到的值:

/**
 * [avatar] => <img alt='' src='http://0.gravatar.com/avatar/ETCETERA/....' class='avatar avatar-64 photo' height='64' width='64' />
 * [id_or_email] => 1
 * [size] => 64
 * [default] => http://0.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=64
 * [alt] => 
*/
于 2013-09-21T13:40:17.900 回答