我是PHP新手并试图通过Wordpress学习。在我的主题的functions.php文件中,我想访问bbPress的插件template.php文件中可用的方法。我得到了"Unexpected token ['
内部bbPress插件template.php:
function bbp_topic_reply_count( $topic_id = 0, $integer = false ) {
echo bbp_get_topic_reply_count( $topic_id, $integer );
}
我正在当前主题的functions.php中访问此函数:
$count = bbp_topic_reply_count(125);
我是否必须在插件中包含任何内容(即bbpress / template.php)?访问这些模板方法的正确方法是什么?
感谢。
答案 0 :(得分:0)
我认为这个问题是因为" echo"我的functions.php中没有处理的语句
调用bbp_get_topic_reply_count()解决了我的问题。