PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 14.8
Jetpack – WP Security, Backup, Speed, & Growth v14.8
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 14.4.2 All 500 releases
jetpack / modules / google-fonts / load.php
load.php
37 lines 973 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 /**
9 * The modules is loaded during the late_initialization action and it also hooks to the `after_setup_theme`.
10 * See projects/plugins/jetpack/class.jetpack.php.
11 */
12 add_action(
13 'after_setup_theme',
14 function () {
15 if (
16 /**
17 * Filters whether to skip loading the Jetpack Google Fonts module.
18 *
19 * This filter allows skipping the loading of the Jetpack Google Fonts module
20 * based on specific conditions or requirements. By default, the module will
21 * load normally. If the filter returns true, the module will be skipped.
22 *
23 * @module google-fonts
24 *
25 * @since 13.4
26 *
27 * @param bool $skip Whether to skip loading the Jetpack Google Fonts module. Default false.
28 */
29 apply_filters( 'jetpack_google_fonts_skip_load', false )
30 ) {
31 return;
32 }
33
34 require_once __DIR__ . '/current/load-google-fonts.php';
35 }
36 );
37