Skip to content

Instantly share code, notes, and snippets.

@ovidiumght
Created June 25, 2021 04:21
Show Gist options
  • Select an option

  • Save ovidiumght/019e1a269ad9e2af95b446819a366963 to your computer and use it in GitHub Desktop.

Select an option

Save ovidiumght/019e1a269ad9e2af95b446819a366963 to your computer and use it in GitHub Desktop.
<?php
add_action('wp', function () {
if (is_singular('page')) {
add_action('wp_head', function () {
$JS = <<<EOD
<script>
alert('test');
</script>
EOD;
echo $JS;
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment