簡體   English   中英

如何用我的Wordpress主題中的評論計數覆蓋Disqus評論計數

[英]How to override a disqus comment count with the comment count from my Wordpress theme

我的第一個問題在這里! 我想從主題的左側部分覆蓋disqus“ 1 Comentario y 0 Reacciones”到評論數。 它看起來應該像所附圖像

我已經在數據庫中搜索了類似的問題,但是沒有運氣。

如果您想簽出,這是我在測試服務器中的博客

我試圖將這段代碼放在主題的functions.php中,以便Disqus不覆蓋主題的注釋。

// Disqus: Prevent from replacing comment count
remove_filter('comments_number', 'dsq_comments_text');
remove_filter('get_comments_number', 'dsq_comments_number');
remove_action('loop_end', 'dsq_loop_end');

也是Disqus插件的“高級”選項中的輸出Javascript選項,但運氣不好。 希望有人幫助我(我欠你一杯啤酒!)

更新 :顯然問題出在首頁,類別,搜索頁面,而不是單個帖子。

確定@ dInGd0nG發布鏈接后,我找到了解決此問題的簡單方法 只需轉到您的wordpress主題的functions.php並插入以下代碼段即可:

// Disqus: Prevent from replacing comment count
remove_filter('comments_number', 'dsq_comments_text');
remove_filter('get_comments_number', 'dsq_comments_number');
remove_action('loop_end', 'dsq_loop_end');

就這樣。 而且,這比從Disqus插件轉到“高級”選項卡並在頁腳中輸出Javascript更好,因為那樣會使其變慢。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM