我正在寻找一种方法来显示被回复的用户名,而不是显示评论树。
现在它就像:
user1:嘿
user2:你好:)
用户3:什么是老兄?
我想显示如下评论:
user1: hey
user2: @user1 hello :)
user3: @user2 what's up dude?
我在bp-activity-template.php中找到了这个函数:
function bp_activity_parent_user_id() {
echo bp_get_activity_parent_user_id();
}
但我必须在comment.php文件中调用该函数,但它无效。 (既不是bp_activity_parent_user_id();也不是echo bp_get_activity_parent_user_id();)
<div class="reply-to">
<?php bp_activity_parent_user_id(); ?>
</div>
我有点被困在这里,任何帮助都会受到赞赏。