Jupiter - Google Fonts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function bm_fix_jupiter_fonts() | |
{ | |
wp_dequeue_script('mk-webfontloader'); | |
wp_deregister_script('mk-webfontloader'); | |
// Diese Google Font URL durch die tatsächliche Font URL austauschen. Die Font-URL wird Ihnen z.B. durch ein Test-Tool wie sicher 3 angezeigt: | |
wp_enqueue_style('google-fonts', 'https://fonts.googleapis.com/css?family=Ubuntu'); | |
} | |
add_action('wp_enqueue_scripts', 'bm_fix_jupiter_fonts', 50); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment