Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save xlplugins/a1d285d4673ef3a100fd428195dc9ce9 to your computer and use it in GitHub Desktop.

Select an option

Save xlplugins/a1d285d4673ef3a100fd428195dc9ce9 to your computer and use it in GitHub Desktop.
Run custom script just after start of body tag on all funnel and site pages.php
add_action( 'wp_body_open', 'load_custom_js_below_body' );
function load_custom_js_below_body() {
?>
<script>
console.log('Script loaded just below body tag');
</script>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment