Astra_Builder_Customizer::__construct()
Constructor
Description
Source
File: inc/customizer/class-astra-builder-customizer.php
public function __construct() { add_action( 'customize_preview_init', array( $this, 'enqueue_customizer_preview_scripts' ) ); add_action( 'customize_register', array( $this, 'woo_header_configs' ), 2 ); if ( false === Astra_Builder_Helper::$is_header_footer_builder_active ) { return; } $this->load_base_components(); add_action( 'customize_register', array( $this, 'builder_configs' ), 2 ); add_action( 'customize_register', array( $this, 'header_configs' ), 2 ); add_action( 'customize_register', array( $this, 'footer_configs' ), 2 ); add_action( 'customize_register', array( $this, 'update_default_wp_configs' ) ); add_action( 'init', array( $this, 'deregister_menu_locations_widgets' ), 999 ); add_action( 'customize_controls_print_footer_scripts', array( $this, 'builder_customizer_preview_styles' ) ); }
Expand full source code Collapse full source code View on Trac
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |