Advertisement
Guest User

functions.php

a guest
Sep 17th, 2014
509
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. function add_custom_script(){
  2. ?>
  3. <script>
  4. jQuery(window).load(function(){
  5.     jQuery('a.external-link').click(function() {
  6.         alert("You're going to a better place.");
  7.     });
  8. });
  9. </script>
  10. <?php
  11. }
  12. add_action('wp_head', 'add_custom_script');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement