Created
July 10, 2021 00:04
-
-
Save stacklast/a0c825874d0d461c5b8725e9b432348d to your computer and use it in GitHub Desktop.
[WordPress] - Add HubSpot Embed Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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