我正在使用基于名为Realia的Twig文件的wp模板。我正在使用buddypress,我想在帖子的作者个人资料中添加一个链接按钮。 我发现this page帮助了我很多,但我想找到作者姓名,我找到的是ID作者。有人可以帮帮我吗?
这是我的代码:
<a href="/members/{{post.post_author}}">Envoyer un message au propriétaire</a>
答案 0 :(得分:0)
我找到了办法!非常感谢您的回复! :)
{% 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>