Advertisement
fauzanjeg

Add Script/Code to Head Tag and Body Tag

Aug 22nd, 2021
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. /* Add Script/Code to Head Tag */
  2. function add_code_to_head() {
  3.     /** Your Script */
  4.     ?>
  5.     <!-- Your Script -->
  6.     <?php
  7. }
  8. add_action( 'wp_head', 'add_code_to_head' );
  9.  
  10. /* Add Script/Code to Body Tag */
  11. function add_code_to_body() {
  12.     /** Your Script */
  13.     ?>
  14.     <!-- Your Script -->
  15.     <?php
  16. }
  17. add_action( 'jnews_after_body', 'add_code_to_body', 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement