gpt4 book ai didi

php - Google 字体无法在 Windows 上呈现

转载 作者:搜寻专家 更新时间:2023-10-31 21:55:37 24 4
gpt4 key购买 nike

我正在开发一个 Wordpress 主题;我已经导入了许多样式表和一些谷歌字体,一切都在 MAC 上运行良好,但是当我在 Windows 上测试我的网站时,它没有检测到我的谷歌字体,我尝试了几种方法将它导入我的 functions.php 文件,但结果相同。我在 Edge、Chrome 和 Firefox 上测试过,它们都存在同样的问题。

我试过:

  1. 使用 @import 导入 style.css 文件 - 没有结果。
  2. 使用 wp_register_stylewp_enqueue_style 注册样式 - 没有结果。

我将在下面留下我的 functions.php 文件。

function wp_bulldoezer_styles() {
wp_register_style('raleway', 'http://fonts.googleapis.com/css?family=Raleway:400,300,500,600,700,800');
wp_register_style('hind', 'http://fonts.googleapis.com/css?family=Hind:400,300,500,600,700');

$query_args = array(
'family' => 'Raleway:400,300,500,600,700,800|Hind:400,300,500,600,700',
);

wp_register_style( 'google-fonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null );

wp_enqueue_style('google-fonts');
wp_enqueue_style('raleway');
wp_enqueue_style('hind');

}

add_action('wp_enqueue_scripts', 'wp_bulldoezer_styles');

在我的 CSS 文件中:

@import url(http://fonts.googleapis.com/css?family=Raleway:400,300,500,600,700,800);
@import url(http://fonts.googleapis.com/css?family=Hind:400,300,500,600,700);

您可以在此 URL 上测试站点,我要导入的字体是 Raleway 和 Hind,这两种字体都可以在 Google 字体上找到。

希望你们能帮我解决这个问题,它有点乱。

问候!

最佳答案

内容呈现在 iframe 中. <head> 中没有任何资源将在 iframe 内可用.当然,这包括所有 CSS,因此也包括字体。

关于php - Google 字体无法在 Windows 上呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34248469/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com