Yes, that’s exactly right. However, you may need to open and close PHP tags depending on your functions content. Ex:
// Add scripts to wp_head()
function child_theme_head_script() { ?>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T6JBN6W');</script>
<!-- End Google Tag Manager -->
<?php }
add_action( 'wp_head', 'child_theme_head_script' );
For the second, create another function just like above, named differently though. Replace wp_head
with sf_before_page_container
.