redirection_update_redirect

redirection_update_redirect

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: redirection.5.5.2

apply_filters('redirection_update_redirect') is found 1 times:

  • /models/redirect/redirect.php line 543
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
        $old_group = $this->group_id;
    }
     
    // Save this
    $data = apply_filters( 'redirection_update_redirect', $data );
    if ( ! empty( $data['match_data'] ) ) {
        $data['match_data'] = wp_json_encode( $data['match_data'], JSON_UNESCAPED_SLASHES );
    }
     
    $result = $wpdb->update( $wpdb->prefix . 'redirection_items', $data, array( 'id' => $this->id ) );
    if ( $result !== false ) {