Skip to content

Instantly share code, notes, and snippets.

@danieliser
Last active March 25, 2018 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save danieliser/774d572619a96f99537e to your computer and use it in GitHub Desktop.
Save danieliser/774d572619a96f99537e to your computer and use it in GitHub Desktop.
Add JavaScript using wp_footer.
<?php
add_action( 'wp_footer', 'my_custom_popup_scripts', 500 );
function my_custom_popup_scripts() { ?>
<script type="text/javascript">
(function ($, document, undefined) {
// Your custom code goes here.
}(jQuery, document))
</script><?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment