# jetpack/16.2/modules/google-fonts.php

Jetpack – WP Security, Backup, Speed, &amp; Growth, version 16.2. 25 lines.

- Page: https://pluginprobe.com/plugins/jetpack/16.2/code/modules/google-fonts.php
- Raw: https://pluginprobe.com/plugins/jetpack/16.2/raw/modules/google-fonts.php
- Modified: 2026-04-27T16:15:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jetpack/16.2/code/modules/google-fonts.php#L10-L20`.

```php
<?php
/**
 * Module Name: Google Fonts (Beta)
 * Module Description: This feature is now supported natively in WordPress when using any block theme. To use Google Fonts, refer to the WordPress.org Font Library documentation.
 * Sort Order: 1
 * Recommendation Order: 2
 * First Introduced: 10.8.0
 * Requires Connection: No
 * Auto Activate: No
 * Module Tags: Fonts, Recommended
 * Feature: Writing
 * Additional Search Queries: fonts, webfonts, typography, creator
 *
 * @package automattic/jetpack
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit( 0 );
}

/**
 * Load the Google Fonts module.
 */
require_once __DIR__ . '/google-fonts/load.php';

```
