0
In the wordpress frontend is loaded an array of scripts that are included in the directory wp/includes. Such as:
wp-includes/js/jquery/ui/core.min.js
wp-includes/js/jquery/ui/widget.min.js
wp-includes/js/jquery/ui/mouse.min.js
wp-includes/js/jquery/ui/sortable.min.js
wp-includes/js/jquery/ui/tabs.min.js
wp-includes/js/jquery/ui/accordion.min.js
It is possible (and how) to do the wp_deregister_script() in them?
Note: I know they are needed for wp-admin, so we can use the:
if ( !is_admin() ) wp_deregister_script('script_nome');