Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_insert_post_data

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
2559           $menu_order = 0;
2560
2561      if ( !isset($post_password) || 'private' == $post_status )
2562           $post_password = '';
2563
2564      $post_name = wp_unique_post_slug($post_name, $post_ID, $post_status, $post_type, $post_parent);
2565
2566      // expected_slashed (everything!)
2567      $data = compact( array( 'post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_content_filtered', 'post_title', 'post_excerpt', 'post_status', 'post_type', 'comment_status', 'ping_status', 'post_password', 'post_name', 'to_ping', 'pinged', 'post_modified', 'post_modified_gmt', 'post_parent', 'menu_order', 'guid' ) );
2568      $data = apply_filters('wp_insert_post_data', $data, $postarr);
2569      $data = stripslashes_deep( $data );
2570      $where = array( 'ID' => $post_ID );
2571
2572      if ( $update ) {
2573           do_action( 'pre_post_update', $post_ID );
2574           if ( false === $wpdb->update( $wpdb->posts, $data, $where ) ) {
2575                if ( $wp_error )
2576                     return new WP_Error('db_update_error', __('Could not update post in the database'), $wpdb->last_error);
2577                else