Följ dessa steg för att inaktivera Google-teckensnitt på din WordPress-webbplats:
1. Logga in på din WordPress-instrumentpanel.
2. Klicka på Utseende -> Temaredigerare .
3. I den högra panelen, klicka på Temafunktioner (functions.php) fil.
4. Kopiera och klistra in följande kod till functions.php-filen:
``` php
/*
* Inaktivera Google Fonts
*/
add_filter( 'wp_resource_hints', 'disable_google_fonts_resource_hints', 10, 2 );
function disable_google_fonts_resource_hints( $urls, $relation_type ) {
if ( wp_style_is( 'google-fonts' ) ) {
$urls =remove_element_by_value( $urls, 'https://fonts.gstatic.com');
}
returnera $urls;
}
/*
* Ta bort länken Google Fonts från
*/
remove_action( 'wp_head', 'wp_resource_hints', 2 );
/*
* Ta bort Google Fonts från WordPress Embed API
*/
add_filter( 'embed_oembed_html', 'disable_google_fonts_oembed_filter', 10, 4 );
function disable_google_fonts_oembed_filter( $html, $post_id, $width, $height ) {
if ( wp_style_is( 'google-fonts' ) ) {
$html =preg_replace( '/https:\/\/fonts.gstatic.com\/s\/.+?\/_.+?\//', '', $html );
}
returnera $html;
}
/*
* Hjälpfunktion för att ta bort ett element från en array
*/
funktion remove_element_by_value($array, $value)
{
$index =array_search($värde, $array);
if ($index !==false) {
unset($array[$index]);
}
returnera $array;
}
```
5. Klicka på Uppdatera fil för att spara dina ändringar.
Google Fonts kommer nu att inaktiveras på din WordPress-webbplats.