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
<?php | |
/** | |
* Cleaning up the scripts | |
*/ | |
function jc3_register_scripts() { | |
// Put jQuery to the bottom | |
wp_deregister_script( 'jquery' ); | |
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js', false, '1.7.1', true ); | |
wp_enqueue_script( 'jquery' ); | |
wp_register_script( 'jc3' , get_template_directory_uri() . '/jc3.js', false, '1.0', true); |
NewerOlder