WordPress終極優化指南–刪除wlwmanifest鏈接、RSD鏈接標記、短鏈接標記
刪除wlwmanifest鏈接
wlwmanifest鏈接是一個過時的工具了,用於直接發佈到wordpress,可以直接刪除。
remove_action('wp_head', 'wlwmanifest_link');
同樣是寫入functions.php保存即可。
刪除RSD鏈接標記
前面的教程裡說到了刪除RSD,但是RSD連接標記還是存在每個網頁上,我們刪除它即可。
<?php remove_action('wp_head', 'rsd_link'); ?>
填入functions.php保存即可。
刪除短鏈接標記
短鏈接標記也是存在每個頁面上。包含有指向pageID文章的鏈接,你要使用的自定義URL這個就可以刪除了。
add_filter('after_setup_theme', 'remove_redundant_shortlink'); function remove_redundant_shortlink() { // remove HTML meta tag // <link rel='shortlink' href='http://example.com/?p=25' /> remove_action ('wp_head', 'wp_shortlink_wp_head', 10); // remove HTTP header // Link: <https://example.com/?p=25>; rel=shortlink remove_action( 'template_redirect', 'wp_shortlink_header', 11 ); }
填入functions.php保存即可