register_section_type( 'Armonia_Upsell_Button' ); /** * Add Upsell Button * */ $wp_customize->add_section( new Armonia_Upsell_Button( $wp_customize, 'upsell_button', [ 'button_text' => esc_html__( 'View Premium', 'armonia' ), 'button_url' => esc_url( '//blazethemes.com/theme/armonia-pro/' ), 'priority' => 1 ] ) ); /** * Add Upsell Button * */ $wp_customize->add_section( new Armonia_Upsell_Button( $wp_customize, 'demo_import_button', [ 'button_text' => esc_html__( 'Go to Import', 'armonia' ), 'button_url' => esc_url( admin_url('themes.php?page=armonia-info.php') ), 'title' => esc_html__('Import Demo Data', 'armonia'), 'priority' => 1000, ] ) ); } /** * Enqueue theme upsell controls scripts * */ function armonia_upsell_scripts() { wp_enqueue_style( 'armonia-upsell', get_template_directory_uri() . '/inc/admin/customizer-upsell/upsell-section/upsell.css', array(), '1.0.0', 'all' ); wp_enqueue_script( 'armonia-upsell', get_template_directory_uri() . '/inc/admin/customizer-upsell/upsell-section/upsell.js', array(), '1.0.0', 'all' ); } add_action( 'customize_controls_enqueue_scripts', 'armonia_upsell_scripts' );