Created
August 7, 2014 08:33
-
-
Save NateWr/1dbee867e7e2caa82ef4 to your computer and use it in GitHub Desktop.
Start CafeCultura carousel automatically
This file contains 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
/** | |
* Add this snippet to the functions.php file of your child theme | |
*/ | |
add_action( 'wp_footer', 'cclt_init_carousel', 1000 ); | |
function cclt_init_carousel() { | |
?> | |
<script type="text/javascript"> | |
jQuery(document).ready(function ($) { | |
$( '#ep-carousel' ).carousel(); | |
}); | |
</script> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment