答案 0 :(得分:3)
你可以通过css隐藏评论文本的数量。
.comments-area .comments-title{
display: none;
}
或者您可以从comment.php
文件中删除代码。
<h2 class="comments-title">
<?php
printf( _nx( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'twentyfifteen' ),
number_format_i18n( get_comments_number() ), get_the_title() );
?>
</h2>
找到类似于它的行取决于您的主题开发人员标记他使用的。尝试找出h1
,h2
,h3
,h4
,h5
,h6
并将其删除。
如果找不到包含此标记的行。请输入您的comment.php
文件代码,以便我提供准确的解决方案。
由于