bbp_edit_reply_pre_insert

bbp_edit_reply_pre_insert

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_edit_reply_pre_insert') is found 1 times:

  • /includes/replies/functions.php line 688
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    /** No Errors *************************************************************/
     
    // Add the content of the form to $reply_data as an array
    // Just in time manipulation of reply data before being edited
    $reply_data = apply_filters( 'bbp_edit_reply_pre_insert', array(
        'ID'           => $reply_id,
        'post_title'   => $reply_title,
        'post_content' => $reply_content,
        'post_status'  => $reply_status,
        'post_parent'  => $topic_id,
        'post_author'  => $reply_author,