bbp_get_reply_author_display_name( int $reply_id )
Return the author display_name of the reply
Description
Parameters
- $reply_id
-
(Optional) Reply id
Return
(string) Reply's author's display name
Source
File: bp-forums/replies/template.php
function bbp_get_reply_author_display_name( $reply_id = 0 ) {
$reply_id = bbp_get_reply_id( $reply_id );
// User is not a guest
if ( !bbp_is_reply_anonymous( $reply_id ) ) {
// Get the author ID
$author_id = bbp_get_reply_author_id( $reply_id );
// Try to get a display name
$author_name = get_the_author_meta( 'display_name', $author_id );
// Fall back to user login
if ( empty( $author_name ) ) {
$author_name = get_the_author_meta( 'user_login', $author_id );
}
// User does not have an account
} else {
$author_name = get_post_meta( $reply_id, '_bbp_anonymous_name', true );
}
// If nothing could be found anywhere, use Anonymous
if ( empty( $author_name ) )
$author_name = __( 'Anonymous', 'buddyboss' );
// Encode possible UTF8 display names
if ( seems_utf8( $author_name ) === false )
$author_name = utf8_encode( $author_name );
return apply_filters( 'bbp_get_reply_author_display_name', $author_name, $reply_id );
}
Changelog
| Version | Description |
|---|---|
| bbPress (r2667) | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.