Anyone know if there are issues with using the below with the latest Wordpress?
I have some Javascript (jQuery Tools) in this childtheme_head_scripts for a child theme but it's not being rendered in the head.
// Filter away the default scripts loaded with Thematic
function childtheme_head_scripts() {
// Abscence makes the heart grow fonder
}
add_filter('thematic_head_scripts','childtheme_head_scripts');
From this guide: http://themeshaper.com/guide-customizing-thematic-theme-framework/
Thanks!