get('Version'), 'all' ); } add_action('wp_enqueue_scripts', 'abyssal_theme_enqueue_styles'); function abyssal_theme_enqueue_scripts() { wp_enqueue_script( 'abyssal_effects-js', get_template_directory_uri() . '/assets/js/effects.js', array(), wp_get_theme()->get('Version'), true ); wp_enqueue_script( 'abyssal_scroll-top-js', get_template_directory_uri() . '/assets/js/scroll-top.js', array(), wp_get_theme()->get('Version'), true ); } add_action('wp_enqueue_scripts', 'abyssal_theme_enqueue_scripts'); require get_template_directory() . '/inc/customizer.php'; if ( class_exists( 'WP_Customize_Section' ) ) { class Abyssal_Upsell_Section extends WP_Customize_Section { public $type = 'abyssal-upsell'; public $button_text = ''; public $url = ''; public $background = ''; public $text_color = ''; protected function render() { $background = ! empty( $this->background ) ? esc_attr( $this->background ) : 'linear-gradient(90deg,rgb(0,0,0) 0%,rgb(0,0,0) 35%,rgb(0,0,0) 70%,rgb(0,0,0) 100%) '; $text_color = ! empty( $this->text_color ) ? esc_attr( $this->text_color ) : '#fff'; ?>