TitanFramework::createThemeCustomizerSection PHP Method

createThemeCustomizerSection() public method

Create a customizer section
Deprecation: 1.9 Use createContainer() with 'type' => 'customizer' or createCustomizer instead.
Since: 1.0
public createThemeCustomizerSection ( array $settings ) : TitanFrameworkCustomizer
$settings array The arguments for creating a customizer section.
return TitanFrameworkCustomizer The created section
    public function createThemeCustomizerSection($settings)
    {
        // _deprecated_function( __FUNCTION__, '1.9', 'createContainer' );
        return $this->createCustomizer($settings);
    }