To be added to theme’s functions.php
function my_head_script() {
?>
// SCRIPT CODE HERE
<?php
}
add_action( 'wp_head', 'my_head_script', 20 );
For things like Google Analytics, etc…
To be added to theme’s functions.php
function my_head_script() {
?>
// SCRIPT CODE HERE
<?php
}
add_action( 'wp_head', 'my_head_script', 20 );
For things like Google Analytics, etc…