Hi !
I wanted to add some custom script into the <head> of my page.
So i search where the superfish script is called and found it define by a php function into the header-extensions.php.
I didnt care about the superfish script so i say to myself: "i just have to replace it by my script at the same place and it should work..."
I removed all the superfish loading part of the code (located after: "// Load scripts for the jquery Superfish plugin http://users.tpg.com.au/j_birch/plugins/superfish/#examples") and paste this instead:
function thematic_head_scripts() {
$scriptdir_start = "\t";
$scriptdir_start .= '<script type="text/javascript" src="';
$scriptdir_start .= get_bloginfo('template_directory');
$scriptdir_start .= '/library/scripts/';$scriptdir_end = '"></script>';
//$scripts = "\n";
$scripts .= $scriptdir_start . 'my_script_01.js' . $scriptdir_end . "\n";// Print scripts
print $scripts;
}
But my script dont seems to be loaded...
What did i do wrong ?
Thanks for your supplies...