很长一段时间以来,我一直在使用几个插件来清理WordPress Headers中的一些字段。在大多数情况下,我会说您通常不需要很多信息。
为什么WordPress将这些功能和链接添加到您的网站?
嗯,原因很明显。WordPress是一个非常大的functions.php文件中,一切就绪。
// ******************** Clean up WordPress Header START ********************** // function wbolt_remove_version() { return \'\'; } add_filter(\'the_generator\', \'wbolt_remove_version\'); remove_action(\'wp_head\', \'rest_output_link_wp_head\', 10); remove_action(\'wp_head\', \'wp_oembed_add_discovery_links\', 10); remove_action(\'template_redirect\', \'rest_output_link_header\', 11, 0); remove_action (\'wp_head\', \'rsd_link\'); remove_action( \'wp_head\', \'wlwmanifest_link\'); remove_action( \'wp_head\', \'wp_shortlink_wp_head\'); function wbolt_cleanup_query_string( $src ){ $parts = explode( \'?\', $src ); return $parts[0]; } add_filter( \'script_loader_src\', \'wbolt_cleanup_query_string\', 15, 1 ); add_filter( \'style_loader_src\', \'wbolt_cleanup_query_string\', 15, 1 ); // ******************** Clean up WordPress Header END ********************** //