Created
June 14, 2017 11:21
-
-
Save bigdigital/8b443fb78d1487812b7b616fcfc4a52c to your computer and use it in GitHub Desktop.
The7 add JS/ HTML to footer
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
// Add scripts to wp_footer() | |
function child_theme_footer_script() { ?> | |
<!-- Your JS/HTML goes here --> | |
<?php } | |
add_action( 'wp_footer', 'child_theme_footer_script' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment