Skip to content

Instantly share code, notes, and snippets.

@generatepress
Created August 17, 2015 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generatepress/f8e9149e2929442bd97d to your computer and use it in GitHub Desktop.
Save generatepress/f8e9149e2929442bd97d to your computer and use it in GitHub Desktop.
Remove the default sticky nav script in GP child themes
add_action( 'wp_enqueue_scripts', 'generate_dequeue_child_sticky', 99 );
function generate_dequeue_child_sticky() {
wp_dequeue_script( 'stickynav' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment