请尝试以下代码:
add_action( \'wp_print_styles\', \'my_deregister_styles\' );
function my_deregister_styles() {
wp_deregister_style( \'dashicons\' );
}
替换css路径“path\\u OF\\u css”:
add_action( \'wp_footer\', \'register_wp_footer\', 11 );
function register_wp_footer() {
wp_enqueue_style( \'dashicons\', \'PATH_OF_CSS\' ,array(), false, true );
}