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_.


Parameters

$setting

(string) (Required) The setting "slug" to link to.


Top ↑

Return

(string) The URL to the setting.


Top ↑

Source

File: src/Tribe/Customizer/Section.php

	public function get_setting_url( $setting ) {
		return tribe( 'customizer' )->get_setting_url( $this->ID, $setting );
	}

Top ↑

Changelog

Changelog
Version Description
4.14.0 Introduced.