Skip to content

Instantly share code, notes, and snippets.

@stacklast
Created July 10, 2021 00:04
Show Gist options
  • Select an option

  • Save stacklast/a0c825874d0d461c5b8725e9b432348d to your computer and use it in GitHub Desktop.

Select an option

Save stacklast/a0c825874d0d461c5b8725e9b432348d to your computer and use it in GitHub Desktop.
[WordPress] - Add HubSpot Embed Code
<?php
add_action( 'wp_footer', 'my_own_hubspot', 20 );
function my_own_hubspot() { ?>
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/XXXXXXX.js"></script>
<!-- End of HubSpot Embed Code -->
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment