bbp_is_reply_public

bbp_is_reply_public

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_is_reply_public') is found 1 times:

  • /includes/replies/template.php line 873
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
        $public    = bbp_get_public_reply_statuses();
        $is_public = in_array( $status, $public, true );
     
        // Filter & return
        return (bool) apply_filters( 'bbp_is_reply_public', $is_public, $reply_id );
    }
     
    /**
     * Is the reply not spam or deleted?
     *
     * @since 2.0.0 bbPress (r3496)