您可以在wp\\u list\\u comments()函数上使用回调函数。
wp_list_comments();
通常,您会在注释中找到这一行。wordpress主题的php文件。这个命令的输出是一个非常简单的HTML结构。
Wordpress可以选择将回调函数作为参数传递给wp\\u list\\u comments函数。
这个回调函数应该返回修改后的HTML结构的comments部分,我们希望实现它。
<ul class="comment-list comments">
<?php
wp_list_comments( array(
\'style\' => \'ul\',
\'short_ping\' => true,
\'callback\' => \'better_comments\'
) );
?>
</ul><!-- .comment-list -->
您可以在此处查看详细的教程
https://www.5balloons.info/custom-html-for-comments-section-in-wordpress-theme/