0

How to not load jquery-ui-accordion.min.css in WordPress

Sometimes in your WordPress site, you need a jquery to not load at all, then its useful to disable it instead of editing plugin/theme or other files.

To not load load jquery-ui-accordion.min.css please us this code snippet in your themes functions.php:

add_action( ‘wp_enqueue_scripts’, function() { wp_dequeue_style(‘jquery-ui-accordion’); }, PHP_INT_MAX );