wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



block_core_social_link_get_name › WordPress Function

Seitn/v
Veraltetn/v
block_core_social_link_get_name ( $service )
Parameter:
  • (string) $service The service icon.
    Erforderlich: Ja
Gibt zurück:
  • (string) Brand label.
Definiert in:
Codex:

Returns the brand name for social link.



Quellcode

function block_core_social_link_get_name( $service ) {
	$services = block_core_social_link_services();
	if ( isset( $services[ $service ] ) && isset( $services[ $service ]['name'] ) ) {
		return $services[ $service ]['name'];
	}

	return $services['share']['name'];
}