Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 10
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3 * Load the google fonts based on the current WordPress version.
4 *
5 * @package automattic/jetpack
6 */
7
8if ( ! defined( 'ABSPATH' ) ) {
9    exit( 0 );
10}
11
12/**
13 * The modules is loaded during the late_initialization action and it also hooks to the `after_setup_theme`.
14 * See projects/plugins/jetpack/class.jetpack.php.
15 */
16add_action(
17    'after_setup_theme',
18    function () {
19        if (
20            /**
21             * Filters whether to skip loading the Jetpack Google Fonts module.
22             *
23             * This filter allows skipping the loading of the Jetpack Google Fonts module
24             * based on specific conditions or requirements. By default, the module will
25             * load normally. If the filter returns true, the module will be skipped.
26             *
27             * @module google-fonts
28             *
29             * @since 13.4
30             *
31             * @param bool $skip Whether to skip loading the Jetpack Google Fonts module. Default false.
32             */
33            apply_filters( 'jetpack_google_fonts_skip_load', false )
34        ) {
35            return;
36        }
37
38        require_once __DIR__ . '/current/load-google-fonts.php';
39    }
40);