Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: core_upgrade_preamble

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
148           list_core_update( $update );
149           echo '</li>';
150      }
151      echo '</ul>';
152      echo '<p>' . __( 'While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, your site will return to normal.' ) . '</p>';
153      dismissed_updates();
154
155      list_plugin_updates();
156      list_theme_updates();
157      do_action('core_upgrade_preamble');
158      echo '</div>';
159 }
160
161 function list_plugin_updates() {
162      global $wp_version;
163
164      $cur_wp_version = preg_replace('/-.*$/', '', $wp_version);
165
166      require_once(ABSPATH . 'wp-admin/includes/plugin-install.php');