Created
July 23, 2014 01:49
-
-
Save tareiking/e7416c261940aa37b96c to your computer and use it in GitHub Desktop.
Remove pico defaults and load yah own
This file contains 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
/** | |
* 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