Astra_Addon_Builder_Customizer::load_footer_components()
Register Components for Footer Builder.
Description
Source
File: classes/builder/class-astra-addon-builder-customizer.php
public function load_footer_components() {
// @codingStandardsIgnoreStart WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
$footer_components_path = ASTRA_EXT_DIR . 'classes/builder/type/footer';
if ( ! class_exists( 'Astra_Footer_Divider_Component' ) ) {
require_once $footer_components_path . '/divider/class-astra-footer-divider-component.php';
}
require_once $footer_components_path . '/button/class-astra-ext-footer-button-component.php';
require_once $footer_components_path . '/social-icon/class-astra-footer-social-component.php';
require_once $footer_components_path . '/language-switcher/class-astra-footer-language-switcher-component.php';
// @codingStandardsIgnoreEnd WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
}
Expand full source code Collapse full source code View on Trac
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |