get_template_directory_uri() . '/img/hero-bg.jpg', 'width' => 2000, 'height' => 1300, ); add_theme_support( 'custom-header', $args ); } add_action( 'after_setup_theme', 'politics_backstretch_setup', 100 ); /** * Required scripts are loaded. */ function politics_home_hero_scripts() { /** * Check for the home page template */ if ( is_page_template( 'front-page-template.php' ) ) { /** * Registers the backstretch script */ wp_enqueue_script( 'basic-backstretch-js', get_template_directory_uri() . '/js/jquery.backstretch.min.js', array('jquery'), '2.0.4', true ); /** * Load backstretch script in the footer */ add_action( 'wp_footer', 'politics_basic_backstretch_inline_script', 100 ); } // end get_uploaded_header_images } add_action( 'wp_enqueue_scripts', 'politics_home_hero_scripts' ); /** * Inline script will load the full screen background image after all other images * on the page have loaded. */ function politics_basic_backstretch_inline_script() { if ( is_page_template( 'front-page-template.php' ) ) { ?>