我正在使用Wordpress创建一个Q&;一个网站。
问题由返回the_content.
如果我将答案存储为后元字段数组:
{
[1] => \'first answer\',
[2] => \'second answer\',
[3] => \'third answer\',
.....
}
如何为每个项目创建单独的注释(问题注释、第一个答案注释、第二个答案注释……)?Noramly,我用
<?php comments_template( \'\',
true ); ?>
创建相对于的注释
the_content
. 如果我重用它,它将为所有项目显示新的注释。
comments_template
没有根据其他列表识别评论列表的方法。