如何在Html标题标签中获得指向作者和用户名的链接的用户头像图像?

时间:2018-06-07 作者:Diego

我想知道如何将头像图像与href to author页面混合在一起,以及当鼠标悬停在图像上时,如何在“html标题标签”中显示用户的姓名?

我知道我可以独自做到这一点,比如使用get\\u avatar\\u url,使用get\\u avatar和get\\u作者,如下所示:

echo get_avatar( get_the_author_meta( \'ID\' ), 32 ); 
$author = get_the_author(); echo $author;
我该怎么做?我不知道apply\\u过滤器在Wordpress中是如何工作的,我知道有$alts可以修改HTML,但我不知道如何操作(web上没有示例)。

顺便说一句:这将用于循环部分。

1 个回复
最合适的回答,由SO网友:Diego 整理而成

我的上帝:P

它就像html标签一样简单,我只是不知道要使用什么样的wordpress函数。

给你,供将来参考:

<a href="<?php echo get_author_posts_url( get_the_author_meta( \'ID\' ), get_the_author_meta( \'user_nicename\' ) ); ?>">
<img src="<?php echo get_avatar_url( get_the_author_meta( \'ID\' ) ); ?>" title="<?php echo get_the_author(); ?>">
</img></a>

结束