2016-10-15 61 views
0

我使用Wordpress CMS(wordpress.org)創建網站。我的問題是如何隱藏或刪除評論元素上方的評論文字數量。見下圖。如何隱藏Wordpress網站中的評論文字數量

enter image description here

任何幫助將非常感激。

+0

你知道如何使用chrome/browser開發工具檢查html嗎?如果是,那麼找到適用於此類的類或id,然後轉到worpdress中的style.css admin - > appearance -editor ..並寫入css .className或#id {display:none;} – abhirathore2006

+0

感謝Abhirathore, I使用Firefox瀏覽器嘗試同樣的事情。但是我沒有檢查正確的源文件。 – Thilina

+0

你的網站是什麼? – abhirathore2006

回答

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> 

找到這樣的東西就像它取決於你的主題開發者標記他的使用。嘗試找出h1,h2, h3, h4, h5,h6並將其刪除。

如果您找不到此標籤的任何行。請把你的comment.php文件代碼,所以我可以給一個確切的解決方案。

謝謝

+0

謝謝Renish, Css方法不適用於我的主題。但是你的第二個解決方案對於識別comments.php文件中的確切php行真的很有幫助。 – Thilina