44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Astra Theme Customizer Configuration Below footer.
|
|
*
|
|
* @package astra-builder
|
|
* @author Astra
|
|
* @copyright Copyright (c) 2020, Astra
|
|
* @link https://wpastra.com/
|
|
* @since 3.0.0
|
|
*/
|
|
|
|
// No direct access, please.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
if ( class_exists( 'Astra_Customizer_Config_Base' ) ) {
|
|
|
|
/**
|
|
* Register Below footer Customizer Configurations.
|
|
*
|
|
* @since 3.0.0
|
|
*/
|
|
class Astra_Customizer_Below_Footer_Configs extends Astra_Customizer_Config_Base {
|
|
|
|
/**
|
|
* Register Builder Below footer Customizer Configurations.
|
|
*
|
|
* @param Array $configurations Astra Customizer Configurations.
|
|
* @param WP_Customize_Manager $wp_customize instance of WP_Customize_Manager.
|
|
* @since 3.0.0
|
|
* @return Array Astra Customizer Configurations with updated configurations.
|
|
*/
|
|
public function register_configuration( $configurations, $wp_customize ) {
|
|
$_configs = astra_below_footer_configuration();
|
|
return array_merge( $configurations, $_configs );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Kicking this off by creating object of this class.
|
|
*/
|
|
new Astra_Customizer_Below_Footer_Configs();
|
|
}
|