尝试使用wp\\u list\\u comments功能:
http://codex.wordpress.org/Function_Reference/wp_list_comments
它允许您控制每条评论的内容,以及回复。然后,定义一个回调函数,当Wordpress创建每个注释时将调用该函数。
您的回调需要这样开始:
function commnents_callback($comment, $args, $depth) {
$GLOBALS[\'comment\'] = $comment;
global $post;
// your HTML + PHP comment creation code here
}
然后,可以使用以下代码创建注释:
<?php if( $comments ): ?>
<ul>
<?php wp_list_comments(\'type=comment&callback=commnents_callback\'); ?>
</ul>
<?php endif; ?>
使用它,您可以控制每个注释的创建。