WordPress移除Google字体方法

国内访问WordPress网站的时候,会发现里面引用Google字体会导致加载速度变得很慢,这时候需要移除Google字体,今天为大家分享一下WordPress移除Google字体方法。

WordPress移除Google字体方法 (https://www.wpzt.net/) WordPress基础教程 第1张

在 function.php 中添加如下代码:

if (!function_exists(‘remove_wp_open_sans’)){

function remove_wp_open_sans() {

wp_deregister_style( ‘open-sans’ );

wp_register_style( ‘open-sans’, false );

}

add_action(‘wp_enqueue_scripts’, ‘remove_wp_open_sans’);

}

© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容