在wordpress程序使用中,优化越来越成为网站的侧重点;
某鱼以于今年年初彻底关闭了wordpress的评论功能;应该说是放弃了评论功能。因为他也没有妥协选择评论插件;
坦率的讲wordpress的评论插件还是有不错的选择的,功能和界面方面多说和畅言做的都挺不错的;
当然这个可能是某鱼的各人选择,对于大多数站长来说wordpress的评论功能还是可以带来不错的互动性的
但是测速网还是关闭了评论功能。但是关闭的不是很彻底,即使关闭了评论的商品,垃圾评论还是会出现在后台中。
下面测速网给各们wordpress站长分享一个彻底删除和禁用wordpress评论的代码
将代码添加到主题的主函数文件中,即可禁用所有页面的评论功能:
area data-settings="dblclick" readonly > function disable_page_comments( $posts ) {if ( is_page()) {$posts[0]->comment_status = 'disabled';$posts[0]->ping_status = 'disabled';}return $posts;}add_filter( 'the_posts', 'disable_page_comments' );area>12345678910function disable_page_comments( $posts ) {if ( is_page()) {$posts[0]->comment_status = 'disabled';$posts[0]->ping_status = 'disabled';}return $posts;}add_filter( 'the_posts', 'disable_page_comments' );