bbp_make_mentions_clickable( string $text = '' )
Make mentions clickable in content areas
Description Description
See also See also
Parameters Parameters
- $text
-
(Optional)
Default value: ''
Return Return
(string)
Source Source
File: includes/common/formatting.php
function bbp_make_mentions_clickable( $text = '' ) { return preg_replace_callback( '#@([0-9a-zA-Z-_]+)#i', 'bbp_make_mentions_clickable_callback', $text ); }
Changelog Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |