Skip to content

Instantly share code, notes, and snippets.

@Magnacarter
Created June 4, 2015 09:33
Show Gist options
  • Save Magnacarter/c10b7ec5762b92ca7d5e to your computer and use it in GitHub Desktop.
Save Magnacarter/c10b7ec5762b92ca7d5e to your computer and use it in GitHub Desktop.
function demo_enqueue_scripts() {
// Theme CSS
wp_enqueue_style( 'demo-animate' , get_template_directory_uri() . '/css/animate.min.css');
// Theme JS
wp_enqueue_script( 'deom-lazyloadxt' , get_template_directory_uri() . '/js/jquery.lazyloadxt.js', array('jquery'), '' , true);
}
add_action( 'wp_enqueue_scripts', 'demo_enqueue_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment