Advertisement
fgoldwyn

GHSfunction.php

Feb 17th, 2012
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // header image fadein fade out function
  2.  
  3. <?php
  4. function my_scripts_method() {
  5. wp_register_script( 'image_fadein_fadout', get_stylesheet_directory_uri() . '/js/image_fadein_fadeout.js');
  6. wp_enqueue_script( 'image_fadein_fadout' );
  7. }
  8. if( !is_admin() ) add_action( 'wp_enqueue_scripts', 'my_scripts_method' );
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement