public function enqueue_front_scripts() { // Scripts not allowed in AMP. if ( genesis_is_amp() ) { return false; } // If a single post or page, threaded comments are enabled, and comments are open. if ( is_singular() && get_option( 'thread_comments' ) && comments_open() ) { wp_enqueue_script( 'comment-reply' ); } // If superfish is enabled. if ( genesis_superfish_enabled() ) { wp_enqueue_script( 'superfish' ); wp_enqueue_script( 'superfish-args' ); } // If accessibility support enabled. if ( genesis_a11y( 'skip-links' ) ) { wp_enqueue_script( 'skip-links' ); } }