Advertisement
michaellevelup

Body script

Feb 16th, 2022
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. // Inserts a script before the closing WordPress body tag
  2.  
  3. function custom_enqueue_scripts(){
  4.  
  5.     wp_enqueue_script('script-name', 'https://code.jquery.com/jquery-3.3.1.slim.min.js', '', '', true);
  6.     // Makes use of the $in_footer parameter which is set to true, this tells WordPress to put the script before closing body tag
  7. }
  8. add_action ('wp_enqueue_script', 'custom_enqueue_scripts');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement