PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 15.2
Jetpack – WP Security, Backup, Speed, & Growth v15.2
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / google-fonts / load.php

load.php in Jetpack – WP Security, Backup, Speed, & Growth 15.2, at modules/google-fonts/load.php

41 lines 1020 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Load the google fonts based on the current WordPress version.
4 *
5 * @package automattic/jetpack
6 */
7
8 if ( ! 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 */
16 add_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 );
41