Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: publish_page

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
689                ");
690                wp_schedule_single_event(time(), 'do_pings');
691           }
692      } else if ($post_type == 'page') {
693           if ( !empty($page_template) )
694                if ( ! update_post_meta($post_ID, '_wp_page_template',  $page_template))
695                     add_post_meta($post_ID, '_wp_page_template',  $page_template, true);
696
697           if ( $post_status == 'publish' )
698                do_action('publish_page', $post_ID);
699      }
700
701      // Always clears the hook in case the post status bounced from future to draft.
702      wp_clear_scheduled_hook('publish_future_post', $post_ID);
703
704      // Schedule publication.
705      if ( 'future' == $post_status )
706           wp_schedule_single_event(strtotime($post_date_gmt. ' GMT'), 'publish_future_post', array($post_ID));
707