我正在尝试为成员添加一种对文章发表评论的方式。从我收集到的信息来看,它应该像使用一样简单:
<?php echo $this->content()->renderWidget('modulename.widget-name') ?>
所以这是我的尝试:
<div>
<?php
echo("<h2>".$this->news['title']."</h2>");
print_r($this->news['news']);
echo $this->content()->renderWidget('core.comment')
?>
</div>
我似乎只<div>
在页面底部得到一个空标签。
有谁知道我做错了什么?
编辑:适用于'core.admin-dashboard'
但不适用'core.comment'
。为什么是这样?