bbp_get_forum_author_id

bbp_get_forum_author_id

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_forum_author_id') is found 1 times:

  • /includes/forums/template.php line 1773
    1769
    1770
    1771
    1772
    1773
    1774
    1775
    1776
    1777
    1778
    1779
            $forum_id  = bbp_get_forum_id( $forum_id );
            $author_id = get_post_field( 'post_author', $forum_id );
     
            // Filter & return
            return (int) apply_filters( 'bbp_get_forum_author_id', (int) $author_id, $forum_id );
        }
     
    /**
     * Output the author of the forum
     *
     * @since 2.1.0 bbPress (r3675)