-
Notifications
You must be signed in to change notification settings - Fork 2
Removing Scripts and Styles
jsmeltzer edited this page Jul 10, 2012
·
1 revision
To remove all scripts and styles add the following to your child theme's functions.php file
add_action('template_redirect', 'remove_parent_scripts_and_styles', 1); function remove_parent_scripts_and_styles() { remove_action('wp_enqueue_scripts', 'setup_scripts_and_styles_enqueue', 20); }