Skip to content

Instantly share code, notes, and snippets.

@jamiemitchell
Created October 21, 2013 03:43
Show Gist options
  • Save jamiemitchell/7078355 to your computer and use it in GitHub Desktop.
Save jamiemitchell/7078355 to your computer and use it in GitHub Desktop.
Remove scripts loading from header. Genesis
<?php
/* Remove scripts loading from header
------------------------------------------------------------ */
add_action('wp_enqueue_scripts', 'child_deregister_scripts');
function child_deregister_scripts() {
wp_deregister_script( 'jquery' );
wp_deregister_script( 'jquery-ui' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment