redirection_update_redirect

redirection_update_redirect

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

See hook in core

Displaying hooks found in version: redirection.5.4.2

apply_filters('redirection_update_redirect') is found 1 times:

  • /models/redirect/redirect.php line 540
    			$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 ) {