Skip to content

Instantly share code, notes, and snippets.

@zakariabinsaifullah
Last active December 5, 2023 02:11
Show Gist options
  • Save zakariabinsaifullah/2e5c0dd15a133a1e9df32abaa477cd23 to your computer and use it in GitHub Desktop.
Save zakariabinsaifullah/2e5c0dd15a133a1e9df32abaa477cd23 to your computer and use it in GitHub Desktop.
<?php
if (!empty($gfonts)) {
$font_array = explode('|', $gfonts);
foreach ($font_array as $font) {
if (empty($font)) {
continue;
}
$query_args = ['family' => $font];
$font_handle = 'gutsliders-font-' . sanitize_title($font);
wp_register_style(
$font_handle,
add_query_arg($query_args, '//fonts.googleapis.com/css'),
[],
GUTSLIDER_VERSION,
'all'
);
wp_enqueue_style($font_handle);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment