Wordpress 上的 Twig - 获取作者 post 姓名

Twig on Wordpress - Get author post name

我使用的是基于 Twig 文件的 wp 模板,名为 Realia。我正在使用 buddypress,我想在 post 的作者个人资料中添加一个 link 按钮。 我发现 this page 谁帮了我很多,但我想找到作者姓名,我找到的是作者 ID。有人可以帮助我吗?

这是我的代码:

 <a href="/members/{{post.post_author}}">Envoyer un message au propriétaire</a>

我找到方法了!非常感谢您的回复! :)

    {% set id = post.post_author %}
    {% set author = wp.bp_core_get_username(id) %}
    <FORM ACTION="/members/{{author}}">
    <INPUT TYPE="SUBMIT" VALUE="Envoyer un message au propriétaire"></FORM>