欢迎访问服务器技术网-www.fuwuqijishu.com

Disable Google Fonts插件或代码实现禁止WordPress谷歌字体

网站建设 fuwuqijishu 2年前 (2022-09-04) 21次浏览 0个评论 扫描二维码

我们网站在选择主题的时候,尤其是在WordPress平台中下载的海外主机大部分都是有谷歌字体加载的,但是对于我们国内用户来说如果有这种字体加载是会降低网站的打开速度。这里,我们可以通过插件或者无插件的方式去替换和禁止谷歌字体。

第一、Disable Google Fonts插件

插件地址:https://wordpress.org/plugins/disable-google-fonts/

Disable Google Fonts插件或代码实现禁止WordPress谷歌字体

直接启动Disable Google Fonts插件就可以。

第二、无插件代码方式

function remove_open_sans_from_wp_core() {
wp_deregister_style( ‘open-sans’ );
wp_register_style( ‘open-sans’, false );
wp_enqueue_style(‘open-sans’,”);
}
add_action( ‘init’, ‘remove_open_sans_from_wp_core’ );

这样我们就可以禁止加载的Google Open Sans字体。

不过,如果我们在安装插件之后还发现有谷歌字体的话,我们有必要再看看主题文件或者CSS中是不是有强制引用字体。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2413.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900