Where's the meta information to add new scripts?
Hi there - I'm using a a flight selection widget from skyscanner (code below), and I need to add the script informatoiin to the <head> </head> of the site.I'm using a child theme, which template file do I need to update? It's not in header.php
Here is the script
<script type='text/javascript' src='http://api.skyscanner.net/api.ashx?key=08efb0e5-27a2-44bd-8715-2c009f76b407'></script>
<script type='text/javascript'>
skyscanner.load('snippets','2');
function main(){
var snippet=new skyscanner.snippets.SearchPanelControl();
snippet.setMarket('AU');
snippet.setCulture('en-GB');
snippet.setCurrency('AUD');
snippet.setShape('box400x400');
snippet.setDeparture('AU');
snippet.setDestination('KR');
snippet.setColourScheme('classicbluelight');
snippet.draw(document.getElementById('snippet_sear chpanel'));
}
skyscanner.setOnLoadCallback(main);
</script>