Created
February 9, 2021 07:21
-
-
Save wpmu-authors/a5eaebbbb15320a1c7de7716ec02a3b9 to your computer and use it in GitHub Desktop.
enqueue-register.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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