如何附加到WordPress中的注释数组的末尾?

时间:2010-05-22 03:09:27

标签: wordpress plugins filter comments

我正在尝试在一个WordPress插件的注释数组的末尾包含一些内容。

我目前有add_filter('comments_array', 'my_function'),其中my_function($comments='')类似于:

my_function($comments='') {
  echo 'something';

  return $comments;
}

我显然无法先返回注释,并且回显它们不起作用,因为$comments是一个多维数组。有什么方法可以打印WordPress评论,然后向他们添加内容吗?

感谢。

1 个答案:

答案 0 :(得分:1)

您想添加看似评论的内容或在每个评论栏下添加任意html吗?

您可以在页面模板中添加要在评论栏下显示的内容吗?即,

<?php comments_template(); ?>

html or php here

<?php endwhile; else: ?>