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



_make_email_clickable_cb › WordPress Function

Seit2.3.2
Veraltetn/v
_make_email_clickable_cb ( $matches )
Zugriff:
  • private
Parameter:
  • (array) $matches Single Regex Match.
    Erforderlich: Ja
Gibt zurück:
  • (string) HTML A element with email address.
Definiert in:
Codex:

Callback to convert email address match to HTML A element.

This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable().


Quellcode

function _make_email_clickable_cb( $matches ) {
	$email = $matches[2] . '@' . $matches[3];

	return $matches[1] . "<a href=\"mailto:{$email}\">{$email}</a>";
}