BBpress:自定义“ bp_activity_action()”输出

时间:2018-08-02 21:38:04

标签: wordpress bbpress

默认情况下,bp_activity_action()在活动流页面上输出如下内容:

▼HTML

<div class="activity-header">
<p>
<a href="http://example.com/member/mariechan/" rel="nofollow">mariechan</a>
さんがフォーラム「<a href="http://example.com/forums/topic/fluits/">果物について語ろう</a>」の
「<a href="http://example.com/forums/forum/apple/">りんご</a>」というトピックに返信しました。
<a href="http://example.com/forums/topic/apple/#post-228" class="view activity-time-since bp-tooltip" data-bp-tooltip="ディスカッションを表示">
<span class="time-since">1日前</span></a>
</p>
</div>

我要做的就是将输出修改为:

▼HTML

<div class="activity-header">
<p>
<a href="http://example.com/member/mariechan/activity" rel="nofollow">mariechan</a>
さんが「<a href="http://example.com/forums/topic/fluits/">果物について語ろう</a>」というトピックに返信しました。
<a href="http://example.com/forums/topic/apple/#post-228" class="view activity-time-since bp-tooltip" data-bp-tooltip="ディスカッションを表示">
<span class="time-since">1日前</span></a>
</p>
</div>

我该怎么办?

※※※

当前我的代码如下:

▼buddypress \ bp-activity \ bp-activity-template.php

function bp_activity_action( $args = array() ) {
    echo bp_get_activity_action( $args );
}

▼buddypress \ bp-模板\ bp-nouveau \ buddypress \ activity \ entry.php

<div class="activity-header">
<?php bp_activity_action(); ?>
</div>

我已经查看了文档,但找不到解决方案。在论坛上,我找到了一些有关使用过滤器的建议,但不熟悉过滤器的使用,因此无法正常使用。

0 个答案:

没有答案