/*!
Theme Name: UiCore Pro Child
Theme URI: https://uicore.co
Description: One framework for all your website needs.
Author: UiCore
Author URI: https://uicore.co
Template: uicore-pro
Version: 1.0.0
Text Domain: uicore-pro
*/

 /* Add your custom style here */
<?php
// Falls in functions.php schon ein öffnendes <?php steht, das hier NICHT nochmal hinzufügen.

// Alle Stylesheets blocken, die von fonts.googleapis.com oder fonts.gstatic.com kommen
add_filter( 'style_loader_src', function( $src ) {
    if (
        strpos( $src, 'fonts.googleapis.com' ) !== false ||
        strpos( $src, 'fonts.gstatic.com' ) !== false
    ) {
        return ''; // verhindert das Laden dieses Stylesheets
    }

    return $src;
}, 10, 1 );
