Warning: This function has been deprecated. bbPress (r5119) instead.
bbp_get_reply_author( int $reply_id )
Deprecated. Use bbp_get_reply_author_display_name() instead.
Description Description
Return the author of the reply
Parameters Parameters
- $reply_id
-
(Optional) Reply id
Return Return
(string) Author of reply
Source Source
File: includes/replies/template.php
function bbp_get_reply_author( $reply_id = 0 ) { $reply_id = bbp_get_reply_id( $reply_id ); if ( ! bbp_is_reply_anonymous( $reply_id ) ) { $author = get_the_author_meta( 'display_name', bbp_get_reply_author_id( $reply_id ) ); } else { $author = get_post_meta( $reply_id, '_bbp_anonymous_name', true ); } // Filter & return return apply_filters( 'bbp_get_reply_author', $author, $reply_id ); }
Changelog Changelog
Version | Description |
---|---|
2.5.0 | bbPress (r5119) |
2.0.0 | Introduced. |