This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Astra_Get_Footer_Builder_Design::get_section_id( string $section )
Get the section ID for a footer section.
Description
Parameters
- $section
-
(string) (Required) Footer section name.
Return
(string) Section ID.
Source
File: inc/abilities/customizer/footer/class-astra-get-footer-builder-design.php
private function get_section_id( $section ) {
$section_ids = array(
'above' => 'section-above-footer-builder',
'primary' => 'section-primary-footer-builder',
'below' => 'section-below-footer-builder',
);
return $section_ids[ $section ];
}
Expand full source code Collapse full source code View on Trac