如何隐藏Wordpress网站中的评论文本数量

时间:2016-10-15 04:57:15

标签: wordpress

我正在使用Wordpress CMS(wordpress.org)创建一个网站。我的问题是如何隐藏或删除注释元素上方的注释文本数量。见下图。

enter image description here

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:3)

你可以通过css隐藏评论文本的数量。

.comments-area .comments-title{
    display: none;
}

或者您可以从comment.php文件中删除代码。

 <h2 class="comments-title">
        <?php
            printf( _nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'twentyfifteen' ),
                number_format_i18n( get_comments_number() ), get_the_title() );
        ?>
</h2>

找到类似于它的行取决于您的主题开发人员标记他使用的。尝试找出h1h2h3h4h5h6并将其删除。

如果找不到包含此标记的行。请输入您的comment.php文件代码,以便我提供准确的解决方案。

由于