我需要在评论框中实现滑块,以便所有回复都可以一张一张地滑动。当前显示的是一个接一个的堆积。
我在Google上对此进行了冲浪,但是没有找到解决方案。但是我的想法是,在comments.php中需要进行一些调整。
搜索comments.php后,我找到了一个部分。
<ol class="comment-list">
<?php
wp_list_comments(
array(
'walker' => new TwentyNineteen_Walker_Comment(),
'avatar_size' => twentynineteen_get_avatar_size(),
'short_ping' => true,
'style' => 'ol',
)
);
?>
</ol>
我应该在此部分添加一个滑块类吗?