Astra_Ext_Adv_Footer_Loader::new_customize_register( WP_Customize_Manager $wp_customize )

Add postMessage support for site title and description for the Theme Customizer.


Description


Parameters

$wp_customize

(WP_Customize_Manager) (Required) Theme Customizer object.


Source

File: addons/advanced-footer/classes/class-astra-ext-adv-footer-loader.php

		public function new_customize_register( $wp_customize ) {
			/**
			 * Register Sections & Panels
			 */
			require_once ASTRA_EXT_ADVANCED_FOOTER_DIR . 'classes/class-astra-advanced-footer-panels-configs.php';

			/**
			 * Sections
			 */
			if ( astra_addon_existing_header_footer_configs() ) {
				require_once ASTRA_EXT_ADVANCED_FOOTER_DIR . 'classes/sections/class-astra-advanced-footer-configs.php';
				require_once ASTRA_EXT_ADVANCED_FOOTER_DIR . 'classes/sections/class-astra-advanced-footer-typo-configs.php';
			}
		}


User Contributed Notes

You must log in before being able to contribute a note or feedback.