从这个reference 您将获得以下信息:
Function and Method Cross Reference
bb_profile_data()
Defined at:
/bb-includes/functions.bb-template.php -> line 2405
Referenced 1 times:
/bb-templates/kakumei/profile.php -> line 30
所以你应该检查你的个人资料模板。
如果您有ssh访问站点的权限,请尝试
# grep "bb_profile_data" -R /the/path/to/your/site/
在shell命令行中,搜索
bb_profile_data
字符串中的所有文件
/the/path/to/your/site/
目录
更新:在bbPress 2.3.2中,您似乎有:
<p class="bbp-user-forum-role"><?php printf( __( \'Forum Role: %s\', \'bbpress\' ), bbp_get_user_display_role() ); ?></p>
<p class="bbp-user-topic-count"><?php printf( __( \'Topics Started: %s\', \'bbpress\' ), bbp_get_user_topic_count_raw() ); ?></p>
<p class="bbp-user-reply-count"><?php printf( __( \'Replies Created: %s\', \'bbpress\' ), bbp_get_user_reply_count_raw() ); ?></p>
在文件中
/plugins/bbpress/templates/default/bbpress/user-profile.php
显示主题和回复计数。您可以查看源
here.