get( 'Version' ); wp_enqueue_style( 'averium-normalize-css', get_template_directory_uri() . '/assets/css/normalize.css', array(), '1.0' ); wp_enqueue_style( 'averium-blocks-style', get_template_directory_uri() . '/assets/css/block.css', array(), '1.0' ); wp_enqueue_style( 'averium-style-css', get_stylesheet_uri(), array(), $theme_version ); wp_enqueue_script( 'averium-custom-script', get_template_directory_uri() . '/assets/js/script.js', array(), '1.0', true ); } add_action( 'wp_enqueue_scripts', 'averium_enqueue_styles_and_scripts' ); require_once get_template_directory() . '/inc/core/init.php'; require get_template_directory() . '/inc/customizer.php'; if ( class_exists( 'WP_Customize_Section' ) ) { class Averium_Upsell_Section extends WP_Customize_Section { public $type = 'averium-upsell'; public $button_text = ''; public $url = ''; public $background = ''; public $text_color = ''; protected function render() { $background = ! empty( $this->background ) ? esc_attr( $this->background ) : '#037e74'; $text_color = ! empty( $this->text_color ) ? esc_attr( $this->text_color ) : '#fff'; ?>