customizer_path = get_template_directory() . '/inc/customizer'; $this->options = array(); $this->sections = array(); $this->panels = array(); } /** * Call from subclasses * @since 1.0.0 */ public static function get_customizer_settings() { CL()->add_options( (new Trifold_Customizer_Register())->generate_options() ); } } endif; add_action( 'init', array( 'Trifold_Customizer_Bootstrap', 'get_customizer_settings' ) );