1:去掉google字體加載,這里推薦用插件:Disable Google Fonts
2:去掉head頭部 s.w.org url鏈接,在主題的function.php 加入以下代碼
add_filter( 'wp_resource_hints', 'remove_dns_prefetch', 10, 2 );
或
function remove_dns_prefetch( $hints, $relation_type ) { if ( 'dns-prefetch' === $relation_type ) { return array_diff( wp_dependencies_unique_hosts(), $hints ); } return $hints; }
3:去掉加載表情包,代碼如下:
remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'wp_print_styles', 'print_emoji_styles' ); add_filter( 'emoji_svg_url', '__return_false' );
4:去掉http頭請求信息:(禁用rest api方法)如下:
Link:<http://localhost/wordpress/wp-json/>; rel="https://api.w.org/"
方法一:本站推薦用一個插件:Disable REST API
方法 二:主題function.php加入以下代碼:
add_filter('rest_enabled', '__return_false'); add_filter('rest_jsonp_enabled', '__return_false'); remove_action( 'wp_head', 'rest_output_link_wp_head', 10 ); remove_action( 'wp_head', 'wp_oembed_add_discovery_links', 10 );
5:去掉其它無用的信息,都是加入主題function.php文件里的。代碼如下:
remove_action( 'wp_head', 'feed_links_extra', 3 ); //去除評論feed remove_action( 'wp_head', 'feed_links', 2 ); //去除文章feed remove_action( 'wp_head', 'rsd_link' ); //針對Blog的遠(yuǎn)程離線編輯器接口 remove_action( 'wp_head', 'wlwmanifest_link' ); //Windows Live Writer接口 remove_action( 'wp_head', 'index_rel_link' ); //移除當(dāng)前頁面的索引 remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 ); //移除后面文章的url remove_action( 'wp_head', 'start_post_rel_link', 10, 0 ); //移除最開始文章的url remove_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 );//自動生成的短鏈接 remove_action( 'wp_head', 'adjacent_posts_rel_link', 10, 0 ); ///移除相鄰文章的url remove_action( 'wp_head', 'wp_generator' ); // 移除版本號
6:wordpress 數(shù)據(jù)庫連接地址問題:
我們都知道,我們wordpress程序在安裝的時候,都需要寫數(shù)據(jù)庫地址,默認(rèn)的是localhost;
有一些服務(wù)商,填寫localhost會造成數(shù)據(jù)庫連接不上。這樣就必須填寫127.0.0.1;如果還連接不上再填寫你的服務(wù)器真實(shí)IP;(因為有一些服務(wù)商連接數(shù)據(jù)庫填寫真實(shí)的ip地址,會造成網(wǎng)站等待時間過長?。?/p>