前面我们介绍 wordpress 官方要求主题作者切换到本地托管字体,今天简单说说如何实现在本地托管的 google 字体。

wordpress 主题的外部资源规则

一直以来,w.org/themes 上的存储托管主题,一直不允许使用第三方资源,包括第三方的图片,javascript 脚本文件,css 样式文件,网络字体以及其他资源。

但是这条规则的唯一的例外就是 google 字体,因为当时没有可靠的方法来实现本地托管的网络字体,而排版又是主题设计中的一个重要组成部分。但是由于 gdpr 和隐私方面以及之前的案例的影响,google 字体不再被视为本指南的例外。

如何本地托管的 google 字体

wordpress 官方主题团队在很早之前就在 github 发布了一段脚本教大家如何本地托管 google 网络字体。

假如你原来是通过下面的代码加载样式和 google 网络字体的:

function my_theme_enqueue_assets() { // 加载主题样式 wp_enqueue_style( 'my-theme', get_stylesheet_directory_uri() . '/style.css', array(), '1.0' ); // 加载网络字体 wp_enqueue_style( 'literata', 'https://fonts.geekzu.org/css2?family=literata&display=swap', array(), '1.0' );}add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_assets' );

下载 wordpress 官方主题团队提供的脚本,https://github.com/wptt/webfont-loader,放到当前主题的 inc/webfont-loader 目录下,然后在上面函数开头,加入加载这段脚本的代码:

function my_theme_enqueue_assets() { // 加载处理文件 require_once get_theme_file_path( 'inc/wptt-webfont-loader.php' ); // 加载主题样式 wp_enqueue_style( 'my-theme', get_stylesheet_directory_uri() . '/style.css', array(), '1.0' ); // 加载网络字体 wp_add_inline_style( 'my-theme', wptt_get_webfont_styles( 'https://fonts.geekzu.org/css2?family=literata&display=swap' ) );}add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_assets' );

这样就可以在本地托管 google 网络字体了。