Skip to content

Instantly share code, notes, and snippets.

@tareiking
Created July 23, 2014 01:49
Show Gist options
  • Save tareiking/e7416c261940aa37b96c to your computer and use it in GitHub Desktop.
Save tareiking/e7416c261940aa37b96c to your computer and use it in GitHub Desktop.
Remove pico defaults and load yah own
/**
* Roll-your-own pico javascript settings
*/
function change_pico_settings(){
if ( is_front_page() && wp_script_is( 'slider-main', 'enqueued' ) ) {
wp_dequeue_script( 'slider-main');
wp_enqueue_script( 'slider-main-custom', get_template_directory_uri() . '/assets/js/jquery.slider-main.js', array( 'jquery' ), '1.0', true );
}
}
add_action( 'wp_enqueue_scripts', 'change_pico_settings' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment