bbp_get_forum_author_display_name

bbp_get_forum_author_display_name

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_forum_author_display_name') is found 1 times:

  • /includes/forums/template.php line 1800
    1796
    1797
    1798
    1799
    1800
    1801
    1802
    1803
    1804
    1805
    1806
            $author_id = bbp_get_forum_author_id( $forum_id );
            $author    = get_the_author_meta( 'display_name', $author_id );
     
            // Filter & return
            return apply_filters( 'bbp_get_forum_author_display_name', $author, $forum_id, $author_id );
        }
     
    /**
     * Replace forum meta details for users that cannot view them.
     *
     * @since 2.0.0 bbPress (r3162)