mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-11 18:56:10 +09:00
Automatic clickable links in profile header bio
This commit is contained in:
@@ -34,7 +34,14 @@
|
||||
$message = um_convert_tags( $message, $args );
|
||||
wp_mail( $email, $subject_line, $message, $headers, $attachments );
|
||||
}
|
||||
|
||||
|
||||
/***
|
||||
*** @Convert urls to clickable links
|
||||
***/
|
||||
function um_clickable_links($s) {
|
||||
return preg_replace('@(https?://([-\w\.]+[-\w])+(:\d+)?(/([\w/_\.#-]*(\?\S+)?[^\.\s])?)?)@', '<a href="$1" class="um-link" target="_blank">$1</a>', $s);
|
||||
}
|
||||
|
||||
/***
|
||||
*** @convert template tags
|
||||
***/
|
||||
|
||||
Reference in New Issue
Block a user