Home  >  Article  >  php教程  >  安装第三方评论插件的博客:移除comment-reply.js

安装第三方评论插件的博客:移除comment-reply.js

WBOY
WBOYOriginal
2016-06-06 20:08:091058browse

对于网站来说,加载越少的东西越好,HTTP 请求数越少越好。如果你的博客已经安装了 DISQUS 、多说等第三方评论插件,则 WordPress 自带的 comment-reply.js 将没有用。使用以下代码禁止系统加载它: // 将如下代码放置到主题目录下的 functions.php 中即可fu

对于网站来说,加载越少的东西越好,HTTP 请求数越少越好。如果你的博客已经安装了 DISQUS 、多说等第三方评论插件,则 WordPress 自带的 comment-reply.js 将没有用。使用以下代码禁止系统加载它:

// 将如下代码放置到主题目录下的 functions.php 中即可
function clean_header(){
	wp_deregister_script( 'comment-reply' );
         }
add_action('init','clean_header');
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn