Callback to convert email address match to HTML A element.
Description
This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable() .
Parameters
$matches
arrayrequired- Single Regex Match.
Source
function _make_email_clickable_cb( $matches ) {
$email = $matches[2] . '@' . $matches[3];
return $matches[1] . "<a href=\"mailto:{$email}\">{$email}</a>";
}
Changelog
Version | Description |
---|---|
2.3.2 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.