Advertisement
artemsemkin

Untitled

Apr 24th, 2025
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. <?php
  2.  
  3. // Add into functions.php of your child theme
  4.  
  5. // Inline script
  6. add_action( 'wp_head', 'my_custom_js_in_head' );
  7. function my_custom_js_in_head() {
  8.   ?>
  9.   <script type="text/javascript" id="my-custom-js">
  10.     // Your custom JS code here
  11.     console.log('Custom JS loaded in the head!');
  12.   </script>
  13.   <?php
  14. }
  15.  
  16. // Script with [src]
  17. add_action('wp_enqueue_scripts', 'my_enqueue_head_script');
  18. function my_enqueue_head_script() {
  19.   wp_enqueue_script('my-custom-head-js', get_template_directory_uri() . '/js/my-script.js', array(), null, false);
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement