删除 WordPress 模板中的评论编号标记

Gor*_*kic 1 html css php wordpress

我正在基于 Underscore 的启动主题构建一个主题。我已将自定义样式应用于他们的comments.php模板,并偶然发现了评论编号标记。如何从模板中删除它?

我什至无法检查这些数字。看一下截图:

截屏

小智 5

I had the same issue and used the following CSS to hide the numbers -

.comment-list{ list-style-type:none; }
Run Code Online (Sandbox Code Playgroud)