bbp_get_toggle_reply_actions

bbp_get_toggle_reply_actions

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_toggle_reply_actions') is found 1 times:

  • /includes/replies/functions.php line 1674
    1670
    1671
    1672
    1673
    1674
    1675
    1676
    1677
    1678
    1679
    */
    function bbp_get_reply_toggles( $reply_id = 0 ) {
     
        // Filter & return
        return (array) apply_filters( 'bbp_get_toggle_reply_actions', array(
            'bbp_toggle_reply_spam',
            'bbp_toggle_reply_trash',
            'bbp_toggle_reply_approve'
        ), $reply_id );
    }