To be added to theme’s functions.php
// for injecting in to the <head> element
function my_head_script() {
?>
// CODE HERE
<?php
}
add_action( 'wp_head', 'my_head_script', 20 );
// for injecting in to the <body> element
function my_body_script() {
?>
// CODE HERE
<?php
}
add_action( 'wp_body_open', 'my_body_script', 20 );
For things like Google Analytics, etc…