您可以为注释列表编写自己的自定义HTML结构。在您的comments.php
文件,将调用wp_list_comments()
作用找到它,并将自己的函数作为其回调传递:
wp_list_comments( array( \'callback\' => \'my_function\' ) );
现在,创建一个回调函数并开始实现您自己的HTML结构。此函数接受3个参数。以下是一个基本示例:
my_function( $comment, $args, $depth ){
$GLOBALS[\'comment\'] = $comment;
// You have access to comment\'s ID and other
// comment query methods here, such as comment_ID();
}