Advertisement
arie_cristianD

wp_head example

May 5th, 2024
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.10 KB | None | 0 0
  1. add_action(
  2.     'wp_head',
  3.     function () {
  4.         echo "<script>
  5.    alert('test');
  6. </script>";
  7.     }
  8. );
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement