bbp_is_reply_published

bbp_is_reply_published

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_is_reply_published') is found 1 times:

  • /includes/replies/template.php line 894
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
        $reply_status = ( bbp_get_reply_status( $reply_id ) === $status );
        $retval       = ( $reply_status && $topic_status );
     
        // Filter & return
        return (bool) apply_filters( 'bbp_is_reply_published', (bool) $retval, $reply_id );
    }
     
    /**
     * Is the reply marked as spam?
     *
     * @since 2.0.0 bbPress (r2740)