您可以使用以下内容删除一些标题内容。
// remove unncessary header info
function remove_header_info() {
remove_action(\'wp_head\', \'rsd_link\');
remove_action(\'wp_head\', \'wlwmanifest_link\');
remove_action(\'wp_head\', \'wp_generator\');
remove_action(\'wp_head\', \'start_post_rel_link\');
remove_action(\'wp_head\', \'index_rel_link\');
remove_action(\'wp_head\', \'adjacent_posts_rel_link\');
}
add_action(\'init\', \'remove_header_info\');
默认安装不包括元关键字之类的内容,因此这是您正在使用的主题或插件。