Astra_Builder_Customizer::load_footer_components()
Register Components for Footer Builder.
Description
Source
File: inc/customizer/class-astra-builder-customizer.php
public function load_footer_components() { // @codingStandardsIgnoreStart WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound $footer_components_path = ASTRA_THEME_DIR . 'inc/builder/type/footer'; require_once $footer_components_path . '/below-footer/class-astra-below-footer.php'; require_once $footer_components_path . '/menu/class-astra-footer-menu-component.php'; require_once $footer_components_path . '/html/class-astra-footer-html-component.php'; require_once $footer_components_path . '/button/class-astra-footer-button-component.php'; require_once $footer_components_path . '/copyright/class-astra-footer-copyright-component.php'; require_once $footer_components_path . '/social-icon/class-astra-footer-social-icons-component.php'; require_once $footer_components_path . '/above-footer/class-astra-above-footer.php'; require_once $footer_components_path . '/primary-footer/class-astra-primary-footer.php'; require_once $footer_components_path . '/widget/class-astra-footer-widget-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. |