学习NO.1 发表于 2016-1-11 00:06:06

wordpress 加速:代码实现对wp_head()函数的优化

函数说明我们在采用wordpress建站的时候,为了实现某些功能,一般会安装一些插件,而某些插件是需要调用wp_head()函数来实现功能的。此函数功能是必要的,但有时候会携带很多冗余代码,使得网页打开速度过慢,而且加载无用信息,比如feed链接,比如wordpress版本信息等等。我们对此函数进行优化,不仅能加强wordpress安全,更能实现我们wordpress站点的加速。优化方法将以下代码加入到主题目录下的functions.php文件中,可删除部分代码以保留想要的功能。//优化head()函数
remove_action( 'wp_head', 'feed_links', 2 );   
remove_action( 'wp_head', 'feed_links_extra', 3 );   
remove_action( 'wp_head', 'rsd_link' );   
remove_action( 'wp_head', 'wlwmanifest_link' );   
remove_action( 'wp_head', 'index_rel_link' );   
remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 );   
remove_action( 'wp_head', 'start_post_rel_link', 10, 0 );   
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 );   
remove_action( 'publish_future_post', 'check_and_publish_future_post', 10, 1 );   
remove_action( 'wp_head', 'wp_generator' );   
remove_action( 'wp_footer', 'wp_print_footer_scripts' );   
remove_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 );   
remove_action( 'template_redirect', 'wp_shortlink_header', 11, 0 );

add_action('widgets_init', 'my_remove_recent_comments_style');   
function my_remove_recent_comments_style() {   
global $wp_widget_factory;   
remove_action('wp_head', array($wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style'));   
}

页: [1]
查看完整版本: wordpress 加速:代码实现对wp_head()函数的优化