HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vmi1674223.contaboserver.net 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: root (0)
PHP: 7.4.3-4ubuntu2.22
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/onlineshop/wp-content/plugins/jetpack/modules/google-fonts/load.php
<?php
/**
 * Load the google fonts based on the current WordPress version.
 *
 * @package automattic/jetpack
 */

add_action(
	'plugins_loaded',
	function () {
		/**
		* Filters whether to skip loading the Jetpack Google Fonts module.
		*
		* This filter allows skipping the loading of the Jetpack Google Fonts module
		* based on specific conditions or requirements. By default, the module will
		* load normally. If the filter returns true, the module will be skipped.
		*
		* @module google-fonts
		*
		* @since 13.4
		*
		* @param bool $skip Whether to skip loading the Jetpack Google Fonts module. Default false.
		*/
		if ( apply_filters( 'jetpack_google_fonts_skip_load', false ) ) {
			return;
		}

		if ( class_exists( 'WP_Font_Face' ) ) {
			// WordPress 6.5 or above with the new Font Library.
			require_once __DIR__ . '/current/load-google-fonts.php';
		} elseif ( class_exists( 'WP_Fonts' ) || class_exists( 'WP_Webfonts' ) ) {
			// Gutenberg Fonts API compatible.
			require_once __DIR__ . '/wordpress-6.3/load-google-fonts.php';
		}
	},
	// Ensure the action is loaded after the late_initialization.
	// See projects/plugins/jetpack/class.jetpack.php.
	999
);