Skip to content

Instantly share code, notes, and snippets.

@rosshanney
Created May 23, 2013 19:40
Show Gist options
  • Save rosshanney/5638846 to your computer and use it in GitHub Desktop.
Save rosshanney/5638846 to your computer and use it in GitHub Desktop.
Load the newest version of the jQuery easing plugin in the Calypso theme
<?php
/*
Plugin name: Use newer jQuery easing plugin
*/
function gce_newer_easing() {
wp_dequeue_script( 'easing' );
wp_enqueue_script( 'gce-easing', plugins_url( 'jquery.easing.min.js', __FILE__ ), array( 'jquery' ) );
}
add_action( 'wp_enqueue_scripts', 'gce_newer_easing' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment