Tribe__Customizer::add_setting_name( string $name )
Adds a setting field name to the Array of Possible Selective refresh fields
Contents
Parameters
- $name
-
(string) (Required) The actual Setting name
Return
(array) The list of existing Settings, the new one included
Source
File: src/Tribe/Customizer.php
public function add_setting_name( $name ) {
$this->settings[] = $name;
return $this->settings;
}
Changelog
| Version | Description |
|---|---|
| 4.2 | Introduced. |