setup_actions(); } return $instance; } /** * Constructor method. */ private function __construct() {} /** * Sets up initial actions. */ private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ),999 ); } /** * Sets up the customizer sections. */ public function sections( $manager ) { // Load custom sections. require_once CORPIVA_THEME_INC_DIR . '/customizer/controls/code/upgrade/section-pro.php'; // Register custom section types. $manager->register_section_type( 'Corpiva_Customize_Section_Pro' ); // Register sections. $manager->add_section( new Corpiva_Customize_Section_Pro( $manager, 'corpiva', array( 'pro_text' => esc_html__( 'Upgrade to Avanta Pro','avanta' ), 'pro_url' => 'https://desertthemes.com/themes/avanta-pro/', 'priority' => 0 ) ) ); } } // Doing this customizer thang! Avanta_Customize::get_instance();