Ticket #16176: 16176.patch
| File 16176.patch, 613 bytes (added by , 15 years ago) |
|---|
-
wp-includes/post.php
2642 2642 } 2643 2643 2644 2644 do_action('save_post', $post_ID, $post); 2645 do_action('save_post_' . $post->post_type, $post_ID, $post); 2645 2646 do_action('wp_insert_post', $post_ID, $post); 2646 2647 2647 2648 return $post_ID; … … 2734 2735 2735 2736 do_action('edit_post', $post_id, $post); 2736 2737 do_action('save_post', $post_id, $post); 2738 do_action('save_post_' . $post->post_type, $post_id, $post); 2737 2739 do_action('wp_insert_post', $post_id, $post); 2738 2740 } 2739 2741