Advertisement
isaacadams

Adding script to the head with wp_head

May 2nd, 2019
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. /**
  3. * add script to head with wrapping php
  4. */
  5. function addtohead_cf() {
  6. ?>
  7. <script></script>
  8. <?php
  9. }
  10. add_action('wp_head', 'addtohead_cf');
  11. /**
  12. * add script to head using echo
  13. */
  14. function addtohead_cf() {
  15. echo "<script></script>";
  16. }
  17. add_action( 'wp_head', 'addtohead_cf' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement