Skip to content

Instantly share code, notes, and snippets.

@swoboda
Created March 19, 2018 10:41
Show Gist options
  • Save swoboda/29ffd53d7fb787645978e02a11883cdf to your computer and use it in GitHub Desktop.
Save swoboda/29ffd53d7fb787645978e02a11883cdf to your computer and use it in GitHub Desktop.
add-inline-js.php
<?php
// Do NOT include the opening php tag
add_action( 'wp_head', 'wpdesk_custom_js' );
// Add inline JS
function wpdesk_custom_js() {
echo <<<JS
<script type="text/javascript">
// Add your JS here
</script>
JS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment