<?php//(Hier steht vielleicht schon anderer Code vom Child-Theme)//1. jQuery-Migration-Script entfernen add_action('wp_default_scripts',function($scripts){if (!is_admin() && isset($scripts->registered['jquery'])){$script=$scripts->registered['jquery'];if ($script->deps){$script->deps=array_diff($script->deps,array('jquery-migrate'))}}});//2. Dashicons komplett für alle entfernen add_action('wp_enqueue_scripts',function(){wp_dequeue_style('dashicons');wp_deregister_style('dashicons')},100);//3. Admin Bar CSS für Besucher entfernen add_action('get_header',function(){remove_action('wp_head','_admin_bar_bump_cb')});//Google Fonts komplett blockieren add_action('wp_print_styles',function(){wp_deregister_style('twenty-twenty-one-fonts')},1);