Wordpress:在组循环中生成连接组按钮

时间:2014-05-05 08:15:46

标签: php wordpress

所以这就是我所拥有的:

<ul id="popular">
      <?php while ( bp_groups() ) : bp_the_group(); ?>
<li <?php bp_group_class(); ?>>
       <div class="group-box">
    <div class="group-box-image-container">
        <a class="group-box-image" href="<?php bp_group_permalink() ?>"><?php bp_group_avatar( 'type=full' ) ?></a>
    </div>
    <div class="group-box-right">
        <div class="group-box-title"><a href="<?php bp_group_permalink() ?>"><?php $grouptitle = bp_get_group_name(); $getlength = strlen($grouptitle); $thelength = 20; echo mb_substr($grouptitle, 0, $thelength, 'UTF-8'); if ($getlength > $thelength) echo "..."; ?></a></div>
        <div class="group-box-details">
            <div class="gb-a">Active <?php echo bp_get_group_last_active(); ?></div>
            <div class="gb-m"><?php bp_group_member_count(); ?></div>
        </div>
    </div>
        </div><!--group-box ends-->
</li>
      <?php endwhile; ?>
</ul>

我需要的是:允许每个登录成员加入该组的链接。

我该怎么做?我还邀请了任何插件激活...

1 个答案:

答案 0 :(得分:0)

好的,我明白了: 在遗留主题的 groups-header.php 文件中,我找到了代码:

do_action( 'bp_group_header_actions' );

上面的代码完成了魔术。有趣的是wordpress会说出那些动作......不是很明显吗?

无论如何,现在它有效。对于需要它的人,现在你知道了:)