Ok I am optimizing my website..
I would like to replace the jquery script loaded from the zp-core folder with the one from the CDN to reduce load time
http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js
Since a lot of sites use this URL the script will probably be already cached.
How can I change `zp_apply_filter('theme_head')`?
I guess I have to use a custom `my_printZenJavascripts()` in my templates functions.php and than register the filter with `zp_register_filter('theme_head','my_printZenJavascripts',0);`
Question is.. where should I do this.
Also would like to know if this is a good idea after all. I guess ZP guarantees compability with the install and the current version, so updating ZP and it might not work with the Jquery version if I forget to update?