Changeset 2873 for trunk/wp-includes/functions-post.php
- Timestamp:
- 09/14/2005 12:34:04 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions-post.php
r2865 r2873 135 135 136 136 $result = $wpdb->query($postquery); 137 if ( $update ) 138 $rval = $wpdb->rows_affected; 139 else 140 $rval = $wpdb->insert_id; 137 138 wp_set_post_cats('', $post_ID, $post_category); 139 140 if ( 'static' == $post_status ) 141 clean_page_cache($post_ID); 142 else 143 clean_post_cache($post_ID); 141 144 142 145 // Set GUID 143 146 if ( ! $update ) 144 147 $wpdb->query("UPDATE $wpdb->posts SET guid = '" . get_permalink($post_ID) . "' WHERE ID = '$post_ID'"); 145 146 wp_set_post_cats('', $post_ID, $post_category);147 148 148 149 if ( $update) { 149 if ($previous_status != 'publish' && $post_status == 'publish') 150 if ($previous_status != 'publish' && $post_status == 'publish') { 151 // Reset GUID if transitioning to publish. 152 $wpdb->query("UPDATE $wpdb->posts SET guid = '" . get_permalink($post_ID) . "' WHERE ID = '$post_ID'"); 150 153 do_action('private_to_published', $post_ID); 154 } 151 155 152 156 do_action('edit_post', $post_ID);
Note: See TracChangeset
for help on using the changeset viewer.