Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的 Buddypress 活动页面上的评论像 Facebook 一样。目前,默认显示评论。我想要它,如果评论没有显示在活动页面上,而是在读者点击阅读完整帖子时显示。
任何帮助都会非常感谢。
如果您使用的是 bp-default,那么您可以编辑bp-default/activity/entry.php以仅在完整的活动项目页面上显示评论——我相信这个页面被称为活动“永久链接”或“单个活动”页面。
bp-default/activity/entry.php
将注释输出包装在条件检查中,如下所示:
if ( bp_is_single_activity() ) { // comment output }