文件操作 - global-fonts.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/jimbrandstatter/public_html/wp-content/themes/Total/inc/fonts/global-fonts.php
编辑文件内容
<?php namespace TotalTheme\Fonts; defined( 'ABSPATH' ) || exit; /** * Global_Fonts Class | Loads site-wide fonts and adds CSS font font targeting. */ class Global_Fonts { /** * Instance. */ private static $instance; /** * Create or retrieve the instance of Global_Fonts. */ public static function instance() { if ( \is_null( static::$instance ) ) { static::$instance = new self(); static::$instance->init_hooks(); } return static::$instance; } /** * Initialization hooks. */ public function init_hooks() { // Load any global adobe/google fonts globally. \add_action( 'wp_enqueue_scripts', [ $this, 'enqueue_registered_fonts' ] ); // Load all custom fonts globally. \add_filter( 'wpex_head_css', [ $this, 'add_custom_fonts_css' ] ); \add_filter( 'wpex_head_css', [ $this, 'assign_registered_fonts' ] ); } /** * Load globally registered custom fonts. */ public function enqueue_registered_fonts(): void { $fonts = \wpex_get_registered_fonts(); if ( ! empty( $fonts ) ) { foreach ( $fonts as $font => $args ) { $type = $args['type'] ?? ''; if ( ! \in_array( $type, [ 'google', 'adobe' ] ) ) { continue; } if ( ! empty( $args['is_global'] ) || ! empty( $args['assign_to'] ) ) { \wpex_enqueue_font( $font, 'registered', $args ); } } } } /** * Adds Header CSS for custom uploaded fonts. */ public function add_custom_fonts_css( $css ) { $fonts = \wpex_get_registered_fonts(); if ( ! empty( $fonts ) ) { foreach ( $fonts as $font => $args ) { if ( empty( $args['type'] ) || empty( $args['custom_fonts'] ) || 'custom' !== $args['type'] ) { continue; } $custom_font_css = \wpex_render_custom_font_css( $font, $args ); if ( $custom_font_css ) { $css .= "/*CUSTOM FONTS*/{$custom_font_css}"; } } } return $css; } /** * Assign registered fonts to their corresponding elements. */ public function assign_registered_fonts( $css ) { $fonts = \wpex_get_registered_fonts(); if ( ! empty( $fonts ) ) { $registered_font_css = ''; foreach ( $fonts as $font => $args ) { if ( ! empty( $args['assign_to'] ) ) { foreach ( $args['assign_to'] as $el ) { $font_css = \wpex_parse_css( \wpex_sanitize_font_family( $font ), 'font-family', $el ); if ( $font_css ) { $registered_font_css .= $font_css; } } } } if ( $registered_font_css ) { $css .= "/*REGISTERED FONT ASSIGNEMENT*/{$registered_font_css}"; } } return $css; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件