How can we help you today?
Add script to genesis
Add to child theme’s functions.php
// Add script to header
add_action(‘wp_head’, ‘my_custom_script’);
function my_custom_script() {
?>
<script>
// Your script code goes here
</script>
<?php
}