Guest User

Untitled

a guest
Jun 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <?php
  2.  
  3. function jw_script_enqueue() {
  4.  
  5. wp_enqueue_style('custom-style', get_template_directory_uri() . '/css/jw-custom.css', array(), false, 'all' );
  6. we_enqueue_script('custom-js', get_template_directory_uri() . '/js/jw-custom.js', false, true)
  7.  
  8. }
  9.  
  10. add_action( 'wp_enqueue_scripts', 'jw_script_enqueue');
  11.  
  12. <!DOCTYPE html>
  13. <html>
  14. <head>
  15. <meta charset="utf-8">
  16. <title>JW Custom</title>
  17. <?php wp_head(); ?>
  18. </head>
  19.  
  20. <body>
  21.  
  22. <footer>
  23. © 2018 JW Custom
  24. </footer>
  25.  
  26. <?php wp_footer(); ?>
  27. </body>
  28. </html>
Add Comment
Please, Sign In to add comment