bbp_get_anonymous_name

bbp_get_anonymous_name

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_anonymous_name') is found 1 times:

  • /includes/users/template.php line 841
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    function bbp_get_fallback_display_name( $object_id = 0 ) {
        $name = esc_html__( 'Anonymous', 'bbpress' );
     
        // Filter & return
        return apply_filters( 'bbp_get_anonymous_name', $name, $object_id );
    }
     
    /**
     * Output the author display-name of a topic or reply.
     *
     * Convenience function to ensure proper template functions are called