我们在制作wordpress主题的时候,会在头部区域添加 wp_head() 函数,这个函数中包含了许多wordpress内置的功能函数,同时也可以在其中添加一些自定义的功能。
但是,有些功能是我们用不到的,如果加载只会增加页面代码的复杂性,影响我们的调试,也不利于代码整洁。
完整的wordpress头部清理代码:
remove_action( 'wp_head', 'wp_generator' ); //WordPress版本信息。
remove_action( 'wp_head', 'parent_post_rel_link' ); //最后文章的url
remove_action( 'wp_head', 'start_post_rel_link' ); //最前文章的url
remove_action( 'wp_head', 'adjacent_posts_rel_link' ); //上下
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head');//上下文章的urlremove_action( 'wp_head', 'feed_links_extra', 3 );//去除评论feed
remove_action( 'wp_head', 'feed_links' ); //去除文章的feed
remove_action( 'wp_head', 'rsd_link' ); //针对Blog的离线编辑器开放接口所使用
remove_action( 'wp_head', 'wlwmanifest_link' ); //如上
remove_action( 'wp_head', 'index_rel_link' ); //当前页面的url
remove_action( 'wp_head', 'wp_shortlink_wp_head' ); //短地址
remove_action( 'wp_head', 'rel_canonical');
wp_deregister_script('l10n');
remove_filter( 'the_content', 'wptexturize'); //禁用半角符号自动转换为全角
remove_action( 'wp_head', array($wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style'));
wp_head()函数
wp_head()是wordpress的一个非常重要的函数,基本上所有的主题在header.php这个文件里都会使用到这个函数,而且很多插 件为了在header上加点东西也会用到wp_head(),比如SEO的相关插件。不过在wp_head()出现的这个位置,会增加很多并不常用的代 码,如何删除呢?可以通过remove_action移除这些代码。
remove_action函数
函数原型:remove_action( $tag, $function_to_add, $priority, $accepted_args ); 该函数移除一个附属于指定动作hook的函数。该方法可用来移除附属于特定动作hook的默认函数,并可能用其它函数取而代之。 重要:添加hook时的$function_to_remove 和$priority参数要能够相匹配,这样才可以移除hook。该原则也适用于过滤器和动作。移除失败时不进行警告提示。 文章来自http://www.life134.com 参数 文章来自http://www.life134.com
返回值 (布尔值)函数是否被移除。 文章来自http://www.life134.com
|
移除WordPress版本信息
在head区域,可以看到如下代码:
这是隐性显示的WordPress版本信息,默认添加。可以被黑客利用,攻击特定版本的WordPress漏洞。清除代码:
remove_action( ‘wp_head’, ‘wp_generator’ );
remove_action( ‘wp_head’, ‘index_rel_link’ ); // Removes the index link
remove_action( ‘wp_head’, ‘parent_post_rel_link’, 10, 0 ); // Removes the prev link
remove_action( ‘wp_head’, ‘start_post_rel_link’, 10, 0 ); // Removes the start link
remove_action( ‘wp_head’, ‘adjacent_posts_rel_link_wp_head’, 10, 0 ); // Removes the relational links for the posts adjacent to the current post.
remove_action( ‘wp_head’, ‘feed_links’, 2 );//文章和评论feed
remove_action( ‘wp_head’, ‘feed_links_extra’, 3 ); //分类等feed
remove_action( ‘wp_head’, ‘rsd_link’ );
remove_action( ‘wp_head’, ‘wlwmanifest_link’ );
移除Canonical标记
remove_action( ‘wp_head’, ‘rel_canonical’ );
通过这样的修改后,wordpress主题头文件就会轻快很多,也保证了主题的安全。