Skip to content

Instantly share code, notes, and snippets.

@pramod1988
Created March 29, 2017 10:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pramod1988/9e99f094c514b6144a1fc76cc97be3b9 to your computer and use it in GitHub Desktop.
Save pramod1988/9e99f094c514b6144a1fc76cc97be3b9 to your computer and use it in GitHub Desktop.
Add script in footer in wordpress
function myscript() {
?>
<script type="text/javascript">
if ( undefined !== window.jQuery ) {
// Jquery code goes here
}
</script>
<?php
}
add_action( 'wp_footer', 'myscript' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment