Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
colibri-page-builder
/
extend-builder
/
//home/puskom/mastur/colibri-page-builder/extend-builder/fonts.php
<?php namespace ExtendBuilder; use ColibriWP\PageBuilder\GoogleFontsLocalLoader; add_filter('extend_builder/google_fonts', function ($fonts) { $page_fonts = array(); $data = get_current_data(); foreach ($data['partials'] as $partial_type => $partial) { $partial_fonts = array_get_value($partial, 'meta.fonts.google'); if ($partial_fonts) { $page_fonts = array_merge_recursive($page_fonts, $partial_fonts); } } //global fonts// $theme_fonts = array_get_value($data, 'options.theme.fonts.google'); $fonts = array_merge_recursive($page_fonts, $theme_fonts); return $fonts; }); function enqueue_google_fonts() { $fonts = array(); $fonts = apply_filters("extend_builder/google_fonts", $fonts); if (!count($fonts)) { return; } $fontQuery = array(); foreach ($fonts as $family => $font) { $fontQuery[] = $family . ":" . implode(',', $font['weights']); } $data = get_current_data(); $use_local_fonts = array_get_value($data, 'options.theme.global.googleFonts.serveLocally', false); if(!$use_local_fonts) { $query_args = array( 'family' => urlencode(implode('|', $fontQuery)), 'subset' => urlencode('latin,latin-ext'), 'display'=> 'swap' ); $fontsURL = add_query_arg($query_args, 'https://fonts.googleapis.com/css'); wp_enqueue_style(prefix() . '-fonts', $fontsURL, array(), null); } else { $fontsQueryString = implode('|', $fontQuery); GoogleFontsLocalLoader::enqueuLocalGoogleFonts( $fontsQueryString ); } } add_action('wp_enqueue_scripts', '\ExtendBuilder\enqueue_google_fonts');