Guest User

Untitled

a guest
Jul 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Allows you to print scripts or styles directly to the wp_head
  5. * Useful for using it conditionally (like for specific posts or pages)
  6. */
  7.  
  8. add_action('wp_head', function() { ?>
  9. <script>
  10. jQuery(document).ready(function($) {
  11. //code here
  12. });
  13. </script>
  14.  
  15. <style>
  16. /*CSS styles here*/
  17. </style>
  18. <?php });
Add Comment
Please, Sign In to add comment