add_section( new AC_Maintenance_Upsell_Section( $wp_customize, 'upsell_premium_section', array( 'title' => __( 'AC Maintenance', 'ac-maintenance' ), 'button_text' => __( 'GO TO PREMIUM', 'ac-maintenance' ), 'url' => esc_url( AC_MAINTENENCE_BUY_NOW ), 'priority' => 0, ))); // Add the "Bundle" upsell section $wp_customize->add_section( new AC_Maintenance_Upsell_Section( $wp_customize, 'upsell_bundle_section', array( 'title' => __( 'All themes in Single Package', 'ac-maintenance' ), 'button_text' => __( 'GET BUNDLE', 'ac-maintenance' ), 'url' => esc_url( AC_MAINTENENCE_BUNDLE ), 'priority' => 1, ))); } add_action( 'customize_register', 'ac_maintenance_customize_register' ); if ( class_exists( 'WP_Customize_Section' ) ) { class AC_Maintenance_Upsell_Section extends WP_Customize_Section { public $type = 'ac-maintenance-upsell'; public $button_text = ''; public $url = ''; protected function render() { ?>