Site icon Hip-Hop Website Design and Development

How to remove dynamic-css

I want to remove dynamic css from header of my plugin.

<style type="text/css" title="dynamic-css" class="options-output"> ... </style>

I use this code for remove other styles but can’t remove this one:

    function remove_all_theme_styles() {
    global $wp_styles;
    foreach ( $wp_styles->queue as $style ) :
        if ( 'idcrm-contacts' !== $style && 'monster-style' !== $style ) {
            wp_deregister_style( $style );
            wp_dequeue_style( $style );
        }
        endforeach;
}

    add_action( 'wp_print_styles', 'remove_all_theme_styles', 100 );