Changeset 8702
- Timestamp:
- 08/21/2008 06:31:35 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r8675 r8702 1420 1420 // expected_slashed (everything!) 1421 1421 $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' ) ); 1422 $data = apply_filters('wp_insert_post ', $data, $postarr);1422 $data = apply_filters('wp_insert_post_data', $data, $postarr); 1423 1423 $data = stripslashes_deep( $data ); 1424 1424 $where = array( 'ID' => $post_ID );
Note: See TracChangeset
for help on using the changeset viewer.