I am using a carousel to display latest jposts on my front page and I am using the following code but it's not working.
function my_load_caroufredsel() { // Enqueue carouFredSel, note that we specify 'jquery' as a dependency, and we set 'true' for loading in the footer: wp_register_script( 'caroufredsel', get_template_directory_uri() . '/js/jquery.carouFredSel-6.1.0-packed.js', array( 'jquery' ), '6.1.0', true ); // For either a plugin or a theme, you can then enqueue the script: wp_enqueue_script( 'my-caroufredsel', get_template_directory_uri() . '/js/my-caroufredsel.js', array( 'caroufredsel' ), '', true ); } add_action( 'wp_enqueue_scripts', 'my_load_caroufredsel' ); Any one can please tell what's the problem with the above code. Thanks