Created
July 21, 2016 16:34
-
-
Save contempoinc/7900801a3e322b7e9834c948066aa2ed to your computer and use it in GitHub Desktop.
Dequeue Styles & Scripts Function for Child Theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ct_dequeue_styles_scripts() { | |
wp_dequeue_script( 'tooltipMenu' ); // Remove theme default navigation JS | |
wp_dequeue_style('dropdowns'); // Remove theme default navigation CSS | |
} | |
add_action( 'wp_print_scripts', 'ct_dequeue_styles_scripts', 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment