Tribe__Customizer__Section::get_section_link( string $link_text )

Sugar function that returns the results of Tribe__Customizer->get_section_link() for the current section.

Gets the HTML link to the current section in the TEC Customizer.


Parameters

$link_text

(string) (Required) The text for the link.


Top ↑

Return

(string) The HTML anchor element, linking to the TEC Customizer section. An empty string is returned if missing a parameter.


Top ↑

Source

File: src/Tribe/Customizer/Section.php

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

Top ↑

Changelog

Changelog
Version Description
4.14.0 Introduced.