Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: save_post

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
697      }
698
699      // Always clears the hook in case the post status bounced from future to draft.
700      wp_clear_scheduled_hook('publish_future_post', $post_ID);
701
702      // Schedule publication.
703      if ( 'future' == $post_status )
704           wp_schedule_single_event(strtotime($post_date_gmt. ' GMT'), 'publish_future_post', array($post_ID));
705           
706      do_action('save_post', $post_ID);
707      do_action('wp_insert_post', $post_ID);
708
709      return $post_ID;
710 }
711
712 function wp_update_post($postarr = array()) {
713      global $wpdb;
714
715      if ( is_object($postarr) )