Skip to content
Kaspars Dambis edited this page May 3, 2020 · 1 revision

Disable prettify.css Preload

Use the following snippet of code in your utility plugin to disable preloading the prettify.css file:

add_action( 
    'wp_enqueue_scripts', 
    function() {
        remove_action( 'wp_head', 'prettify_preload_code_styles' );
    }, 
    15 // After the default priority 10 of the prettify plugin.
);
Clone this wiki locally