bbp_get_forum_last_reply_author_id

bbp_get_forum_last_reply_author_id

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_forum_last_reply_author_id') is found 1 times:

  • /includes/forums/template.php line 1117
    1113
    1114
    1115
    1116
    1117
    1118
    1119
    1120
    1121
    1122
    1123
            $reply_id  = bbp_get_forum_last_reply_id( $forum_id );
            $author_id = bbp_get_reply_author_id( $reply_id );
     
            // Filter & return
            return apply_filters( 'bbp_get_forum_last_reply_author_id', $author_id, $forum_id, $reply_id );
        }
     
    /**
     * Output link to author of last reply of forum
     *
     * @since 2.0.0 bbPress (r2625)