[WP] 解決某些佈景不能顯示悄悄話的問題
Plugins, Tips, Wordpress 10月 10日, 200910.10,2009某些佈景會將迴響跟引用分開,作為兩個分頁,常常就這樣在前台看不見whisper迴響,解決方法如下:
到佈景主題的comments.php找到
wp_list_comments('type=comment&callback=custom_comments');
改成
wp_list_comments('(type=comment OR whisper)&callback=custom_comments');
就可以了。
2,104 Human & 1,073 Bots






12月 31st, 2009 at 7:35 am
Hello.
That saved me hours on trial and error.
Thanks a lot.