如何在bbpress中从论坛页面删除(0,0)

时间:2012-03-16 作者:Anon

我想从bbpress中的/论坛页面(论坛是“论坛基础”)中删除尾随(0,0)。该网站还使用buddypress和bbpress作为“群论坛”的一部分进行安装。

以下是/论坛页面目前的样子:

一般论坛

General (0, 0),
Methodology (0, 0),
Implementation (0, 0),
Tools (0, 0),
Training (0, 0),
New to Lean and Six Sigma (0, 0),
The Water Cooler (0, 0)

1 个回复
最合适的回答,由SO网友:Boone Gorges 整理而成

据我所知,这些都是由函数bbp_list_forums(), 在模板文件中调用bbpress/loop-single-forum.php. 您应该能够将该模板复制到主题中,并将调用更改为bbp_list_forums() 具体如下:

<?php bbp_list_forums( array( \'show_topic_count\' => false, \'show_reply_count\' => false ) ) ?>

有关详细信息,请参阅bbPress的内联文档bbp_list_forums() 此处:https://bbpress.trac.wordpress.org/browser/branches/plugin/bbp-includes/bbp-forum-template.php#L667

结束