Tribe__Customizer__Section::register( array $sections, Tribe__Customizer $customizer )
Register this Section.
Contents
Parameters
- $sections
-
(array) (Required) Array of Sections.
- $customizer
-
(Tribe__Customizer) (Required) Our internal Cutomizer Class Instance.
Return
(array) Return the modified version of the Section array.
Source
File: src/Tribe/Customizer/Section.php
public function register( $sections, Tribe__Customizer $customizer ) {
$sections[ $this->ID ] = $this->arguments;
return $sections;
}