Advertisement
srikat

Untitled

Nov 21st, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. //* Enqueue scripts
  2. add_action( 'wp_enqueue_scripts', 'minimum_front_page_enqueue_scripts' );
  3. function minimum_front_page_enqueue_scripts() {
  4.  
  5. // $image = get_option( 'minimum-backstretch-image', sprintf( '%s/images/bg.jpg', get_stylesheet_directory_uri() ) );
  6.  
  7. //* Load scripts only if custom backstretch image is being used
  8. // if ( ! empty( $image ) ) {
  9.  
  10. // //* Enqueue Backstretch scripts
  11. // wp_enqueue_script( 'minimum-backstretch', get_bloginfo( 'stylesheet_directory' ) . '/js/backstretch.js', array( 'jquery' ), '1.0.0' );
  12. // wp_enqueue_script( 'minimum-backstretch-set', get_bloginfo( 'stylesheet_directory' ).'/js/backstretch-set.js' , array( 'jquery', 'minimum-backstretch' ), '1.0.0' );
  13.  
  14. // wp_localize_script( 'minimum-backstretch-set', 'BackStretchImg', array( 'src' => str_replace( 'http:', '', $image ) ) );
  15.  
  16. // //* Add custom body class
  17. // add_filter( 'body_class', 'minimum_add_body_class' );
  18.  
  19. // }
  20.  
  21. wp_enqueue_script( 'home', get_stylesheet_directory_uri() . '/js/home.js', array( 'jquery' ), '1.0.0', true );
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement