Tribe__Customizer__Section::get_setting_url( string $setting )
Sugar function that returns the results of Tribe__Customizer->get_settings_url() for the specified setting in the _current section_.
Contents
Parameters
- $setting
-
(string) (Required) The setting "slug" to link to.
Return
(string) The URL to the setting.
Source
File: src/Tribe/Customizer/Section.php
public function get_setting_url( $setting ) {
return tribe( 'customizer' )->get_setting_url( $this->ID, $setting );
}
Changelog
| Version | Description |
|---|---|
| 4.14.0 | Introduced. |