_make_email_clickable_cb [ WordPress Function ]
_make_email_clickable_cb ( $matches )
| Access: |
|
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Soorgelijke functies: _make_url_clickable_cb, _make_web_ftp_clickable_cb, make_clickable, _make_cat_compat
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 {@link make_clickable()}.
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- _make_email_clickable_cb() WordPress function reference ...
Callback to convert email address match to HTML A element.
queryposts.com - PHP Function to Auto Convert URL into Clickable Hyperlink (Anchor ...
Sep 2, 2009 ... $ret; } function _make_email_clickable_cb($matches) { $email ... +[0-9a-z]{2,})#i', '_make_email_clickable_cb', $ret); // this one is not in an ...
zenverse.net - php - How do I call a function within the same class as a callback of ...
+[0-9a-z]{2,})#i', '_make_email_clickable_cb', $ret); // this one is not in an array because we need it to run last, for cleanup of accidental links ...
stackoverflow.com - using wordpress function make_clickable() to convert urls in a string ...
$ret; } function _make_email_clickable_cb($matches) { $email = $matches[2] . '@ ' . $matches[3]; return $matches[1] . "<a href=\"mailto:$email\">$email</a>"; } ...
forrst.com