Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 9, 2021 07:21
Show Gist options
  • Save wpmu-authors/a5eaebbbb15320a1c7de7716ec02a3b9 to your computer and use it in GitHub Desktop.
Save wpmu-authors/a5eaebbbb15320a1c7de7716ec02a3b9 to your computer and use it in GitHub Desktop.
enqueue-register.php
function my_assets() {
wp_register_script( 'owl-carousel', get_stylesheet_directory_uri() . '/owl.carousel.js', array( 'jquery' ) );
wp_enqueue_script( 'owl-carousel' );
}
add_action( 'wp_enqueue_scripts', 'my_assets' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment