dgmike
10/1/2012 - 12:53 PM

WordPress Functions: Register theme scripts

WordPress Functions: Register theme scripts

/*
Add scripts to the WordPress loader cue
*/
function px_theme_scripts() {  
	if(!is_admin()) :  
		$js_path = get_template_directory_uri().'/inc/js/';

		wp_deregister_script('jquery');  
		wp_register_script('jquery', $js_path.'scripts/jquery.latest.js');  
		wp_enqueue_script('jquery');
	endif; 
}  
add_action('init', 'px_theme_scripts');