First upload the backstretch.js file in js folder of your child theme. Then add the following code in your functions.php file add_action( ‘wp_enqueue_scripts’, ‘enqueue_bs_script’ ); function enqueue_bs_script() { if( is_front_page() || is_home() ){ wp_enqueue_script( ‘backstretch-js’, get_bloginfo( ‘stylesheet_directory’ ) . ‘/js/backstretch.js’, array( ‘jquery’ ), ‘1.0.0’ ); } } add_action(‘wp_head’, ‘random_backstretch_slider’); function random_backstretch_slider(){ if( is_front_page() || is_home()… Continue Reading