Created
March 29, 2015 13:54
-
-
Save eri-trabiccolo/76efe3633e44ed75105b to your computer and use it in GitHub Desktop.
Footnotes compatibility
This file contains hidden or 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
if ( class_exists('MCI_footnotes') ): | |
function re_enqueue_footnotes_script() { | |
// first dequeue it | |
wp_dequeue_script('mci-footnotes-js-jquery-tools'); | |
// enqueue it after tc-scripts | |
wp_enqueue_script('mci-footnotes-js-jquery-tools', plugins_url() . '/footnotes/js/jquery.tools.min.js', array('tc-scripts') ); | |
} | |
add_action( 'wp_print_scripts', 're_enqueue_footnotes_script', 100 ); | |
endif; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment