bbp_current_author_ua()
Get the poster user agent
Description Description
Return Return
(string)
Source Source
File: includes/users/functions.php
function bbp_current_author_ua() {
$retval = ! empty( $_SERVER['HTTP_USER_AGENT'] )
? mb_substr( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ), 0, 254 )
: '';
// Filter & return
return apply_filters( 'bbp_current_author_ua', $retval );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |