bbp_edit_forum_pre_insert

bbp_edit_forum_pre_insert

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_edit_forum_pre_insert') is found 1 times:

  • /includes/forums/functions.php line 516
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    /** No Errors *************************************************************/
     
    // Add the content of the form to $forum_data as an array
    // Just in time manipulation of forum data before being edited
    $forum_data = apply_filters( 'bbp_edit_forum_pre_insert', array(
        'ID'           => $forum_id,
        'post_title'   => $forum_title,
        'post_content' => $forum_content,
        'post_status'  => $forum_status,
        'post_parent'  => $forum_parent_id
    ) );