我在 joomla 2.5 中创建了一个模块。在该模块中,我一次显示一篇文章,从 url 获取其 id,然后在数据库中查询该 id 并显示文章标题和内容。
我还想在文章内容下显示评论表单,以便用户可以向该文章添加评论。
我正在使用 Jcomments 模块。
在内容区域下方,我放置了以下代码来显示 jcomments 表单,但它没有显示。
<?php
$comments = 'components/com_jcomments/jcomments.php';
if (file_exists($comments)) {
require_once($comments);
?>
<center>
<div class="mtframe">
<?php echo JComments::showComments($article->id, 'mod_article_detail', $article->title);?>
</div>
</center>
那么如何将 jcomment 表单添加到我的自定义模块中呢?