-
Notifications
You must be signed in to change notification settings - Fork 23
Home
Kaspars Dambis edited this page May 3, 2020
·
1 revision
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.
);